User:Thepigdog/Lambda Calculus

The lowercase lambda, the 11th letter of the Greek alphabet, is used to symbolize the lambda calculus.

Lambda calculus is a programming language based solely on lambda abstraction and function application.

Normally, in defining a function, the formal parameters are written after the function name. The Lambda Abstraction is an alternative representation that associates the formal parameters of a function with the expression that implements the function. This allows a function to be defined as an expression.

Today, the lambda calculus has applications in many different areas in mathematics, philosophy,[1] linguistics,[2][3] and computer science. Lambda calculus has played an important role in the development of the theory of programming languages and in the development of functional programming languages.

The lambda calculus also has many applications in proof theory. A major example of this is the Curry–Howard correspondence, which gives a correspondence between different systems of typed lambda calculus and systems of formal logic.

History edit

Alonzo Church invented the Lambda Calculus in the 1930s, originally to provide a new and simpler basis for mathematics[4][5]. However soon after inventing it major logic problems were identified with the definition of the Lambda Abstraction[6].

The Kleene–Rosser paradox is an implementation of Richard's paradox in combinatory logic. Combinatory Logic is closely related to Lambda Calculus. Haskell Curry found that the key step in this paradox could be used to implement the simpler Curry's Paradox. The existence of this paradox meant that the Combinatory Logic, and Lambda Calculus, could not be both consistent and complete as a deductive system[7].

Alonzo Church then used the lambda Calculus as a programming language to formalized the concept of effective computability. In 1936, Alonzo Church and Alan Turing published independent papers[8] showing that a general solution to the Entscheidungsproblem is impossible, assuming that the intuitive notation of "effectively calculable" is captured by the functions computable by a Turing machine (or equivalently, by those expressible in the lambda calculus). This assumption is now known as the Church–Turing thesis.

Lambda calculus is a simple universal model of computation. Turing showed in 1937[9] that any program written for a Turing machines could be written in lambda calculus and vice versa.

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 (subprogram) application.

Introduction edit

Lambda calculus (also written as λ-calculus) is a formal system in mathematical logic and computer science for expressing computation based on function abstraction and application using variable binding and substitution. The name derives from the Greek letter lambda (λ) used to denote binding a variable in a function.

Lambda calculus is used and viewed in many ways,

Usages and viewpoints on the lambda calculus
Pure lambda calculus An isolated mathematical system based on lambda abstraction.
Model for computing Data types, arithmetic, and Church encoding and Mogensen–Scott encoding.
Simply typed lambda calculus Lambda calculus, with a simple type system based on function mappings.
Typed lambda calculus Lambda calculus with a properly defined type system.
A basis for functional programming languages. Most functional languages are based heavily on the lambda calculus.
Illative lambda calculus The lambda abstraction as an extra operator in mathematics.

Explanation edit

A lambda term represents a function that may be reduced until it cannot be reduced any further. It is then said to be in normal form. Informally it is then a "value". For example,

(λn.λf.λx.f (n f x)) λf.λx.f (f (f x)))

In this term, the abstraction λn represents a parameter. The term λf.λx.f (f (f x))) is bound to the parameter n giving it a value. Then every (in this case one) occurrence of n in λf.λx.f (n f x) is replaced by λf.λx.f (f (f x))), giving,

λf.λx.f (λf.λx.f (f (f x))) f x)

This step is called beta reduction. The step is repeated on the sub term λf.λx.f (f (f x))) f x. Here

f is replaced by f in λx.f (f (f x)))

giving,

λf.λx.f (λx.f (f (f x))) x)

The beta reduction is repeated again on the sub term λx.f (f (f x))) x. Here

x is replaced by x in f (f (f x)))

giving,

λf.λx.f (f (f (f x))))

The expression can no longer be reduced and is regarded as being a value in normal formal.

In Church numerals, λf.λx.f (f (f (f x)))) represents the number 5, because it applies the function f five times to the parameter x. This is an interpretation of the lambda term, but the term may also be regarded only as a function definition that cannot be further reduced.

As another example,

λx.((λf.λx.f (f x)) x)

This term cannot be reduced in the same way as the previous expression. But lambda calculus allows a second type of reduction called eta reduction. When a parameter λx is then used as a parameter to a sub term then they may both be eliminated, giving,

