| Some definitions of interest. |
|
iff | Def P  Q == (P  Q) & (P  Q) |
| | Thm* A,B:Prop. (A  B) Prop |
|
sym | Def Sym x,y:T. E(x;y) == a,b:T. E(a;b)  E(b;a) |
| | Thm* T:Type, E:(T T Prop). (Sym x,y:T. E(x,y)) Prop |
|
trans | Def Trans x,y:T. E(x;y) == a,b,c:T. E(a;b)  E(b;c)  E(a;c) |
| | Thm* T:Type, E:(T T Prop). (Trans x,y:T. E(x,y)) Prop |