Contents
Mogensen–Scott encoding
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. 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 whose first citation occurs in the book Combinatorial Logic, Volume II. Michel Parigot gave a logical interpretation of and strongly normalizing recursor for Scott-encoded numerals, referring to them as the "Stack type" representation of numbers. Torben Mogensen later extended Scott encoding for the encoding of Lambda terms as data.
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, May be thought of as a record or struct where the fields have been initialized with the values. These values may then be accessed by applying the term to a function f. This reduces to, 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 arguments; Each constructor selects a different function from the function parameters. 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,, such that constructor c_i has arity A_i.
Scott encoding
The Scott encoding of constructor c_i of the data type D is
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; The "lambda term" is represented as a tagged union with three cases: For example,
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 of D above as compare this to the Mogensen Scott encoding, 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: 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. The type of the Scott encoding of the natural numbers is the positive recursive type: Full recursive types are not part of System F, but positive recursive types are expressible in System F via the encoding: Combining these two facts yields the System F type of the Scott encoding: This can be contrasted with the type of the Church encoding: The Church encoding is a second-order type, but the Scott encoding is fourth-order!
This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.
Wikipedia® is a registered trademark of the
Wikimedia Foundation, Inc.
Bliptext is not
affiliated with or endorsed by Wikipedia or the
Wikimedia Foundation.