gt |
Def i > j == j < i
Thm* i,j: . i > j Prop
|
select |
Def l[i] == hd(nth_tl(i;l))
Thm* A:Type, l:A*, n: . 0 n  n < ||l||  l[n] A
|
hd |
Def hd(l) == Case of l; nil "?" ; h.t h
Thm* A:Type, l:A*. ||l|| 1  hd(l) A
|
length |
Def ||as|| == Case of as; nil 0 ; a.as' ||as'||+1 (recursive)
Thm* A:Type, l:A*. ||l||
Thm* ||nil|| 
|
not |
Def A == A  False
Thm* A:Prop. ( A) Prop
|
reverse |
Def rev(as) == Case of as; nil nil ; a.as' rev(as') @ [a] (recursive)
Thm* T:Type, as:T*. rev(as) T*
|
append |
Def as @ bs == Case of as; nil bs ; a.as' a.(as' @ bs) (recursive)
Thm* T:Type, as,bs:T*. (as @ bs) T*
|
nth_tl |
Def nth_tl(n;as) == if n 0 as else nth_tl(n-1;tl(as)) fi (recursive)
Thm* A:Type, as:A*, i: . nth_tl(i;as) A*
|
tl |
Def tl(l) == Case of l; nil nil ; h.t t
Thm* A:Type, l:A*. tl(l) A*
|
le_int |
Def i j ==  j < i
Thm* i,j: . i j 
|
lt_int |
Def i < j == if i < j true ; false fi
Thm* i,j: . i < j 
|
bnot |
Def  b == if b false else true fi
Thm* b: .  b 
|