Lambda cube
In mathematical logic and type theory, the λ-cube (also written lambda cube) is a framework introduced by Henk Barendregt<ref name=":0">Template:Cite journal</ref> to investigate the different dimensions in which the calculus of constructions is a generalization of the simply typed λ-calculus. Each dimension of the cube corresponds to a new kind of dependency between terms and types. Here, "dependency" refers to the capacity of a term or type to bind a term or type. The respective dimensions of the λ-cube correspond to:
- x-axis (<math>\rightarrow</math>): types that can depend on terms, corresponding to dependent types.
- y-axis (<math>\uparrow</math>): terms that can depend on types, corresponding to polymorphism.
- z-axis (<math>\nearrow</math>): types that can depend on other types, corresponding to (binding) type operators.
The different ways to combine these three dimensions yield the 8 vertices of the cube, each corresponding to a different kind of typed system. The λ-cube can be generalized into the concept of a pure type system.
Examples of SystemsEdit
(λ→) Simply typed lambda calculusEdit
The simplest system found in the λ-cube is the simply typed lambda calculus, also called λ→. In this system, the only way to construct an abstraction is by making a term depend on a term, with the typing rule:
<math>\frac{\Gamma, x : \sigma \;\vdash\; t : \tau}{\Gamma \;\vdash\; \lambda x . t : \sigma \to \tau}</math>
(λ2) System FEdit
In System F (also named λ2 for the "second-order typed lambda calculus")<ref>Template:Cite book</ref> there is another type of abstraction, written with a <math>\Lambda</math>, that allows terms to depend on types, with the following rule:
<math>\frac{\Gamma \;\vdash\; t : \sigma}{\Gamma \;\vdash\; \Lambda \alpha . t : \Pi \alpha . \sigma} \;\text{ if } \alpha\text{ does not occur free in }\Gamma</math>
The terms beginning with a <math>\Lambda</math> are called polymorphic, as they can be applied to different types to get different functions, similarly to polymorphic functions in ML-like languages. For instance, the polymorphic identity <syntaxhighlight lang="ocaml">
fun x -> x
</syntaxhighlight>of OCaml has type <syntaxhighlight lang="ocaml">
'a -> 'a
</syntaxhighlight>meaning it can take an argument of any type 'a
and return an element of that type. This type corresponds in λ2 to the type <math>\Pi \alpha . \alpha \to \alpha</math>.
(λω) System FωEdit
In System F<math>\underline{\omega}</math> a construction is introduced to supply types that depend on other types. This is called a type constructor and provides a way to build "a function with a type as a value".<ref>Template:Harvnb</ref> An example of such a type constructor is the type of binary trees with leaves labeled by data of a given type <math>A</math>: <math>\mathsf{TREE} := \lambda A : * . \Pi B . (A \to B) \to (B \to B \to B) \to B</math>, where "<math>A:*</math>" informally means "<math>A</math> is a type". This is a function that takes a type parameter <math>A</math> as an argument and returns the type of <math>\mathsf{TREE}</math>s of values of type <math>A</math>. In concrete programming, this feature corresponds to the ability to define type constructors inside the language, rather than considering them as primitives. The previous type constructor roughly corresponds to the following definition of a tree with labeled leaves in OCaml:<syntaxhighlight lang="ocaml"> type 'a tree = | Leaf of 'a | Node of 'a tree * 'a tree </syntaxhighlight>
This type constructor can be applied to other types to obtain new types. E.g., to obtain type of trees of integers:<syntaxhighlight lang="ocaml">type int_tree = int tree</syntaxhighlight>
System F<math>\underline{\omega}</math> is generally not used on its own, but is useful to isolate the independent feature of type constructors.<ref>Template:Harvnb</ref>
(λP) Lambda-PEdit
In the λP system, also named λΠ, and closely related to the LF Logical Framework, one has so called dependent types. These are types that are allowed to depend on terms. The crucial introduction rule of the system is
<math>\frac{\Gamma, x : A \;\vdash\; B : *}{\Gamma \;\vdash\; (\Pi x : A . B) : *}</math>
where <math>*</math> represents valid types. The new type constructor <math>\Pi</math> corresponds via the Curry-Howard isomorphism to a universal quantifier, and the system λP as a whole corresponds to first-order logic with implication as only connective. An example of these dependent types in concrete programming is the type of vectors on a certain length: the length is a term, on which the type depends.
(λω) System FωEdit
System Fω combines both the <math>\Lambda</math> constructor of System F and the type constructors from System F<math>\underline{\omega}</math>. Thus System Fω provides both terms that depend on types and types that depend on types.
(λC) Calculus of constructionsEdit
In the calculus of constructions, denoted as λC in the cube or as λPω,<ref name=:0/>Template:Rp these four features cohabit, so that both types and terms can depend on types and terms. The clear border that exists in λ→ between terms and types is somewhat abolished, as all types except the universal <math>\square</math> are themselves terms with a type.
Formal definitionEdit
As for all systems based upon the simply typed lambda calculus, all systems in the cube are given in two steps: first, raw terms, together with a notion of β-reduction, and then typing rules that allow to type those terms.
The set of sorts is defined as <math>S := \{*, \square \}</math>, sorts are represented with the letter <math>s</math>. There is also a set <math>V</math> of variables, represented by the letters <math>x,y,\dots</math>. The raw terms of the eight systems of the cube are given by the following syntax:
<math>A := x \mid s \mid A~A \mid \lambda x : A . A \mid \Pi x : A . A</math>
and <math>A \to B</math> denoting <math>\Pi x : A . B</math> when <math>x</math> does not occur free in <math>B</math>.
The environments, as is usual in typed systems, are given by <math>\Gamma := \emptyset \mid \Gamma, x : A</math>
The notion of β-reduction is common to all systems in the cube. It is written <math>\to_{\beta}</math> and given by the rules<math display="block">\frac{}{(\lambda x : A . B)~C \to_{\beta} B[C/x]}</math><math display="block">\frac{B \to_{\beta} B'}{\lambda x : A . B \to_{\beta} \lambda x : A . B'}</math><math display="block">\frac{A \to_{\beta} A'}{\lambda x : A . B \to_{\beta} \lambda x : A' . B}</math><math display="block">\frac{B \to_{\beta} B'}{\Pi x : A . B \to_{\beta} \Pi x : A . B'}</math><math display="block">\frac{A \to_{\beta} A'}{\Pi x : A . B \to_{\beta} \Pi x : A' . B}</math>Its reflexive, transitive closure is written <math>=_\beta</math>.
The following typing rules are also common to all systems in the cube:<math display="block">\frac{}{\vdash * : \square}\quad \text{(Axiom)}</math><math display="block">\frac{\Gamma \vdash A : s}{\Gamma, x : A \vdash x : A } x \not\in \Gamma \quad \text{(Start)}</math><math display="block">\frac{\Gamma \vdash A : B \quad \Gamma \vdash C : s}{\Gamma, x : C \vdash A : B} x \not\in \Gamma \quad \text{(Weakening)}</math><math display="block">\frac{\Gamma \vdash C : \Pi x : A . B \quad \Gamma \vdash D : A}{\Gamma \vdash CD : B[D/x]}\quad\text{(Application)}</math><math display="block">\frac{\Gamma \vdash A : B \quad B =_{\beta} B' \quad \Gamma \vdash B' : s}{\Gamma \vdash A : B'}\quad\text{(Conversion)}</math>
The difference between the systems is in the pairs of sorts <math display="inline">(s_1,s_2)</math> that are allowed in the following two typing rules:<math display="block">\frac{\Gamma \vdash A : s_1 \quad \Gamma, x : A \vdash B : s_2}{\Gamma \vdash \Pi x : A . B : s_2}\quad\text{(Product)}</math><math>\frac{\Gamma \vdash A : s_1 \quad \Gamma, x : A \vdash B : C \quad \Gamma, x : A \vdash C : s_2}{\Gamma \vdash \lambda x : A . B : \Pi x : A . C}\quad\text{(Abstraction)}</math>
The correspondence between the systems and the pairs <math display="inline">(s_1,s_2)</math> allowed in the rules is the following:
<math>(s_1, s_2)</math> | <math>(*,*)</math> | <math>(*,\square)</math> | <math>(\square,*)</math> | <math>(\square,\square)</math> |
---|---|---|---|---|
λ→ | Template:Ya | Template:Na | Template:Na | Template:Na |
λP | Template:Ya | Template:Ya | Template:Na | Template:Na |
λ2 | Template:Ya | Template:Na | Template:Ya | Template:Na |
λω | Template:Ya | Template:Na | Template:Na | Template:Ya |
λP2 | Template:Ya | Template:Ya | Template:Ya | Template:Na |
λPω | Template:Ya | Template:Ya | Template:Na | Template:Ya |
λω | Template:Ya | Template:Na | Template:Ya | Template:Ya |
λC | Template:Ya | Template:Ya | Template:Ya | Template:Ya |
Each direction of the cube corresponds to one pair (excluding the pair <math display="inline">(*,*)</math> shared by all systems), and in turn each pair corresponds to one possibility of dependency between terms and types:
- <math display="inline">(*,*)</math> allows terms to depend on terms.
- <math display="inline">(*,\square)</math> allows types to depend on terms.
- <math display="inline">(\square, *)</math> allows terms to depend on types.
- <math display="inline">(\square, \square)</math> allows types to depend on types.
Comparison between the systemsEdit
λ→Edit
A typical derivation that can be obtained is<math display="block">\alpha : * \vdash \lambda x : \alpha . x : \Pi x : \alpha . \alpha</math>or with the arrow shortcut<math display="block">\alpha : * \vdash \lambda x : \alpha . x : \alpha \to \alpha</math>closely resembling the identity (of type <math display="inline">\alpha</math>) of the usual λ→. Note that all types used must appear in the context, because the only derivation that can be done in an empty context is <math display="inline">\vdash * : \square</math>.
The computing power is quite weak, it corresponds to the extended polynomials (polynomials together with a conditional operator).<ref>Template:Cite journal</ref>
λ2Edit
In λ2, such terms can be obtained as<math display="block">\vdash (\lambda \beta : * . \lambda x : \bot . x \beta) : \Pi \beta : * . \bot \to \beta</math>with <math display="inline">\bot = \Pi \alpha : * . \alpha</math>. If one reads <math display="inline">\Pi</math> as a universal quantification, via the Curry-Howard isomorphism, this can be seen as a proof of the principle of explosion. In general, λ2 adds the possibility to have impredicative types such as <math display="inline">\bot</math>, that is terms quantifying over all types including themselves.
The polymorphism also allows the construction of functions that were not constructible in λ→. More precisely, the functions definable in λ2 are those provably total in second-order Peano arithmetic.<ref>Template:Cite book</ref> In particular, all primitive recursive functions are definable.
λPEdit
In λP, the ability to have types depending on terms means one can express logical predicates. For instance, the following is derivable:<math display="block">\begin{array}{l}\alpha : *, a_0 : \alpha, p : \alpha \to *, q : * \vdash \\ \quad \lambda z : (\Pi x : \alpha . p x \to q) . \\ \quad \lambda y : (\Pi x : \alpha . p x) . \\ \quad (z a_0) (y a_0) : (\Pi x : \alpha . p x \to q) \to (\Pi x : \alpha . p x) \to q \end{array}</math>which corresponds, via the Curry-Howard isomorphism, to a proof of <math>(\forall x : A, P x \to Q) \to (\forall x : A, P x) \to Q</math>.
From the computational point of view, however, having dependent types does not enhance computational power, only the possibility to express more precise type properties.<ref name=":1">Template:Cite book</ref>
The conversion rule is strongly needed when dealing with dependent types, because it allows to perform computation on the terms in the type. For instance, if one has <math>\Gamma \vdash A : P((\lambda x . x)y)</math> and <math>\Gamma \vdash B : \Pi x : P(y) . C</math>, one needs to apply the conversion ruleTemplate:Efn to obtain <math>\Gamma \vdash A : P(y)</math> to be able to type <math>\Gamma \vdash B A : C</math>.
λωEdit
In λω, the following operator<math display="block">AND := \lambda \alpha : * . \lambda \beta : * . \Pi \gamma : * . (\alpha \to \beta \to \gamma) \to \gamma</math>is definable, that is <math>\vdash AND : * \to * \to *</math>. The derivation<math display="block">\alpha : *, \beta : * \vdash \Pi \gamma : * . (\alpha \to \beta \to \gamma) \to \gamma : *</math>can be obtained already in λ2, however the polymorphic <math display="inline">AND</math> can only be defined if the rule <math display="inline">(\square, *)</math> is also present.
From a computing point of view, λω is extremely strong, and has been considered as a basis for programming languages.<ref>Template:Cite book</ref>
λCEdit
The calculus of constructions has both the predicate expressiveness of λP and the computational power of λω, hence why λC is also called λPω,<ref name=:0/>Template:Rp so it is very powerful, both on the logical side and on the computational side.
Relation to other systemsEdit
The system Automath is similar to λ2 from a logical point of view. The ML-like languages, from a typing point of view, lie somewhere between λ→ and λ2, as they admit a restricted kind of polymorphic types, that is the types in prenex normal form. However, because they feature some recursion operators, their computing power is greater than that of λ2.<ref name=":1" /> The Coq system is based on an extension of λC with a linear hierarchy of universes, rather than only one untypable <math display="inline">\square</math>, and the ability to construct inductive types.
Pure type systems can be seen as a generalization of the cube, with an arbitrary set of sorts, axiom, product and abstraction rules. Conversely, the systems of the lambda cube can be expressed as pure type systems with two sorts <math>\{*, \square\}</math>, the only axiom <math display="inline">\{*,\square\}</math>, and a set of rules <math display="inline">R</math> such that <math>\{(*,*,*)\} \subseteq R \subseteq \{(*,*,*), (*,\square, \square), (\square, *, *), (\square, \square, \square) \}</math>.<ref name=":0" />
Via the Curry-Howard isomorphism, there is a one-to-one correspondence between the systems in the lambda cube and logical systems,<ref name=":0" /> namely:
System of the cube | Logical System |
---|---|
λ→ | (Zeroth-order) Propositional Calculus |
λ2 | Second-order Propositional Calculus |
λTemplate:Underline | Weakly Higher Order Propositional Calculus |
λω | Higher Order Propositional Calculus |
λP | (First order) Predicate Logic |
λP2 | Second-order Predicate Calculus |
λPTemplate:Underline | Weak Higher Order Predicate Calculus |
λC | Calculus of Constructions |
All the logics are implicative (i.e. the only connectives are <math display="inline">\to</math> and <math display="inline">\forall</math>), however one can define other connectives such as <math>\wedge</math> or <math>\neg</math> in an impredicative way in second and higher order logics. In the weak higher order logics, there are variables for higher order predicates, but no quantification on those can be done.
Common propertiesEdit
All systems in the cube enjoy
- the Church-Rosser property: if <math>M \to_\beta N</math> and <math>M \to_\beta N'</math> then there exists <math>N</math> such that <math>N \to^*_\beta N</math> and <math>N' \to^*_\beta N</math>;
- the subject reduction property: if <math>\Gamma \vdash M : T</math> and <math>M \to_\beta M'</math> then <math>\Gamma \vdash M' : T</math>;
- the uniqueness of types: if <math>\Gamma \vdash A : B</math> and <math>\Gamma \vdash A : B'</math> then <math>B =_\beta B'</math>.
All of these can be proven on generic pure type systems.<ref>Template:Cite book</ref>
Any term well-typed in a system of the cube is strongly normalizing,<ref name=":0" /> although this property is not common to all pure type systems. No system in the cube is Turing complete.<ref name=":1" />
SubtypingEdit
Subtyping however is not represented in the cube, even though systems like <math>F^\omega_{<:}</math>, known as higher-order bounded quantification, which combines subtyping and polymorphism are of practical interest, and can be further generalized to bounded type operators. Further extensions to <math>F^\omega_{<:}</math> allow the definition of purely functional objects; these systems were generally developed after the lambda cube paper was published.<ref>Template:Cite book</ref>
The idea of the cube is due to the mathematician Henk Barendregt (1991). The framework of pure type systems generalizes the lambda cube in the sense that all corners of the cube, as well as many other systems can be represented as instances of this general framework.<ref>Template:Harvnb</ref> This framework predates the lambda cube by a couple of years. In his 1991 paper, Barendregt also defines the corners of the cube in this framework.
See alsoEdit
- In his Habilitation à diriger les recherches,<ref>Template:Harvnb</ref> Olivier Ridoux gives a cut-out template of the lambda cube and also a dual representation of the cube as an octahedron, where the 8 vertices are replaced by faces, as well as a dual representation as a dodecahedron, where the 12 edges are replaced by faces.
- Logical cube
- Logical hexagon
- Square of opposition
- Triangle of opposition
NotesEdit
Template:Reflist Template:Notelist
Further readingEdit
- {{#invoke:citation/CS1|citation
|CitationClass=web }}
External linksEdit
- Barendregt's Lambda Cube in the context of pure type systems by Roger Bishop Jones