Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a book that teaches functional programming, without being a tutorial for an FP language? I am looking for more theoretical stuff.

share|improve this question
1  
Barendregt. The yellow thick one with a fine layer of dust in the library. You can't miss it. – Pascal Cuoq Dec 3 '09 at 19:32

8 Answers

up vote 6 down vote accepted

Type Theory and Functional Programming by Simon Thompson. Shows the relationship between constructive type theory (essentially turning the lambda calculus into a foundation for constructive mathematics) and functional programming. It's an introductory textbook, uses Miranda (all but defunct, but Haskell extended and embraced Miranda), was published in 1991, and is now free to download.

share|improve this answer
You can buy the book from here: cafepress.com/haskell_books.11895795 – Johan Kullbom Dec 3 '09 at 14:06
Now free at bit.ly/oMqyzg – oluies Aug 8 '11 at 10:22

Structure and Interpretation of Computer Programs is a fantastic book. It's has a wider scope than just functional programming, but it thoroughly introduces it and then uses it along the way to structure different kinds of programs. It uses Scheme, but doesn't introduce more of the language than necessary to deal with the underlying concepts. The book is freely available on the website.

There are also video lectures online.

share|improve this answer
It's been a way too long since I've read SICP, but I kinda remember that pretty much the only "minus" of it was that it didn't contrast functional/imperative approach much. – Pasi Savolainen Dec 3 '09 at 11:58

Richard Bird's Introduction to Function Programming using Haskell, which despite its title is not a Haskell tutorial. Also, Chris Okasaki's Purely Functional Data Structures.

share|improve this answer
+1 Okasaki's book. But it's not the kind of theoretical the qner is after. – Charles Stewart Oct 6 '10 at 10:28

Why Functional Programming Matters by John Hughes is also a good read.

http://www.cs.chalmers.se/~rjmh/Papers/whyfp.html

share|improve this answer

"How to Design Programs" is a textbook used by first year computer science students from various universities that uses Scheme (Lisp) to leach functional programming. It is available online.

http://www.htdp.org/

share|improve this answer

I would recommend "ML for the working programmer". While it is based on the language ML it also explains FP in general, but I suppose that any good book on any subject would have to be based on (at least some) real examples.

Here's a link to the book on Amazon:

http://www.amazon.com/ML-Working-Programmer-Lawrence-Paulson/dp/052156543X/ref=sr%5F1%5F2?ie=UTF8&s=books&qid=1259840697&sr=1-2

share|improve this answer

It's an old book, but one of the most comprehensive texts on FP is Chris Reade's Elements of Functional Programming. It uses ML to illustrate the concepts, but it is at heart a theoretical overview.

share|improve this answer

A book on lambda calculus would probably be your best bet.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.