Library UniMath.Bicategories.DisplayedBicats.Examples.DisplayedCatToBicat

Discrete displayed bicategories
Given a displayed category on some bicategory, we construct a displayed bicategory from it. The 2-cells are from the unit type.
Require Import UniMath.Foundations.All.
Require Import UniMath.MoreFoundations.PartA.
Require Import UniMath.MoreFoundations.Propositions.
Require Import UniMath.CategoryTheory.Core.Categories.
Require Import UniMath.CategoryTheory.DisplayedCats.Core.
Require Import UniMath.CategoryTheory.DisplayedCats.Constructions.
Require Import UniMath.Bicategories.Core.Bicat. Import Bicat.Notations.
Require Import UniMath.Bicategories.Core.Examples.Initial.
Require Import UniMath.Bicategories.Core.Examples.Final.
Require Import UniMath.Bicategories.DisplayedBicats.DispBicat. Import DispBicat.Notations.
Require Import UniMath.Bicategories.Core.Univalence.
Require Import UniMath.Bicategories.DisplayedBicats.DispInvertibles.
Require Import UniMath.Bicategories.DisplayedBicats.DispAdjunctions.
Require Import UniMath.Bicategories.DisplayedBicats.DispUnivalence.

Local Open Scope cat.
Local Open Scope mor_disp_scope.

Definition is_chaotic
           {C : bicat}
           (D : disp_bicat C)
  : UU
  := (a b : C) (f g : a --> b) (α : f ==> g)
       (aa : D a) (bb : D b)
       (ff : aa -->[ f ] bb) (gg : aa -->[ g ] bb),
     iscontr (ff ==>[ α ] gg).

Definition isaprop_is_chaotic
           {C : bicat}
           (D : disp_bicat C)
  : isaprop (is_chaotic D).
Show proof.
  repeat (apply impred ; intro).
  apply isapropiscontr.

Section Disp_Prebicat_Cells_Unit.
  Context {C : bicat} (D : disp_cat_data C).

  Definition disp_prebicat_cells_unit
    : disp_prebicat_1_id_comp_cells C.
  Show proof.
    exists D. red. intros. exact unit.

  Definition disp_prebicat_cells_unit_ops
    : disp_prebicat_ops disp_prebicat_cells_unit.
  Show proof.
    repeat use tpair; cbn; intros; exact tt.

  Definition disp_prebicat_cells_unit_data : disp_prebicat_data C
    := _ ,, disp_prebicat_cells_unit_ops.

  Lemma disp_prebicat_cells_unit_laws
    : disp_prebicat_laws disp_prebicat_cells_unit_data.
  Show proof.
    repeat use tpair; red; intros; apply (proofirrelevance _ isapropunit).

  Definition disp_cell_unit_prebicat : disp_prebicat C
    := _ ,, disp_prebicat_cells_unit_laws.

  Definition disp_cell_unit_bicat : disp_bicat C.
  Show proof.
    refine (disp_cell_unit_prebicat ,, _).
    intros a b f g x aa bb ff gg.
    apply isasetunit.

Local Univalence
  Definition disp_cell_unit_bicat_univalent_2_1
             (H : (a b : C)
                    (f : a --> b)
                    (aa : D a) (bb : D b),
                  isaprop (aa -->[ f] bb))
    : disp_univalent_2_1 disp_cell_unit_bicat.
  Show proof.
    intros a b f g p aa bb ff gg.
    use isweqimplimpl.
    - cbn in *.
      intros.
      apply H.
    - apply isasetaprop.
      exact (H a b g aa bb).
    - simple refine (isaprop_total2 (_ ,, _) (λ η , _ ,, _)).
      + exact isapropunit.
      + apply (@isaprop_is_disp_invertible_2cell C disp_cell_unit_bicat).

