| 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 |
|
productively_infinite | Def Infinite(A) ==  ( inj A) |
| | Thm* A:Type. Infinite(A) Prop |
|
injection_type | Def A inj B == {f:(A B)| Inj(A; B; f) } |
| | Thm* A,B:Type. A inj B Type |
|
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 |
|
nat | Def == {i: | 0 i } |
| | Thm* Type |
|
not | Def A == A  False |
| | Thm* A:Prop. ( A) Prop |