Lambda Calculus Examples (2009) [pdf]
ics.uci.edu
Lambda Calculus Examples (2009) [pdf]
1–10 of 19 posts
Re: Lambda Calculus Examples (2009) [pdf]
#2Another good reference, that also introduces some PLT notation, is Loh 2001, "Introduction to the Dependently-Typed Lambda Calculus" [1], as well as the textbook by Pierce [2], which has a formally-verified spiritual successor [3].
[1] http://www.cs.ru.nl/~wouters/Publications/Tutorial.pdf [2] https://www.cis.upenn.edu/~bcpierce/tapl/ [3] https://softwarefoundations.cis.upenn.edu/plf-current/index....
Re: Lambda Calculus Examples (2009) [pdf]
#3Re: Lambda Calculus Examples (2009) [pdf]
#4related: https://en.wikipedia.org/wiki/To_Mock_a_Mockingbird
And the obligatory: https://dkeenan.com/Lambda/
Re: Lambda Calculus Examples (2009) [pdf]
#5Ha! This paper contains the definition of Y-Combinator:
> Y combinator: Y = λt. (λx. t (x x)) (λx. t (x x))
#TIL!
Re: Lambda Calculus Examples (2009) [pdf]
#6Ha! This paper contains the definition of Y-Combinator: > Y combinator: Y = λt. (λx. t (x x)) (λx. t (x x)) #TIL!
Which enables recursion
Re: Lambda Calculus Examples (2009) [pdf]
#7What's a good way for someone without much of a background in maths to start grokking this? I've had had several encounters with the lambda calculus over the years (including a coworker who is absolutely in love with it), but it's never really clicked for me in any meaningful way.
Re: Lambda Calculus Examples (2009) [pdf]
#8What's a good way for someone without much of a background in maths to start grokking this? I've had had several encounters with the lambda calculus over the years (including a coworker who is absolutely in love with it), but it's never really clicked for me in any meaningful way.
Here's one great introduction - A Flock of Functions: Lambda Calculus and Combinatory Logic in JavaScript | Gabriel Lebec @ DevTalks
Re: Lambda Calculus Examples (2009) [pdf]
#9For someone fluent in Python, David Beazley gives a brilliant introduction to lambda calculus here: https://www.youtube.com/watch?v=pkCLMl0e_0k This is great fun to follow through on a rainy afternoon!
Re: Lambda Calculus Examples (2009) [pdf]
#10Factorials in pure lambda calculus: