Suvarna Garge (Editor)

Deductive lambda calculus

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

Deductive lambda calculus considers what happens when lambda terms are regarded as mathematical expressions. One interpretation of the untyped lambda calculus is as a programming language where evaluation proceeds by performing reductions on an expression until it is in normal form. In this interpretation, if the expression never reduces to normal form then the program never terminates, and the value is undefined. Considered as a mathematical deductive system, each reduction would not alter the value of the expression. The expression would equal the reduction of the expression.

Contents

History

Alonzo Church invented the lambda calculus in the 1930s, originally to provide a new and simpler basis for mathematics. However soon after inventing it major logic problems were identified with the definition of the lambda abstraction: The Kleene–Rosser paradox is an implementation of Richard's paradox in the lambda calculus. Haskell Curry found that the key step in this paradox could be used to implement the simpler Curry's paradox. The existence of these paradoxes meant that the lambda calculus could not be both consistent and complete as a deductive system.

Haskell Curry studied of illative (deductive) combinatory logic in 1941. Combinatory logic is closely related to lambda calculus, and the same paradoxes exist in each.

Later the lambda calculus was resurrected as a definition of a programming language.

Introduction

Lambda calculus is the model and inspiration for the development of functional programming languages. These languages implement the lambda abstraction, and use it in conjunction with application of functions, and types.

The use of lambda abstractions, which are then embedded into other mathematical systems, and used as a deductive system, leads to a number of problems, such as Curry's paradox. The problems are related to the definition of the lambda abstraction and the definition and use of functions as the basic type in lambda calculus. This article describes these problems and how they arise.

This is not a criticism of pure lambda calculus, and lambda calculus as a pure system is not the primary topic here. The problems arise with the interaction of lambda calculus with other mathematical systems. Being aware of the problems allows them to be avoided in some cases.

Terminology

For this discussion, the lambda abstraction is added as an extra operator in mathematics. The usual domains, such as Boolean and real will be available. Mathematical equality will be applied to these domains. The purpose is to see what problems arise from this definition.

Function application will be represented using the lambda calculus syntax. So multiplication will be represented by a dot. Also, for some examples, the let expression will be used.

The following table summarizes;

Interpretation of lambda calculus as mathematics

In the mathematical interpretation, lambda terms represent values. Eta and beta reductions are deductive steps that do not alter the values of expressions.

e t a - r e d u c t [ X ] = X b e t a - r e d u c t [ X ] = X

Eta reduction as mathematics

An eta-reduct is defined by,

x FV ( f ) e t a - r e d u c t [ λ x . ( f   x ) ] = f

In the mathematical interpretation,

e t a - r e d u c t [ X ] = X

Taking f to be a variable then,

λ x . ( f   x ) = f

or by letting f   x = y

f   x = y f = λ x . y

This definition defines λ x . y to be the solution for f in the equation,

f   x = y

Beta reduction as mathematics

A beta reduct is,

b e t a - r e d u c t [ ( λ x . b )   z ] = b [ x := z ]

and as,

b e t a - r e d u c t [ X ] = X

then,

( λ x . b )   z = b [ x := z ]

This rule is implied by the instantiation of quantified variables. If,

x : f   x = y

then f   z is the expression y with the quantified variable x instantiated as z.

f   z = y [ x := z ]

so,

( λ x . y )   z = y [ x := z ]

As beta reduction is implied from eta reduction, there is no contradiction between the two definitions.

Inconsistency with the Principle of Bivalence

Let z be a Boolean; then we can form an equation with no solutions,

z = ¬ z

To solve this equation by recursion, we introduce a new function f defined by,

f   n = ¬ ( n   n )

where n is an auxiliary variable to hold the recursion value. (We take it that ¬ still returns a Boolean even if it is given a non-Boolean argument.) By an eta-reduction, we obtain,

f = λ x . ¬ ( x   x )

And then,

f   f = ( λ x . ¬ ( x   x ) ) ( λ x . ¬ ( x   x ) ) = ¬ ( ( λ x . ¬ ( x   x ) ) ( λ x . ¬ ( x   x ) ) ) = ¬ ( f   f )

Then f f is neither true or false, and as f f is a Boolean value (on any x, f returns the Boolean ¬ ( x   x ) ) then we see that f f is neither true nor false; it also demonstrates that negation makes less sense when applied to non-logical values.

Intensional versus extensional equality

Another difficulty for the interpretation of lambda calculus as a deductive system is the representation of values as lambda terms, which represent functions. The untyped lambda calculus is implemented by performing reductions on a lambda term, until the term is in normal form. The intensional interpretation of equality is that the reduction of a lambda term to normal form is the value of the lambda term.

This interpretation considers the identity of a lambda expression to be its structure. Two lambda terms are equal if they are alpha convertible.

The extensional definition of function equality is that two functions are equal if they perform the same mapping;

f = g ( x f   x = g   x )

One way to describe this is that extensional equality describes equality of functions, where as intensional equality describes equality of function implementations.

The extensional definition of equality is not equivalent to the intensional definition. This can be seen in the example below. This inequivalence is created by considering lambda terms as values. In typed lambda calculus this problem is circumvented, because built-in types may be added to carry values that are in a canonical form and have both extensional and intensional equality.

Example

In arithmetic, the distributive law implies that 2 ( r + s ) = 2 r + 2 s . Using the Church encoding of numerals the left and right hand sides may be represented as lambda terms.

So the distributive law says that the two functions,

λ r . λ s .2 ( r + s ) = λ r . λ s .2 r + 2 s

