author | wenzelm |
Wed, 27 Nov 1996 16:45:57 +0100 | |
changeset 2258 | 8ad8ee759d9f |
parent 1824 | 44254696843a |
child 2393 | 651fce76c86c |
permissions | -rw-r--r-- |
923 | 1 |
(* Title: HOL/Nat.thy |
2 |
ID: $Id$ |
|
3 |
Author: Tobias Nipkow, Cambridge University Computer Laboratory |
|
4 |
Copyright 1991 University of Cambridge |
|
5 |
||
6 |
Definition of types ind and nat. |
|
7 |
||
8 |
Type nat is defined as a set Nat over type ind. |
|
9 |
*) |
|
10 |
||
11 |
Nat = WF + |
|
12 |
||
13 |
(** type ind **) |
|
14 |
||
15 |
types |
|
16 |
ind |
|
17 |
||
18 |
arities |
|
19 |
ind :: term |
|
20 |
||
21 |
consts |
|
1370
7361ac9b024d
removed quotes from types in consts and syntax sections
clasohm
parents:
1151
diff
changeset
|
22 |
Zero_Rep :: ind |
7361ac9b024d
removed quotes from types in consts and syntax sections
clasohm
parents:
1151
diff
changeset
|
23 |
Suc_Rep :: ind => ind |
923 | 24 |
|
25 |
rules |
|
26 |
(*the axiom of infinity in 2 parts*) |
|
27 |
inj_Suc_Rep "inj(Suc_Rep)" |
|
28 |
Suc_Rep_not_Zero_Rep "Suc_Rep(x) ~= Zero_Rep" |
|
29 |
||
30 |
||
31 |
||
32 |
(** type nat **) |
|
33 |
||
34 |
(* type definition *) |
|
35 |
||
1475 | 36 |
typedef (Nat) |
923 | 37 |
nat = "lfp(%X. {Zero_Rep} Un (Suc_Rep``X))" (lfp_def) |
38 |
||
39 |
instance |
|
40 |
nat :: ord |
|
41 |
||
42 |
||
43 |
(* abstract constants and syntax *) |
|
44 |
||
45 |
consts |
|
1531 | 46 |
"0" :: nat ("0") |
47 |
Suc :: nat => nat |
|
48 |
nat_case :: ['a, nat => 'a, nat] => 'a |
|
49 |
pred_nat :: "(nat * nat) set" |
|
1824 | 50 |
nat_rec :: ['a, [nat, 'a] => 'a, nat] => 'a |
1531 | 51 |
|
52 |
Least :: (nat=>bool) => nat (binder "LEAST " 10) |
|
923 | 53 |
|
2258 | 54 |
syntax |
55 |
"1" :: nat ("1") |
|
56 |
"2" :: nat ("2") |
|
57 |
||
923 | 58 |
translations |
1625
40501958d0f6
Translations for 1 and 2 moved from Hoare/Examples.thy to Nat.thy
paulson
parents:
1540
diff
changeset
|
59 |
"1" == "Suc(0)" |
40501958d0f6
Translations for 1 and 2 moved from Hoare/Examples.thy to Nat.thy
paulson
parents:
1540
diff
changeset
|
60 |
"2" == "Suc(1)" |
923 | 61 |
"case p of 0 => a | Suc(y) => b" == "nat_case a (%y.b) p" |
62 |
||
63 |
defs |
|
64 |
Zero_def "0 == Abs_Nat(Zero_Rep)" |
|
65 |
Suc_def "Suc == (%n. Abs_Nat(Suc_Rep(Rep_Nat(n))))" |
|
66 |
||
67 |
(*nat operations and recursion*) |
|
1151 | 68 |
nat_case_def "nat_case a f n == @z. (n=0 --> z=a) |
69 |
& (!x. n=Suc(x) --> z=f(x))" |
|
972
e61b058d58d2
changed syntax of tuples from <..., ...> to (..., ...)
clasohm
parents:
923
diff
changeset
|
70 |
pred_nat_def "pred_nat == {p. ? n. p = (n, Suc(n))}" |
923 | 71 |
|
1531 | 72 |
less_def "m<n == (m,n):trancl(pred_nat)" |
73 |
||
74 |
le_def "m<=(n::nat) == ~(n<m)" |
|
923 | 75 |
|
1824 | 76 |
nat_rec_def "nat_rec c d == |
77 |
wfrec pred_nat (%f. nat_case c (%m. d m (f m)))" |
|
1531 | 78 |
(*least number operator*) |
79 |
Least_def "Least(P) == @k. P(k) & (ALL j. j<k --> ~P(j))" |
|
923 | 80 |
|
1660 | 81 |
(* start 8bit 1 *) |
82 |
(* end 8bit 1 *) |
|
83 |
||
923 | 84 |
end |