Lambda calculus
In mathematical logic, the lambda 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. 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
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 range over an infinite set of names. Terms range over all lambda terms. This corresponds to the following inductive definition:- A variable is a valid lambda term.
- An abstraction is a lambda term where is a lambda term, referred to as the abstraction's body, and is the abstraction's parameter variable,
- An application is a lambda term where and are lambda terms.
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 is not free, and is said to be bound. While is free in, it is bound in. There are two occurrences of in – one is bound, and the other is free.
is the set of free variables of, i.e. such variables that occur free in at least once. It can be defined inductively as follows:
The notation denotes capture-avoiding substitution: substituting for every free occurrence of in, while avoiding variable capture. This operation is defined inductively as follows:
- ; if.
- .
- has three cases:
- * If, becomes .
- * If, becomes.
- * If, first α-rename to with fresh to avoid name collisions, then continue as [|above]. It becomes with.
- The β-reduction rule states that a β-redex, an application of the form, reduces to the term. 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.
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. 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, whereas evaluation of untyped lambda-terms need not terminate. One reason there are many different typed lambda calculi has been the desire to do more without giving up on being able to prove strong theorems about the calculus.
Lambda calculus has applications in many different areas in mathematics, philosophy, linguistics, and computer science. 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.
History
Lambda calculus was introduced by mathematician Alonzo Church in the 1930s as part of an investigation into the foundations of mathematics. The original system was shown to be logically inconsistent in 1935 when Stephen Kleene and J. B. Rosser developed the Kleene–Rosser paradox.Subsequently, in 1936 Church isolated and published just the portion relevant to computation, what is now called the untyped lambda calculus. In 1940, he also introduced a computationally weaker, but [|logically consistent] system, known as the simply typed lambda calculus.
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 and computer science.
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 :
By the way, why did Church choose the notation "λ"? In 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 . 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.
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
. Similarly, the function
can be rewritten in anonymous form as
where the input is simply mapped to itself.
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, yields at once
whereas evaluation of the curried version requires one more step
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
It can be shown that β-reduction is confluent when working up to α-conversion. 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.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
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:and so on. Or using an alternative syntax allowing multiple uncurried arguments to a function:
A Church numeral is a higher-order function—it takes a single-argument function, and returns another single-argument function. The Church numeral is a function that takes a function as argument and returns the -th composition of, i.e. the function composed with itself times. This is denoted and is in fact the -th power of ; is defined to be the identity function. Functional composition is associative, and so, such repeated compositions of a single function obey two laws of exponents, and, which is why these numerals can be used for arithmetic.
One way of thinking about the Church numeral, which is often useful when analyzing programs, is as an instruction 'repeat n times'. For example, using the and functions defined [|below], one can define a function that constructs a list of n elements all equal to x by repeating 'prepend another x element' n times, starting from an empty list. The lambda term
creates, given a Church numeral and some, a sequence of n applications
By varying what is being repeated, and what argument 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 and returns its successor by performing one additional application of the function it is supplied with, where means "n applications of f starting from x":
Because the -th composition of composed with the -th composition of gives the -th composition of,, addition can be defined as
can be thought of as a function taking two natural numbers as arguments and returning a natural number; it can be verified that
and
are beta-equivalent lambda expressions. Since adding to a number can be accomplished by repeating the successor operation times, an alternative definition is:
Similarly, following, multiplication can be defined as
Thus multiplication of Church numerals is simply their composition as functions. Alternatively
since multiplying and is the same as adding repeatedly, 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:
Alternatively here as well,
Simplifying, it becomes
but that is just an eta-expanded version of we already have, above.
The predecessor function, specified by two equations and, is considerably more involved. The formula
can be validated by showing inductively that if T denotes, then for. Two other definitions of are given below, one using conditionals and the other using pairs. With the predecessor function, subtraction is straightforward. Defining
yields when and otherwise.
Logic and predicates
By convention, the following two definitions are used for the Boolean values and :Then, with these two lambda terms, we can define some logic operators :
We are now able to compute some logic functions, for example:
and we see that is equivalent to.
A predicate is a function that returns a Boolean value. The most fundamental predicate is, which returns if its argument is the Church numeral, but if its argument were any other Church numeral:
The following predicate tests whether the first argument is less-than-or-equal-to the second:
and since if and, it is straightforward to build a predicate for numerical equality.
The availability of predicates and the above definition of and make it convenient to write "if-then-else" expressions in lambda calculus. For example, the predecessor function can be defined as:
which can be verified by showing inductively that is the add − 1 function for > 0.
Pairs
A pair encapsulates two values, and is represented by an abstraction that expects a handler to which it will pass the two values. returns the first element of the pair, and returns the second.A linked list can either be NIL, representing the empty list, or a of an element and a smaller list. The predicate returns for the value, and for a non-empty list:
Alternatively, with, the construct obviates the need for an explicit NULL test:
As an example of the use of [|pairs], the shift-and-increment function that maps to can be defined as
which allows us to give perhaps the most transparent version of the predecessor function:
Substituting the definitions and simplifying the resulting expression leads to streamlined definitions
, 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 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 to mean N in M, one can sayAuthors often introduce syntactic sugar, such as, to permit writing the above in the more intuitive order
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 is that the name may not be referenced in N, for N is outside the scope of the abstraction binding, which is M; this means a recursive function definition cannot be written with. The construction would allow writing recursive function definitions, where the scope of the abstraction binding includes N as well as M. Or self-application a-la that which leads to combinator could be used.
Recursion and fixed points
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 itself via the corresponding parameter's name. This will work fine in case it was indeed called with itself as an argument. For example, 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 again.As a concrete example, consider the factorial function, recursively defined by
In the lambda expression which is to represent this function, a parameter 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 must always be passed to itself within the function body at a recursive call point:
and we have
Here becomes the same inside the result of the application, 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 to be called via the self-application, again and again as needed, each time re-creating the lambda-term.
The application is an additional step just as the name lookup would be. It has the same delaying effect. Instead of having 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 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:
Given a lambda term with first argument representing recursive call, the fixed-point combinator will return a self-replicating lambda expression representing the recursive function. 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 is re-created inside itself, at call-point, achieving self-reference.
In fact, there are many possible definitions for this operator, the simplest of them being:
In the lambda calculus, is a fixed-point of, as it expands to:
Now, to perform the recursive call to the factorial function for an argument n, we would simply call. Given n = 4, for example, this gives:
Every recursively defined function can be seen as a fixed point of some suitably defined higher order function closing over the recursive call with an extra argument. Therefore, using, 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. 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:
Standard terms
Certain terms have commonly accepted names:is the identity function. and form complete combinator calculus systems that can express any lambda term - see
the next section. is, the smallest term that has no normal form. is another such term.
is standard and defined above, and can also be defined as, so that. and defined above are commonly abbreviated as and.
Abstraction elimination
If N is a lambda-term without abstraction, but possibly containing named constants, then there exists a lambda-term T which is equivalent to N but lacks abstraction. This can also be viewed as anonymising variables, as T removes all occurrences of from N, while still allowing argument values to be substituted into the positions where N contains an. The conversion function T can be defined by:In either case, a term of the form T ''P is reduced by having the initial combinator I, K, or S grab the argument P'', just like β-reduction of N ''P would do. I returns that argument. K N'' throws the argument away, just like N does when 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 MN is the same as M ''N''.
The combinators B and C are similar to S, but pass the argument on to only one subterm of an application, thus saving a subsequent K if there is no occurrence of 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
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. 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.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.
Reduction strategies
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:; 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, is in normal form according to this strategy, although it contains the redex.
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, 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 or depending on whether one expression reduces to the other. 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=''y if and only if f'' =β, where and 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 that closely follows the proof of Gödel's first incompleteness theorem. If 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.To be precise, one must somehow find the location of all of the occurrences of the bound variable in the expression, 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 in is O(n) in the length n of. Director strings were an early approach that traded this time cost for a quadratic space usage. 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. 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.
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. 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. In addition the BOHM prototype implementation of optimal reduction outperformed both Caml Light and Haskell on pure lambda terms.
Lambda calculus and programming languages
As pointed out by Peter Landin's 1965 paper "A Correspondence between ALGOL 60 and Church's Lambda-notation", sequential procedural programming languages can be understood in terms of the lambda calculus, which provides the basic mechanisms for procedural abstraction and procedure application.Anonymous functions
For example, in Python the "square" function can be expressed as a lambda expression as follows: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, C# and C++11, among others.
Parallelism and concurrency
The Church–Rosser property of the lambda calculus means that evaluation 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.
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
- System F – A typed lambda calculus with type-variables
- Calculus of constructions – A typed lambda calculus with types as first-class values
- Binary lambda calculus – A version of lambda calculus with binary input/output, a binary encoding of terms, and a designated universal machine.
- Lambda-mu calculus – An extension of the lambda calculus for treating classical logic
- Kappa calculus – A first-order analogue of 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