Calculus of constructions

The calculus of constructions (CoC) is a higher-order typed lambda calculus where types are first-class values. 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.

The CoC was initially developed by Thierry Coquand.

The CoC was the basis of the early versions of the Coq theorem prover; later versions were built upon the Calculus of Inductive Constructions an extension of CoC with native support for inductive datatypes. In the original CoC, inductive datatypes had to be emulated as their polymorphic destructor function.

Contents

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 <math>A<math> and <math>B<math> are terms, then so are
    • <math>\mathbf{(} A B )<math>
    • (<math>\mathbf{\lambda}x:A . B<math>)
    • (<math>\forall x:A . B<math>)

The calculus of constructions has 4 types 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.

Judgements

In the calculus of constructions, a judgement is a typing inference:

<math> x_1:A_1, x_2:A_2, \ldots \vdash t:B<math>

Which can be read as the implication

If variables <math>x_1, x_2, \ldots<math> have types <math>A_1, A_2, \ldots<math>, then term <math>\mathbf{t}<math> has type <math>\mathbf{B}<math>.

The valid judgements for the calculus of constructions are derivable from a set of inference rules. In the following, we use <math>\Gamma<math> to mean a sequence of type assignments <math> x_1:A_1, x_2:A_2, \ldots <math>, and we use K to mean either P or T. We will write <math> A : B :C<math> to mean "<math>A<math> has type <math>B<math>, and <math>B<math> has type <math>C<math>". We will write <math>B(x:=N)<math> to mean the result of substituting the term <math>N<math> for the variable <math>x<math> in the term <math>B<math>.

An inference rule is written in the form