are equal, as functions on Church numerals. (Here we encounter a technical weakness of the untyped lambda calculus: there is no way to restrict the domain of a function to the Church numerals. In the following argument we will ignore this difficulty, by pretending that "all" lambda expressions are Church numerals.) The distributive law should apply if the church numerals provided a satisfactory implementation of numbers.

λ r . λ s . mult   2   ( plus   r   s ) = λ r . λ s . plus   ( mult   2   r )   ( mult   2   s ) λ r . λ s . ( λ m . λ n . λ f . m   ( n   f ) )   ( λ f . λ x . f   ( f   x ) )   ( ( λ m . λ n . λ f . λ x . m   f   ( n   f   x ) )   r   s ) = λ r . λ s . ( λ m . λ n . λ f . λ x . m   f   ( n   f   x ) )   ( ( λ m . λ n . λ f . m   ( n   f ) )   ( λ f . λ x . f   ( f   x ) )   r )   ( ( λ m . λ n . λ f . m   ( n   f ) )   ( λ f . λ x . f   ( f   x ) )   s ) λ r . λ s . λ f . λ x . r   f   ( s   f   ( r   f   ( s   f   x ) ) ) = λ r . λ s . λ f . λ x . r   f   ( r   f   ( s   f   ( s   f   x ) ) )

The two terms beta reduce to similar expressions. Still they are not alpha convertible, or even eta convertible (the latter follows because both terms are already in eta-long form). So according to the intensional definition of equality, the expressions are not equal. But if the two functions are applied to the same Church numerals they produce the same result, by the distributive law; thus they are extensionally equal.

This is a significant problem, as it means that the intensional value of a lambda-term may change under extensionally valid transformations. A solution to this problem is to introduce an omega-rule,

  • If, for all lambda-expressions t we have f   t   = β   g   t , then f   = β   g .
  • In our situation, "all lambda-expressions" means "all Church numerals", so this is an omega-rule in the standard sense as well. Note that the omega-rule implies the eta-rule, since f   t   = β   ( λ x . f   x )   t by a beta-reduction on the right side.

    Set theoretic domain

    Lambda abstractions are functions of functions. A natural step is to define a domain for the lambda abstraction as a set of all functions.

    The set of all functions from a domain D to a range R is given by K in,

    f K ( x : x D f   x R )

    Then the (imaginary) definition of the set of all functions of functions is given by F in,

    f F ( x : x F f   x F )

    This definition cannot be formulated in an axiomatic set theory; and this naive equation, even if it could be written in a set theory, has no solutions.

    Now lambda calculus is defined by beta reductions and eta reductions. Interpreting reduction as defining equality gives an implicit domain for the lambda calculus. The rules are,

  • Every lambda abstraction has one value.
  • The beta reduction of a lambda term has the same value.
  • The eta reduction of a lambda term has the same value.
  • Alpha convertible lambda terms are equal.
  • [If the omega-rule is present] "omega-equivalent" lambda terms are equal.
  • If two lambda terms can not be shown to be equal by the above rules, they are not equal.
  • If two lambda terms may be reduced to normal form then the Church–Rosser theorem may be used to show that they are equal if their normal forms are alpha convertible.

    If one or both of the terms are not normalizing then the undecidability of equivalence shows that in general there is no algorithm to determine if two lambda terms are equal. In general this makes it impossible to know what the distinct elements of the lambda calculus domain are.

    Example: No solutions → one solution

    For example the equation x = ¬ x may be coded with Church encoding and using Curry's Y combinator as,

    not 1 = λ p . λ a . λ b . p   b   a ( λ f . ( λ x . f   ( x   x ) )   ( λ x . f   ( x   x ) ) ) ( λ p . λ a . λ b . p   b   a )

    And the recursion is,

    ( λ x . ( λ p . λ a . λ b . p   b   a )   ( x   x ) )   ( λ x . ( λ p . λ a . λ b . p   b   a )   ( x   x ) ) ( λ p . λ a . λ b . p   b   a )   ( ( λ x . ( λ p . λ a . λ b . p   b   a )   ( x   x ) )   ( λ x . ( λ p . λ a . λ b . p   b   a )   ( x   x ) ) ) λ a . λ b . ( ( λ x . ( λ p . λ a . λ b . p   b   a )   ( x   x ) )   ( λ x . ( λ p . λ a . λ b . p   b   a )   ( x   x ) ) )   b   a ... λ a . λ b . ( λ a . λ b . ( ( λ x . ( λ p . λ a . λ b . p   b   a )   ( x   x ) )   ( λ x . ( λ p . λ a . λ b . p   b   a )   ( x   x ) ) )   b   a )   b   a ... (beta and then eta reduction) ( λ x . ( λ p . λ a . λ b . p   b   a )   ( x   x ) )   ( λ x . ( λ p . λ a . λ b . p   b   a )   ( x   x ) )

    Which is the first line and will recurse indefinitely. The expression never reduces to normal form. However every lambda term in the reduction represents the same value. This value is distinct from the encodings for true or false. It is not part of the Boolean domain but it exists in the lambda calculus domain.

    Example: Multiple solutions → one solution

    Using division and signed numbers, the Y combinator may be used to define an expression representing a whole number square root. The Church encoding may also be extended further to rational and real numbers, so that a real square root may be defined. The Church-Turing thesis implies that any computable operator (and its operands) can be represented in lambda calculus.

    Using such an encoding,

    x 2 = n x = n x f   x = n x Y   f = x

    Using the implementation of divide then,

    Y ( divide n )

    represents two values in the domain of the signed numbers, if n is not equal to zero. However it is a lambda expression so has only one value in the lambda calculus domain. Beta reduction of this lambda term never reaches normal form. However it represents a value, so a single value in the lambda calculus domain represents two values in the signed number domain.

    References

    Deductive lambda calculus Wikipedia