| Some definitions of interest. |
|
bexists | Def  x:T. P(x) ==  ( x:T. P(x)) |
| | Thm* T:Type, P:(T  ). ( x:T. P(x))  |
|
assert | Def b == if b True else False fi |
| | Thm* b: . b Prop |
|
hrep_sum | Def rep_sum
Def == u:'a+'b. InjCase(u
Def == u:'a+'b. InjCase; p. b: . x:'a. y:'b. (x = p) b
Def == u:'a+'b. InjCase; q. b: . x:'a. y:'b. (y = q)   b) |
| | Thm* 'a,'b:S. rep_sum (hsum('a; 'b)  hbool  'a  'b  hbool) |
|
bequal | Def x = y ==  (x = y T) |
| | Thm* T:Type, x,y:T. (x = y)  |
|
hbool | Def hbool ==  |
| | Thm* hbool S |
|
hsum | Def hsum('a; 'b) == 'a+'b |
| | Thm* 'a,'b:S. hsum('a; 'b) S |
|
stype | Def S == {T:Type| x:T. True } |
| | Thm* S Type{2} |
|
tlambda | Def ( x:T. b(x))(x) == b(x) |