Sponsored Links
-->

Monday, December 11, 2017

The personal page of Gérard Huet
src: pauillac.inria.fr

In mathematical logic and computer science, the calculus of constructions (CoC) is a type theory created by Thierry Coquand. It can serve as both a typed programming language and as constructive foundation for mathematics. For this second reason, the CoC and its variants have been the basis for Coq and other proof assistants.

Some of its variants include the calculus of inductive constructions (which adds inductive types), the calculus of (co)inductive constructions (which adds coinduction), and the predicative calculus of inductive constructions (which removes some impredicativity).


Video Calculus of constructions



General traits

The CoC is a higher-order typed lambda calculus, initially developed by Thierry Coquand. It is well known for being at the top of Barendregt's lambda cube. It is possible within CoC to define functions from integers to integers, as well as integers to types, types to types, and types to integers.

The CoC is strongly normalizing, although, by Gödel's incompleteness theorem, it is impossible to prove this property within the CoC since it implies inconsistency.


Maps Calculus of constructions



Usage

The CoC has developed alongside the Coq proof assistant. As features were added (or possible liabilities removed) to the theory, they became available in Coq.

Variants of the CoC are used in other proof assistants, such as Matita.


Math Analysis - Unit Circle - Easy construction based on ...
src: i.ytimg.com


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);
  • Variables (x, y, ...) are terms;
  • If A and B are terms, then so is (A B);
  • If A and B are terms and x is a variable, then so are:
    • (?x:A . B),
    • (?x:A . B).

In other words, the term syntax, in BNF, is then:

e ::= T | P | x | e e | ? x : e . e | ? x : e . e {\displaystyle e::=\mathbf {T} \mid \mathbf {P} \mid x\mid e\,e\mid \lambda x{\mathbin {:}}e.e\mid \forall x{\mathbin {:}}e.e}

The calculus of constructions has five kinds of objects:

  1. proofs, which are terms whose types are propositions;
  2. propositions, which are also known as small types;
  3. predicates, which are functions that return propositions;
  4. large types, which are the types of predicates (P is an example of a large type);
  5. T itself, which is the type of large types.

Judgments

The calculus of constructions allows proving typing judgments:

x 1 : A 1 , x 2 : A 2 , ... ? t : B {\displaystyle x_{1}:A_{1},x_{2}:A_{2},\ldots \vdash t:B}

Which can be read as the implication

If variables x 1 , x 2 , ... {\displaystyle x_{1},x_{2},\ldots } have types A 1 , A 2 , ... {\displaystyle A_{1},A_{2},\ldots } , then term t {\displaystyle t} has type B {\displaystyle B} .

The valid judgments for the calculus of constructions are derivable from a set of inference rules. In the following, we use ? {\displaystyle \Gamma } to mean a sequence of type assignments x 1 : A 1 , x 2 : A 2 , ... {\displaystyle x_{1}:A_{1},x_{2}:A_{2},\ldots } , and we use K to mean either P or T. We shall write B [ x := N ] {\displaystyle B[x:=N]} to mean the result of substituting the term N {\displaystyle N} for the free variable x {\displaystyle x} in the term B {\displaystyle B} .

An inference rule is written in the form

