vote up 11 vote down star
7

To all the people who know lambda calculus: What benefit has it bought you, regarding programming? Would you recommend that people learn it?

flag

55% accept rate
Sorry about the edit, thought math + maths was a duplicate tag. – William Keller Sep 22 '08 at 12:43

10 Answers

vote up 13 vote down check

If you want to program in any functional programming language, it's essential. I mean, how useful is it to know about Turing machines? Well, if you write C, the language paradigm is quite close to Turing machines -- you have an instruction pointer and a current instruction, and the machine takes some action in the current state, and then ambles along to the next instruction.

In a functional language, you simply can't think like that -- that's not the language paradigm. You have to think back to lambda calculus, and how terms are evaluated there. It will be much harder for you to be effective in a functional language if you don't know lambda calculus.

link|flag
I sincerely doubt it is essential for function programming (as I noted in my own answer). Also, Turing machines are practically never (if ever) used to understand imperative programming. – mweerden Sep 22 '08 at 13:41
vote up 0 vote down

The benefits for me is a more compact synergistic programming. Stuff tends to flow horizontally more than vertically. Plus it is very useful for prototyping simple algorithms. Don't know if I am using it to its full potential but I find it very useful.

link|flag
vote up 1 vote down

The lambda calculus is a computational model, just like the turing machine. Thus, it is useful if you need to implement a certain evaluator for a language based on this model, however, in practice, you just need the basic idea (uh. place argument semantically correct in the body of a function?) and that's about it.

link|flag
vote up 5 vote down

One posible way to learn lambda calculus is

http://en.wikipedia.org/wiki/Lambda_Calculus

Or, if you want more, here is my blog dedicated to lambda calculus and stuff like that

http://weblogs.manas.com.ar/lziliani/

As every abstraction of computations, with lambda calculus you can model stuff used in most programming languages, like subtyping. For more about this, one of the best books with practical uses of lambda calculus in this sense is

http://www.amazon.com/Types-Programming-Languages-Benjamin-Pierce/dp/0262162091/ref=sr_1_1?ie=UTF8&s=books&qid=1222088714&sr=8-1

link|flag
vote up 2 vote down

I think the use of lambda calculus with respect to programming in practice is that it is a quite minimal system that captures the essence of abstraction (or "anonymous functions" or closures, if you will). Other than that I don't think it is generally essential except when you need to implement abstraction yourself (as Tetha (114646) mentioned).

I also completely disagree with Denis Bueno (114701) who says that it is essential for functional programming. It is perfectly well possible to define, use or understand a functional language without any lambda calculus at all. In order to understand the evaluation of terms in functional languages (which, in my opinion, somewhat contradicts the use of a functional language) you will most likely be better of learning about term rewrite systems.

link|flag
vote up 1 vote down

I agree with those that say it is theoretically possible to learn functional programming without learning the lambda calculus-- but what's the advantage of not learning the lambda calculus? It's not as if it takes a big investment of time.

Most likely, it will help you understand functional programming better. But even if it doesn't, it's still a cool thing worth learning. The Y-combinator is a thing of beauty.

link|flag
The lambda calculus is without any doubt a wonderful thing well worth learning. However, it truly surprises me to read these claims that it is helpful (or even essential) in understanding functional programming. I have a hard time figuring out how it would help. Am I missing something here? – mweerden Sep 26 '08 at 11:50
vote up 1 vote down

I'd also like to mention that if you're doing anything in the area of NLP, lambda calculus is at the foundation of a massive body of work in compositional semantics.

link|flag
vote up 1 vote down

The benefit of lambda calculus is that it's an extremely simple model of computation that is equivalent to a Turing machine. But while a Turing machine is more like assembly language, lambda calculus is more a like a high-level language. And if you learn Church encodings that will help you learn the programming technique called continuation-passing style, which is quite useful for implementing backtracking search and other neat tricks.

The main use of lambda calculus in practice is that it is a great laboratory tool for studying new programming-language ideas. If you have an idea for a new language feature, you can add the new feature to the lambda calculus and you get something that is expressive enough to program while being simple enough to study very thoroughly. This use is really more for language designers and theorists than for programmers.

Lambda calculus is also just very cool in its own right: just like knowing assembly language, it will deepen your understanding of computation. It's especially fun to *program a universal turing machine in the lambda calculus. But this is foundational mathematics, not practical programming.

link|flag
vote up 0 vote down

If you only want to be a technician and write programs to do things, then you don't really need to know lambda-calculus, finite-state machines, pushdown automata, finite-state machines, regular expressions, context-free grammar, discrete mathematics, etc.

But if you have curiosity about the deeper mysteries underlying this stuff, you can start to wonder how these questions might be answered. The concepts are beautiful and will expand your imagination. I also think they, incidentally, make one a better practicioner.

What got me hooked was Minsky's book Computation: Finite and Infinite Machines.

link|flag

Your Answer

Get an OpenID
or

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