λf.λx.f (f x)

Each lambda abstractions defines a local variable, which is a placeholder which will be substituted with a value during beta reduction. The name is not regarded as important. Only the structure is important. So,

λf.λx.f (f x)

is regarded as being identical to,

λa.λb.a (a b)

Converting between the two forms is called alpha conversion.

There are some complications in the details of the naming of variables. As in other programming languages, the simple rule is that lambda terms behave as if each expression was parsed and every local variable renamed with a unique name.

The rules,

  • Beta reduction
  • Eta reduction
  • Alpha conversion

described formally, define lambda calculus.

Lambda abstraction edit

In mathematics a function is defined in the form,

 

Here I am using the functional notation   instead of   to represent the application of a function to a parameter. This is the notation for function application used in functional languages such as ML, Miranda and Haskell.

The lambda abstraction is conceived by considering what is the value of  .   is a function, but what is it equal to? What is it's value? The lambda abstraction provides a notation for representing this value.

 

The lambda abstraction   is also called an anonymous function, because it defines a function without giving it a name.

Problems with the Lambda Abstraction edit

The lambda abstraction is a definition. However defining something does not make it exist. Soon after discovering the lambda abstraction it was found to have inconsistencies when considered as a mathematical expression (see Kleene–Rosser paradox and Curry's Paradox).

The lambda abstraction was then used as the basis for a programming language, the Lambda Calculus. As a programming language the lambda calculus could not lean on mathematics as it's basis. Instead fundamental theorems about it's behavior had to be proved specifically for the lambda calculus.

Definition edit

Topic Description
Standard definition The formal definition, in the mathematical style originally given by Alonzo Church.
Syntax definition in Backus–Naur Form Syntax of Lambda Calculus.
Definition as mathematical formulas Gives a definition using mathematical formulas.
Derivation of standard definition Derive standard definition from mathematical formulas.
Evaluation strategy Defines the order of evaluation.

Topics edit

Topic Description
Church encoding of data types Builds representations of basic data type values, from which Turing completeness may be shown.
Mogensen–Scott encoding An alternate system of encoding, based on abstract data types.
SKI combinator calculus Basic operators, called combinators, that act to direct and control parameters, that may be put together to construct a language without named parameters.
Curry's paradoxical Y combinator A lambda calculus function that implements recursion.
Lambda lifting A method to transform functions so that local functions are moved into a global scope.
Anonymous function A function defined without a name.
Böhm tree A method of obtaining part of the "value" of the calculation, from a lambda term, before the calculation is complete.

Technical problems and paradoxes edit

Topic Description
Curry's paradox A paradox arising from the consideration of lambda calculus as a deductive system.
Kleene–Rosser paradox A demonstration that some form of lambda calculus is inconsistent
Deductive lambda calculus Describes the consequences of adding lambda abstractions as an extension to mathematics.

Important theorems edit

Topic Description
Church–Rosser theorem A lambda term will always reduce to the same normal for, regardless of the path of beta and eta-reductions.
Church–Turing thesis Any computible function may be represented by a Turing machine, or equivalenty, a Lambda calculus program.
The undecidability of equivalence. There is no program that will always tell if two functions are equal or not.
Curry–Howard correspondence The direct relationship between computer programs and mathematical proofs.

Related languages edit

Topic Description
Typed lambda calculus Lambda calculus with typed variables (and functions)
Simply typed lambda calculus Lambda calculus based on a simple theory of types, which is contradiction free.
Let expression An expression close related to a lambda abstraction.

Standard terms edit

Encoding datatypes edit

Church Numerals
Function Algebra Identity Function definition Lambda expressions
Successor     succ n f x=f (n f x) λn.λf.λx.f (n f x) ...
Addition     plus m n f x=m f (n f x) λm.λn.λf.λx.m f (n f x) λm.λn.n succ m
Multiplication     multiply m n f x=m (n f) x λm.λn.λf.λx.m (n f) x λm.λn.λf.m (n f)
Exponentiation    [10] exp m n f x=(n m) f x λm.λn.λf.λx.(n m) f x λm.λn.n m
Predecessor*     pred ...

λn.λf.λx.n (λg.λh.h (g f)) (λu.x) (λu.u)

Subtraction*     minus m n = (n pred) m ... λm.λn.n pred m

divide = λn.((λf.(λx.x x) (λx.f (x x))) (λc.λn.λm.λf.λx.(λd.(λn.n (λx.(λa.λb.b)) (λa.λb.a)) d ((λf.λx.x) f x) (f (c d m f x))) ((λm.λn.n(λn.λf.λx.n (λg.λh.h (g f)) (λu.x) (λu.u))m) n m))) ((λn.λf.λx.f (n f x)) n)

Booleans
Name Definition
true λa.λb.a
false λa.λb.b
and λp.λq.p q p
or λp.λq.p q p
not1 λp.λa.λb.p b a
not2 λp.p (λa.λb.b) (λa.λb.a)
xor λa.λb.a (not b) b
if λp.λa.λb.p a b
Predicates
Name Definition
IsZero λn.n (λx.false) true
LEQ λm.λn.IsZero (minus m n)
EQ λm.λn.and (LEQ m n) (LEQ n m)
Pair
Name Definition
pair λx.λy.λz.z x y
first λp.p (λx.λy.x)
second λp.p (λx.λy.y)

Combinators edit

Name Definition
I λx.x
K λxy.x
S λxyz.x z (y z)
B λxyz.x (y z)
C λxyz.x z y
W λxy.x y y
U λx.x x
ω λx.x x
Ω ω ω
Y λg.(λx.g (x x)) (λx.g (x x))

Technical considerations edit

Computable functions and lambda calculus edit

A function F: NN 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 x =β y,  where x and y are the Church numerals corresponding to x and y, respectively and =β meaning equivalence with beta reduction. This is one of the many ways to define computability; see the Church-Turing thesis for a discussion of other approaches and their equivalence.

Undecidability of equivalence edit

There is no algorithm that takes as input two lambda expressions and outputs TRUE or FALSE depending on whether or not the two expressions are equivalent. This was historically the first problem for which undecidability could be proven. As is common for a proof of undecidability, the proof shows that no computable function can decide the equivalence. Church's thesis is then invoked to show that no algorithm can do so.

Church's proof first reduces the problem to determining whether a given lambda expression has a normal form. A normal form is an equivalent expression that cannot be reduced any further under the rules imposed by the 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 e that closely follows the proof of Gödel's first incompleteness theorem. If e is applied to its own Gödel number, a contradiction results.

Normal forms and confluence edit

For the untyped lambda calculus, β-reduction as a rewriting rule is neither strongly normalising nor weakly normalising.

However, it can be shown that β-reduction is confluent. (Of course, we are working up to α-conversion, i.e. we consider two normal forms to be equal, if it is possible to α-convert one into the other.)

Therefore, 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.

Anonymous functions edit

Lambda calculus reifies "functions" and makes them first-class objects, which raises implementation complexity when it is implemented.

For example in Lisp the 'square' function can be expressed as a lambda expression as follows:

(lambda (x) (* x x))

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, (x) — just a single argument in this case, and an expression that is evaluated as the body of the function, (* x x). The Haskell example is identical. Anonymous functions are sometimes called lambda expressions.

For example 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 not a sufficient 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 run-time. And this run-time creation of functions is supported in Smalltalk, Javascript, and more recently in Scala, Eiffel ("agents"), C# ("delegates") and C++11, among others.

Semantics edit

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 DD, 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.

See also edit

Topic Description
Applicative computing systems Treatment of objects in the style of the lambda calculus
Binary lambda calculus A version of lambda calculus with binary I/O, a binary encoding of terms, and a designated universal machine.
Calculus of constructions A typed lambda calculus with types as first-class values
Cartesian closed category A setting for lambda calculus in category theory
Categorical abstract machine A model of computation applicable to lambda calculus
Combinatory logic A notation for mathematical logic without variables
Curry–Howard isomorphism The formal correspondence between programs and proofs
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
Kappa calculus A first-order analogue of lambda calculus
Kleene–Rosser paradox A demonstration that some form of lambda calculus is inconsistent
Lambda cube A framework for some extensions of typed lambda calculus
Lambda-mu calculus An extension of the lambda calculus for treating classical logic
Rewriting Transformation of formulæ in formal systems
SECD machine A virtual machine designed for the lambda calculus
Simply typed lambda calculus Version(s) with a single type constructor
SKI combinator calculus A computational system based on the S, K and I combinators
System F A typed lambda calculus with type-variables
Universal Turing machine A formal computing machine that is equivalent to lambda calculus
Unlambda An esoteric functional programming language based on combinatory logic

Further reading edit

  • Abelson, Harold & Gerald Jay Sussman. Structure and Interpretation of Computer Programs. The MIT Press. ISBN 0-262-51087-1.
  • Hendrik Pieter Barendregt Introduction to Lambda Calculus.
  • Henk Barendregt, 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) ISBN 0-7204-2285-X
  • Cardone and Hindley, 2006. History of Lambda-calculus and Combinatory Logic[dead link]. 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.
  • Alonzo Church, The Calculi of Lambda-Conversion (ISBN 978-0-691-08394-0)[11]
  • 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.
  • 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.
  • de Queiroz, Ruy J.G.B. (2008) On Reduction Rules, Meaning-as-Use and Proof-Theoretic Semantics. Studia Logica, 90(2):211-247. 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.

