
System F, also known as the polymorphic lambda calculus or the second-order lambda calculus, is a typed lambda calculus. It was discovered independently by the logician Jean-Yves Girard and the computer scientist John C. Reynolds. System F formalizes the notion of parametric polymorphism in programming languages.
Just as the lambda calculus has variables ranging over functions, and binders for them, the second-order lambda calculus has variables ranging over types, and binders for them.
As an example, the fact that the identity function can have any type of the form A→ A would be formalized in System F as the judgement

where α is a type variable. The upper-case Λ is traditionally used to used to denote type-level functions, as opposed to the lower-case λ which is used for value-level functions.
Under the Curry-Howard isomorphism, System F corresponds to a second-order logic.
System F, together with even more expressive lambda calculi, can be seen as part of the lambda cube.
Contents |
The Boolean type is defined as:
, where α is a type variable. This produces the following two definitions for the boolean values TRUE and FALSE:
Then, with these two λ-terms, we can define some logic operators:
There really is no need for a IFTHENELSE function as one can just use raw Boolean typed terms as decision functions. However, if one is requested:
will do. A predicate is a function which returns a boolean value. The most fundamental predicate is ISZERO which returns TRUE if and only if its argument is the Church numeral 0:
System F allows recursive constructions to be embedded in a natural manner, related to that in Martin-Löf's type theory. Abstract structures (S) are created using constructors. These are functions typed as:
.Recursivity is manifested when S itself appears within one of the types Ki. If you have m of these constructors, you can define the type of S as:
![\forall \alpha.(K_1^1[\alpha/S]\rightarrow\dots\rightarrow \alpha)\dots\rightarrow(K_1^m[\alpha/S]\rightarrow\dots\rightarrow \alpha)\rightarrow \alpha](http://upload.wikimedia.org/math/7/1/6/716b1e0202bf98800918007570cbc4e3.png)
For instance, the natural numbers can be defined as an inductive datatype N with constructors

The System F type corresponding to this structure is
. The terms of this type comprise a typed version of the Church numerals, the first few of which are:




If we reverse the order of the curried arguments (i.e.,
), then the Church numeral for n is a function that takes a function f as argument and returns the nth power of f. That is to say, a Church numeral is a higher-order function -- it takes a single-argument function f, and returns another single-argument function.
The version of System F used in this article is as an explicitly-typed, or Church-style, calculus. The typing information contained in λ-terms makes type-checking straightforward. Joe Wells (1994) settled an "embarrassing open problem" by proving that type checking is undecidable for a Curry-style variant of System F, that is, one that lacks explicit typing annotations. [1] [2]
Wells' result implies that type inference for System F is impossible. A restriction of System F known as "Hindley-Milner", or simply "HM", does have an easy type inference algorithm and is used for many strongly typed functional programming languages such as Haskell 98 and ML. Over time, as the restrictions of HM-style type systems have become apparent, languages have steadily moved to more expressive logics for their type systems. As of 2008, GHC, a Haskell compiler, goes beyond HM, and now uses System F extended with non-syntactic type equality, for example.
System F1 is the simply-typed lambda calculus; it includes no mappings from types to types. The System F described in this article is technically System F2; that is, the system wherein all mappings from types to types take arguments which are strictly first-order (not functions themselves).
In general, there is a family of systems defined inductively by the kinds permitted in each system:
(the kind of types) and
where
and
(the kind of functions from types to types, where the argument type is of a lower order)In the limit, we can define system Fω to be

That is, Fω is the system which allows functions from types to types where the argument (and result) may be of any order.
Note that although Fω places no restrictions on the order of the arguments in these mappings, it does restrict the universe of the arguments for these mappings -- they must be types rather than values. System Fω does not permit mappings from values to types (Dependent types), though it does permit mappings from values to values (λ abstraction), mappings from types to values (Λ abstraction, sometimes written
) and mappings from types to types (λ abstraction at the level of types)
Why are we here?
All text is available under the terms of the GNU Free Documentation License
This page is cache of Wikipedia. History