What are some resources for learning Lambda Calculus?

Lambda Calculus

Lambda Calculus Problem Overview


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?

Lambda Calculus Solutions


Solution 1 - Lambda Calculus

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.

Solution 2 - Lambda Calculus

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 :)

Solution 3 - Lambda Calculus

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

Solution 4 - Lambda Calculus

I think 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 these is a field in itself, and I don't know of any book that covers it all.

Solution 5 - Lambda Calculus

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.

Solution 6 - Lambda Calculus

I recently bought a book from Amazon titled as "An Introduction to Functional Programming Through Lambda Calculus" by Greg Michaelson. It is more of an introduction to functional programming and also introduces lambda calculus. The first impression is quite good. A self contained and easy to read book. Here , you can download free version without index in PostScript.

Solution 7 - Lambda Calculus

The book that really made me start to use and understand lambda calculus was "Representation and Inference for Natural Language" by Blackburn and Bos. This is a book about natural language processing using Prolog. Another book you might consider is "Natural Language Understanding" by Allen. Finally, if you like lambda calculus, you will probably also enjoy combinatory logic, as the combinators can be defined as lambda expressions. For this, I strongly recommend Smullyan's book of puzzles, "To Mock A Mockingbird." Toward the end he uses the combinators to build a rudimentary programming language.

Solution 8 - Lambda Calculus

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!

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionmmcdoleView Question on Stackoverflow
Solution 1 - Lambda CalculusgimelView Answer on Stackoverflow
Solution 2 - Lambda Calculusfred-oView Answer on Stackoverflow
Solution 3 - Lambda CalculusSpedgeView Answer on Stackoverflow
Solution 4 - Lambda CalculusAxelle ZieglerView Answer on Stackoverflow
Solution 5 - Lambda CalculusBrianView Answer on Stackoverflow
Solution 6 - Lambda Calculusoakenshield1View Answer on Stackoverflow
Solution 7 - Lambda CalculusDavid CView Answer on Stackoverflow
Solution 8 - Lambda CalculusAshleyFView Answer on Stackoverflow