Mogensen–Scott encoding

Way to represent data types in the lambda calculus

In computer science, Scott encoding is a way to represent (recursive) data types in the lambda calculus. Church encoding performs a similar function. The data and operators form a mathematical structure which is embedded in the lambda calculus.

Whereas Church encoding starts with representations of the basic data types, and builds up from it, Scott encoding starts from the simplest method to compose algebraic data types.

Mogensen–Scott encoding extends and slightly modifies Scott encoding by applying the encoding to Metaprogramming[citation needed]. This encoding allows the representation of lambda calculus terms, as data, to be operated on by a meta program.

History

Scott encoding appears first in a set of unpublished lecture notes by Dana Scott[1] whose first citation occurs in the book Combinatorial Logic, Volume II.[2] Michel Parigot gave a logical interpretation of and strongly normalizing recursor for Scott-encoded numerals,[3] referring to them as the "Stack type" representation of numbers. Torben Mogensen later extended Scott encoding for the encoding of Lambda terms as data.[4]

Discussion

Lambda calculus allows data to be stored as parameters to a function that does not yet have all the parameters required for application. For example,

( ( λ x 1 x n . λ c . c   x 1 x n )   v 1 v n )   f {\displaystyle ((\lambda x_{1}\ldots x_{n}.\lambda c.c\ x_{1}\ldots x_{n})\ v_{1}\ldots v_{n})\ f}

May be thought of as a record or struct where the fields x 1 x n {\displaystyle x_{1}\ldots x_{n}} have been initialized with the values v 1 v n {\displaystyle v_{1}\ldots v_{n}} . These values may then be accessed by applying the term to a function f. This reduces to,

f   v 1 v n {\displaystyle f\ v_{1}\ldots v_{n}}

c may represent a constructor for an algebraic data type in functional languages such as Haskell. Now suppose there are N constructors, each with A i {\displaystyle A_{i}} arguments;

Constructor Given arguments Result ( ( λ x 1 x A 1 . λ c 1 c N . c 1   x 1 x A 1 )   v 1 v A 1 ) f 1 f N f 1   v 1 v A 1 ( ( λ x 1 x A 2 . λ c 1 c N . c 2   x 1 x A 2 )   v 1 v A 2 ) f 1 f N f 2   v 1 v A 2 ( ( λ x 1 x A N . λ c 1 c N . c N   x 1 x A N )   v 1 v A N ) f 1 f N f N   v 1 v A N {\displaystyle {\begin{array}{c|c|c}{\text{Constructor}}&{\text{Given arguments}}&{\text{Result}}\\\hline ((\lambda x_{1}\ldots x_{A_{1}}.\lambda c_{1}\ldots c_{N}.c_{1}\ x_{1}\ldots x_{A_{1}})\ v_{1}\ldots v_{A_{1}})&f_{1}\ldots f_{N}&f_{1}\ v_{1}\ldots v_{A_{1}}\\((\lambda x_{1}\ldots x_{A_{2}}.\lambda c_{1}\ldots c_{N}.c_{2}\ x_{1}\ldots x_{A_{2}})\ v_{1}\ldots v_{A_{2}})&f_{1}\ldots f_{N}&f_{2}\ v_{1}\ldots v_{A_{2}}\\\vdots &\vdots &\vdots \\((\lambda x_{1}\ldots x_{A_{N}}.\lambda c_{1}\ldots c_{N}.c_{N}\ x_{1}\ldots x_{A_{N}})\ v_{1}\ldots v_{A_{N}})&f_{1}\ldots f_{N}&f_{N}\ v_{1}\ldots v_{A_{N}}\end{array}}}

Each constructor selects a different function from the function parameters f 1 f N {\displaystyle f_{1}\ldots f_{N}} . This provides branching in the process flow, based on the constructor. Each constructor may have a different arity (number of parameters). If the constructors have no parameters then the set of constructors acts like an enum; a type with a fixed number of values. If the constructors have parameters, recursive data structures may be constructed.

