Lambda calculus
In mathematical logic, the lambda calculus (also written as λ-calculus) is a formal system for expressing computation based on function abstraction and application using variable binding and substitution. Untyped lambda calculus, the topic of this article, is a universal machine, i.e. a model of computation that can be used to simulate any Turing machine (and vice versa). It was introduced by the mathematician Alonzo Church in the 1930s as part of his research into the foundations of mathematics. In 1936, Church found a formulation which was logically consistent, and documented it in 1940.
Definition
Script error: No such module "Labelled list hatnote". The lambda calculus consists of a language of lambda terms, which are defined by a formal syntax, and a set of transformation rules for manipulating those terms. In BNF, the syntax is where variables x,y,z range over an infinite set of names. Terms M, N, t, s, e, f range over all lambda terms. This corresponds to the following inductive definition:
- A variable x is a valid lambda term.
- An abstraction is a lambda term where t is a lambda term, referred to as the abstraction's body, and x is the abstraction's parameter variable,
- An application is a lambda term where t and s are lambda terms.
A lambda term is syntactically valid if it can be obtained by repeated application of these three rules. For convenience, parentheses can often be omitted when writing a lambda term—see Lambda calculus definition § Notation for details.
Within lambda terms, any occurrence of a variable that is not a parameter of some enclosing λ is said to be free. Any free occurrence of in a term is bound in . Any free occurrence of any other variable within remains free in .
For example, in the term , both and occur free. In , is free, but in the body (i.e. after the dot) is not free, and is said to be bound (to the parameter). While is free in , it is bound in . There are two occurrences of in – one is bound, and the other is free.
FV(M) is the set of free variables of M, i.e. such variables that occur free in M at least once. It can be defined inductively as follows:
The notation denotes capture-avoiding substitution: substituting N for every free occurrence of x in M, while avoiding variable capture.[a] This operation is defined inductively as follows:
- ; if .
- .
- has three cases:
- If , becomes ( is bound; no change).
- If , becomes .
- If , first α-rename to with fresh to avoid name collisions, then continue as above. It becomes with .
There are several notions of "equivalence" and "reduction" that make it possible to reduce lambda terms to equivalent lambda terms.[3]
- α-conversion captures the intuition that the particular choice of a bound variable, in an abstraction, does not (usually) matter. If , then the terms and are considered alpha-equivalent, written . The equivalence relation is the smallest congruence relation on lambda terms generated by this rule. For instance, and are alpha-equivalent lambda terms.
- The β-reduction rule states that a β-redex, an application of the form , reduces to the term .[b] For example, for every , . This demonstrates that really is the identity. Similarly, , which demonstrates that is a constant function.
- η-conversion expresses extensionality and converts between and whenever does not appear free in . It is often omitted in many treatments of lambda calculus.
The term redex, short for reducible expression, refers to subterms that can be reduced by one of the reduction rules. For example, (λx.M) N is a β-redex in expressing the substitution of N for x in M. The expression to which a redex reduces is called its reduct; the reduct of (λx.M) N is M[x := N].
Explanation and applications
Lambda calculus is Turing complete, that is, it is a universal model of computation that can be used to simulate any Turing machine.[4] Its namesake, the Greek letter lambda (λ), is used in lambda expressions and lambda terms to denote binding a variable in a function.
Lambda calculus may be untyped or typed. In typed lambda calculus, functions can be applied only if they are capable of accepting the given input's "type" of data. Typed lambda calculi are strictly weaker than the untyped lambda calculus, which is the primary subject of this article, in the sense that typed lambda calculi can express less than the untyped calculus can. On the other hand, more things can be proven with typed lambda calculi. For example, in simply typed lambda calculus, it is a theorem that every evaluation strategy terminates for every simply typed lambda-term,[5] whereas evaluation of untyped lambda-terms need not terminate (see below). One reason there are many different typed lambda calculi has been the desire to do more (of what the untyped calculus can do) without giving up on being able to prove strong theorems about the calculus.
Lambda calculus has applications in many different areas in mathematics, philosophy,[6] linguistics,[7][8] and computer science.[9][10] Lambda calculus has played an important role in the development of the theory of programming languages. Functional programming languages implement lambda calculus. Lambda calculus is also a current research topic in category theory.[11][failed verification]
History
Lambda calculus was introduced by mathematician Alonzo Church in the 1930s as part of an investigation into the foundations of mathematics.[12][c] The original system was shown to be logically inconsistent in 1935 when Stephen Kleene and J. B. Rosser developed the Kleene–Rosser paradox.[13][14]
Subsequently, in 1936 Church isolated and published just the portion relevant to computation, what is now called the untyped lambda calculus.[15] In 1940, he also introduced a computationally weaker, but logically consistent system, known as the simply typed lambda calculus.[16]
Until the 1960s when its relation to programming languages was clarified, the lambda calculus was only a formalism. Thanks to Richard Montague and other linguists' applications in the semantics of natural language, the lambda calculus has begun to enjoy a respectable place in both linguistics[17] and computer science.[18]
Origin of the λ symbol
There is some uncertainty over the reason for Church's use of the Greek letter lambda (λ) as the notation for function-abstraction in the lambda calculus, perhaps in part due to conflicting explanations by Church himself. According to Cardone and Hindley (2006):
By the way, why did Church choose the notation "λ"? In [an unpublished 1964 letter to Harald Dickson] he stated clearly that it came from the notation "" used for class-abstraction by Whitehead and Russell, by first modifying "" to "" to distinguish function-abstraction from class-abstraction, and then changing "" to "λ" for ease of printing.
This origin was also reported in [Rosser, 1984, p.338]. On the other hand, in his later years Church told two enquirers that the choice was more accidental: a symbol was needed and λ just happened to be chosen.
Dana Scott has also addressed this question in various public lectures.[19] Scott recounts that he once posed a question about the origin of the lambda symbol to Church's former student and son-in-law John W. Addison Jr., who then wrote his father-in-law a postcard:
Dear Professor Church,
Russell had the iota operator, Hilbert had the epsilon operator. Why did you choose lambda for your operator?
According to Scott, Church's entire response consisted of returning the postcard with the following annotation: "eeny, meeny, miny, moe".
Motivation
Computable functions are a fundamental concept within computer science and mathematics. The lambda calculus provides simple semantics for computation which are useful for formally studying properties of computation. The lambda calculus incorporates two simplifications that make its semantics simple. The first simplification is that the lambda calculus treats functions "anonymously"; it does not give them explicit names. For example, the function
can be rewritten in anonymous form as
(which is read as "a tuple of x and y is mapped to ").[d] Similarly, the function
can be rewritten in anonymous form as
where the input is simply mapped to itself.[d]
The second simplification is that the lambda calculus only uses functions of a single input. An ordinary function that requires two inputs, for instance the function, can be reworked into an equivalent function that accepts a single input, and as output returns another function, that in turn accepts a single input. For example,
can be reworked into
This method, known as currying, transforms a function that takes multiple arguments into a chain of functions each with a single argument.
Function application of the function to the arguments (5, 2), yields at once
- ,
whereas evaluation of the curried version requires one more step
- // the definition of has been used with in the inner expression. This is like β-reduction.
- // the definition of has been used with . Again, similar to β-reduction.
to arrive at the same result.
In lambda calculus, functions are taken to be 'first class values', so functions may be used as the inputs, or be returned as outputs from other functions. For example, the lambda term represents the identity function, . Further, represents the constant function , the function that always returns , no matter the input. As an example of a function operating on functions, the function composition can be defined as .
Normal forms and confluence
Script error: No such module "labelled list hatnote". It can be shown that β-reduction is confluent when working up to α-conversion (i.e. we consider two normal forms to be equal if it is possible to α-convert one into the other). If repeated application of the reduction steps eventually terminates, then by the Church–Rosser theorem it will produce a unique β-normal form. However, the untyped lambda calculus as a rewriting rule under β-reduction is neither strongly normalising nor weakly normalising; there are terms with no normal form such as Page Template:Mono/styles.css has no content.Ω.
Considering individual terms, both strongly normalising terms and weakly normalising terms have a unique normal form. For strongly normalising terms, any reduction strategy is guaranteed to yield the normal form, whereas for weakly normalising terms, some reduction strategies may fail to find it.
Encoding datatypes
Script error: No such module "labelled list hatnote". The basic lambda calculus may be used to model arithmetic, Booleans, data structures, and recursion, as illustrated in the following sub-sections i, ii, iii, and § iv.
Arithmetic in lambda calculus
There are several possible ways to define the natural numbers in lambda calculus, but by far the most common are the Church numerals, which can be defined as follows:
- Page Template:Mono/styles.css has no content.0 := λf.λx.x
- Page Template:Mono/styles.css has no content.1 := λf.λx.f x
- Page Template:Mono/styles.css has no content.2 := λf.λx.f (f x)
- Page Template:Mono/styles.css has no content.3 := λf.λx.f (f (f x))
and so on. Or using an alternative syntax allowing multiple uncurried arguments to a function:
- Page Template:Mono/styles.css has no content.0 := λfx.x
- Page Template:Mono/styles.css has no content.1 := λfx.f x
- Page Template:Mono/styles.css has no content.2 := λfx.f (f x)
- Page Template:Mono/styles.css has no content.3 := λfx.f (f (f x))
A Church numeral is a higher-order function—it takes a single-argument function Page Template:Mono/styles.css has no content.f, and returns another single-argument function. The Church numeral Page Template:Mono/styles.css has no content.n is a function that takes a function Page Template:Mono/styles.css has no content.f as argument and returns the Page Template:Mono/styles.css has no content.n-th composition of Page Template:Mono/styles.css has no content.f, i.e. the function Page Template:Mono/styles.css has no content.f composed with itself Page Template:Mono/styles.css has no content.n times. This is denoted Page Template:Mono/styles.css has no content.f(n) and is in fact the Page Template:Mono/styles.css has no content.n-th power of Page Template:Mono/styles.css has no content.f (considered as an operator); Page Template:Mono/styles.css has no content.f(0) is defined to be the identity function. Functional composition is associative, and so, such repeated compositions of a single function Page Template:Mono/styles.css has no content.f obey two laws of exponents, Page Template:Mono/styles.css has no content.f(m)∘f(n) = f(m+n) and Page Template:Mono/styles.css has no content.(f(n))(m) = f(m*n), which is why these numerals can be used for arithmetic. (In Church's original lambda calculus, the formal parameter of a lambda expression was required to occur at least once in the function body, which made the above definition of Page Template:Mono/styles.css has no content.0 impossible.)
One way of thinking about the Church numeral Page Template:Mono/styles.css has no content.n, which is often useful when analyzing programs, is as an instruction 'repeat n times'. For example, using the Page Template:Mono/styles.css has no content.PAIR and Page Template:Mono/styles.css has no content.NIL functions defined below, one can define a function that constructs a (linked) list of n elements all equal to x by repeating 'prepend another x element' n times, starting from an empty list. The lambda term
- Page Template:Mono/styles.css has no content.λn.λx.n (PAIR x) NIL
creates, given a Church numeral Page Template:Mono/styles.css has no content.n and some Page Template:Mono/styles.css has no content.x, a sequence of n applications
- Page Template:Mono/styles.css has no content.PAIR x (PAIR x...(PAIR x NIL)...)
By varying what is being repeated, and what argument(s) that function being repeated is applied to, a great many different effects can be achieved.
We can define a successor function, which takes a Church numeral Page Template:Mono/styles.css has no content.n and returns its successor Page Template:Mono/styles.css has no content.n + 1 by performing one additional application of the function Page Template:Mono/styles.css has no content.f it is supplied with, where Page Template:Mono/styles.css has no content.(n f x) means "n applications of f starting from x":
- Page Template:Mono/styles.css has no content.SUCC := λn.λf.λx.f (n f x)
Because the Page Template:Mono/styles.css has no content.m-th composition of Page Template:Mono/styles.css has no content.f composed with the Page Template:Mono/styles.css has no content.n-th composition of Page Template:Mono/styles.css has no content.f gives the Page Template:Mono/styles.css has no content.m+n-th composition of Page Template:Mono/styles.css has no content.f, Page Template:Mono/styles.css has no content.f(m)∘f(n) = f(m+n), addition can be defined as
- Page Template:Mono/styles.css has no content.PLUS := λm.λn.λf.λx.m f (n f x)
Page Template:Mono/styles.css has no content.PLUS can be thought of as a function taking two natural numbers as arguments and returning a natural number; it can be verified that
- Page Template:Mono/styles.css has no content.PLUS 2 3
and
- Page Template:Mono/styles.css has no content.5
are beta-equivalent lambda expressions. Since adding Page Template:Mono/styles.css has no content.m to a number can be accomplished by repeating the successor operation Page Template:Mono/styles.css has no content.m times, an alternative definition is:
- Page Template:Mono/styles.css has no content.PLUS′ := λm.λn.m SUCC n [20]
Similarly, following Page Template:Mono/styles.css has no content.(f(n))(m) = f(m*n), multiplication can be defined as
- Page Template:Mono/styles.css has no content.MULT := λm.λn.λf.m (n f)[21]
Thus multiplication of Church numerals is simply their composition as functions. Alternatively
- Page Template:Mono/styles.css has no content.MULT′ := λm.λn.m (PLUS n) 0
since multiplying Page Template:Mono/styles.css has no content.m and Page Template:Mono/styles.css has no content.n is the same as adding Page Template:Mono/styles.css has no content.n repeatedly, Page Template:Mono/styles.css has no content.m times, starting from zero.
Exponentiation, being the repeated multiplication of a number with itself, translates as a repeated composition of a Church numeral with itself, as a function. And repeated composition is what Church numerals are:
- Page Template:Mono/styles.css has no content.POW := λb.λn.n b[1]
Alternatively here as well,
- Page Template:Mono/styles.css has no content.POW′ := λb.λn.n (MULT b) 1
Simplifying, it becomes
- Page Template:Mono/styles.css has no content.POW′′ := λb.λn.λf.n b f
but that is just an eta-expanded version of Page Template:Mono/styles.css has no content.POW we already have, above.
The predecessor function, specified by two equations Page Template:Mono/styles.css has no content.PRED (SUCC n) = n and Page Template:Mono/styles.css has no content.PRED 0 = 0, is considerably more involved. The formula
- Page Template:Mono/styles.css has no content.PRED := λn.λf.λx.n (λg.λh.h (g f)) (λu.x) (λu.u)
can be validated by showing inductively that if T denotes Page Template:Mono/styles.css has no content.(λg.λh.h (g f)), then Page Template:Mono/styles.css has no content.T(n)(λu.x) = (λh.h(f(n−1)(x))) for Page Template:Mono/styles.css has no content.n > 0. Two other definitions of Page Template:Mono/styles.css has no content.PRED are given below, one using conditionals and the other using pairs. With the predecessor function, subtraction is straightforward. Defining
- Page Template:Mono/styles.css has no content.SUB := λm.λn.n PRED m,
Page Template:Mono/styles.css has no content.SUB m n yields Page Template:Mono/styles.css has no content.m − n when Page Template:Mono/styles.css has no content.m > n and Page Template:Mono/styles.css has no content.0 otherwise.
Logic and predicates
By convention, the following two definitions (known as Church Booleans) are used for the Boolean values Page Template:Mono/styles.css has no content.TRUE and Page Template:Mono/styles.css has no content.FALSE:
- Page Template:Mono/styles.css has no content.TRUE := λx.λy.x
- Page Template:Mono/styles.css has no content.FALSE := λx.λy.y
Then, with these two lambda terms, we can define some logic operators (these are just possible formulations; other expressions could be equally correct):[22]
- Page Template:Mono/styles.css has no content.AND := λp.λq.p q p
- Page Template:Mono/styles.css has no content.OR := λp.λq.p p q
- Page Template:Mono/styles.css has no content.NOT := λp.p FALSE TRUE
- Page Template:Mono/styles.css has no content.IFTHENELSE := λp.λa.λb.p a b
We are now able to compute some logic functions, for example:
- Page Template:Mono/styles.css has no content.AND TRUE FALSE
- Page Template:Mono/styles.css has no content.≡ (λp.λq.p q p) TRUE FALSE →β TRUE FALSE TRUE
- Page Template:Mono/styles.css has no content.≡ (λx.λy.x) FALSE TRUE →β FALSE
and we see that Page Template:Mono/styles.css has no content.AND TRUE FALSE is equivalent to Page Template:Mono/styles.css has no content.FALSE.
A predicate is a function that returns a Boolean value. The most fundamental predicate is Page Template:Mono/styles.css has no content.ISZERO, which returns Page Template:Mono/styles.css has no content.TRUE if its argument is the Church numeral Page Template:Mono/styles.css has no content.0, but Page Template:Mono/styles.css has no content.FALSE if its argument were any other Church numeral:
- Page Template:Mono/styles.css has no content.ISZERO := λn.n (λx.FALSE) TRUE
The following predicate tests whether the first argument is less-than-or-equal-to the second:
- Page Template:Mono/styles.css has no content.LEQ := λm.λn.ISZERO (SUB m n),
and since Page Template:Mono/styles.css has no content.m = n if Page Template:Mono/styles.css has no content.LEQ m n and Page Template:Mono/styles.css has no content.LEQ n m, it is straightforward to build a predicate for numerical equality.
The availability of predicates and the above definition of Page Template:Mono/styles.css has no content.TRUE and Page Template:Mono/styles.css has no content.FALSE make it convenient to write "if-then-else" expressions in lambda calculus. For example, the predecessor function can be defined as:
- Page Template:Mono/styles.css has no content.PRED := λn.n (λg.λk.ISZERO (g 1) k (PLUS (g k) 1)) (λv.0) 0
which can be verified by showing inductively that Page Template:Mono/styles.css has no content.n (λg.λk.ISZERO (g 1) k (PLUS (g k) 1)) (λv.0) is the add Page Template:Mono/styles.css has no content.n − 1 function for Page Template:Mono/styles.css has no content.n > 0.
Pairs
A pair (2-tuple) encapsulates two values, and is represented by an abstraction that expects a handler to which it will pass the two values. Page Template:Mono/styles.css has no content.FIRST returns the first element of the pair, and Page Template:Mono/styles.css has no content.SECOND returns the second.
- Page Template:Mono/styles.css has no content.PAIR := λx.λy.λf.f x y
- Page Template:Mono/styles.css has no content.FIRST := λp.p (λx.λy.x)
- Page Template:Mono/styles.css has no content.SECOND := λp.p (λx.λy.y)
A linked list can either be NIL, representing the empty list, or a Page Template:Mono/styles.css has no content.PAIR of an element (so-called head) and a smaller list (tail). The predicate Page Template:Mono/styles.css has no content.NULL returns Page Template:Mono/styles.css has no content.TRUE for the value Page Template:Mono/styles.css has no content.NIL, and Page Template:Mono/styles.css has no content.FALSE for a non-empty list:
- Page Template:Mono/styles.css has no content.NIL := λf.TRUE
- Page Template:Mono/styles.css has no content.NULL := λp.p (λx.λy.FALSE)
Alternatively, with Page Template:Mono/styles.css has no content.NIL := FALSE, the construct Page Template:Mono/styles.css has no content.(l (λh.λt.λz. ...h...t...) _on_nil_) obviates the need for an explicit NULL test:
- Page Template:Mono/styles.css has no content.NIL := λx.λy.y
- Page Template:Mono/styles.css has no content.NULL := λl.l (λh.λt.λz.FALSE) TRUE
As an example of the use of pairs, the shift-and-increment function that maps Page Template:Mono/styles.css has no content.(m, n) to Page Template:Mono/styles.css has no content.(n, n + 1) can be defined as
- Page Template:Mono/styles.css has no content.Φ := λp.PAIR (SECOND p) (SUCC (SECOND p))
- Page Template:Mono/styles.css has no content.Ψ := λfp.PAIR (SECOND p) (f (SECOND p))
which allows us to give perhaps the most transparent version of the predecessor function:
- Page Template:Mono/styles.css has no content.PRED := λn.FIRST (n (Ψ SUCC) (PAIR 0 0))
- Page Template:Mono/styles.css has no content. = λnfx.FIRST (n (Ψ f) (PAIR x x))
Substituting the definitions and simplifying the resulting expression leads to streamlined definitions
- Page Template:Mono/styles.css has no content. = λnfx.n (λrab.rb(fb)) (λab.a) x x
- Page Template:Mono/styles.css has no content. = λnfx.n (λrij.j(rjf)) (λij.x) I I
- Page Template:Mono/styles.css has no content. = λnfx.n (λrij.i(rjj)) (λij.x) I f
- Page Template:Mono/styles.css has no content. = λnfx.n (λri.i(rf)) (λi.x) I
(where Page Template:Mono/styles.css has no content.I := λx.x ), evidently leading back to the original.
Additional programming techniques
There is a considerable body of programming idioms for lambda calculus. Many of these were originally developed in the context of using lambda calculus as a foundation for programming language semantics, effectively using lambda calculus as a low-level programming language. Because several programming languages include the lambda calculus (or something very similar) as a fragment, these techniques also see use in practical programming, but may then be perceived as obscure or foreign.
Named constants
In lambda calculus, a library would take the form of a collection of previously defined functions, which as lambda-terms are merely particular constants. The pure lambda calculus does not have a concept of named constants since all atomic lambda-terms are variables, but one can emulate having named constants by setting aside a variable as the name of the constant, using abstraction to bind that variable in the main body, and apply that abstraction to the intended definition. Thus to use Page Template:Mono/styles.css has no content.f to mean N (some explicit lambda-term) in M (another lambda-term, the "main program"), one can say
- Page Template:Mono/styles.css has no content.(λf.MPage Template:Mono/styles.css has no content.) N
Authors often introduce syntactic sugar, such as Page Template:Mono/styles.css has no content.let,[e] to permit writing the above in the more intuitive order
- Page Template:Mono/styles.css has no content.let f = N Page Template:Mono/styles.css has no content.in M
By chaining such definitions, one can write a lambda calculus "program" as zero or more function definitions, followed by one lambda-term using those functions that constitutes the main body of the program.
A notable restriction of this Page Template:Mono/styles.css has no content.let is that the name Page Template:Mono/styles.css has no content.f may not be referenced in N, for N is outside the scope of the abstraction binding Page Template:Mono/styles.css has no content.f, which is M; this means a recursive function definition cannot be written with Page Template:Mono/styles.css has no content.let. The Page Template:Mono/styles.css has no content.letrec[f] construction would allow writing recursive function definitions, where the scope of the abstraction binding Page Template:Mono/styles.css has no content.f includes N as well as M. Or self-application a-la that which leads to Page Template:Mono/styles.css has no content.Y combinator could be used.
Recursion and fixed points
Script error: No such module "labelled list hatnote". Script error: No such module "Labelled list hatnote". Recursion is when a function invokes itself. What would a value be which were to represent such a function? It has to refer to itself somehow inside itself, just as the definition refers to itself inside itself. If this value were to contain itself by value, it would have to be of infinite size, which is impossible. Other notations, which support recursion natively, overcome this by referring to the function by name inside its definition. Lambda calculus cannot express this, since in it there simply are no names for terms to begin with, only arguments' names, i.e. parameters in abstractions. Thus, a lambda expression can receive itself as its argument and refer to (a copy of) itself via the corresponding parameter's name. This will work fine in case it was indeed called with itself as an argument. For example, Page Template:Mono/styles.css has no content.(λx.x x) E = (E E) will express recursion when E is an abstraction which is applying its parameter to itself inside its body to express a recursive call. Since this parameter receives E as its value, its self-application will be the same Page Template:Mono/styles.css has no content.(E E) again.
As a concrete example, consider the factorial function Page Template:Mono/styles.css has no content.F(n), recursively defined by
- Page Template:Mono/styles.css has no content.F(n) = 1, if n = 0; else n × F(n − 1).
In the lambda expression which is to represent this function, a parameter (typically the first one) will be assumed to receive the lambda expression itself as its value, so that calling it with itself as its first argument will amount to the recursive call. Thus to achieve recursion, the intended-as-self-referencing argument (called Page Template:Mono/styles.css has no content.s here, reminiscent of "self", or "self-applying") must always be passed to itself within the function body at a recursive call point:
- Page Template:Mono/styles.css has no content.E := λs. λn.(1, if n = 0; else n × (s s (n−1)))
- with Page Template:Mono/styles.css has no content.s s n = F n = E E n to hold, so Page Template:Mono/styles.css has no content.s = E and
- Page Template:Mono/styles.css has no content.F := (λx.x x) E = E E
and we have
- Page Template:Mono/styles.css has no content.F = E E = λn.(1, if n = 0; else n × (E E (n−1)))
Here Page Template:Mono/styles.css has no content.s s becomes the same Page Template:Mono/styles.css has no content. (E E) inside the result of the application Page Template:Mono/styles.css has no content. (E E), and using the same function for a call is the definition of what recursion is. The self-application achieves replication here, passing the function's lambda expression on to the next invocation as an argument value, making it available to be referenced there by the parameter name Page Template:Mono/styles.css has no content.s to be called via the self-application Page Template:Mono/styles.css has no content.s s, again and again as needed, each time re-creating the lambda-term Page Template:Mono/styles.css has no content. F = E E.
The application is an additional step just as the name lookup would be. It has the same delaying effect. Instead of having Page Template:Mono/styles.css has no content. F inside itself as a whole up-front, delaying its re-creation until the next call makes its existence possible by having two finite lambda-terms Page Template:Mono/styles.css has no content. E inside it re-create it on the fly later as needed.
This self-applicational approach solves it, but requires re-writing each recursive call as a self-application. We would like to have a generic solution, without the need for any re-writes:
- Page Template:Mono/styles.css has no content.G := λr. λn.(1, if n = 0; else n × (r (n−1)))
- with Page Template:Mono/styles.css has no content.r x = F x = G r x to hold, so Page Template:Mono/styles.css has no content.r = G r =: FIX G and
- Page Template:Mono/styles.css has no content.F := FIX G where Page Template:Mono/styles.css has no content.FIX g = (r where r = g r) = g (FIX g)
- so that Page Template:Mono/styles.css has no content.FIX G = G (FIX G) = (λn.(1, if n = 0; else n × ((FIX G) (n−1))))
Given a lambda term with first argument representing recursive call (e.g. Page Template:Mono/styles.css has no content.G here), the fixed-point combinator Page Template:Mono/styles.css has no content.FIX will return a self-replicating lambda expression representing the recursive function (here, Page Template:Mono/styles.css has no content.F). The function does not need to be explicitly passed to itself at any point, for the self-replication is arranged in advance, when it is created, to be done each time it is called. Thus the original lambda expression Page Template:Mono/styles.css has no content.(FIX G) is re-created inside itself, at call-point, achieving self-reference.
In fact, there are many possible definitions for this Page Template:Mono/styles.css has no content.FIX operator, the simplest of them being:
- Page Template:Mono/styles.css has no content.Y := λg.(λx.g (x x)) (λx.g (x x))
In the lambda calculus, Page Template:Mono/styles.css has no content.Y g is a fixed-point of Page Template:Mono/styles.css has no content.g, as it expands to:
- Page Template:Mono/styles.css has no content.Y g
- Page Template:Mono/styles.css has no content.~> (λh.(λx.h (x x)) (λx.h (x x))) g
- Page Template:Mono/styles.css has no content.~> (λx.g (x x)) (λx.g (x x))
- Page Template:Mono/styles.css has no content.~> g ((λx.g (x x)) (λx.g (x x)))
- Page Template:Mono/styles.css has no content.<~ g (Y g)
Now, to perform the recursive call to the factorial function for an argument n, we would simply call Page Template:Mono/styles.css has no content.(Y G) n. Given n = 4, for example, this gives: Template:Smalldiv Every recursively defined function can be seen as a fixed point of some suitably defined higher order function (also known as functional) closing over the recursive call with an extra argument. Therefore, using Page Template:Mono/styles.css has no content.Y, every recursive function can be expressed as a lambda expression. In particular, we can now cleanly define the subtraction, multiplication, and comparison predicates of natural numbers, using recursion.
When Y combinator is coded directly in a strict programming language, the applicative order of evaluation used in such languages will cause an attempt to fully expand the internal self-application prematurely, causing stack overflow or, in case of tail call optimization, indefinite looping.[24] A delayed variant of Y, the Z combinator, can be used in such languages. It has the internal self-application hidden behind an extra abstraction through eta-expansion, as , thus preventing its premature expansion:[25]
Standard terms
Certain terms have commonly accepted names:[26][27][28]
- Page Template:Mono/styles.css has no content.I := λx.x
- Page Template:Mono/styles.css has no content.S := λx.λy.λz.x z (y z)
- Page Template:Mono/styles.css has no content.K := λx.λy.x
- Page Template:Mono/styles.css has no content.B := λx.λy.λz.x (y z)
- Page Template:Mono/styles.css has no content.C := λx.λy.λz.x z y
- Page Template:Mono/styles.css has no content.W := λx.λy.x y y
- Page Template:Mono/styles.css has no content.ω or Δ or U := λx.x x
- Page Template:Mono/styles.css has no content.Ω := ω ω
Page Template:Mono/styles.css has no content.I is the identity function. Page Template:Mono/styles.css has no content.SK and Page Template:Mono/styles.css has no content.BCKW form complete combinator calculus systems that can express any lambda term - see the next section. Page Template:Mono/styles.css has no content.Ω is Page Template:Mono/styles.css has no content.UU, the smallest term that has no normal form. Page Template:Mono/styles.css has no content.YI is another such term. Page Template:Mono/styles.css has no content.Y is standard and defined above, and can also be defined as Page Template:Mono/styles.css has no content.Y=BU(CBU), so that Page Template:Mono/styles.css has no content.Yg=g(Yg). Page Template:Mono/styles.css has no content.TRUE and Page Template:Mono/styles.css has no content.FALSE defined above are commonly abbreviated as Page Template:Mono/styles.css has no content.T and Page Template:Mono/styles.css has no content.F.
Abstraction elimination
Script error: No such module "labelled list hatnote". If N is a lambda-term without abstraction, but possibly containing named constants (combinators), then there exists a lambda-term T(Page Template:Mono/styles.css has no content.x,N) which is equivalent to Page Template:Mono/styles.css has no content.λx.N but lacks abstraction (except as part of the named constants, if these are considered non-atomic). This can also be viewed as anonymising variables, as T(Page Template:Mono/styles.css has no content.x,N) removes all occurrences of Page Template:Mono/styles.css has no content.x from N, while still allowing argument values to be substituted into the positions where N contains an Page Template:Mono/styles.css has no content.x. The conversion function T can be defined by:
- T(Page Template:Mono/styles.css has no content.x, Page Template:Mono/styles.css has no content.x) := I
- T(Page Template:Mono/styles.css has no content.x, N) := K N if Page Template:Mono/styles.css has no content.x is not free in N.
- T(Page Template:Mono/styles.css has no content.x, M N) := S T(Page Template:Mono/styles.css has no content.x, M) T(Page Template:Mono/styles.css has no content.x, N)
In either case, a term of the form T(Page Template:Mono/styles.css has no content.x,N) P is reduced by having the initial combinator I, K, or S grab the argument P, just like β-reduction of Page Template:Mono/styles.css has no content.(λx.NPage Template:Mono/styles.css has no content.) P would do. I returns that argument. K N throws the argument away, just like Page Template:Mono/styles.css has no content.(λx.NPage Template:Mono/styles.css has no content.) does when Page Template:Mono/styles.css has no content.x has no free occurrence in N. S passes the argument on to both subterms of the application, and then applies the result of the first to the result of the second, just like Page Template:Mono/styles.css has no content.(λx.MNPage Template:Mono/styles.css has no content.)P is the same as Page Template:Mono/styles.css has no content.((λx.MPage Template:Mono/styles.css has no content.)P) Page Template:Mono/styles.css has no content.((λx.NPage Template:Mono/styles.css has no content.)P).
The combinators B and C are similar to S, but pass the argument on to only one subterm of an application (B to the "argument" subterm and C to the "function" subterm), thus saving a subsequent K if there is no occurrence of Page Template:Mono/styles.css has no content.x in one subterm. In comparison to B and C, the S combinator actually conflates two functionalities: rearranging arguments, and duplicating an argument so that it may be used in two places. The W combinator does only the latter, yielding the B, C, K, W system as an alternative to SKI combinator calculus.
Typed lambda calculus
Script error: No such module "labelled list hatnote". A typed lambda calculus is a typed formalism that uses the lambda-symbol () to denote anonymous function abstraction. In this context, types are usually objects of a syntactic nature that are assigned to lambda terms; the exact nature of a type depends on the calculus considered (see Kinds of typed lambda calculi). From a certain point of view, typed lambda calculi can be seen as refinements of the untyped lambda calculus but from another point of view, they can also be considered the more fundamental theory and untyped lambda calculus a special case with only one type.[29]
Typed lambda calculi are foundational programming languages and are the base of typed functional programming languages such as ML and Haskell and, more indirectly, typed imperative programming languages. Typed lambda calculi play an important role in the design of type systems for programming languages; here typability usually captures desirable properties of the program, e.g., the program will not cause a memory access violation.
Typed lambda calculi are closely related to mathematical logic and proof theory via the Curry–Howard isomorphism and they can be considered as the internal language of classes of categories, e.g., the simply typed lambda calculus is the language of a Cartesian closed category (CCC).[citation needed]
Reduction strategies
Script error: No such module "labelled list hatnote". Whether a term is normalising or not, and how much work needs to be done in normalising it if it is, depends to a large extent on the reduction strategy used. Common lambda calculus reduction strategies include:[30][31][32]
- Normal order
- The leftmost outermost redex is reduced first. That is, whenever possible, arguments are substituted into the body of an abstraction before the arguments are reduced. If a term has a beta-normal form, normal order reduction will always reach that normal form.
- Applicative order
- The leftmost innermost redex is reduced first. As a consequence, a function's arguments are always reduced before they are substituted into the function. Unlike normal order reduction, applicative order reduction may fail to find the beta-normal form of an expression, even if such a normal form exists. For example, the term is reduced to itself by applicative order, while normal order reduces it to its beta-normal form .
- Full β-reductions
- Any redex can be reduced at any time. This means essentially the lack of any particular reduction strategy—with regard to reducibility, "all bets are off".
Weak reduction strategies do not reduce under lambda abstractions:
- Call by value
- Like applicative order, but no reductions are performed inside abstractions. This is similar to the evaluation order of strict languages like C: the arguments to a function are evaluated before calling the function, and function bodies are not even partially evaluated until the arguments are substituted in.
- Call by name
- Like normal order, but no reductions are performed inside abstractions. For example, Page Template:Mono/styles.css has no content.λx.(λy.y)x is in normal form according to this strategy, although it contains the redex Page Template:Mono/styles.css has no content.(λy.y)x.
Strategies with sharing reduce computations that are "the same" in parallel:
- Optimal reduction
- As normal order, but computations that have the same label are reduced simultaneously.
- Call by need
- As call by name (hence weak), but function applications that would duplicate terms instead name the argument. The argument may be evaluated "when needed", at which point the name binding is updated with the reduced value. This can save time compared to normal order evaluation.
Computability
There is no algorithm that takes as input any two lambda expressions and outputs Page Template:Mono/styles.css has no content.TRUE or Page Template:Mono/styles.css has no content.FALSE depending on whether one expression reduces to the other.[15] More precisely, no computable function can decide the question. This was historically the first problem for which undecidability could be proven. As usual for such a proof, computable means computable by any model of computation that is Turing complete. In fact computability can itself be defined via the lambda calculus: a function F: N → N of natural numbers is a computable function if and only if there exists a lambda expression f such that for every pair of x, y in N, F(x)=y if and only if f Page Template:Mono/styles.css has no content.x =β Page Template:Mono/styles.css has no content.y, where Page Template:Mono/styles.css has no content.x and Page Template:Mono/styles.css has no content.y are the Church numerals corresponding to x and y, respectively and =β meaning equivalence with β-reduction. See the Church–Turing thesis for other approaches to defining computability and their equivalence.
Church's proof of uncomputability first reduces the problem to determining whether a given lambda expression has a normal form. Then he assumes that this predicate is computable, and can hence be expressed in lambda calculus. Building on earlier work by Kleene and constructing a Gödel numbering for lambda expressions, he constructs a lambda expression Page Template:Mono/styles.css has no content.e that closely follows the proof of Gödel's first incompleteness theorem. If Page Template:Mono/styles.css has no content.e is applied to its own Gödel number, a contradiction results.
Complexity
The notion of computational complexity for the lambda calculus is a bit tricky, because the cost of a β-reduction may vary depending on how it is implemented.[33] To be precise, one must somehow find the location of all of the occurrences of the bound variable Page Template:Mono/styles.css has no content.V in the expression Page Template:Mono/styles.css has no content.E, implying a time cost, or one must keep track of the locations of free variables in some way, implying a space cost. A naïve search for the locations of Page Template:Mono/styles.css has no content.V in Page Template:Mono/styles.css has no content.E is O(n) in the length n of Page Template:Mono/styles.css has no content.E. Director strings were an early approach that traded this time cost for a quadratic space usage.[34] More generally this has led to the study of systems that use explicit substitution.
In 2014, it was shown that the number of β-reduction steps taken by normal order reduction to reduce a term is a reasonable time cost model, that is, the reduction can be simulated on a Turing machine in time polynomially proportional to the number of steps.[35] This was a long-standing open problem, due to size explosion, the existence of lambda terms which grow exponentially in size for each β-reduction. The result gets around this by working with a compact shared representation. The result makes clear that the amount of space needed to evaluate a lambda term is not proportional to the size of the term during reduction. It is not currently known what a good measure of space complexity would be.[36]
An unreasonable model does not necessarily mean inefficient. Optimal reduction reduces all computations with the same label in one step, avoiding duplicated work, but the number of parallel β-reduction steps to reduce a given term to normal form is approximately linear in the size of the term. This is far too small to be a reasonable cost measure, as any Turing machine may be encoded in the lambda calculus in size linearly proportional to the size of the Turing machine. The true cost of reducing lambda terms is not due to β-reduction per se but rather the handling of the duplication of redexes during β-reduction.[37] It is not known if optimal reduction implementations are reasonable when measured with respect to a reasonable cost model such as the number of leftmost-outermost steps to normal form, but it has been shown for fragments of the lambda calculus that the optimal reduction algorithm is efficient and has at most a quadratic overhead compared to leftmost-outermost.[36] In addition the BOHM prototype implementation of optimal reduction outperformed both Caml Light and Haskell on pure lambda terms.[37]
Lambda calculus and programming languages
As pointed out by Peter Landin's 1965 paper "A Correspondence between ALGOL 60 and Church's Lambda-notation",[38] sequential procedural programming languages can be understood in terms of the lambda calculus, which provides the basic mechanisms for procedural abstraction and procedure (subprogram) application.
Anonymous functions
Script error: No such module "labelled list hatnote". For example, in Python the "square" function can be expressed as a lambda expression as follows:
(lambda x: x**2)
The above example is an expression that evaluates to a first-class function. The symbol lambda creates an anonymous function, given a list of parameter names—just the single argument x, in this case—and an expression that is evaluated as the body of the function, x**2. Anonymous functions are sometimes called lambda expressions.
Pascal and many other imperative languages have long supported passing subprograms as arguments to other subprograms through the mechanism of function pointers. However, function pointers are an insufficient condition for functions to be first class datatypes, because a function is a first class datatype if and only if new instances of the function can be created at runtime. Such runtime creation of functions is supported in Smalltalk, JavaScript, Wolfram Language, and more recently in Scala, Eiffel (as agents), C# (as delegates) and C++11, among others.
Parallelism and concurrency
The Church–Rosser property of the lambda calculus means that evaluation (β-reduction) can be carried out in any order, even in parallel. This means that various nondeterministic evaluation strategies are relevant. However, the lambda calculus does not offer any explicit constructs for parallelism. One can add constructs such as futures to the lambda calculus. Other process calculi have been developed for describing communication and concurrency.
Semantics
The fact that lambda calculus terms act as functions on other lambda calculus terms, and even on themselves, led to questions about the semantics of the lambda calculus. Could a sensible meaning be assigned to lambda calculus terms? The natural semantics was to find a set D isomorphic to the function space D → D, of functions on itself. However, no nontrivial such D can exist, by cardinality constraints because the set of all functions from D to D has greater cardinality than D, unless D is a singleton set.
In the 1970s, Dana Scott showed that if only continuous functions were considered, a set or domain D with the required property could be found, thus providing a model for the lambda calculus.[39]
This work also formed the basis for the denotational semantics of programming languages.
Variations and extensions
These extensions are in the lambda cube:
- Typed lambda calculus – Lambda calculus with typed variables (and functions)
- System F – A typed lambda calculus with type-variables
- Calculus of constructions – A typed lambda calculus with types as first-class values
These formal systems are extensions of lambda calculus that are not in the lambda cube:
- Binary lambda calculus – A version of lambda calculus with binary input/output (I/O), a binary encoding of terms, and a designated universal machine.
- Lambda-mu calculus – An extension of the lambda calculus for treating classical logic
These formal systems are variations of lambda calculus:
- Kappa calculus – A first-order analogue of lambda calculus
These formal systems are related to lambda calculus:
- Combinatory logic – A notation for mathematical logic without variables
- SKI combinator calculus – A computational system based on the S, K and I combinators, equivalent to lambda calculus, but reducible without variable substitutions
See also
Lua error in mw.title.lua at line 404: bad argument #2 to 'title.new' (unrecognized namespace name 'Portal').
Page Template:Div col/styles.css has no content.
- Applicative computing systems – Treatment of objects in the style of the lambda calculus
- Cartesian closed category – A setting for lambda calculus in category theory
- Categorical abstract machine – A model of computation applicable to lambda calculus
- Clojure, programming language
- Curry–Howard isomorphism – The formal correspondence between programs and proofs
- De Bruijn index – notation disambiguating alpha conversions
- De Bruijn notation – notation using postfix modification functions
- Domain theory – Study of certain posets giving denotational semantics for lambda calculus
- Evaluation strategy – Rules for the evaluation of expressions in programming languages
- Explicit substitution – The theory of substitution, as used in β-reduction
- Harrop formula – A kind of constructive logical formula such that proofs are lambda terms
- Interaction nets
- Kleene–Rosser paradox – A demonstration that some form of lambda calculus is inconsistent
- Knights of the Lambda Calculus – A semi-fictional organization of LISP and Scheme hackers
- Krivine machine – An abstract machine to interpret call-by-name in lambda calculus
- Lambda calculus definition – Formal definition of the lambda calculus.
- Let expression – An expression closely related to an abstraction.
- Minimalism (computing)
- Rewriting – Transformation of formulæ in formal systems
- SECD machine – A virtual machine designed for the lambda calculus
- Scott–Curry theorem – A theorem about sets of lambda terms
- To Mock a Mockingbird – An introduction to combinatory logic
- Universal Turing machine – A formal computing machine equivalent to lambda calculus
- Unlambda – A functional esoteric programming language based on combinatory logic
Notes
Page Template:Reflist/styles.css has no content.
- ^ "where M[x := N] denotes the substitution of N for every occurrence of x in M".[1]Template:Rp Also denoted M[N/x], "the substitution of N for x in M".[2]
- ^ Barendregt, Barendsen (2000) call this rule axiom β
- ^ For a full history, see Cardone and Hindley's "History of Lambda-calculus and Combinatory Logic" (2006).
- ^ a b is pronounced "maps to".
- ^ Page Template:Mono/styles.css has no content.(λf.MPage Template:Mono/styles.css has no content.) N can be pronounced "let f be N in M".
- ^ Ariola and Blom[23] employ 1) axioms for a representational calculus using well-formed cyclic lambda graphs extended with Page Template:Mono/styles.css has no content.letrec, to detect possibly infinite unwinding trees; 2) the representational calculus with β-reduction of scoped lambda graphs constitute Ariola/Blom's cyclic extension of lambda calculus; 3) Ariola/Blom reason about strict languages using § call-by-value, and compare to Moggi's calculus, and to Hasegawa's calculus. Conclusions on p. 111.[23]
References
Some parts of this article are based on material from FOLDOC, used with permission.
Page Template:Reflist/styles.css has no content.
- ^ a b Page Module:Citation/CS1/styles.css has no content.Barendregt, Henk; Barendsen, Erik (March 2000), Introduction to Lambda Calculus (PDF)
- ^ Template:Nlab
- ^ Page Module:Citation/CS1/styles.css has no content.de Queiroz, Ruy J. G. B. (1988). "A Proof-Theoretic Account of Programming and the Role of Reduction Rules". Dialectica. 42 (4): 265–282. doi:10.1111/j.1746-8361.1988.tb00919.x.
- ^ Page Module:Citation/CS1/styles.css has no content.Turing, Alan M. (December 1937). "Computability and λ-Definability". The Journal of Symbolic Logic. 2 (4): 153–163. doi:10.2307/2268280. JSTOR 2268280. S2CID 2317046.
- ^ Page Module:Citation/CS1/styles.css has no content.Tait, W. W. (August 1967). "Intensional interpretations of functionals of finite type I". The Journal of Symbolic Logic. 32 (2): 198–212. doi:10.2307/2271658. ISSN 0022-4812. JSTOR 2271658. S2CID 9569863.
- ^ Page Module:Citation/CS1/styles.css has no content.Coquand, Thierry (8 February 2006). Zalta, Edward N. (ed.). "Type Theory". The Stanford Encyclopedia of Philosophy (Summer 2013 ed.). Retrieved November 17, 2020.
- ^ Page Module:Citation/CS1/styles.css has no content.Moortgat, Michael (1988). Categorial Investigations: Logical and Linguistic Aspects of the Lambek Calculus. Foris Publications. ISBN 9789067653879.
- ^ Page Module:Citation/CS1/styles.css has no content.Bunt, Harry; Muskens, Reinhard, eds. (2008). Computing Meaning. Springer. ISBN 978-1-4020-5957-5.
- ^ Page Module:Citation/CS1/styles.css has no content.Mitchell, John C. (2003). Concepts in Programming Languages. Cambridge University Press. p. 57. ISBN 978-0-521-78098-8..
- ^ Page Module:Citation/CS1/styles.css has no content.Chacón Sartori, Camilo (2023-12-05). Introduction to Lambda Calculus using Racket (Technical report). Archived from the original on 2023-12-07.
- ^ Page Module:Citation/CS1/styles.css has no content.Pierce, Benjamin C. Basic Category Theory for Computer Scientists. p. 53.
- ^ Page Module:Citation/CS1/styles.css has no content.Church, Alonzo (1932). "A set of postulates for the foundation of logic". Annals of Mathematics. Series 2. 33 (2): 346–366. doi:10.2307/1968337. JSTOR 1968337.
- ^ Page Module:Citation/CS1/styles.css has no content.Kleene, Stephen C.; Rosser, J. B. (July 1935). "The Inconsistency of Certain Formal Logics". The Annals of Mathematics. 36 (3): 630. doi:10.2307/1968646. JSTOR 1968646.
- ^ Page Module:Citation/CS1/styles.css has no content.Church, Alonzo (December 1942). "Review of Haskell B. Curry, The Inconsistency of Certain Formal Logics". The Journal of Symbolic Logic. 7 (4): 170–171. doi:10.2307/2268117. JSTOR 2268117.
- ^ a b Page Module:Citation/CS1/styles.css has no content.Church, Alonzo (1936). "An unsolvable problem of elementary number theory". American Journal of Mathematics. 58 (2): 345–363. doi:10.2307/2371045. JSTOR 2371045.
- ^ Page Module:Citation/CS1/styles.css has no content.Church, Alonzo (1940). "A Formulation of the Simple Theory of Types". Journal of Symbolic Logic. 5 (2): 56–68. doi:10.2307/2266170. JSTOR 2266170. S2CID 15889861.
- ^ Page Module:Citation/CS1/styles.css has no content.Partee, B. B. H.; ter Meulen, A.; Wall, R. E. (1990). Mathematical Methods in Linguistics. Springer. ISBN 9789027722454. Retrieved 29 Dec 2016.
- ^ Page Module:Citation/CS1/styles.css has no content.Alama, Jesse. Zalta, Edward N. (ed.). "The Lambda Calculus". The Stanford Encyclopedia of Philosophy (Summer 2013 ed.). Retrieved November 17, 2020.
- ^ Dana Scott, "Looking Backward; Looking Forward", Invited Talk at the Workshop in honour of Dana Scott's 85th birthday and 50 years of domain theory, 7–8 July, FLoC 2018 (talk 7 July 2018). The relevant passage begins at 32:50. (See also this extract of a May 2016 talk at the University of Birmingham, UK.)
- ^ Page Module:Citation/CS1/styles.css has no content.Felleisen, Matthias; Flatt, Matthew (2006), Programming Languages and Lambda Calculi (PDF), p. 26, archived from the original (PDF) on 2009-02-05; A note (accessed 2017) at the original location suggests that the authors consider the work originally referenced to have been superseded by a book.
- ^ Page Module:Citation/CS1/styles.css has no content.Selinger, Peter (2008), Lecture Notes on the Lambda Calculus (PDF), vol. 0804, Department of Mathematics and Statistics, University of Ottawa, p. 9, arXiv:0804.3434, Bibcode:2008arXiv0804.3434S
- ^ Page Module:Citation/CS1/styles.css has no content.Bruce, Kim B. (2002). Foundations of Object-oriented Languages: Types and Semantics. MIT Press. p. 151. ISBN 978-0-262-02523-2.
- ^ a b Zena M. Ariola and Stefan Blom, Proc. TACS '94 Sendai, Japan 1997 (1997) Cyclic lambda calculi 114 pages.
- ^ Page Module:Citation/CS1/styles.css has no content.Bene, Adam (17 August 2017). "Fixed-Point Combinators in JavaScript". Bene Studio. Medium. Retrieved 2 August 2020.
- ^ Page Module:Citation/CS1/styles.css has no content."CS 6110 S17 Lecture 5. Recursion and Fixed-Point Combinators" (PDF). Cornell University. 4.1 A CBV Fixed-Point Combinator.
- ^ Page Module:Citation/CS1/styles.css has no content.Ker, Andrew D. "Lambda Calculus and Types" (PDF). p. 6. Retrieved 14 January 2022.
- ^ Page Module:Citation/CS1/styles.css has no content.Dezani-Ciancaglini, Mariangiola; Ghilezan, Silvia (2014). "Preciseness of Subtyping on Intersection and Union Types" (PDF). Rewriting and Typed Lambda Calculi. Lecture Notes in Computer Science. Vol. 8560. p. 196. doi:10.1007/978-3-319-08918-8_14. hdl:2318/149874. ISBN 978-3-319-08917-1. Retrieved 14 January 2022.
- ^ Page Module:Citation/CS1/styles.css has no content.Forster, Yannick; Smolka, Gert (August 2019). "Call-by-Value Lambda Calculus as a Model of Computation in Coq" (PDF). Journal of Automated Reasoning. 63 (2): 393–413. doi:10.1007/s10817-018-9484-2. S2CID 53087112. Retrieved 14 January 2022.
- ^ Types and Programming Languages, p. 273, Benjamin C. Pierce
- ^ Page Module:Citation/CS1/styles.css has no content.Pierce, Benjamin C. (2002). Types and Programming Languages. MIT Press. p. 56. ISBN 0-262-16209-1.
- ^ Page Module:Citation/CS1/styles.css has no content.Sestoft, Peter (2002). "Demonstrating Lambda Calculus Reduction" (PDF). The Essence of Computation. Lecture Notes in Computer Science. Vol. 2566. pp. 420–435. doi:10.1007/3-540-36377-7_19. ISBN 978-3-540-00326-7. Retrieved 22 August 2022.
- ^ Page Module:Citation/CS1/styles.css has no content.Biernacka, Małgorzata; Charatonik, Witold; Drab, Tomasz (2022). Andronick, June; de Moura, Leonardo (eds.). The Zoo of Lambda-Calculus Reduction Strategies, and Coq (PDF). Leibniz International Proceedings in Informatics (LIPIcs). Vol. 237. Schloss Dagstuhl – Leibniz-Zentrum für Informatik. pp. 7:1–7:19. doi:10.4230/LIPIcs.ITP.2022.7. ISBN 978-3-95977-252-5. Retrieved 22 August 2022.
- ^ Page Module:Citation/CS1/styles.css has no content.Frandsen, Gudmund Skovbjerg; Sturtivant, Carl (26 August 1991). "What is an efficient implementation of the λ-calculus?". Functional Programming Languages and Computer Architecture: 5th ACM Conference. Cambridge, MA, USA, August 26-30, 1991. Proceedings. Lecture Notes in Computer Science. Vol. 523. Springer-Verlag. pp. 289–312. CiteSeerX 10.1.1.139.6913. doi:10.1007/3540543961_14. ISBN 9783540543961.
- ^ Page Module:Citation/CS1/styles.css has no content.Sinot, F.-R. (2005). "Director Strings Revisited: A Generic Approach to the Efficient Representation of Free Variables in Higher-order Rewriting" (PDF). Journal of Logic and Computation. 15 (2): 201–218. doi:10.1093/logcom/exi010.
- ^ Page Module:Citation/CS1/styles.css has no content.Accattoli, Beniamino; Dal Lago, Ugo (14 July 2014). "Beta reduction is invariant, indeed". Proceedings of the Joint Meeting of the Twenty-Third EACSL Annual Conference on Computer Science Logic (CSL) and the Twenty-Ninth Annual ACM/IEEE Symposium on Logic in Computer Science (LICS). pp. 1–10. arXiv:1601.01233. doi:10.1145/2603088.2603105. ISBN 9781450328869. S2CID 11485010.
- ^ a b Page Module:Citation/CS1/styles.css has no content.Accattoli, Beniamino (October 2018). "(In)Efficiency and Reasonable Cost Models". Electronic Notes in Theoretical Computer Science. 338: 23–43. doi:10.1016/j.entcs.2018.10.003.
- ^ a b Page Module:Citation/CS1/styles.css has no content.Asperti, Andrea (16 Jan 2017). "About the efficient reduction of lambda terms". arXiv:1701.04240v1 [cs.LO].
- ^ Page Module:Citation/CS1/styles.css has no content.Landin, P. J. (1965). "A Correspondence between ALGOL 60 and Church's Lambda-notation". Communications of the ACM. 8 (2): 89–101. doi:10.1145/363744.363749. S2CID 6505810.
- ^ Page Module:Citation/CS1/styles.css has no content.Scott, Dana (1993). "A type-theoretical alternative to ISWIM, CUCH, OWHY" (PDF). Theoretical Computer Science. 121 (1–2): 411–440. doi:10.1016/0304-3975(93)90095-B. Retrieved 2022-12-01. Written 1969, widely circulated as an unpublished manuscript.
Further reading
Page Module:Message box/ambox.css has no content.
This "further reading" section may need cleanup. (May 2026) |
- Abelson, Harold & Gerald Jay Sussman. Structure and Interpretation of Computer Programs. The MIT Press. Template:Isbn.
- Barendregt, Hendrik Pieter Introduction to Lambda Calculus.
- Barendregt, Hendrik Pieter, The Impact of the Lambda Calculus in Logic and Computer Science. The Bulletin of Symbolic Logic, Volume 3, Number 2, June 1997.
- Barendregt, Hendrik Pieter, The Type Free Lambda Calculus pp1091–1132 of Handbook of Mathematical Logic, North-Holland (1977) Template:Isbn
- Cardone, Felice and Hindley, J. Roger, 2006. History of Lambda-calculus and Combinatory Logic Script error: No such module "webarchive".. In Gabbay and Woods (eds.), Handbook of the History of Logic, vol. 5. Elsevier.
- Church, Alonzo, An unsolvable problem of elementary number theory, American Journal of Mathematics, 58 (1936), pp. 345–363. This paper contains the proof that the equivalence of lambda expressions is in general not decidable.
- Page Module:Citation/CS1/styles.css has no content.Church, Alonzo (1941). The Calculi of Lambda-Conversion. Princeton: Princeton University Press. Retrieved 2020-04-14. (Template:Isbn)
- Page Module:Citation/CS1/styles.css has no content.Frink Jr., Orrin (1944). "Review: The Calculi of Lambda-Conversion by Alonzo Church" (PDF). Bulletin of the American Mathematical Society. 50 (3): 169–172. doi:10.1090/s0002-9904-1944-08090-7.
- Kleene, Stephen, A theory of positive integers in formal logic, American Journal of Mathematics, 57 (1935), pp. 153–173 and 219–244. Contains the lambda calculus definitions of several familiar functions.
- Landin, Peter, A Correspondence Between ALGOL 60 and Church's Lambda-Notation, Communications of the ACM, vol. 8, no. 2 (1965), pages 89–101. Available from the ACM site. A classic paper highlighting the importance of lambda calculus as a basis for programming languages.
- Larson, Jim, An Introduction to Lambda Calculus and Scheme. A gentle introduction for programmers.
- Page Module:Citation/CS1/styles.css has no content.Michaelson, Greg (10 April 2013). An Introduction to Functional Programming Through Lambda Calculus. Courier Corporation. ISBN 978-0-486-28029-5.[1]
- Schalk, A. and Simmons, H. (2005) An introduction to λ-calculi and arithmetic with a decent selection of exercises. Notes for a course in the Mathematical Logic MSc at Manchester University.
- Page Module:Citation/CS1/styles.css has no content.de Queiroz, Ruy J.G.B. (2008). "On Reduction Rules, Meaning-as-Use and Proof-Theoretic Semantics". Studia Logica. 90 (2): 211–247. doi:10.1007/s11225-008-9150-5. S2CID 11321602. A paper giving a formal underpinning to the idea of 'meaning-is-use' which, even if based on proofs, it is different from proof-theoretic semantics as in the Dummett–Prawitz tradition since it takes reduction as the rules giving meaning.
- Hankin, Chris, An Introduction to Lambda Calculi for Computer Scientists, Template:Isbn
- Monographs/textbooks for graduate students
- Sørensen, Morten Heine and Urzyczyn, Paweł (2006), Lectures on the Curry–Howard isomorphism, Elsevier, Template:Isbn is a recent monograph that covers the main topics of lambda calculus from the type-free variety, to most typed lambda calculi, including more recent developments like pure type systems and the lambda cube. It does not cover subtyping extensions.
- Page Module:Citation/CS1/styles.css has no content.Pierce, Benjamin (2002), Types and Programming Languages, MIT Press, ISBN 0-262-16209-1 covers lambda calculi from a practical type system perspective; some topics like dependent types are only mentioned, but subtyping is an important topic.
- Documents
- A Short Introduction to the Lambda Calculus-(PDF) by Achim Jung
- A timeline of lambda calculus-(PDF) by Dana Scott
- A Tutorial Introduction to the Lambda Calculus-(PDF) by Raúl Rojas
- Lecture Notes on the Lambda Calculus-(PDF) by Peter Selinger
- Graphic lambda calculus by Marius Buliga
- Lambda Calculus as a Workflow Model by Peter Kelly, Paul Coddington, and Andrew Wendelborn; mentions graph reduction as a common means of evaluating lambda expressions and discusses the applicability of lambda calculus for distributed computing (due to the Church–Rosser property, which enables parallel graph reduction for lambda expressions).
External links
Page Module:Side box/styles.css has no content.Page Template:Sister project/styles.css has no content.
- Graham Hutton, Lambda Calculus, a short (12 minutes) Computerphile video on the Lambda Calculus
- Helmut Brandl, Step by Step Introduction to Lambda Calculus
- Script error: No such module "Template wrapper".
- David C. Keenan, To Dissect a Mockingbird: A Graphical Notation for the Lambda Calculus with Animated Reduction
- L. Allison, Some executable λ-calculus examples
- Georg P. Loczewski, The Lambda Calculus and A++
- Bret Victor, Alligator Eggs: A Puzzle Game Based on Lambda Calculus
- Lambda Calculus Script error: No such module "webarchive". on Safalra's Website Script error: No such module "webarchive".
- LCI Lambda Interpreter a simple yet powerful pure calculus interpreter
- Lambda Calculus links on Lambda-the-Ultimate
- Mike Thyer, Lambda Animator, a graphical Java applet demonstrating alternative reduction strategies.
- Implementing the Lambda calculus using C++ Templates
- Shane Steinert-Threlkeld, "Lambda Calculi", Internet Encyclopedia of Philosophy
- Anton Salikhmetov, Macro Lambda Calculus
Template:Alonzo Church Lua error in package.lua at line 80: module 'Module:Navbox/configuration' not found. Lua error in package.lua at line 80: module 'Module:Authority control/config' not found. Template:Formal semantics Template:Functions navbox
- ^ Page Module:Citation/CS1/styles.css has no content."Greg Michaelson's Homepage". Mathematical and Computer Sciences. Riccarton, Edinburgh: Heriot-Watt University. Retrieved 6 November 2022.