Global Univalence
  Definition disp_cell_unit_bicat_is_disp_invertible_2cell
             {a b : C}
             {f : a --> b} {g : a --> b}
             (x : invertible_2cell f g)
             {aa : disp_cell_unit_bicat a}
             {bb : disp_cell_unit_bicat b}
             {ff : aa -->[ f ] bb}
             {gg : aa -->[ g ] bb}
             (xx : ff ==>[ x ] gg)
    : is_disp_invertible_2cell x xx.
  Show proof.
    use tpair.
    - exact tt.
    - split ; apply isapropunit.

  Definition disp_cell_unit_bicat_left_adjoint_equivalence
             {a b : C}
             (f : adjoint_equivalence a b)
             {aa : disp_cell_unit_bicat a}
             {bb : disp_cell_unit_bicat b}
             (ff : aa -->[ f] bb)
    : bb -->[ left_adjoint_right_adjoint f] aa
      
      disp_left_adjoint_equivalence f ff.
  Show proof.
    intros gg.
    use tpair.
    - use tpair.
      + exact gg.
      + exact (tt ,, tt).
    - split ; split ; cbn.
      + apply isapropunit.
      + apply isapropunit.
      + exact (disp_cell_unit_bicat_is_disp_invertible_2cell
                  (left_adjoint_unit f ,, _)
                  tt).
      + exact (disp_cell_unit_bicat_is_disp_invertible_2cell
                 (left_adjoint_counit f ,, _)
                 tt).

  Definition disp_cell_unit_bicat_left_adjoint_equivalence_inv
             {a b : C}
             (f : adjoint_equivalence a b)
             {aa : disp_cell_unit_bicat a}
             {bb : disp_cell_unit_bicat b}
             (ff : aa -->[ f] bb)
    : disp_left_adjoint_equivalence f ff
      
      bb -->[ left_adjoint_right_adjoint f] aa.
  Show proof.
    intros H.
    apply H.

  Definition disp_cell_unit_bicat_disp_cellset : has_disp_cellset disp_cell_unit_bicat.
  Show proof.
    intro ; intros.
    apply isasetunit.

  Definition disp_cell_unit_bicat_left_adjoint_equivalence_weq
             {a b : C}
             (f : adjoint_equivalence a b)
             {aa : disp_cell_unit_bicat a}
             {bb : disp_cell_unit_bicat b}
             (ff : aa -->[ f] bb)
    : (bb -->[ left_adjoint_right_adjoint f] aa)
        
        disp_left_adjoint_equivalence f ff.
  Show proof.
    refine (disp_cell_unit_bicat_left_adjoint_equivalence f ff ,, _).
    use isweq_iso.
    - exact (disp_cell_unit_bicat_left_adjoint_equivalence_inv f ff).
    - reflexivity.
    - intros y.
      use subtypePath.
      + intro.
        do 2 apply isapropdirprod.
        * apply disp_cell_unit_bicat_disp_cellset.
        * apply disp_cell_unit_bicat_disp_cellset.
        * apply isaprop_is_disp_invertible_2cell.
        * apply isaprop_is_disp_invertible_2cell.
      + cbn.
        unfold disp_cell_unit_bicat_left_adjoint_equivalence_inv.
        use total2_paths_b.
        * reflexivity.
        * use total2_paths_b ; apply isapropunit.

  Definition disp_cell_unit_bicat_adjoint_equivalent
             {a b : C}
             (f : adjoint_equivalence a b)
             (aa : disp_cell_unit_bicat a)
             (bb : disp_cell_unit_bicat b)
    : (aa -->[ f] bb × bb -->[ left_adjoint_right_adjoint f] aa)
        
        disp_adjoint_equivalence f aa bb.
  Show proof.
    use weqfibtototal ; cbn.
    intro.
    apply disp_cell_unit_bicat_left_adjoint_equivalence_weq.

  Definition disp_cell_unit_bicat_idtoiso
             {a b : C}
             (p : a = b)
             (aa : disp_cell_unit_bicat a)
             (bb : disp_cell_unit_bicat b)
    : transportf disp_cell_unit_bicat p aa = bb
      
      (aa -->[ idtoiso_2_0 _ _ p ] bb)
        ×
        (bb -->[ left_adjoint_right_adjoint (idtoiso_2_0 _ _ p)] aa).
  Show proof.
    induction p ; cbn.
    intros pp.
    induction pp ; cbn.
    split ; apply id_disp.

  Definition disp_cell_unit_bicat_univalent_2_0
             (HC : is_univalent_2_1 C)
             (HDP : (a b : C)
                     (f : a --> b)
                     (aa : D a) (bb : D b),
                   isaprop (aa -->[ f] bb))
             (Dset : (a : C), isaset (D a))
             (inv : (a : C) (aa bb : disp_cell_unit_bicat a),
                    (aa -->[ id₁ a ] bb × bb -->[ id₁ a ] aa)
                    
                    aa = bb)
    : disp_univalent_2_0 disp_cell_unit_bicat.
  Show proof.
    apply fiberwise_univalent_2_0_to_disp_univalent_2_0.
    intros a aa bb.
    use isweqimplimpl.
    - intro η ; cbn.
      apply inv.
      exact (invmap (disp_cell_unit_bicat_adjoint_equivalent
                       (idtoiso_2_0 a a (idpath a))
                       aa bb) η).
    - apply (Dset a).
    - apply (isofhlevelweqf 1 (disp_cell_unit_bicat_adjoint_equivalent _ _ _)).
      apply isapropdirprod ; apply HDP.

  Definition disp_cell_unit_bicat_univalent_2
             (HC : is_univalent_2_1 C)
             (HDP : (a b : C)
                     (f : a --> b)
                     (aa : D a) (bb : D b),
                   isaprop (aa -->[ f] bb))
             (Dset : (a : C), isaset (D a))
             (inv : (a : C) (aa bb : disp_cell_unit_bicat a),
                    (aa -->[ id₁ a ] bb × bb -->[ id₁ a ] aa)
                    
                    aa = bb)
    : disp_univalent_2 disp_cell_unit_bicat.
  Show proof.
    split.
    - apply disp_cell_unit_bicat_univalent_2_0; assumption.
    - apply disp_cell_unit_bicat_univalent_2_1; assumption.
