coq - CAVE-PNP/cave-pnp GitHub Wiki

Coq

Seems more focused on the functional aspect and proving the correctness of programs (including generating certified programs from proofs of correctness for said programs).

Contents

Mathematical Foundations

Coq is based on the Calculus of Inductive Constructions (CIC), defined in the section on Typing rules in the Coq Reference Manual. The CIC is an instance of type theory; the base of Coq is a type checker.

Using the Curry-Howard correspondence (propositions as types) logic can be expressed in type theory, constituting the foundation of mathematics in Coq. This means that proving a proposition $P : Prop$ is the same as providing a term $t : P$ (witness) of type $P$. The question of whether a proposition $P$ is provable is thus the same as whether the type $P$ is inhabited (has instances/terms). The section on Proof Objects in the Logical Foundations book shows how logical operators can be defined as types. Their actual definitions in Coq are in the library Coq.Init.Logic (see the file lib/coq/theories/Init/Logic.v in the Coq distribution for proofs).

Coq's core logic is intuitionistic/constructive, which means that to prove a proposition, an explicit witness of it must be constructed. For instance, a proof for $A ∨ B$ (a term $t : A ∨ B$) must be either a proof for $A$ ($t : A$) or a proof for $B$ ($t : B$). This means that some non-constructive arguments traditionally used in classical logic (like the excluded middle $A ∨ ¬A$) must be added as axioms. For more information see the sections on the Logic of Coq and useful Axioms in the Coq Wiki on GitHub.

Additional Reading

Coq IDEs

The available options seem to be:

  • CoqIde, a part of the Coq project
  • jsCoq, a web-based environment
  • Jupyter with the coq_jupyter kernel
  • emacs with the Proof General and Company-Coq plugins
  • Visual Studio Code with the VSCoq plugin
  • Vim with the Coqtail plugin

CoqIde

Similar to Isabelle/jEdit, feels even more old and clunky.

jsCoq

Web-based, interactive. See

VSCoq (VSCode)

Seems to work well.

For basic use see the plugin page.

Note: if commands do not work, restart VSCode (do not close the tab of the opened .v file, just close VSCode and launch it again).

Settings

configure at Settings (Ctrl+,) > Extensions > Coq configuration

required
  • Coqtop: Bin Path enter path to Coq/bin dir
  • (for Windows) for Coqtop: Coqidetop Exe and Coqtop: Coqtop Exe, add .exe
recommended
  • Coq: Auto Reveal Proof State At Cursor: enable
  • Coqtop: Start On: set to open-script