-
Notifications
You must be signed in to change notification settings - Fork 9
/
nat.hs
37 lines (33 loc) · 947 Bytes
/
nat.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
-- addition of natural numbers
plus : forall (x : Nat) (y : Nat). Nat;
plus =
\ (x : Nat) (y : Nat) ->
elim Nat
(\ (_ : Nat) -> Nat )
y
( \(x1 : Nat) (rec : Nat) -> Succ rec ) x;
-- predecessor, mapping 0 to 0
pred =
\ (n : Nat) .
elim Nat
( \ (_ : Nat) . Nat )
Zero
( \ (n1 : Nat) (rec : Nat) . n1 )
n;
-- a simpler elimination scheme for natural numbers:
-- a result type doesn't depend on n
natFold : forall (m : Set) (_ : m) (_ : forall (_ : m) . m) (_ : Nat) . m;
natFold =
\ (m : Set) (mz : m) (ms : forall (_ : m) . m) (n : Nat) ->
elim Nat
(\ (_ : Nat) -> m )
mz
(\ (n1 : Nat) (rec : m) -> ms rec )
n;
nat_id =
\ (n : Nat) ->
elim Nat
(\ (_ : Nat) -> Nat )
Zero
(\ (n1 : Nat) (rec : Nat) -> Succ rec)
n;