Suvarna Garge (Editor)

Calculus of constructions

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

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.

Contents

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).

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, say, integers to types, types to types as well as functions from integers 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.

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.

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).
  • 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

    Which can be read as the implication

    If variables x 1 , x 2 , have types A 1 , A 2 , , then term t has type B .

    The valid judgments 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 x 1 : A 1 , x 2 : A 2 , , and we use K to mean either P or T. We shall write A : B : C to mean " A has type B , and B has type C ". We shall write B ( x := N ) to mean the result of substituting the term N for the variable x in the term B .

    An inference rule is written in the form

    Γ A : B Γ C : D

    which means

    If Γ A : B is a valid judgment, then so is Γ C : D

    Inference rules for the calculus of constructions

    1. Γ P : T

    2. Γ A : K Γ , x : A x : A

    3. Γ , x : A t : B : K Γ ( λ x : A . t ) : ( x : A . B ) : K

    4. Γ M : ( x : A . B ) Γ N : A Γ M N : B ( x := N ) A

    5. Γ M : A A = β B B : K Γ M : B

    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:

    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

    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
    Naturals 
    A : P . ( A A ) ( A A )
    Product A × B  
    A B
    Disjoint union A + B  
    A 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].

    References

    Calculus of constructions Wikipedia