| 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 |
|
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 |
|
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 |
|
surject | Def Surj(A; B; f) == b:B. a:A. f(a) = b |
|
| Thm* A,B:Type, f:(A B). Surj(A; B; f) Prop |