| Some definitions of interest. |
|
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:(AB), g:(BA). InvFuns(A;B;f;g) Prop |
|
is_one_one_corr_rel | Def 1-1-Corr x:A,y:B. R(x;y) == (x:A. !y:B. R(x;y)) & (y:B. !x:A. R(x;y)) |
| | Thm* A,B:Type, R:(ABProp). (1-1-Corr x:A,y:B. R(x;y)) Prop |