lean2/tests/lean/hott/beginend2.hlean
2016-12-02 16:55:23 -08:00

10 lines
307 B
Text

open eq tactic
open eq (rec_on)
definition concat_whisker2 {A} {x y z : A} (p p' : x = y) (q q' : y = z) (a : p = p') (b : q = q') :
(whisker_right q a) ⬝ (whisker_left p' b) = (whisker_left p b) ⬝ (whisker_right q' a) :=
begin
apply (rec_on b),
apply (rec_on a),
apply ((idp_con _)⁻¹),
end