- Calculus of constructions
The calculus of constructions (CoC) is a higher-order
typed lambda calculus , initially developed byThierry Coquand , where types arefirst-class value s. It is thus possible, within the CoC, to define functions from, say, integers to types, types to types as well as functions from integers to integers.The CoC is strongly normalizing, though, by
Gödel's incompleteness theorem , it is impossible to prove this property within the CoC since it implies consistency.The CoC was the basis of the early versions of the
Coq theorem prover; later versions were built upon theCalculus of inductive constructions , an extension of CoC with native support for inductivedatatype s. In the original CoC, inductive datatypes had to be emulated as their polymorphic destructor function.The basics of the calculus of constructions
The Calculus of Constructions can be considered an extension of the
Curry-Howard isomorphism . The Curry-Howard isomorphism associates a term in the simply typed lambda calculus with each natural-deduction proof in intuitionistic propositional logic. The Calculus of Constructions extends this isomorphism to proofs in the full intuitionistic predicate calculus, which includes proofs of quantified statements (which we will also call "propositions").Terms
A "term" in the calculus of constructions is constructed using the following rules:
* T is a term (also called "Type")
* P is a term (also called "Prop", the type of all propositions)
* If and are terms, then so are
**
** ()
** ()The calculus of constructions has four object types:
# "proofs", which are terms whose types are "propositions"
# "propositions", which are also known as "small types"
# "predicates", which are functions that return propositions
# "large types", which are the types of predicates. (P is an example of a large type)
# T itself, which is the type of large types.Judgements
In the calculus of constructions, a judgement is a typing inference:
:
Which can be read as the implication
: If variables have types , then term has type .
The valid judgements for the calculus of constructions are derivable from a set of inference rules. In the following, we use to mean a sequence of type assignments , and we use K to mean either P or T. We will write to mean " has type , and has type ". We will write to mean the result of substituting the term for the variable in the term .
An inference rule is written in the form
:
which means
: If is a valid judgement, then so is
Inference rules for calculus of constructions
#
#
#
#
#Defining logical operators
The calculus of constructions has very few basic operators: the only logical operator for forming propositions is . However, this one operator is sufficient to define all the other logical operators:
:
Defining data types
The basic data types used in computer science can be definedwithin the Calculus of Constructions:
; Booleans : ; Naturals : ; Product : ; Disjoint union :
ee also
Topics
*
Curry–Howard isomorphism
*Intuitionistic logic
*Intuitionistic type theory
*Lambda calculus
*Lambda cube
*System F
*Typed lambda calculus Theorists
* Coquand, Thierry
* Girard, Jean-YvesReferences
* Thierry Coquand and Gerard Huet: The Calculus of Constructions. Information and Computation, Vol. 76, Issue 2-3, 1988.
* For a source freely accessible online, see Coquand and Huet: [http://www.inria.fr/rrrt/rr-0530.html The calculus of constructions] . Technical Report 530, INRIA, Centre de Rocquencourt, 1986. Note terminology is rather different. For instance, () is written ["x" : "A"] "B".
* M. W. Bunder and Jonathan P. Seldin: [http://citeseer.ist.psu.edu/bunder04variants.html Variants of the Basic Calculus of Constructions] . 2004.
Wikimedia Foundation. 2010.