? ? A : B ? ? ? C : D {\displaystyle {\Gamma \vdash A:B} \over {\Gamma '\vdash C:D}}

which means

If ? ? A : B {\displaystyle \Gamma \vdash A:B} is a valid judgment, then so is ? ? ? C : D {\displaystyle \Gamma '\vdash C:D}

Inference rules for the calculus of constructions

1. ? ? P : T {\displaystyle {{} \over {}\Gamma \vdash P:T}}

2. ? ? A : K ? , x : A ? x : A {\displaystyle {\Gamma \vdash A:K \over {\Gamma ,x:A\vdash x:A}}}

3. ? , x : A ? B : K ? , x : A ? N : B ? ? ( ? x : A . N ) : ( ? x : A . B ) : K {\displaystyle {\Gamma ,x:A\vdash B:K\qquad \qquad \Gamma ,x:A\vdash N:B \over {\Gamma \vdash (\lambda x:A.N):(\forall x:A.B):K}}}

4. ? ? M : ( ? x : A . B ) ? ? N : A ? ? M N : B [ x := N ] {\displaystyle {\Gamma \vdash M:(\forall x:A.B)\qquad \qquad \Gamma \vdash N:A \over {\Gamma \vdash MN:B[x:=N]}}}

5. ? ? M : A A = ? B B : K ? ? M : B {\displaystyle {\Gamma \vdash M:A\qquad \qquad A=_{\beta }B\qquad \qquad B:K \over {\Gamma \vdash M:B}}}

Defining logical operators

The calculus of constructions has very few basic operators: the only logical operator for forming propositions is ? {\displaystyle \forall } . However, this one operator is sufficient to define all the other logical operators:

A => B ? ? x : A . B ( x ? B ) A ? B ? ? C : P . ( A => B => C ) => C A ? B ? ? C : P . ( A => C ) => ( B => C ) => C ¬ A ? ? C : P . ( A => C ) ? x : A . B ? ? C : P . ( ? x : A . ( B => C ) ) => C {\displaystyle {\begin{array}{ccll}A\Rightarrow B&\equiv &\forall x:A.B&(x\notin B)\\A\wedge B&\equiv &\forall C:P.(A\Rightarrow B\Rightarrow C)\Rightarrow C&\\A\vee B&\equiv &\forall C:P.(A\Rightarrow C)\Rightarrow (B\Rightarrow C)\Rightarrow C&\\\neg A&\equiv &\forall C:P.(A\Rightarrow C)&\\\exists x:A.B&\equiv &\forall C:P.(\forall x:A.(B\Rightarrow C))\Rightarrow C&\end{array}}}

Defining data types

The basic data types used in computer science can be defined within the Calculus of Constructions:

Booleans 
? A : P . A => A => A {\displaystyle \forall A:P.A\Rightarrow A\Rightarrow A}
Naturals 
? A : P . ( A => A ) => ( A => A ) {\displaystyle \forall A:P.(A\Rightarrow A)\Rightarrow (A\Rightarrow A)}
Product A × B {\displaystyle A\times B}  
A ? B {\displaystyle A\wedge B}
Disjoint union A + B {\displaystyle A+B}  
A ? B {\displaystyle A\vee B}

Note that Booleans and Naturals are defined in the same way as in Church encoding. However additional problems raise from propositional extensionality and proof irrelevance [1].


Amazon.com: Texas Instruments TI-92 Graphing Calculator: Electronics
src: images-na.ssl-images-amazon.com


See also

  • Pure type system
  • Lambda cube
  • System F
  • Intuitionistic type theory
  • Homotopy type theory

Calculus Range | Ergo Form
src: ergoform.co.za


References

  • Coquand, Thierry; Huet, Gérard (1988). "The Calculus of Constructions". Information and Computation. 76 (2-3): 95-120. doi:10.1016/0890-5401(88)90005-3. 
  • Also available freely accessible online: Coquand, Thierry; Huet, Gérard (1986). "The calculus of constructions". Technical Report 530. INRIA, Centre de Rocquencourt.  Note terminology is rather different. For instance, ( ? x : A . B {\displaystyle \forall x:A.B} ) is written [x : A] B.
  • Bunder, M. W.; Seldin, Jonathan P. (2004). "Variants of the Basic Calculus of Constructions". CiteSeerX 10.1.1.88.9497 . 
  • Frade, Maria João (2009). "Calculus of Inductive Constructions" (talk). 
  • Gérard Huet (1988). K. Fuchi and M. Nivat, ed. Induction Principles Formalized in the Calculus of Constructions (PDF). North-Holland. pp. 205-216.  -- An application of the CoC

Source of article : Wikipedia