Spracherkennung für: .rst vermutete Sprache: Unknown {[0] [0] [0]} [Methode: Schwerpunktbildung, einfache Gewichte, sechs Dimensionen]
.. _thecoqlibrary:
The Coq libraries
=================
.. index::
single: Theories
The :gdef:`core library` contains definitions and theorems for
the most commonly used elementary logical notions and
data types, as well as :ref:`primitive objects <primitive-objects>`,
support for tactics such as :tacn:`setoid_rewrite`
or commands such as :ref:`Program <programs>`, the proof language
:ref:`ssreflect <thessreflectprooflanguage>`,
the tactic language :ref:`Ltac2 <ltac2>`
and some compatibilty helpers for previous versions of Rocq.
The content of the corelib can be browsed at `<
https://rocq-prover.org/corelib/>`_.
Rocq automatically loads many of these files when it starts.
This set of preloaded files is called the :gdef:`prelude`.
Its content can be browsed at
`<
https://rocq-prover.org/corelib/Corelib.Init.Prelude.html>`_.
Other libraries like the :gdef:`standard library` are general-purpose
libraries with definitions and theorems for sets, lists, sorting,
arithmetic, etc. To use these files, users must load them explicitly
with the ``From Stdlib Require`` command (see :ref:`compiled-files`).
The content of the standard library can be browsed at `<
https://rocq-prover.org/stdlib/>`_.
There are many other libraries provided by the Rocq users' community.
Many such libraries and developments are packaged in Nix or Opam.
The Rocq Opam repository can be browsed at
`<
https://rocq-prover.org/packages/>`_
(see :ref:`userscontributions`).
This chapter briefly reviews the prelude.
The prelude
-----------
This section lists the basic notions and results which are directly
available in the standard Coq system. Most of these constructions
are defined in the ``Prelude`` module in directory ``theories/Init``
in the Coq root directory; this includes the modules
``Notations``,
``Logic``,
``Datatypes``,
``Specif``,
``Peano``,
``Wf`` and
``Tactics``.
.. _init-notations:
Notations
~~~~~~~~~
This module defines the parsing and pretty-printing of many symbols
(infixes, prefixes, etc.). However, it does not assign a meaning to
these notations. The purpose of this is to define and fix once for all
the precedence and associativity of very common notations. The main
notations fixed in the initial state are :
================ ============ ===============
Notation Precedence Associativity
================ ============ ===============
``_ -> _`` 99 right
``_ <-> _`` 95 no
``_ \/ _`` 85 right
``_ /\ _`` 80 right
``~ _`` 75 right
``_ = _`` 70 no
``_ = _ = _`` 70 no
``_ = _ :> _`` 70 no
``_ <> _`` 70 no
``_ <> _ :> _`` 70 no
``_ < _`` 70 no
``_ > _`` 70 no
``_ <= _`` 70 no
``_ >= _`` 70 no
``_ < _ < _`` 70 no
``_ < _ <= _`` 70 no
``_ <= _ < _`` 70 no
``_ <= _ <= _`` 70 no
``_ + _`` 50 left
``_ || _`` 50 left
``_ - _`` 50 left
``_ * _`` 40 left
``_ && _`` 40 left
``_ / _`` 40 left
``- _`` 35 right
``/ _`` 35 right
``_ ^ _`` 30 right
================ ============ ===============
.. _coq-library-logic:
Logic
~~~~~
`Logic.v` in the basic library of Coq has the definitions of standard
(intuitionistic) logical connectives defined as inductive
constructions. They are equipped with an appealing syntax enriching the
subclass :token:`form` of the syntactic class :token:`term`. The constructs
for :production:`form` are:
============================================== =======
True True
False False
:n:`~ @form` not
:n:`@form /\ @form` and
:n:`@form \/ @form` or
:n:`@form -> @form` primitive implication
:n:`@form <-> @form` iff
:n:`forall @ident : @type, @form` primitive for all
:n:`exists @ident {? @specif}, @form` ex
:n:`exists2 @ident {? @specif}, @form & @form` ex2
:n:`@term = @term` eq
:n:`@term = @term :> @specif` eq
============================================== =======
.. note::
Implication is not defined but primitive (it is a non-dependent
product of a proposition over another proposition). There is also a
primitive universal quantification (it is a dependent product over a
proposition). The primitive universal quantification allows both
first-order and higher-order quantification.
Propositional Connectives
+++++++++++++++++++++++++
.. index::
single: Connectives
single: True (term)
single: I (term)
single: False (term)
single: not (term)
single: and (term)
single: conj (term)
single: proj1 (term)
single: proj2 (term)
single: or (term)
single: or_introl (term)
single: or_intror (term)
single: iff (term)
First, we find propositional calculus connectives.
At times, it's helpful to know exactly what these notations represent.
.. rocqdoc::
Inductive True : Prop := I.
Inductive False : Prop := .
Definition not (A: Prop) := A -> False.
Inductive and (A B:Prop) : Prop := conj (_:A) (_:B).
Section Projections.
Variables A B : Prop.
Theorem proj1 : A /\ B -> A.
Theorem proj2 : A /\ B -> B.
End Projections.
Inductive or (A B:Prop) : Prop :=
| or_introl (_:A)
| or_intror (_:B).
Definition iff (P Q:Prop) := (P -> Q) /\ (Q -> P).
We also have the `Type` level negation:
.. index::
single: notT (term)
.. rocqtop:: in
Definition notT (A:Type) := A -> False.
Quantifiers
+++++++++++
.. index::
single: Quantifiers
single: all (term)
single: ex (term)
single: exists (term)
single: ex_intro (term)
single: ex2 (term)
single: exists2 (term)
single: ex_intro2 (term)
Then we find first-order quantifiers:
.. rocqtop:: in
Definition all (A:Set) (P:A -> Prop) := forall x:A, P x.
Inductive ex (A: Set) (P:A -> Prop) : Prop :=
ex_intro (x:A) (_:P x).
Inductive ex2 (A:Set) (P Q:A -> Prop) : Prop :=
ex_intro2 (x:A) (_:P x) (_:Q x).
The following abbreviations are allowed:
====================== =======================================
``exists x:A, P`` ``ex A (fun x:A => P)``
``exists x, P`` ``ex _ (fun x => P)``
``exists2 x:A, P & Q`` ``ex2 A (fun x:A => P) (fun x:A => Q)``
``exists2 x, P & Q`` ``ex2 _ (fun x => P) (fun x => Q)``
====================== =======================================
The type annotation ``:A`` can be omitted when ``A`` can be
synthesized by the system.
.. _coq-equality:
Equality
++++++++
.. index::
single: Equality
single: eq (term)
single: eq_refl (term)
Then, we find equality, defined as an inductive relation. That is,
given a type ``A`` and an ``x`` of type ``A``, the
predicate :g:`(eq A x)` is the smallest one which contains ``x``.
This definition, due to Christine Paulin-Mohring, is equivalent to
define ``eq`` as the smallest reflexive relation, and it is also
equivalent to Leibniz' equality.
.. rocqtop:: in
Inductive eq (A:Type) (x:A) : A -> Prop :=
eq_refl : eq A x x.
Lemmas
++++++
Finally, a few easy lemmas are provided.
.. index::
single: absurd (term)
single: eq_sym (term)
single: eq_trans (term)
single: f_equal (term)
single: sym_not_eq (term)
single: eq_ind_r (term)
single: eq_rec_r (term)
single: eq_rect (term)
single: eq_rect_r (term)
.. rocqdoc::
Theorem absurd : forall A C:Prop, A -> ~ A -> C.
Section equality.
Variables A B : Type.
Variable f : A -> B.
Variables x y z : A.
Theorem eq_sym : x = y -> y = x.
Theorem eq_trans : x = y -> y = z -> x = z.
Theorem f_equal : x = y -> f x = f y.
Theorem not_eq_sym : x <> y -> y <> x.
End equality.
Definition eq_ind_r :
forall (A:Type) (x:A) (P:A->Prop), P x -> forall y:A, y = x -> P y.
Definition eq_rec_r :
forall (A:Type) (x:A) (P:A->Set), P x -> forall y:A, y = x -> P y.
Definition eq_rect_r :
forall (A:Type) (x:A) (P:A->Type), P x -> forall y:A, y = x -> P y.
Hint Immediate eq_sym not_eq_sym : core.
.. index::
single: f_equal2 ... f_equal5 (term)
The theorem ``f_equal`` is extended to functions with two to five
arguments. The theorem are names ``f_equal2``, ``f_equal3``,
``f_equal4`` and ``f_equal5``.
For instance ``f_equal3`` is defined the following way.
.. rocqtop:: in abort
Theorem f_equal3 :
forall (A1 A2 A3 B:Type) (f:A1 -> A2 -> A3 -> B)
(x1 y1:A1) (x2 y2:A2) (x3 y3:A3),
x1 = y1 -> x2 = y2 -> x3 = y3 -> f x1 x2 x3 = f y1 y2 y3.
.. _datatypes:
Datatypes
~~~~~~~~~
.. index::
single: Datatypes
In the basic library, we find in ``Datatypes.v`` the definition
of the basic data-types of programming,
defined as inductive constructions over the sort ``Set``. Some of
them come with a special syntax shown below (this syntax table is common with
the next section :ref:`specification`). The constructs for :production:`specif` are:
============================================= =======
:n:`@specif * @specif` prod
:n:`@specif + @specif` sum
:n:`@specif + { @specif }` sumor
:n:`{ @specif } + { @specif }` sumbool
:n:`{ @ident : @specif | @form }` sig
:n:`{ @ident : @specif | @form & @form }` sig2
:n:`{ @ident : @specif & @specif }` sigT
:n:`{ @ident : @specif & @specif & @specif }` sigT2
============================================= =======
The notation for pairs (elements of type prod) is: :n:`(@term, @term)`
Programming
+++++++++++
.. index::
single: Programming
single: unit (term)
single: tt (term)
single: bool (term)
single: true (term)
single: false (term)
single: nat (term)
single: O (term)
single: S (term)
single: option (term)
single: Some (term)
single: None (term)
single: identity (term)
single: refl_identity (term)
.. rocqtop:: in
Inductive unit : Set := tt.
Inductive bool : Set := true | false.
Inductive nat : Set := O | S (n:nat).
Inductive option (A:Set) : Set := Some (_:A) | None.
Note that zero is the letter ``O``, and *not* the numeral ``0``.
We then define the disjoint sum of ``A+B`` of two sets ``A`` and
``B``, and their product ``A*B``.
.. index::
single: sum (term)
single: A+B (term)
single: + (term)
single: inl (term)
single: inr (term)
single: prod (term)
single: A*B (term)
single: * (term)
single: pair (term)
single: fst (term)
single: snd (term)
.. rocqtop:: in
Inductive sum (A B:Set) : Set := inl (_:A) | inr (_:B).
Inductive prod (A B:Set) : Set := pair (_:A) (_:B).
Section projections.
Variables A B : Set.
Definition fst (H: prod A B) := match H with
| pair _ _ x y => x
end.
Definition snd (H: prod A B) := match H with
| pair _ _ x y => y
end.
End projections.
Some operations on ``bool`` are also provided: ``andb`` (with
infix notation ``&&``), ``orb`` (with
infix notation ``||``), ``xorb``, ``implb`` and ``negb``.
.. _specification:
Specification
~~~~~~~~~~~~~
The following notions defined in module ``Specif.v`` allow to build new data-types and specif
ications.
They are available with the syntax shown in the previous section :ref:`datatypes`.
For instance, given :g:`A:Type` and :g:`P:A->Prop`, the construct
:g:`{x:A | P x}` (in abstract syntax :g:`(sig A P)`) is a
``Type``. We may build elements of this set as :g:`(exist x p)`
whenever we have a witness :g:`x:A` with its justification
:g:`p:P x`.
From such a :g:`(exist x p)` we may in turn extract its witness
:g:`x:A` (using an elimination construct such as ``match``) but
*not* its justification, which stays hidden, like in an abstract
data-type. In technical terms, one says that ``sig`` is a *weak
(dependent) sum*. A variant ``sig2`` with two predicates is also
provided.
.. index::
single: {x:A | P x} (term)
single: sig (term)
single: exist (term)
single: sig2 (term)
single: exist2 (term)
.. rocqtop:: in
Inductive sig (A:Set) (P:A -> Prop) : Set := exist (x:A) (_:P x).
Inductive sig2 (A:Set) (P Q:A -> Prop) : Set :=
exist2 (x:A) (_:P x) (_:Q x).
A *strong (dependent) sum* :g:`{x:A & P x}` may be also defined,
when the predicate ``P`` is now defined as a
constructor of types in ``Type``.
.. index::
single: {x:A & P x} (term)
single: sigT (term)
single: existT (term)
single: sigT2 (term)
single: existT2 (term)
single: projT1 (term)
single: projT2 (term)
.. rocqtop:: in
Inductive sigT (A:Type) (P:A -> Type) : Type := existT (x:A) (_:P x).
Section Projections2.
Variable A : Type.
Variable P : A -> Type.
Definition projT1 (H:sigT A P) := let (x, h) := H in x.
Definition projT2 (H:sigT A P) :=
match H return P (projT1 H) with
existT _ _ x h => h
end.
End Projections2.
Inductive sigT2 (A: Type) (P Q:A -> Type) : Type :=
existT2 (x:A) (_:P x) (_:Q x).
A related non-dependent construct is the constructive sum
:g:`{A}+{B}` of two propositions ``A`` and ``B``.
.. index::
single: sumbool (term)
single: left (term)
single: right (term)
single: {A}+{B} (term)
.. rocqtop:: in
Inductive sumbool (A B:Prop) : Set := left (_:A) | right (_:B).
This ``sumbool`` construct may be used as a kind of indexed boolean
data-type. An intermediate between ``sumbool`` and ``sum`` is
the mixed ``sumor`` which combines :g:`A:Set` and :g:`B:Prop`
in the construction :g:`A+{B}` in ``Set``.
.. index::
single: sumor (term)
single: inleft (term)
single: inright (term)
single: A+{B} (term)
.. rocqtop:: in
Inductive sumor (A:Set) (B:Prop) : Set :=
| inleft (_:A)
| inright (_:B).
We may define variants of the axiom of choice, like in Martin-Löf's
Intuitionistic Type Theory.
.. index::
single: Choice (term)
single: Choice2 (term)
single: bool_choice (term)
.. rocqdoc::
Lemma Choice :
forall (S S':Set) (R:S -> S' -> Prop),
(forall x:S, {y : S' | R x y}) ->
{f : S -> S' | forall z:S, R z (f z)}.
Lemma Choice2 :
forall (S S':Set) (R:S -> S' -> Set),
(forall x:S, {y : S' & R x y}) ->
{f : S -> S' & forall z:S, R z (f z)}.
Lemma bool_choice :
forall (S:Set) (R1 R2:S -> Prop),
(forall x:S, {R1 x} + {R2 x}) ->
{f : S -> bool |
forall x:S, f x = true /\ R1 x \/ f x = false /\ R2 x}.
The next construct builds a sum between a data-type :g:`A:Type` and
an exceptional value encoding errors:
.. index::
single: Exc (term)
single: value (term)
single: error (term)
.. rocqtop:: in
Definition Exc := option.
Definition value := Some.
Definition error := None.
This module ends with theorems, relating the sorts ``Set`` or
``Type`` and ``Prop`` in a way which is consistent with the
realizability interpretation.
.. index::
single: False_rect (term)
single: False_rec (term)
single: eq_rect (term)
single: absurd_set (term)
single: and_rect (term)
.. rocqdoc::
Definition except := False_rec.
Theorem absurd_set : forall (A:Prop) (C:Set), A -> ~ A -> C.
Theorem and_rect2 :
forall (A B:Prop) (P:Type), (A -> B -> P) -> A /\ B -> P.
Basic Arithmetic
~~~~~~~~~~~~~~~~
The basic library includes a few elementary properties of natural
numbers, together with the definitions of predecessor, addition and
multiplication, in module ``Peano.v``. It also
provides a scope ``nat_scope`` gathering standard notations for
common operations (``+``, ``*``) and a decimal notation for
numbers, allowing, for instance, writing ``3`` for :g:`S (S (S O))`.
This also works on
the left hand side of a ``match`` expression (see for example
section :tacn:`refine`). This scope is opened by default.
.. example::
The following example is not part of the standard library, but it
shows the usage of the notations:
.. rocqtop:: in reset
Fixpoint even (n:nat) : bool :=
match n with
| 0 => true
| 1 => false
| S (S n) => even n
end.
.. index::
single: eq_S (term)
single: pred (term)
single: pred_Sn (term)
single: eq_add_S (term)
single: not_eq_S (term)
single: IsSucc (term)
single: O_S (term)
single: n_Sn (term)
single: plus (term)
single: plus_n_O (term)
single: plus_n_Sm (term)
single: mult (term)
single: mult_n_O (term)
single: mult_n_Sm (term)
Now comes the content of module ``Peano``:
.. rocqdoc::
Theorem eq_S : forall x y:nat, x = y -> S x = S y.
Definition pred (n:nat) : nat :=
match n with
| 0 => 0
| S u => u
end.
Theorem pred_Sn : forall m:nat, m = pred (S m).
Theorem eq_add_S : forall n m:nat, S n = S m -> n = m.
Hint Immediate eq_add_S : core.
Theorem not_eq_S : forall n m:nat, n <> m -> S n <> S m.
Definition IsSucc (n:nat) : Prop :=
match n with
| 0 => False
| S p => True
end.
Theorem O_S : forall n:nat, 0 <> S n.
Theorem n_Sn : forall n:nat, n <> S n.
Fixpoint plus (n m:nat) {struct n} : nat :=
match n with
| 0 => m
| S p => S (p + m)
end
where "n + m" := (plus n m) : nat_scope.
Lemma plus_n_O : forall n:nat, n = n + 0.
Lemma plus_n_Sm : forall n m:nat, S (n + m) = n + S m.
Fixpoint mult (n m:nat) {struct n} : nat :=
match n with
| 0 => 0
| S p => m + p * m
end
where "n * m" := (mult n m) : nat_scope.
Lemma mult_n_O : forall n:nat, 0 = n * 0.
Lemma mult_n_Sm : forall n m:nat, n * m + n = n * (S m).
Finally, it gives the definition of the usual orderings ``le``,
``lt``, ``ge`` and ``gt``.
.. index::
single: le (term)
single: le_n (term)
single: le_S (term)
single: lt (term)
single: ge (term)
single: gt (term)
.. This emits a notation already used warning but it won't be shown to
the user.
.. rocqtop:: in warn
Inductive le (n:nat) : nat -> Prop :=
| le_n : le n n
| le_S : forall m:nat, n <= m -> n <= (S m)
where "n <= m" := (le n m) : nat_scope.
Definition lt (n m:nat) := S n <= m.
Definition ge (n m:nat) := m <= n.
Definition gt (n m:nat) := m < n.
Properties of these relations are not initially known, but may be
required by the user from modules ``Le`` and ``Lt``. Finally,
``Peano`` gives some lemmas allowing pattern matching, and a double
induction principle.
.. index::
single: nat_case (term)
single: nat_double_ind (term)
.. rocqdoc::
Theorem nat_case :
forall (n:nat) (P:nat -> Prop),
P 0 -> (forall m:nat, P (S m)) -> P n.
Theorem nat_double_ind :
forall R:nat -> nat -> Prop,
(forall n:nat, R 0 n) ->
(forall n:nat, R (S n) 0) ->
(forall n m:nat, R n m -> R (S n) (S m)) -> forall n m:nat, R n m.
Well-founded recursion
~~~~~~~~~~~~~~~~~~~~~~
The basic library contains the basics of well-founded recursion and
well-founded induction, in module ``Wf.v``.
.. index::
single: Well foundedness
single: Recursion
single: Well founded induction
single: Acc (term)
single: Acc_inv (term)
single: Acc_rect (term)
single: well_founded (term)
.. rocqdoc::
Section Well_founded.
Variable A : Type.
Variable R : A -> A -> Prop.
Inductive Acc (x:A) : Prop :=
Acc_intro : (forall y:A, R y x -> Acc y) -> Acc x.
Lemma Acc_inv x : Acc x -> forall y:A, R y x -> Acc y.
Definition well_founded := forall a:A, Acc a.
Hypothesis Rwf : well_founded.
Theorem well_founded_induction :
forall P:A -> Set,
(forall x:A, (forall y:A, R y x -> P y) -> P x) -> forall a:A, P a.
Theorem well_founded_ind :
forall P:A -> Prop,
(forall x:A, (forall y:A, R y x -> P y) -> P x) -> forall a:A, P a.
The automatically generated scheme ``Acc_rect``
can be used to define functions by fixpoints using
well-founded relations to justify termination. Assuming
extensionality of the functional used for the recursive call, the
fixpoint equation can be proved.
.. index::
single: Fix_F (term)
single: Fix_eq (term)
single: Fix_F_inv (term)
single: Fix_F_eq (term)
.. rocqdoc::
Section FixPoint.
Variable P : A -> Type.
Variable F : forall x:A, (forall y:A, R y x -> P y) -> P x.
Fixpoint Fix_F (x:A) (r:Acc x) {struct r} : P x :=
F x (fun (y:A) (p:R y x) => Fix_F y (Acc_inv x r y p)).
Definition Fix (x:A) := Fix_F x (Rwf x).
Hypothesis F_ext :
forall (x:A) (f g:forall y:A, R y x -> P y),
(forall (y:A) (p:R y x), f y p = g y p) -> F x f = F x g.
Lemma Fix_F_eq :
forall (x:A) (r:Acc x),
F x (fun (y:A) (p:R y x) => Fix_F y (Acc_inv x r y p)) = Fix_F x r.
Lemma Fix_F_inv : forall (x:A) (r s:Acc x), Fix_F x r = Fix_F x s.
Lemma Fix_eq : forall x:A, Fix x = F x (fun (y:A) (p:R y x) => Fix y).
End FixPoint.
End Well_founded.
Tactics
~~~~~~~
A few tactics defined at the user level are provided in the initial
state, in module ``Tactics`` of ``Corelib``
(`documentation <https://rocq-prover.org/corelib/Corelib.Init.Tactics.html>`_).
.. _userscontributions:
Opam repository
---------------
Numerous users' contributions have been packaged and are available at
URL https://rocq-prover.org/packages/. On this web page, you can browse
all contributions with informations (author, institution, quick
description, etc.) and the possibility to download their sources
or install them with their dependencies through the Opam package manager.
You will also find informations on how to submit a new
package.