| 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 |
|
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 |
|
pi2 | Def 2of(t) == t/x,y. y |
| | Thm* A:Type, B:(A Type), p:(a:A B(a)). 2of(p) B(1of(p)) |