Let expression

From Wikipedia, the free encyclopedia

In computer science, a "let" expression associates a function definition with a restricted scope.

The "let" expression may also be defined in mathematics, where it associates a Boolean condition with a restricted scope.

The "let" expression may be considered as a lambda abstraction applied to a value. Within mathematics, a let expression may also be considered as a conjunction of expressions, within an existential quantifier which restricts the scope of the variable.

The let expression is present in many functional languages to allow the local definition of expression, for use in defining another expression. The let-expression is present in some functional languages in two forms; let or "let rec". Let rec is an extension of the simple let expression which uses the fixed-point combinator to implement recursion.

History[edit]

Dana Scott's LCF language[1] was a stage in the evolution of lambda calculus into modern functional languages. This language introduced the let expression, which has appeared in most functional languages since that time.

The languages Scheme,[2] ML, and more recently Haskell[3] have inherited let expressions from LCF.

Stateful imperative languages such as ALGOL and Pascal essentially implement a let expression, to implement restricted scope of functions, in block structures.[citation needed]

A closely related "where" clause, together with its recursive variant "where rec", appeared already in Peter Landin's The mechanical evaluation of expressions.[4]

Description[edit]

A "let" expression defines a function or value for use in another expression. As well as being a construct used in many functional programming languages, it is a natural language construct often used in mathematical texts. It is an alternate syntactical construct for a where clause.

Let expression Where clause

Let

and

in

where

and

In both cases the whole construct is an expression whose value is 5. Like the if-then-else the type returned by the expression is not necessarily Boolean.

A let expression comes in 4 main forms,

Form And Recursive Definition / Constraint Description
Simple No No Definition Simple non recursive function definition.
Recursive No Yes Definition Recursive function definition (implemented using the Y combinator).
Mutual Yes Yes Definition Mutually recursive function definition.
Mathematical Yes Yes Constraint Mathematical definition supporting a general Boolean let condition.

In functional languages the let expression defines functions which may be called in the expression. The scope of the function name is limited to the let expression structure.

In mathematics, the let expression defines a condition, which is a constraint on the expression. The syntax may also support the declaration of existentially quantified variables local to the let expression.

The terminology, syntax and semantics vary from language to language. In Scheme, let is used for the simple form and let rec for the recursive form. In ML let marks only the start of a block of declarations with fun marking the start of the function definition. In Haskell, let may be mutually recursive, with the compiler figuring out what is needed.

Definition[edit]

A lambda abstraction represents a function without a name. This is a source of the inconsistency in the definition of a lambda abstraction. However lambda abstractions may be composed to represent a function with a name. In this form the inconsistency is removed. The lambda term,

is equivalent to defining the function by in the expression , which may be written as the let expression;

The let expression is understandable as a natural language expression. The let expression represents the substitution of a variable for a value. The substitution rule describes the implications of equality as substitution.

Let definition in mathematics[edit]

In mathematics the let expression is described as the conjunction of expressions. In functional languages the let expression is also used to limit scope. In mathematics scope is described by quantifiers. The let expression is a conjunction within an existential quantifier.

where E and F are of type Boolean.

The let expression allows the substitution to be applied to another expression. This substitution may be applied within a restricted scope, to a sub expression. The natural use of the let expression is in application to a restricted scope (called lambda dropping). These rules define how the scope may be restricted;

where F is not of type Boolean. From this definition the following standard definition of a let expression, as used in a functional language may be derived.

For simplicity the marker specifying the existential variable, , will be omitted from the expression where it is clear from the context.

Derivation[edit]

To derive this result, first assume,

then

Using the rule of substitution,

so for all L,

Let where K is a new variable. then,

So,

But from the mathematical interpretation of a beta reduction,

Here if y is a function of a variable x, it is not the same x as in z. Alpha renaming may be applied. So we must have,

so,

This result is represented in a functional language in an abbreviated form, where the meaning is unambiguous;

Here the variable x is implicitly recognised as both part of the equation defining x, and the variable in the existential quantifier.

No lifting from Boolean[edit]

A contradiction arises if E is defined by . In this case,

becomes,

and using,

This is false if G is false. To avoid this contradiction F is not allowed to be of type Boolean. For Boolean F the correct statement of the dropping rule uses implication instead of equality,

It may appear strange that a different rule applies for Boolean than other types. The reason for this is that the rule,

only applies where F is Boolean. The combination of the two rules creates a contradiction, so where one rule holds, the other does not.

Joining let expressions[edit]

Let expressions may be defined with multiple variables,

then it can be derived,

so,

Laws relating lambda calculus and let expressions[edit]

The Eta reduction gives a rule for describing lambda abstractions. This rule along with the two laws derived above define the relationship between lambda calculus and let expressions.

Name Law
Eta-reduction equivalence
Let-lambda equivalence (where is a variable name.)
Let combination

Let definition defined from lambda calculus[edit]

To avoid the potential problems associated with the mathematical definition, Dana Scott originally defined the let expression from lambda calculus. This may be considered as the bottom up, or constructive, definition of the let expression, in contrast to the top down, or axiomatic mathematical definition.

The simple, non recursive let expression was defined as being syntactic sugar for the lambda abstraction applied to a term. In that definition,

The simple let expression definition was then extended to allow recursion using the fixed-point combinator.

Fixed-point combinator[edit]