Definition

Let D be a datatype with N constructors, { c i } i = 1 N {\displaystyle \{c_{i}\}_{i=1}^{N}} , such that constructor c i {\displaystyle c_{i}} has arity A i {\displaystyle A_{i}} .

Scott encoding

The Scott encoding of constructor c i {\displaystyle c_{i}} of the data type D is

λ x 1 x A i . λ c 1 c N . c i   x 1 x A i {\displaystyle \lambda x_{1}\ldots x_{A_{i}}.\lambda c_{1}\ldots c_{N}.c_{i}\ x_{1}\ldots x_{A_{i}}}

Mogensen–Scott encoding

Mogensen extends Scott encoding to encode any untyped lambda term as data. This allows a lambda term to be represented as data, within a Lambda calculus meta program. The meta function mse converts a lambda term into the corresponding data representation of the lambda term;

mse [ x ] = λ a , b , c . a   x mse [ M   N ] = λ a , b , c . b   mse [ M ]   mse [ N ] mse [ λ x . M ] = λ a , b , c . c   ( λ x . mse [ M ] ) {\displaystyle {\begin{aligned}\operatorname {mse} [x]&=\lambda a,b,c.a\ x\\\operatorname {mse} [M\ N]&=\lambda a,b,c.b\ \operatorname {mse} [M]\ \operatorname {mse} [N]\\\operatorname {mse} [\lambda x.M]&=\lambda a,b,c.c\ (\lambda x.\operatorname {mse} [M])\\\end{aligned}}}

The "lambda term" is represented as a tagged union with three cases:

  • Constructor a - a variable (arity 1, not recursive)
  • Constructor b - function application (arity 2, recursive in both arguments),
  • Constructor c - lambda-abstraction (arity 1, recursive).

For example,

mse [ λ x . f   ( x   x ) ] λ a , b , c . c   ( λ x . mse [ f   ( x   x ) ] ) λ a , b , c . c   ( λ x . λ a , b , c . b   mse [ f ]   mse [ x   x ] ) λ a , b , c . c   ( λ x . λ a , b , c . b   ( λ a , b , c . a   f )   mse [ x   x ] ) λ a , b , c . c   ( λ x . λ a , b , c . b   ( λ a , b , c . a   f )   ( λ a , b , c . b   mse [ x ]   mse [ x ] ) ) λ a , b , c . c   ( λ x . λ a , b , c . b   ( λ a , b , c . a   f )   ( λ a , b , c . b   ( λ a , b , c . a   x )   ( λ a , b , c . a   x ) ) ) {\displaystyle {\begin{array}{l}\operatorname {mse} [\lambda x.f\ (x\ x)]\\\lambda a,b,c.c\ (\lambda x.\operatorname {mse} [f\ (x\ x)])\\\lambda a,b,c.c\ (\lambda x.\lambda a,b,c.b\ \operatorname {mse} [f]\ \operatorname {mse} [x\ x])\\\lambda a,b,c.c\ (\lambda x.\lambda a,b,c.b\ (\lambda a,b,c.a\ f)\ \operatorname {mse} [x\ x])\\\lambda a,b,c.c\ (\lambda x.\lambda a,b,c.b\ (\lambda a,b,c.a\ f)\ (\lambda a,b,c.b\ \operatorname {mse} [x]\ \operatorname {mse} [x]))\\\lambda a,b,c.c\ (\lambda x.\lambda a,b,c.b\ (\lambda a,b,c.a\ f)\ (\lambda a,b,c.b\ (\lambda a,b,c.a\ x)\ (\lambda a,b,c.a\ x)))\end{array}}}

Comparison to the Church encoding

The Scott encoding coincides with the Church encoding for booleans. Church encoding of pairs may be generalized to arbitrary data types by encoding c i {\displaystyle c_{i}} of D above as[citation needed]

