In lambda calculus, the Church–Rosser theorem states that, when applying reduction rules to terms, the ordering in which the reductions are chosen does not make a difference to the eventual result.
More precisely, if there are two distinct reductions or sequences of reductions that can be applied to the same term, then there exists a term that is reachable from both results, by applying (possibly empty) sequences of additional reductions. The theorem was proved in 1936 by Alonzo Church and J. Barkley Rosser, after whom it is named.
The theorem is symbolized by the adjacent diagram: If term a can be reduced to both b and c, then there must be a further term d (possibly equal to either b or c) to which both b and c can be reduced.
Viewing the lambda calculus as an abstract rewriting system, the Church–Rosser theorem states that the reduction rules of the lambda calculus are confluent. As a consequence of the theorem, a term in the lambda calculus has at most one normal form, justifying reference to "the normal form" of a given normalizable term.
Contents
History
In 1936, Alonzo Church and J. Barkley Rosser proved that the theorem holds for β-reduction in the λI-calculus (in which every abstracted variable must appear in the term's body). The proof method is known as "finiteness of developments", and it has additional consequences such as the Standardization Theorem, which relates to a method in which reductions can be performed from left to right to reach a normal form (if one exists). The result for the pure untyped lambda calculus was proved by D. E. Schroer in 1965.
Pure untyped lambda calculus
One type of reduction in the pure untyped lambda calculus for which the Church–Rosser theorem applies is β-reduction, in which a subterm of the form
(
λ
x
.
t
)
s
{\displaystyle (\lambda x.t)s}
is contracted by the substitution
t
[
x
:=
s
]
{\displaystyle t[x:=s]}
, where
t
,
s
{\displaystyle t,s}
are two lambda expressions. If β-reduction is denoted by
→
β
{\displaystyle \rightarrow _{\beta }}
and its reflexive, transitive closure by
↠
β
Proof
For β-reduction, one proof method originates from William W. Tait and Per Martin-Löf. Say that a binary relation
→
{\displaystyle \rightarrow }
satisfies the diamond property if:
∀
M
,
N
1
,
N
2
∈
Λ
:
if
M
→
N
1
and
M
→
N
2
then
∃
X
∈
Λ
:
N
1
→
X
and
Variants
The Church–Rosser theorem also holds for many variants of the lambda calculus, such as the simply typed lambda calculus, many calculi with advanced type systems, and Gordon Plotkin's beta-value calculus. Plotkin also used a Church–Rosser theorem to prove that the evaluation of functional programs (for both lazy evaluation and eager evaluation) is a function from programs to values (a subset of the lambda terms).
In older research papers, a rewriting system is said to be Church–Rosser, or to have the Church–Rosser property, when it is confluent.


