Tagged Questions

λ-calculus is a formal system for function definition, function application and recursion which forms the mathematical basis of functional programming.

learn more… | top users | synonyms

27
votes
11answers
3k views

How helpful is knowing lambda calculus?

To all the people who know lambda calculus: What benefit has it bought you, regarding programming? Would you recommend that people learn it?
23
votes
1answer
513 views

Code exercising the unique possibilities of each edge of the lambda calculus

I can't explain the term lambda cube much better than Wikipedia does: [...] the λ-cube is a framework for exploring the axes of refinement in Coquand's calculus of constructions, starting from ...
17
votes
9answers
2k views

What is call/cc?

I've tried several times to grasp the concept of continuations and call/cc. Every single attempt was a failure. Can somebody please explain me these concepts, ideally with more realistic examples than ...
15
votes
3answers
537 views

What type of lambda calculus would Lisp loosely be an example of?

I'm trying to get a better grip on how types come into play in lambda calculus. Admittedly, a lot of the type theory stuff is over my head. Lisp is a dynamically typed language, would that roughly ...
14
votes
7answers
3k views

What are some resources for learning Lambda Calculus?

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 ...
12
votes
7answers
612 views

Rotate the first argument to a function to become nth

Given a function with n arguments, I want to rotate the first argument so that it becomes the nth argument. For example (in untyped lambda calculus): r(λa. a) = λa. a r(λa. λb. a b) ...
11
votes
2answers
276 views

What is a “free variable”?

(I'm sure this must have been answered on this site already, but search gets inundated with the concept of calling free() on a variable in C.) I came across the term "eta reduction," which was ...
11
votes
1answer
163 views

what's this equation with lambda notation “ m >> n = m >>= \_ -> n ” in monad's declaration?

class Monad m where return :: a -> m a (>>=) :: m a -> (a -> m b) -> m b (>>) :: m a -> m b -> m b m >> n = m >>= \_ -> n fail :: String ...
9
votes
3answers
322 views

Strategy for desugaring Haskell

I'm developing a virtual machine for purely functional programs, and I would like to be able to test and use the the wide variety of Haskell modules already available. The VM takes as input ...
8
votes
1answer
286 views

Arithmetic with Church Numerals

I am working through SICP, and the problem 2.6 has put me in something of a quandary. In dealing with Church numerals, the concept of encoding zero and 1 to be arbitrary functions that satisfy certain ...
8
votes
1answer
238 views

How to write an empty list using S, K and I combinators?

I know that: (cons [p] [q]) is ((s ((s i) (k [p]))) (k [q])) (car [lst]) is ([lst] k) (cdr [lst]) is ([lst] (k i)) I want to write a list like this (cons [a] (cons [b] (cons [c] [nil]))) , which ...
8
votes
1answer
619 views

Lambda calculus and church numerals confusion

I'm trying to understand the basics of lambda calculus and Church numerals. I have been doing a lot of reading and practising, but I seem to keep getting stuck with trying to see how some functions ...
7
votes
5answers
264 views

Reusing a Lambda function in Haskell

I'm supposed to take this code: f x y z = x^3 - g (x + g (y - g z) + g (z^2)) where g x = 2*x^2 + 10*x + 1 And rewrite it without where (or let). They mean to write it with a Lambda function (\x ...
7
votes
1answer
349 views

Is it possible to build a comparatively fast untyped lambda calculus machine?

Pure untyped lambda calculus is a powerful concept. However, building a machine or interpreter for real-world use is often described as (close to) impossible. I want to investigate this. Is it ...
7
votes
2answers
350 views

Lambda Calculus reduction

All, Below is the lambda expression which I am finding difficult to reduce i.e. I am not able to understand how to go about this problem. (λm λn λa λb . m (n a b) b) (λ f x. x) (λ f x. f x) This is ...
6
votes
1answer
137 views

What does the lambda calculus have to say about return values?

It is by now a well known theorem of the lambda calculus that any function taking two or more arguments can be written through currying as a chain of functions taking one argument: # Pseudo-code for ...
6
votes
4answers
200 views

Y-combinator in D?

I'm trying to learn the Y-combinator better (I sort of understand it in Scheme) and implement it in D 2.0, and I'm failing pretty miserably: auto fact = delegate(uint delegate(uint) recurse) { ...
6
votes
2answers
249 views

Subtraction of church numerals in haskell

I'm attempting to implement church numerals in Haskell, but I've hit a minor problem. Haskell complains of an infinite type with Occurs check: cannot construct the infinite type: t = (t -> t1) -> ...
5
votes
2answers
275 views

Y Combinator in Scheme using Define

In order to learn what a fixed-point combinator is and is used for, I wrote my own. But instead of writing it with strictly anonymous functions, like Wikipedia's example, I just used define: (define ...
5
votes
1answer
436 views

How would you implement a beta-reduction function in F#?

I am writing a lambda calculus in F#, but I am stuck on implementing the beta-reduction (substituting formal parameters with the actual parameters). (lambda x.e)f --> e[f/x] example of usage: ...
5
votes
4answers
243 views

Practical application of SKI calculus and BCKW

I can understand how to create and think about the SKI and BCKW calculus, but I am never able to find practical uses. Maybe I am not looking deeply enough? That is, I wonder if (an example only ...
4
votes
3answers
114 views

Embedding higher kinded types (monads!) into the untyped lambda calculus

It's possible to encode various types in the untyped lambda calculus through higher order functions. Examples: zero = λfx. x one = λfx. fx two = λfx. f(fx) three = λfx. f(f(fx)) etc ...
4
votes
1answer
41 views

lambda calculus: passing two values to a single parameter without currying

I cannot understand why the following beta reduction is permitted in untyped lambda calculus: (λx.x y) (u v) -> ((u v) y) Specifically I cannot understand how one can pass two parameters u and v ...
4
votes
1answer
104 views

S combinator in Erlang

I'm starting to learn lambda calculus and I need to implement I, S, K combinators in Erlang. Of course, S, K, I stands for: S = λxyz.xz(yz) K = λxy.x I = λx.x I have no problem understanding ...
4
votes
3answers
129 views

Calling/applying lambda vs. function call - the syntax in Ruby is different. Why?

I am kinda new to Ruby and still trying to understand some of the language design principles. IF I've got it right, the lambda expression call in Ruby must be with square braces, while the "regular" ...
4
votes
2answers
406 views

Typing the Y combinator

http://muaddibspace.blogspot.com/2008/01/type-inference-for-simply-typed-lambda.html is a concise definition of the simply typed lambda calculus in Prolog. It looks okay, but then he purports to ...
3
votes
2answers
205 views

Call by value in the lambda calculus

I'm working my way through Types and Programming Languages, and Pierce, for the call by value reduction strategy, gives the example of the term id (id (λz. id z)). The inner redex id (λz. id z) is ...
3
votes
3answers
280 views

What does eta reduce mean in the context of HLint

I'm looking at the tutorial http://haskell.org/haskellwiki/How_to_write_a_Haskell_program import System.Environment main :: IO () main = getArgs >>= print . haqify . head haqify s = "Haq! " ...
3
votes
1answer
292 views

“practical” lambda calculus book

I'm thinking about extending my toy untyped lambda calculus interpreter with a comprehensive system of semantic conventions and runtime support, to demonstrate how such a simple language can support ...
3
votes
2answers
306 views

SKI transform, how to program in a functional language

I am facing the following Prolog code. The expression [X]>>Y stands for the lambda expression lambda X.Y. The code eliminates the lambda and gives a combinatory expression over S, K and I: ...
3
votes
1answer
182 views

Pre-requisites for learning lambda calculus

Can anyone tell me what are the pre-requisites to learning lambda calculus (if any)? Thanks in advance
3
votes
1answer
132 views

IO::Lambda in Perl

I've been offloaded some maintenance tasks on a couple of Perl scripts. One of the requirements is to download a couple of dozen files (HTTP) in parallel. I went looking on CPAN for the easiest ...
3
votes
2answers
170 views

Y-Combinator in FT EDSL

I'm trying to figure out how to express the Y-Combitor in this Finally Tagless EDSL: class Symantics exp where lam :: (exp a -> exp b) -> exp (exp a -> exp b) app :: exp (exp a -> ...
3
votes
3answers
342 views

Query on Booleans in Lambda Calculus

I have following query on lambda calculus which am not able to understand: Here is the lambda calculus representation for the AND operator: lambda(m).lambda(n).lambda (a).lambda (b). m(n a b) b Can ...
3
votes
4answers
511 views

Convergence of Mathematics and Programming Languages

It seems that there is a strong movement for the convergence of mathematics and computer programming languages, this is notably evidenced by the influence of the lambda calculus on modern languages. ...
2
votes
1answer
78 views

Fixed point of K combinator

The K combinator is K := (λxy.x) and the fixed point combinator is Y := λf.(λx.f x x) (λx.f x x). I tried to calculate YK: YK = (λx.Kxx)(λx.Kxx) = (λx.x)(λx.x) = (λx.x) = I So because YK is the ...
2
votes
1answer
58 views

Expressing Church Numerals with Boost.Bind

Church numerals can be expressed in C++0x (C++11?) using the new lambda parts of the language using something like this: typedef function<int(int)> F; static const F id = [=](int x) { return x; ...
2
votes
2answers
261 views

Church Numerals in haskell

I am trying to print church numerals in haskell using the definions: 0 := λfx.x 1 := λfx.f x Haskell code: c0 = \f x -> x c1 = \f x -> f x When I enter it in the haskell console I get an ...
2
votes
1answer
285 views

First-order parametric polymorphism and first-order function

I am reading the paper Generics of a Higher Kind, the first sentence is With Java 5 and C# 2.0, first-order parametric polymorphism was introduced in mainstream object-oriented programming ...
2
votes
2answers
230 views

Why isn't lambda calculus used much (at all)?

Why is pure untyped lambda calculus often described as being impossible to use? With a suitable library of functions would it not be about the same as any other functional language?
2
votes
1answer
152 views

Lambda Calculus operators precedence

I have problems understanding lambda calculus operators precedence. For example the following code: lambda x.x z lambda y.x y is going to be: lambda x. (x (z lambda y. x y)) or lambda x. ...
2
votes
1answer
83 views

lambda calculus question - concrete

I have the following (f.x.f(f x))(y.y+1) = x.(y.y+1)((y.y+1) x) = x.(y.y+1)(x+1) = x.x+1+1 I don't understand why is it ok the last transformation? Shouldn't it be x.(y.y+1)(x+1)= y+1? Why can he ...
2
votes
1answer
373 views

How to parse lambda term

I would like to parse a lambda calculus. I dont know how to parse the term and respect parenthesis priority. Ex: (lx ly (x(xy)))(lx ly xxxy) I don't manage to find the good way to do this. ...
2
votes
3answers
253 views

Recommended books/articles for combinatory logic? [closed]

Infrequently I've seen the word "combinator" in Lisp/Scheme books or video lectures. But it just appears like a glint and I never pay attention to. However, while studying lambda calculus I found out ...
2
votes
2answers
137 views

Query on Lambda calculus

Continuing on exercises in book Lambda Calculus, the question is as follows: Suppose a symbol of the λ-calculus alphabet is always 0.5cm wide. Write down a λ-term with length less than 20 cm ...
2
votes
3answers
126 views

Associativity in Lambda calculus

I am working on the exercise questions of book The Lambda calculus. One of the questions that I am stuck is proving the following: Show that the application is not associative; in fact, x(yz) not ...
2
votes
1answer
361 views

lambda calculus for functional programming

in lambda calculus (λ x. λ y. λ s. λ z. x s (y s z)) is used for addition of two Church numerals how can we explain this, is there any good resource the lambda calculus for functional programming ? ...
1
vote
1answer
46 views

Lambda calculus predecessor function reduction steps

I am getting stuck with the Wikipedia description of the predecessor function in lambda calculus. What Wikipedia says is the following: PRED := λnfx.n (λgh.h (g f)) (λu.x) (λu.u) Can someone ...
1
vote
2answers
55 views

lambda calculus, expanded and compressed form have different beta-reductions? [closed]

given S=\x.\y.\z.x z (y z) and K=\x.\y.x I cannot understand how two beta equivalent forms of the same expression (S K K) yield different results in untyped lambda calculus if I start from the ...
1
vote
5answers
141 views

Functional Language for Untyped Lambda Calculus

Is there an interpreter (or compiler) for untyped lambda calculus? (According to this thread it's possible.) I recognize that it would be of little use as a programming language, particularly if much ...

1 2