So the Wikipedia entry on Lambda Calculus was interesting but I've finished it. I wish to dive a little deeper and get a better understanding of Lambda Calculus.

Can anyone recommend what they consider to be the best book or primer to Lambda Calculus?

link|improve this question

67% accept rate
feedback

7 Answers

up vote 13 down vote accepted

If you are done with the Wikipedia entry, follow its link to the online Structure and Interpretation of Computer Programs, do the assignments, or read the book.

alt text

link|improve this answer
1  
+1 This is a classic resource. It was the coursebook for my uni's first programming course. – Mark Pim Feb 5 '09 at 11:32
ditto. although it's more about practicalness, not about the formal-ness of lambda calculus itself. – Jason S Feb 5 '09 at 16:32
+1 Reading now...instead of 6-7 years ago... Rocks a developer's/coder's/programmer's world. – Aggelos Biboudis Jan 16 '10 at 16:43
feedback

Well, there's always An Introduction to Lambda Calculus. I've tried reading it a few times, but always got stuck. I have a nagging feeling that I already know most of this stuff and would probably have an easier time understanding it if it was presented in terms of Lisp/Scheme rather than math. You might have better luck, though :)

link|improve this answer
feedback

I thin the reference on the subject of lambda-calculus itself still is Barendregt's book.

alt text

Beyond that it pretty much depends on what "part" of lambda-calculus you are interested in : typing ? proof theory ? term rewriting ? functional programming ?

Each of that is a field in itself, and I don't know of any book that covers it all.

link|improve this answer
feedback

Try writing a lambda calculus interpetter, ideally in a functional language using the build in syntax of the language rather than via a parser. This is surprisingly easy and a good way to improve your feel for it.

link|improve this answer
feedback

I found "An introduction to Lambda Calculi for Computer Scientists" by Chris Hankin to be pretty good, but I only really used it for one class - not used it in the real world :)

alt text

link|improve this answer
feedback

Here is a nice explanation (using Scheme): http://www.cs.brown.edu/courses/cs173/2002/Lectures/2002-10-28-lc.pdf

And here's a nifty bit (from my blog), reducing recursive factorial to pure lambdas: http://blogs.msdn.com/b/ashleyf/archive/2008/12/03/the-lambda-calculus.aspx

Have fun!

link|improve this answer
feedback

I totally agree with Brian. I built an interpreter based on the SECD machine as an undergrad project (I have it online, in fact. If you'd like to see it, email me.). By the time I was done I was reading lambda calc like it was forth grade arithmetic. I would suggest Field and Harrison's book "Functional Programming." It thoroughly covers the basics, particularly as it pertains to functional programming.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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