Lambda-Calculus

Author Avatar
Tianqi Zhang 11月 30, 2019

Some Facts

  1. The $\lambda$ calculus consists of a single transformation rule (variable substitution) and a single function definition scheme.
  2. The $\lambda$ calculus is universal that any computable function can be expressed and evaluated using this formalism.
  3. The $\lambda$ calculus is equivalent to Turing Machine. But the $\lambda$ calculus cares more about the transformation rules and does not care about the actual machine implementation.

Definition

Here we give some definition used in $\lambda$ calculus.

Name (Variable): A name is an identifier which can be any of the letters $a,b,c,\dots$.

Expression: The central concept in $\lambda$ calculus. An expression is defined recursively as follows:

[expression] := [name] | [function] | [application]

[function] := $\lambda$ [name].[expression]

[application] := [expression][expression]

Note: The expression can be surrounded with parenthesis with same rule in basic math.

Function: Function is defined in this form:

[function] := $\lambda$ [name].[expression]

The name after the $\lambda$ is the identifier of the argument of this function. The expression after the point is called the body of the definition.

Function can be applied to expressions. Here is an example:

$[y/x]$ is used to indicate that all occurrences of $x$ are substituted by $y$ in the expression to the right.

Remark: The names of the arguments in function definitions do not carry any meaning, they just “placeholders”. Therefore:

Free and Bound Variables

In $\lambda$ calculus all names are local to definitions.

Bound variables: In the function $\lambda x.x$ we say that $x$ is bound because its occurrence in the body of the definition is preceded by $\lambda x$.

Free variables: A name not preceded by a $\lambda$ is called a free variable.

For example:

In the expression

the variable $x$ is bound and $y$ is free.

In the expression

the $x$ in the body of the first expression is bound to the first $\lambda$. The $y$ in the body of the second expression is bound to the second $\lambda$ and $x$ is free. The $x$ in the second expression is independent of the $x$ in the first expression.

Formally Definition of Free Variable: We say a variable [name] is free in an expression if one of the following three cases holds:

  • [name] is free in [name]
  • [name] is free in $\lambda$[name1].[expression] if [name] $\neq$ [name1] and [name] free in [expression].
  • [name] is free in $E_1 E_2$ if [name] is free in $E_1$ or if it is free in $E_2$.

Formally Definition of Bound Variable: A variable [name] is bound if one of two cases holds:

  • [name] is bound in $\lambda$[name1].[expression] if [name] = [name1] or [name] is bound in [expression]
  • [name] is bound in $E_1 E_2$ if [name] is bound in $E_1$ or if it is bound in $E_2$.

Note: The same identifier can occur free and bound in the same expression. For example: In the expression

The first $y$ is free in the left subexpression but bound in the right subexpression. It occurs therefore free as well as bound in the whole expression. (interesting…)

Substitutions

The more confusing part of standard $\lambda$ calculus is that we do not give names to functions, i.e. functions are anonymous. Any time we want to apply a function, we write the whole function definition and then precede to evaluate it.

To simplify the notation, we will give function a name. For example, the identity function $(\lambda x.x)$ can be denoted with $I$. We have:

Rename of mixed bound and free variable

Here is a problem: We should be very careful when performing substitutions to avoid mixing up free occurrences of an identifier with bound ones. For example, in the expression

If we do substitution directly, we will get:

Here we mix up these two independent variable $y$. Simple by renaming the bound $y$ to $t$ we obtain:

Therefore, if the function $\lambda x.[\text{expression}]$ is applied to $E$, we substitute all free occurrences of $x$ in [expression] with $E$. If the substitution would bring a free variable of $E$ in an expression where the variable with same name occurs bound, we rename the bound one before performing the substitution.

example

Note that two $x$ bounded by different $\lambda x$ is different. In substitution we only do substitution for the outer $x$.

Arithmetic

Numbers can be defined in lambda calculus starting from zero. We define zero as

Or we can abbreviate such expressions with more than one argument as:

Then all natural numbers can be defined as

Then the successor function can be defined as

The successor function applied to our representation for zero yields

Similarly we have

Addition

If we want to add say $n$ and $m$, we just apply the successor function $n$ times to $m$

Let us try the following in order to compute $2+3$:

Note. 对于丘奇数 $n$,本身的含义是传入一个函数 $s$ 和一个变量 $z$,将 $z$ 递归地作用在此 $z$ 上 $n$ 次,这一点在上面的 $2S3$ 上有非常直观的体现,即对于丘奇数2,令$s = S$ 和 $z = 3$, 有

Multiplication

The multiplication of two numbers $x$ and $y$ can be computed using the following function:

The product of 2 by 2 is then: