module Cat.Displayed.Cartesian.Identity
  {o  o' ℓ'} {B : Precategory o } (E : Displayed B o' ℓ')
  where

Identity of cartesian lifts🔗

In this module, we prove that Cartesian lifts in a displayed univalent category form a proposition.

We already know that Cartesian lifts are unique up to a vertical isomorphism, so all that remains is to apply univalence and check that this isomorphism fits into a commuting triangle with the two lifts.

  Cartesian-lift-is-prop : is-prop (Cartesian-lift E f b')
  Cartesian-lift-is-prop l1 l2 = Cartesian-lift-path E obp pres where
    module l1 = Cartesian-lift l1
    module l2 = Cartesian-lift l2

    im = cartesian-domain-unique E l1.cartesian l2.cartesian

    obp : l1.x'  l2.x'
    obp = ≅↓-identity-system e-cat .to-path im

    pres : PathP  i  Hom[ f ] (obp i) b') l1.lifting l2.lifting
    pres = Hom[]-pathp-refll-iso e-cat (B.idr f) im l1.lifting l2.lifting
      (to-pathp[]⁻ (l1.commutes B.id _))