| Some definitions of interest. |
|
exists_unique | Def !x:A. P(x) == x:A. x is the x:A. P(x) |
|
| Thm* A:Type, P:(A Prop). ( !x:A. P(x)) Prop |
|
iff | Def P  Q == (P  Q) & (P  Q) |
|
| Thm* A,B:Prop. (A  B) Prop |
|
inv_funs_2 | Def InvFuns(A;B;f;g) == ( x:A. g(f(x)) = x) & ( y:B. f(g(y)) = y) |
|
| Thm* f:(A B), g:(B A). InvFuns(A;B;f;g) Prop |