<math> {\Gamma \vdash A:B} \over {\Gamma' \vdash C:D} <math>

which means

If <math> \Gamma \vdash A:B <math> is a valid judgement, then so is <math> \Gamma' \vdash C:D <math>

Inference rules for calculus of constructions

  1. <math> {{} \over {} \vdash P : T} <math>

  2. <math> {\Gamma \vdash A : K \over

{\Gamma, x:A \vdash x : A}} <math>

  1. <math> {\Gamma, x:A \vdash t : B : K \over

{\Gamma \vdash (\lambda x:A . t) : (\forall x:A . B) : K}} <math>

  1. <math> {\Gamma \vdash M : (\forall x:A . B)\qquad\qquad\Gamma

\vdash N : A \over {\Gamma \vdash M N : B(x := N)}} <math>

Defining logical operators

The calculus of constructions is very parsimonious when it comes to basic operators: the only logical operator for forming propositions is <math>\forall<math>. However, this one operator is sufficient to define all the other logical operators:

<math>A \Rightarrow B\qquad\equiv\qquad \forall x:A . B<math>
<math>A \wedge B\qquad\equiv\qquad \forall C:P .

(A \Rightarrow B \Rightarrow C) \Rightarrow C<math>

<math>A \vee B\qquad\equiv\qquad \forall C:P .

(A \Rightarrow C) \Rightarrow (B \Rightarrow C) \Rightarrow C<math>

<math>\neg A \qquad\equiv\qquad \forall C:P .

(A \Rightarrow C)<math>

<math>\exists x:A.B \qquad\equiv\qquad \forall C:P .

(\forall x:A.(B \Rightarrow C)) \Rightarrow C<math>

Defining data types

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

Booleans 
<math>\forall A: P . A \Rightarrow A \Rightarrow A<math>
Naturals 
<math>\forall A:P .

(A \Rightarrow A) \Rightarrow (A \Rightarrow A)<math>

Product <math>A \times B<math> 
<math>A \wedge B<math>
Disjoint union <math>A + B<math> 
<math>A \vee B<math>

See also

Navigation

  • Art and Cultures
    • Art (https://academickids.com/encyclopedia/index.php/Art)
    • Architecture (https://academickids.com/encyclopedia/index.php/Architecture)
    • Cultures (https://www.academickids.com/encyclopedia/index.php/Cultures)
    • Music (https://www.academickids.com/encyclopedia/index.php/Music)
    • Musical Instruments (http://academickids.com/encyclopedia/index.php/List_of_musical_instruments)
  • Biographies (http://www.academickids.com/encyclopedia/index.php/Biographies)
  • Clipart (http://www.academickids.com/encyclopedia/index.php/Clipart)
  • Geography (http://www.academickids.com/encyclopedia/index.php/Geography)
    • Countries of the World (http://www.academickids.com/encyclopedia/index.php/Countries)
    • Maps (http://www.academickids.com/encyclopedia/index.php/Maps)
    • Flags (http://www.academickids.com/encyclopedia/index.php/Flags)
    • Continents (http://www.academickids.com/encyclopedia/index.php/Continents)
  • History (http://www.academickids.com/encyclopedia/index.php/History)
    • Ancient Civilizations (http://www.academickids.com/encyclopedia/index.php/Ancient_Civilizations)
    • Industrial Revolution (http://www.academickids.com/encyclopedia/index.php/Industrial_Revolution)
    • Middle Ages (http://www.academickids.com/encyclopedia/index.php/Middle_Ages)
    • Prehistory (http://www.academickids.com/encyclopedia/index.php/Prehistory)
    • Renaissance (http://www.academickids.com/encyclopedia/index.php/Renaissance)
    • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
    • United States (http://www.academickids.com/encyclopedia/index.php/United_States)
    • Wars (http://www.academickids.com/encyclopedia/index.php/Wars)
    • World History (http://www.academickids.com/encyclopedia/index.php/History_of_the_world)
  • Human Body (http://www.academickids.com/encyclopedia/index.php/Human_Body)
  • Mathematics (http://www.academickids.com/encyclopedia/index.php/Mathematics)
  • Reference (http://www.academickids.com/encyclopedia/index.php/Reference)
  • Science (http://www.academickids.com/encyclopedia/index.php/Science)
    • Animals (http://www.academickids.com/encyclopedia/index.php/Animals)
    • Aviation (http://www.academickids.com/encyclopedia/index.php/Aviation)
    • Dinosaurs (http://www.academickids.com/encyclopedia/index.php/Dinosaurs)
    • Earth (http://www.academickids.com/encyclopedia/index.php/Earth)
    • Inventions (http://www.academickids.com/encyclopedia/index.php/Inventions)
    • Physical Science (http://www.academickids.com/encyclopedia/index.php/Physical_Science)
    • Plants (http://www.academickids.com/encyclopedia/index.php/Plants)
    • Scientists (http://www.academickids.com/encyclopedia/index.php/Scientists)
  • Social Studies (http://www.academickids.com/encyclopedia/index.php/Social_Studies)
    • Anthropology (http://www.academickids.com/encyclopedia/index.php/Anthropology)
    • Economics (http://www.academickids.com/encyclopedia/index.php/Economics)
    • Government (http://www.academickids.com/encyclopedia/index.php/Government)
    • Religion (http://www.academickids.com/encyclopedia/index.php/Religion)
    • Holidays (http://www.academickids.com/encyclopedia/index.php/Holidays)
  • Space and Astronomy
    • Solar System (http://www.academickids.com/encyclopedia/index.php/Solar_System)
    • Planets (http://www.academickids.com/encyclopedia/index.php/Planets)
  • Sports (http://www.academickids.com/encyclopedia/index.php/Sports)
  • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
  • Weather (http://www.academickids.com/encyclopedia/index.php/Weather)
  • US States (http://www.academickids.com/encyclopedia/index.php/US_States)

Information

  • Home Page (http://academickids.com/encyclopedia/index.php)
  • Contact Us (http://www.academickids.com/encyclopedia/index.php/Contactus)

  • Clip Art (http://classroomclipart.com)
Toolbox
Personal tools