2014-10-30 13:12:45 -07:00
|
|
|
id : ?A → ?A
|
|
|
|
trans : (?A → ?A → Prop) → Prop
|
|
|
|
symm : (?A → ?A → Prop) → Prop
|
|
|
|
equivalence : (?A → ?A → Prop) → Prop
|
2014-09-07 12:28:58 -07:00
|
|
|
λ (A : Type) (R : A → A → Prop),
|
2014-07-09 18:47:10 -07:00
|
|
|
and (and (refl R) (symm R)) (trans R)
|