Beta normal form

In the lambda calculus, a term is in beta normal form if no beta reduction is possible.[1] A term is in beta-eta normal form if neither a beta reduction nor an eta reduction is possible. A term is in head normal form if there is no beta-redex in head position.

Beta reduction

In the lambda calculus, a beta redex is a term of the form

 ((\mathbf{\lambda} x . A(x)) t)

where A(x) is a term (possibly) involving variable x.

A beta reduction is an application of the following rewrite rule to a beta redex

 ((\mathbf{\lambda} x . A(x)) t) \rightarrow A(t)

where A(t) is the result of substituting the term t for the variable x in the term A(x).

A beta reduction is in head position if it is of the following form:

Any reduction not in this form is an internal beta reduction.

Reduction strategies

In general, there can be several different beta reductions possible for a given term. Normal-order reduction is the evaluation strategy in which one continually applies the rule for beta reduction in head position until no more such reductions are possible. At that point, the resulting term is in normal form.

In contrast, in applicative order reduction, one applies the internal reductions first, and then only applies the head reduction when no more internal reductions are possible.

Normal-order reduction is complete, in the sense that if a term has a head normal form, then normal order reduction will eventually reach it. In contrast, applicative order reduction may not terminate, even when the term has a normal form. For example, using applicative order reduction, the following sequence of reductions is possible:

\begin{align}
 &(\mathbf{\lambda} x . z) ((\lambda w. w w w) (\lambda w. w w w)) \\
 \rightarrow &(\lambda x . z) ((\lambda w. w w w) (\lambda w. w w w) (\lambda w. w w w))\\
 \rightarrow &(\lambda x . z) ((\lambda w. w w w) (\lambda w. w w w) (\lambda w. w w w) (\lambda w. w w w))\\
 \rightarrow &(\lambda x . z) ((\lambda w. w w w) (\lambda w. w w w) (\lambda w. w w w) (\lambda w. w w w) (\lambda w. w w w))\\
 &\ldots
\end{align}

But using normal-order reduction, the same starting point reduces quickly to normal form:

 (\mathbf{\lambda} x . z) ((\lambda w. w w w) (\lambda w. w w w))
 \rightarrow z

Sinot's director strings is one method by which the computational complexity of beta reduction can be optimized.

See also

References

  1. "Beta normal form". Encyclopedia. TheFreeDictionary.com. Retrieved 18 November 2013.
This article is issued from Wikipedia - version of the Wednesday, April 27, 2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.