| Some definitions of interest. |
|
Dedekind_infinite | Def Dedekind-Infinite(A) == a:A, f:(A A). Inj(A; A; f) & ( x:A. f(x) = a) |
|
| Thm* A:Type. Dedekind-Infinite(A) Prop |
|
inject | Def Inj(A; B; f) == a1,a2:A. f(a1) = f(a2) B  a1 = a2 |
|
| Thm* A,B:Type, f:(A B). Inj(A; B; f) Prop |
|
one_one_corr_2 | Def A ~ B == f:(A B), g:(B A). InvFuns(A;B;f;g) |
|
| Thm* A,B:Type. (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 |
|
not | Def A == A  False |
|
| Thm* A:Prop. ( A) Prop |