Library UniMath.CategoryTheory.Categories.Type.Limits

Limits in the precategory of types

Author: Langston Barrett (@siddharthist), Feb 2018

Contents:

  • Terminal object (TerminalType)
  • Binary products (BinProductsType)

Terminal object (TerminalType)

The unit type is a terminal object for the precategory of types.
Lemma TerminalType : Terminal type_precat.
Proof.
  apply (make_Terminal (unit : ob type_precat)).
  exact iscontrfuntounit.
Defined.