Skip to content

Commit

Permalink
exercises: solution to eq-proofs-commute
Browse files Browse the repository at this point in the history
  • Loading branch information
langston-barrett committed Oct 22, 2017
1 parent 7760aba commit d24b93d
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion contrib/HoTTBookExercises.v
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,14 @@ End Book_2_1_Proofs_Are_Equal.
(* ================================================== ex:eq-proofs-commute *)
(** Exercise 2.2 *)


Definition Book_2_2 :
forall {A : Type} {x y z : A} (p : x = y) (q : y = z),
(Book_2_1_concatenation1_eq_Book_2_1_concatenation2 p q) ⬛1
(Book_2_1_concatenation2_eq_Book_2_1_concatenation3 p q) =
(Book_2_1_concatenation1_eq_Book_2_1_concatenation3 p q).
induction p, q.
reflexivity.
Defined.

(* ================================================== ex:fourth-concat *)
(** Exercise 2.3 *)
Expand Down

0 comments on commit d24b93d

Please sign in to comment.