| Some definitions of interest. |
|
ball | Def  x:T. P(x) ==  ( x:T. P(x)) |
| | Thm* T:Type, P:(T  ). ( x:T. P(x))  |
|
bequal | Def x = y ==  (x = y T) |
| | Thm* T:Type, x,y:T. (x = y)  |
|
bimplies | Def p  q ==  p  q |
| | Thm* p,q: . p  q  |
|
one_one | Def one_one('a;'b;f) == x,y:'a. f(x) = f(y) 'b  x = y |
| | Thm* 'a,'b:Type, f:('a 'b). one_one('a;'b;f) Prop |
|
prop_to_bool | Def  P == InjCase(lem(P) ; true ; false ) |
| | Thm* P:Prop. ( P)  |
|
stype | Def S == {T:Type| x:T. True } |
| | Thm* S Type{2} |