Monographs/textbooks for graduate students:

  • Morten Heine Sørensen, Paweł Urzyczyn, Lectures on the Curry-Howard isomorphism, Elsevier, 2006, ISBN 0-444-52077-5 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.
  • 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.

Some parts of this article are based on material from FOLDOC, used with permission.

External links edit

References edit

  1. ^ Coquand, Thierry, "Type Theory", The Stanford Encyclopedia of Philosophy (Summer 2013 Edition), Edward N. Zalta (ed.).
  2. ^ Categorial Investigations: Logical and Linguistic Aspects of the Lambek Calculus - Michael Moortgat - Google Books, Books.google.co.uk, 1988-01-01, ISBN 9789067653879, retrieved 2013-09-15
  3. ^ Computing Meaning - Google Books, Books.google.co.uk, 2008-07-02, ISBN 9781402059575, retrieved 2013-09-15
  4. ^ A. Church, "A set of postulates for the foundation of logic", Annals of Mathematics, Series 2, 33:346–366 (1932).
  5. ^ For a full history, see Cardone and Hindley's "History of Lambda-calculus and Combinatory Logic" (2006).
  6. ^ Kleene, S. C.; Rosser, J. B. (1935). "The inconsistency of certain formal logics". Annals of Mathematics. 36 (3): 630–636. doi:10.2307/1968646. {{cite journal}}: Unknown parameter |lastauthoramp= ignored (|name-list-style= suggested) (help)
  7. ^ The Inconsistency of Certain Formal Logic Haskell B. Curry The Journal of Symbolic Logic Vol. 7, No. 3 (Sep., 1942), pp. 115-117 Published by: Association for Symbolic Logic Article Stable URL: http://www.jstor.org/stable/2269292
  8. ^ Church's paper was presented to the American Mathematical Society on 19 April 1935 and published on 15 April 1936. Turing, who had made substantial progress in writing up his own results, was disappointed to learn of Church's proof upon its publication (see correspondence between Max Newman and Church in Alonzo Church papers). Turing quickly completed his paper and rushed it to publication; it was received by the Proceedings of the London Mathematical Society on 28 May 1936, read on 12 November 1936, and published in series 2, volume 42 (1936-7); it appeared in two sections: in Part 3 (pages 230-240), issued on Nov 30, 1936 and in Part 4 (pages 241–265), issued on Dec 23, 1936; Turing added corrections in volume 43(1937) pp. 544–546. See the footnote at the end of Soare:1996.
  9. ^ A. M. Turing, "Computability and λ-Definability", The Journal of Symbolic Logic, Vol. 2, No. 4. (Dec., 1937), pp. 153-163.
  10. ^ This formula is the definition of a Church numeral n with f -> m, x -> f.
  11. ^ Frink Jr., Orrin (1944). "Review: The Calculi of Lambda-Conversion by Alonzo Church" (PDF). Bull. Amer. Math. Soc. 50 (3): 169–172. doi:10.1090/s0002-9904-1944-08090-7.


Category:1936 in computing Category:American inventions Category:Articles with example code Category:Computability theory Category:Formal methods Category:Models of computation Category:Theoretical computer science