| Some definitions of interest. |
|
exists_unique | Def !x:A. P(x) == x:A. x is the x:A. P(x) |
| | Thm* A:Type, P:(AProp). (!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:(AB). 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:(AB), g:(BA). InvFuns(A;B;f;g) Prop |
|
surject | Def Surj(A; B; f) == b:B. a:A. f(a) = b |
| | Thm* A,B:Type, f:(AB). Surj(A; B; f) Prop |