Introduction

 

Functional Programming in Haskell
Willamette Mathematics Colloquium • Fall 2002

Introduction
bullet Traditional computing: not the best tool for math
traditional finite representations do not respect mathematical accounts of numbers:

• when integers grow "too large" they can become negative

• floating point values represent real numbers inaccurately
(see Prof. Janeba's Numerical Analysis course)

Control bar


















































 

Functional Programming in Haskell
Willamette Mathematics Colloquium • Fall 2002

Introduction
bullet Traditional computing: not the best tool for math
bullet Computing: more than just a tool for doing math
computing can have a better relationship with math:

• computational style can reflect math sensibilities

• computation can be studied from a mathematical perspective

Control bar


















































 

Functional Programming in Haskell
Willamette Mathematics Colloquium • Fall 2002

Introduction
bullet Traditional computing: not the best tool for math
bullet Computing: more than just a tool for doing math
bullet What are "mathematical sensibilities"?

• proof, equational reasoning

• concise, stylized language

• what, not how (i.e., results, not process)

• focus on relevance, suppress distractions

• abstraction and generality

• conceptual elegance (e.g., symmetry, duality)

Control bar


















































 

Functional Programming in Haskell
Willamette Mathematics Colloquium • Fall 2002

Introduction
bullet Traditional computing: not the best tool for math
bullet Computing: more than just a tool for doing math
bullet What are "mathematical sensibilities"?
bullet Functional programming
an alternative style (or "paradigm"), outside the mainstream, which stresses sound mathematical semantics and encourages formal methods

Control bar


















































 

Functional Programming in Haskell
Willamette Mathematics Colloquium • Fall 2002

Introduction
bullet Traditional computing: not the best tool for math
bullet Computing: more than just a tool for doing math
bullet What are "mathematical sensibilities"?
bullet Functional programming
bullet The Haskell programming language
a purely functional language with a math-friendly syntax and a sophisticated, flexible type system
(other functional languages: Clean, SML, Caml, Scheme, LISP, APL, ...)

Control bar