λ x 1 x A i . λ c 1 c N . c i ( x 1 c 1 c N ) ( x A i c 1 c N ) {\displaystyle \lambda x_{1}\ldots x_{A_{i}}.\lambda c_{1}\ldots c_{N}.c_{i}(x_{1}c_{1}\ldots c_{N})\ldots (x_{A_{i}}c_{1}\ldots c_{N})}

compare this to the Mogensen Scott encoding,

λ x 1 x A i . λ c 1 c N . c i x 1 x A i {\displaystyle \lambda x_{1}\ldots x_{A_{i}}.\lambda c_{1}\ldots c_{N}.c_{i}x_{1}\ldots x_{A_{i}}}

With this generalization, the Scott and Church encodings coincide on all enumerated datatypes (such as the boolean datatype) because each constructor is a constant (no parameters).

Concerning the practicality of using either the Church or Scott encoding for programming, there is a symmetric trade-off:[5] Church-encoded numerals support a constant-time addition operation and have no better than a linear-time predecessor operation; Scott-encoded numerals support a constant-time predecessor operation and have no better than a linear-time addition operation.

Type definitions

Church-encoded data and operations on them are typable in system F, as are Scott-encoded data and operations. However, the encoding is significantly more complicated.[6]

The type of the Scott encoding of the natural numbers is the positive recursive type:

μ X . R . R ( X R ) R {\displaystyle \mu X.\forall R.R\to (X\to R)\to R}

Full recursive types are not part of System F, but positive recursive types are expressible in System F via the encoding:

μ X : G [ X ] = X : ( ( G [ X ] X ) X ) {\displaystyle \mu X:G[X]=\forall X:((G[X]\to X)\to X)}

Combining these two facts yields the System F type of the Scott encoding:

X . ( ( ( R . R ( X R ) R ) X ) X ) {\displaystyle \forall X.(((\forall R.R\to (X\to R)\to R)\to X)\to X)}

This can be contrasted with the type of the Church encoding:

X . X ( X X ) X {\displaystyle \forall X.X\to (X\to X)\to X}

The Church encoding is a second-order type, but the Scott encoding is fourth-order!


See also

  • Church encoding
  • System F
  • Lambda cube

Notes

  1. ^ Scott, Dana (1968) [1962]. A system of functional abstraction. Lectures delivered at University of California, Berkeley.
  2. ^ Curry, Haskell (1972). Combinatorial Logic, Volume II. North-Holland Publishing Company. ISBN 0-7204-2208-6.
  3. ^ Parigot, Michel (1988). "Programming with proofs: A second order type theory". In H. Ganzinger (ed.). European Symposium on Programming: ESOP '88. 2nd European Symposium on Programming. Nancy, France, March 21–24, 1988. Lecture Notes in Computer Science. Vol. 300. Springer. pp. 145–159. doi:10.1007/3-540-19027-9_10. ISBN 978-3-540-19027-1.
  4. ^ Mogensen, Torben (1994). "Efficient Self-Interpretation in Lambda Calculus". Journal of Functional Programming. 2 (3): 345–364. doi:10.1017/S0956796800000423. S2CID 8736707.
  5. ^ Parigot, Michel (1990). "On the representation of data in lambda-calculus". In Egon Börger; Hans Kleine Büning; Michael M. Richter (eds.). International Workshop on Computer Science Logic: CSL '89. 3rd Workshop on Computer Science Logic. Kaiserslautern, FRG, October 2-6, 1989. Lecture Notes in Computer Science. Vol. 440. Springer. pp. 209–321. doi:10.1007/3-540-52753-2_47. ISBN 978-3-540-52753-4.
  6. ^ See the note "Types for the Scott numerals" by Martín Abadi, Luca Cardelli and Gordon Plotkin (February 18, 1993).

References

  • Stump, A. (2009). Directly reflective meta-programming. Higher-Order and Symbolic Computation, 22, 115-144.
  • Mogensen, T.Æ. (1992). Efficient Self-Interpretations in lambda Calculus. J. Funct. Program., 2, 345-363.