Skip to content

Commit

Permalink
add one exercise/solution for lecture 5
Browse files Browse the repository at this point in the history
  • Loading branch information
cangiuli committed Aug 1, 2024
1 parent 1c7c748 commit 6b9cf8c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,12 @@ Admitted.
(* Once the goals are solved, replace "Admitted" by "Defined" *)
(* Defined. *)

Definition transportf_ptdset :
∏ (P : ptdset → UU) (X Y : ptdset), ptdset_iso X Y → P X → P Y.
Proof.
admit.
Admitted.


End Pointed.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,14 @@ Proof.
- apply ptdset_iso_weq.
Defined.

Definition transportf_ptdset :
∏ (P : ptdset → UU) (X Y : ptdset), ptdset_iso X Y → P X → P Y.
Proof.
intros P X Y f.
apply sip_for_ptdset in f.
exact (transportf P f).
Defined.


End Pointed.

Expand Down

0 comments on commit 6b9cf8c

Please sign in to comment.