VOOZH about

URL: https://simple.wikipedia.org/wiki/Lambda_calculus

⇱ Lambda calculus - Simple English Wikipedia, the free encyclopedia


Jump to content
From Simple English Wikipedia, the free encyclopedia
This article does not have information about arithmetic, common functions, pairs, lists, if-then-else, applications in actual programing, and so much more. Please make the article bigger to put in this information. More details may exist on the talk page.

In mathematical logic and computer science, lambda calculus, also λ-calculus, is a formal system (a system that can be used to figure out different logical theories and ideas). It was made to explore different ways of creating and using mathematical functions, and it lays out rules for doing this. It is also a tool for exploring recursion, and it has been used to explain what a computable function is. It was made by Alonzo Church and Stephen Cole Kleene in the 1930s. In 1936, Church used lambda calculus to show that there is no solution to the Entscheidungsproblem.[1][2]

Lambda calculus can be called the smallest universal programming language. At its core, lambda calculus is made up of just one transformation rule (something called variable substitution) and just one way to define a function. Each function definition has a list of the function's parameters, which are all of the variables that can be used in that function. Variable substitution is where specific variables in a function are replaced by other values (for example, the value 👁 {\displaystyle 2}
could take the place of every spot in a function where the variable 👁 {\displaystyle x}
appears). This is called a transformation rule because it can be used to transform lambda expressions by changing around their values.

Lambda calculus is considered "universal" because it can be used to both create and find the answer to any computable function. This is exactly what a Turing machine can do, so lambda calculus and Turing machines are said to be equivalent. However, lambda calculus focuses more on the use of transformation rules. It does not care about the actual machine that puts those rules into place. It is an approach more related to software than to hardware.

There is no way to answer the question of whether two lambda calculus expressions are the same as each other (in more specific words, there is no general algorithm that can show that two lambda expressions are equivalent). This was the first problem where the idea of undecidability could be proven. Later, undecidability was also proven for the halting problem, where it was shown that there is no general way to show whether or not a program will keep running forever. Lambda calculus has had large effects on lots of functional programming languages, such as LISP, ML, and Haskell.

Lambda calculus has simple syntax (rules). Every program is made of lambda terms which are as follows:

For the application and abstraction examples, 👁 {\displaystyle x+2}
and 👁 {\displaystyle 5}
were used. This is not valid lambda calculus, as the only valid syntax are the lambda terms shown above. There are ways to emulate addition, numerals, strings (words), and any other mathematical concept in lambda calculus.[3]

Reduction and Conversion

[change | change source]

There are three types of reduction: α-conversion, β-reduction, and η-conversion.

You perform each type or reduction if you can. Once it can no longer be simplified, the program has halted (stopped).

Common mistakes

[change | change source]

👁 {\displaystyle \lambda x.y\nRightarrow \lambda z.z}
this is incorrect because 👁 {\displaystyle \lambda x}
is using the variable 👁 {\displaystyle y}
. If it was 👁 {\displaystyle \lambda x.x}
, conversion could be done.

👁 {\displaystyle ((\lambda x.\lambda y.(x\ y)\ \ FUNCTION)\ 5)\nRightarrow FUNCTION}
it should equal 👁 {\displaystyle FUNCTION\ 5}
.

👁 {\displaystyle \lambda x.\lambda y.x\nRightarrow \lambda y.x}
you cannot get rid of the 👁 {\displaystyle \lambda x}
. This is because

Encoding and Datatypes

[change | change source]

Because of the limited syntax, it may seem impossible to make numbers or strings or anything else that many programming languages have, but it's a matter of encoding. Lambda calculus compensates for this by using the methods demonstrated in the sections below.

Church numerals

[change | change source]

church numerals use the following encoding standards (rules):[4][5]

👁 {\displaystyle 0=\lambda f.\lambda x.x}
👁 {\displaystyle 1=\lambda f.\lambda x.f\ x}
👁 {\displaystyle 2=\lambda f.\lambda x.f\ (f\ x)}
👁 {\displaystyle 3=\lambda f.\lambda x.f\ (f\ (f\ x))}
👁 {\displaystyle n=\lambda f.\lambda x.\underbrace {f\ (f\ (\cdots (f\ x)} _{n}}
Note: Church numerals are made for whole numbers. There are other standards for encoding for all rational numbers.

Because of the syntax of lambda calculus, numbers are also functions, and can take in inputs; all functions can output another function as a result. Numeral n applies x to f, n-times. This is very useful as a repeat n times function.

Booleans and Logic Gates

[change | change source]

Booleans can be thought of as a lightbulb: they can be on or off (true or false). Typically, you use church booleans for representing these.[5]

From these, you can make logic gates and conditionals.

The and logic gate takes in two inputs and returns true if both of them are true. It is defined as

👁 {\displaystyle AND=\lambda p.\lambda q.p\ q\ p}

The other gates — or, xor, and not — are below.

👁 {\displaystyle OR=\lambda p.\lambda q.p\ (p\ q)}

👁 {\displaystyle NOT=\lambda p.p\ (FALSE\ \ TRUE)}

👁 {\displaystyle XOR=\lambda p.\lambda q.p\ (NOT\ q)\ q}

Nand, nor, xnor can be made by combining these gates.

  1. "Artificial intelligence programming language | Benefits, Challenges & Applications | Britannica". Encyclopedia Britannica. Retrieved 2026-03-01.
  2. "Lecture 28: Introduction to the λ-Calculus". www.cs.cornell.edu. Retrieved 2026-03-01.
  3. "To Dissect a Mockingbird: A Graphical Notation for the Lambda Calculus with Animated Reduction". dkeenan.com. Retrieved 2026-02-27.
  4. "lambdacalculus". cs.lmu.edu. Retrieved 2026-02-28.
  5. 1 2 3 "3.8. Church Numerals and Booleans — Programming Languages". opendsa.cs.vt.edu. Retrieved 2026-02-27.