Homotopy Type Theory Agda > history (changes)

Showing changes from revision #10 to #11: Added | Removed | Changed

Agda < is a proof assistant based on AgdaMLTT with a countable hierarchy of explicitly polymorphic? universes, very powerful inductive-inductive types? and inductive-recursive types, and a flexible pattern-matching? syntax.

Homotopy type theory has already been formalized in agda

HoTT-Agda repository. You can contribute to it.

Using Agda for Homotopy type theory

In case you want to independently formalizing HoTT in agda, you need to be careful about certain issues.

  1. Consider using the latest version of agda. Some older versions of agda are known to have bugs when handling absurd patterns.

  2. You should always use --without-K to compile agda source code. An easy way to ensure this is to use the compiler pragma {-# OPTIONS --without-K #-} at the top of your agda source file.

    What is wrong with axiom K? One of the key ideas of Homotopy type theory is to regard the identity Id x y as the path between the points x and y. Axiom K? allows one to prove uniqueness of elements in the identity type which essentially means that non-trivial topological spaces like the loop will be contracted to a point. For details see the post on Identity Elimination.

  3. Agda does not support higher inductive types (HIT) yet. However, by carefully hiding the constructors of the type and exposing only the induction principle for the type one can simulate it.

    update: there is now {-# OPTIONS --cubical #-} and HITs

    Some relevant reading material:

category: proof assistants

Last revised on June 15, 2022 at 18:44:26. See the history of this page for a list of all contributions to it.