Skip to content

Instantly share code, notes, and snippets.

@siddhartha-gadgil
Created March 25, 2014 04:41
Show Gist options
  • Save siddhartha-gadgil/9755384 to your computer and use it in GitHub Desktop.
Save siddhartha-gadgil/9755384 to your computer and use it in GitHub Desktop.
transport : {A : Set} → {B : Set} → {x y : A} → (f : A → B) → x == y → f(x) == f(y)
transport f (refl a) = refl (f a)
symm : {A : Set} → {x y : A} → x == y → y == x
symm (refl a) = refl a
_transEq_ : {A : Set} → {x y z : A} → x == y → y == z → x == z
(refl a) transEq (refl .a) = refl a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment