10 lines
204 B
Text
10 lines
204 B
Text
open eq
|
|
|
|
definition concat_pV_p {A : Type} {x y z : A} (p : x = z) (q : y = z) : (p ⬝ q⁻¹) ⬝ q = p :=
|
|
begin
|
|
generalize p,
|
|
apply (eq.rec_on q),
|
|
intro p,
|
|
apply (eq.rec_on p),
|
|
apply idp
|
|
end
|