The fixed-point combinator may be represented by the expression,

This representation may be converted into a lambda term. A lambda abstraction does not support reference to the variable name, in the applied expression, so x must be passed in as a parameter to x.

Using the eta reduction rule,

gives,

A let expression may be expressed as a lambda abstraction using,

gives,

This is possibly the simplest implementation of a fixed point combinator in lambda calculus. However one beta reduction gives the more symmetrical form of Curry's Y combinator.

Recursive let expression[edit]

The recursive let expression called "let rec" is defined using the Y combinator for recursive let expressions.

Mutually recursive let expression[edit]

This approach is then generalized to support mutual recursion. A mutually recursive let expression may be composed by rearranging the expression to remove any and conditions. This is achieved by replacing multiple function definitions with a single function definition, which sets a list of variables equal to a list of expressions. A version of the Y combinator, called the Y* poly-variadic fix-point combinator [5] is then used to calculate fixed point of all the functions at the same time. The result is a mutually recursive implementation of the let expression.

Multiple values[edit]

A let expression may be used to represent a value that is a member of a set,

Under function application, of one let expression to another,

But a different rule applies for applying the let expression to itself.

There appear no simple rule for combining values. What is required is a general form of expression that represents a variable whose value is a member of a set of values. The expression should be based on the variable and the set.

Function application applied to this form should give another expression in the same form. In this way any expression on functions of multiple values may be treated as if it had one value.

It is not sufficient for the form to represent only the set of values. Each value must have a condition that determines when the expression takes the value. The resulting construct is a set of pairs of conditions and values, called a "value set". See narrowing of algebraic value sets.

Rules for conversion between lambda calculus and let expressions[edit]

Meta-functions will be given that describe the conversion between lambda and let expressions. A meta-function is a function that takes a program as a parameter. The program is data for the meta-program. The program and the meta program are at different meta-levels.

The following conventions will be used to distinguish program from the meta program,

  • Square brackets [] will be used to represent function application in the meta program.
  • Capital letters will be used for variables in the meta program. Lower case letters represent variables in the program.
  • will be used for equals in the meta program.

For simplicity the first rule given that matches will be applied. The rules also assume that the lambda expressions have been pre-processed so that each lambda abstraction has a unique name.

The substitution operator is also used. The expression means substitute every occurrence of G in L by S and return the expression. The definition used is extended to cover the substitution of expressions, from the definition given on the Lambda calculus page. The matching of expressions should compare expressions for alpha equivalence (renaming of variables).

Conversion from lambda to let expressions[edit]

The following rules describe how to convert from a lambda expression to a let expression, without altering the structure.

Rule 6 creates a unique variable V, as a name for the function.

Example[edit]

For example, the Y combinator,

is converted to,

Rule Lambda expression
6
4
5
3
8
8
4
2
1

Conversion from let to lambda expressions[edit]

These rules reverse the conversion described above. They convert from a let expression to a lambda expression, without altering the structure. Not all let expressions may be converted using these rules. The rules assume that the expressions are already arranged as if they had been generated by de-lambda.

There is no exact structural equivalent in lambda calculus for let expressions that have free variables that are used recursively. In this case some addition of parameters is required. Rules 8 and 10 add these parameters.

Rules 8 and 10 are sufficient for two mutually recursive equations in the let expression. However they will not work for three or more mutually recursive equations. The general case needs an extra level of looping which makes the meta function a little more difficult. The rules that follow replace rules 8 and 10 in implementing the general case. Rules 8 and 10 have been left so that the simpler case may be studied first.

  1. lambda-form - Convert the expression into a conjunction of expressions, each of the form variable = expression.
    1. ...... where V is a variable.
  2. lift-vars - Get the set of variables that need X as a parameter, because the expression has X as a free variable.
  3. sub-vars - For each variable in the set substitute it for the variable applied to X in the expression. This makes X a variable passed in as a parameter, instead of being a free variable in the right hand side of the equation.
  4. de-let - Lift each condition in E so that X is not a free variable on the right hand side of the equation.

Examples[edit]

For example, the let expression obtained from the Y combinator,

is converted to,

Rule Lambda expression
6
1
2
3
7
4
4
5
1
2
3
4
5

For a second example take the lifted version of the Y combinator,

is converted to,

Rule Lambda expression
8
7
1, 2
7, 4, 5
1, 2

For a third example the translation of,

is,

Rule Lambda expression
9
1
2
7
1
2

For a forth example the translation of,

is,

which is the famous y combinator.

Rule Lambda expression
9
2
7
1
2

Key people[edit]

See also[edit]

References[edit]

  1. ^ "PCF is a programming language for computable functions, based on LCF, Scott’s logic of computable functions" (Plotkin 1977). Programming Computable Functions is used by (Mitchell 1996). It is also referred to as Programming with Computable Functions or Programming language for Computable Functions.
  2. ^ "Scheme - Variables and Let Expressions".
  3. ^ Simon, Marlow (2010). "Haskell 2010 Language Report - Let Expressions".
  4. ^ Landin, Peter J. (1964). "The mechanical evaluation of expressions". The Computer Journal. 6 (4). British Computer Society: 308–320. doi:10.1093/comjnl/6.4.308.
  5. ^ "Simplest poly-variadic fix-point combinators for mutual recursion".

Works cited[edit]