End Disp_Prebicat_Cells_Unit.

Definition is_chaotic_disp_bicat_cells_unit
           {C : bicat}
           (D : disp_cat_data C)
  : is_chaotic (disp_cell_unit_bicat D).
Show proof.
  intro ; intros.
  apply iscontrunit.

Definition disp_2cells_isaprop_cell_unit_bicat
           {C : bicat}
           (D : disp_cat_data C)
  : disp_2cells_isaprop (disp_cell_unit_bicat D).
Show proof.
  intro; intros.
  apply isapropifcontr.
  apply (is_chaotic_disp_bicat_cells_unit D).

Definition disp_locally_groupoid_cell_unit_bicat
           {C : bicat}
           (D : disp_cat_data C)
  : disp_locally_groupoid (disp_cell_unit_bicat D).
Show proof.
  use make_disp_locally_groupoid.
  - intro; intros; exact tt.
  - exact (disp_2cells_isaprop_cell_unit_bicat D).

Lemma isaprop_disp_left_adjoint_data_cell_unit_bicat
      {C : bicat}
      {D : disp_cat_data C}
      {a b : C} {f : C a, b }
      (l : left_adjoint_data f)
      {aa : (disp_cell_unit_bicat D) a} {bb : (disp_cell_unit_bicat D) b}
      (ff : aa -->[ f] bb)
  : isaprop (bb -->[ left_adjoint_right_adjoint l] aa)
    -> isaprop (disp_left_adjoint_data l ff).
Show proof.
  intro p.
  use isaproptotal2.
  - intro ; apply isapropdirprod ; apply isapropunit.
  - intro ; intros ; apply p.

Lemma isaprop_disp_left_adjoint_axioms_cell_unit_bicat
  {C : bicat}
  {D : disp_cat_data C}
  {a b : C} {f : C a, b }
  (j : left_adjoint f)
  {aa : (disp_cell_unit_bicat D) a} {bb : (disp_cell_unit_bicat D) b}
  {ff : aa -->[ f] bb}
  (jj : disp_left_adjoint_data j ff)
  : isaprop (disp_left_adjoint_axioms j jj).
Show proof.
  apply isapropdirprod ; apply isasetaprop, isapropunit.

Lemma isaprop_disp_left_equivalence_axioms
  {C : bicat}
  {D : disp_cat_data C}
  {a b : C}
  {aa : (disp_cell_unit_bicat D) a} {bb : (disp_cell_unit_bicat D) b}
  {f : C a, b }
  {j : left_equivalence f}
  {ff : aa -->[ f] bb}
  (jj : disp_left_adjoint_data j ff)
    : isaprop (disp_left_equivalence_axioms j jj).
  Show proof.

Lemma isaprop_disp_left_adjoint_equivalence_cell_unit_bicat
  {C : bicat}
  {D : disp_cat_data C}
  {a b : C}
  {aa : (disp_cell_unit_bicat D) a} {bb : (disp_cell_unit_bicat D) b}
  (f : adjoint_equivalence a b)
  (ff : aa -->[ f ] bb)
  : isaprop (bb -->[ left_adjoint_right_adjoint f] aa)
    -> isaprop (disp_left_adjoint_equivalence f ff).
Show proof.
  intro p.
  use isaproptotal2.
  - intro.
    apply isapropdirprod.
    + apply isaprop_disp_left_adjoint_axioms_cell_unit_bicat.
    + apply isaprop_disp_left_equivalence_axioms.
  - do 4 intro.
    apply isaprop_disp_left_adjoint_data_cell_unit_bicat, p.

Lemma isaprop_disp_adjoint_equivalence_cell_unit_bicat
  {C : bicat}
  {D : disp_cat_data C}
  {a b : C}
  {aa : (disp_cell_unit_bicat D) a} {bb : (disp_cell_unit_bicat D) b}
  {f : adjoint_equivalence a b}
  (ff : aa -->[ f ] bb)
  : isaprop (bb -->[left_adjoint_right_adjoint f] aa)
    -> isaprop (aa -->[ f] bb)
    -> isaprop (disp_adjoint_equivalence f aa bb).
Show proof.