Girish Mahajan (Editor)

De Bruijn notation

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In mathematical logic, the De Bruijn notation is a syntax for terms in the λ calculus invented by the Dutch mathematician Nicolaas Govert de Bruijn. It can be seen as a reversal of the usual syntax for the λ calculus where the argument in an application is placed next to its corresponding binder in the function instead of after the latter's body.

Contents

Formal definition

Terms ( M , N , ) in the De Bruijn notation are either variables ( v ), or have one of two wagon prefixes. The abstractor wagon, written [ v ] , corresponds to the usual λ-binder of the λ calculus, and the applicator wagon, written ( M ) , corresponds to the argument in an application in the λ calculus.

M , N , . . . ::=   v   |   [ v ] M   |   ( M ) N

Terms in the traditional syntax can be converted to the De Bruijn notation by defining an inductive function I for which:

I ( v ) = v I ( λ v .   M ) = [ v ] I ( M ) I ( M N ) = ( I ( N ) ) I ( M ) .

All operations on λ-terms commute with respect to the I translation. For example, the usual β-reduction,

( λ v .   M ) N     β     M [ v := N ]

in the De Bruijn notation is, predictably,

( N ) [ v ] M     β     M [ v := N ] .

A feature of this notation is that abstractor and applicator wagons of β-redexes are paired like parentheses. For example, consider the stages in the β-reduction of the term ( M ) ( N ) [ u ] ( P ) [ v ] [ w ] ( Q ) z , where the redexes are underlined:

( M ) ( N ) [ u ] _ ( P ) [ v ] [ w ] ( Q ) z   β   ( M ) ( P [ u := N ] ) [ v ] _ [ w ] ( Q [ u := N ] ) z   β   ( M ) [ w ] _ ( Q [ u := N , v := P [ u := N ] ] ) z   β   ( Q [ u := N , v := P [ u := N ] , w := M ] ) z .

Thus, if one views the applicator as an open paren ('(') and the abstractor as a close bracket (']'), then the pattern in the above term is '((](]]'. De Bruijn called an applicator and its corresponding abstractor in this interpretation partners, and wagons without partners bachelors. A sequence of wagons, which he called a segment, is well balanced if all its wagons are partnered.

Advantages of the De Bruijn notation

In a well balanced segment, the partnered wagons may be moved around arbitrarily and, as long as parity is not destroyed, the meaning of the term stays the same. For example, in the above example, the applicator ( M ) can be brought to its abstractor [ w ] , or the abstractor to the applicator. In fact, all commutatives and permutative conversions on lambda terms may be described simply in terms of parity-preserving reorderings of partnered wagons. One thus obtains a generalised conversion primitive for λ-terms in the De Bruijn notation.

Several properties of λ-terms that are difficult to state and prove using the traditional notation are easily expressed in the De Bruijn notation. For example, in a type-theoretic setting, one can easily compute the canonical class of types for a term in a typing context, and restate the type checking problem to one of verifying that the checked type is a member of this class. De Bruijn notation has also been shown to be useful in calculi for explicit substitution in pure type systems.

References

De Bruijn notation Wikipedia