Jump to content

Beta normal form

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by 2001:56a:70a4:ab00:3602:86ff:fec4:b3be (talk) at 05:01, 31 October 2016 (→‎Reduction strategies). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

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

where is a term (possibly) involving variable .

A redex is in head position in a term , if t has the following shape:

, where and .

A beta reduction is an application of the following rewrite rule to a beta redex contained in a term :

where is the result of substituting the term for the variable in the term .

A head beta reduction is a beta reduction applied in head position, that is, of the following form:

, where and .

Any other reduction is an internal beta reduction.

A normal form is a term that do not contain any beta redex, ie. that cannot be further reduced. More generally, a head normal form is a term that do not contain a beta redex in head position, ie. that cannot be further reduced by a head reduction. Head normal forms are the terms of the following shape:

, where is a variable (if considering the simple lambda calculus), and .

It is not always a normal form, because the applied arguments need not be normal. However, the converse is true: any normal form is also a head normal form. In fact, the normal forms are exactly the head normal forms in which the subterms are themselves normal forms. This gives an inductive syntactic description of normal forms.

Reduction strategies

In general, a given term can contain several redexes, hence several different beta reductions can apply. We may specify a strategy to choose which redex to reduce.

  • Normal-order reduction is the 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 head normal form. One then continues applying head reduction in the subterms , from left to right. Stated otherwise, normal‐order reduction is the strategy that always reduces the left‐most outer‐most redex first.
  • By 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; by the syntactic description of normal forms above, this entails the same statement for a “fully” normal form (this is the standardization theorem). By 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:

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

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.