author | wenzelm |
Wed, 12 Oct 1994 16:31:01 +0100 | |
changeset 637 | b344bf624143 |
parent 484 | 70b789956bd3 |
child 760 | f0200e91b272 |
permissions | -rw-r--r-- |
0 | 1 |
(* Title: ZF/nat.ML |
2 |
ID: $Id$ |
|
3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
|
4 |
Copyright 1992 University of Cambridge |
|
5 |
||
6 |
For nat.thy. Natural numbers in Zermelo-Fraenkel Set Theory |
|
7 |
*) |
|
8 |
||
9 |
open Nat; |
|
10 |
||
11 |
goal Nat.thy "bnd_mono(Inf, %X. {0} Un {succ(i). i:X})"; |
|
12 |
by (rtac bnd_monoI 1); |
|
13 |
by (REPEAT (ares_tac [subset_refl, RepFun_mono, Un_mono] 2)); |
|
14 |
by (cut_facts_tac [infinity] 1); |
|
15 |
by (fast_tac ZF_cs 1); |
|
16 |
val nat_bnd_mono = result(); |
|
17 |
||
18 |
(* nat = {0} Un {succ(x). x:nat} *) |
|
19 |
val nat_unfold = nat_bnd_mono RS (nat_def RS def_lfp_Tarski); |
|
20 |
||
21 |
(** Type checking of 0 and successor **) |
|
22 |
||
23 |
goal Nat.thy "0 : nat"; |
|
24 |
by (rtac (nat_unfold RS ssubst) 1); |
|
25 |
by (rtac (singletonI RS UnI1) 1); |
|
26 |
val nat_0I = result(); |
|
27 |
||
28 |
val prems = goal Nat.thy "n : nat ==> succ(n) : nat"; |
|
29 |
by (rtac (nat_unfold RS ssubst) 1); |
|
30 |
by (rtac (RepFunI RS UnI2) 1); |
|
31 |
by (resolve_tac prems 1); |
|
32 |
val nat_succI = result(); |
|
33 |
||
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
34 |
goal Nat.thy "1 : nat"; |
0 | 35 |
by (rtac (nat_0I RS nat_succI) 1); |
36 |
val nat_1I = result(); |
|
37 |
||
38 |
goal Nat.thy "bool <= nat"; |
|
120 | 39 |
by (REPEAT (ares_tac [subsetI,nat_0I,nat_1I] 1 |
40 |
ORELSE eresolve_tac [boolE,ssubst] 1)); |
|
0 | 41 |
val bool_subset_nat = result(); |
42 |
||
43 |
val bool_into_nat = bool_subset_nat RS subsetD; |
|
44 |
||
45 |
||
46 |
(** Injectivity properties and induction **) |
|
47 |
||
48 |
(*Mathematical induction*) |
|
49 |
val major::prems = goal Nat.thy |
|
50 |
"[| n: nat; P(0); !!x. [| x: nat; P(x) |] ==> P(succ(x)) |] ==> P(n)"; |
|
51 |
by (rtac ([nat_def, nat_bnd_mono, major] MRS def_induct) 1); |
|
52 |
by (fast_tac (ZF_cs addIs prems) 1); |
|
53 |
val nat_induct = result(); |
|
54 |
||
55 |
(*Perform induction on n, then prove the n:nat subgoal using prems. *) |
|
56 |
fun nat_ind_tac a prems i = |
|
57 |
EVERY [res_inst_tac [("n",a)] nat_induct i, |
|
58 |
rename_last_tac a ["1"] (i+2), |
|
59 |
ares_tac prems i]; |
|
60 |
||
61 |
val major::prems = goal Nat.thy |
|
62 |
"[| n: nat; n=0 ==> P; !!x. [| x: nat; n=succ(x) |] ==> P |] ==> P"; |
|
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
63 |
by (rtac (major RS (nat_unfold RS equalityD1 RS subsetD) RS UnE) 1); |
0 | 64 |
by (DEPTH_SOLVE (eresolve_tac [singletonE,RepFunE] 1 |
65 |
ORELSE ares_tac prems 1)); |
|
66 |
val natE = result(); |
|
67 |
||
68 |
val prems = goal Nat.thy "n: nat ==> Ord(n)"; |
|
69 |
by (nat_ind_tac "n" prems 1); |
|
70 |
by (REPEAT (ares_tac [Ord_0, Ord_succ] 1)); |
|
435 | 71 |
val nat_into_Ord = result(); |
0 | 72 |
|
30 | 73 |
(* i: nat ==> 0 le i *) |
435 | 74 |
val nat_0_le = nat_into_Ord RS Ord_0_le; |
75 |
||
76 |
val nat_le_refl = nat_into_Ord RS le_refl; |
|
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
77 |
|
0 | 78 |
goal Nat.thy "!!n. n: nat ==> n=0 | 0:n"; |
79 |
by (etac nat_induct 1); |
|
80 |
by (fast_tac ZF_cs 1); |
|
30 | 81 |
by (fast_tac (ZF_cs addIs [nat_0_le]) 1); |
0 | 82 |
val natE0 = result(); |
83 |
||
84 |
goal Nat.thy "Ord(nat)"; |
|
85 |
by (rtac OrdI 1); |
|
435 | 86 |
by (etac (nat_into_Ord RS Ord_is_Transset) 2); |
0 | 87 |
by (rewtac Transset_def); |
88 |
by (rtac ballI 1); |
|
89 |
by (etac nat_induct 1); |
|
90 |
by (REPEAT (ares_tac [empty_subsetI,succ_subsetI] 1)); |
|
91 |
val Ord_nat = result(); |
|
92 |
||
435 | 93 |
goalw Nat.thy [Limit_def] "Limit(nat)"; |
94 |
by (safe_tac (ZF_cs addSIs [ltI, nat_0I, nat_1I, nat_succI, Ord_nat])); |
|
95 |
by (etac ltD 1); |
|
96 |
val Limit_nat = result(); |
|
97 |
||
484 | 98 |
goal Nat.thy "!!i. Limit(i) ==> nat le i"; |
99 |
by (resolve_tac [subset_imp_le] 1); |
|
100 |
by (rtac subsetI 1); |
|
101 |
by (eresolve_tac [nat_induct] 1); |
|
102 |
by (fast_tac (ZF_cs addIs [Limit_has_succ RS ltD, ltI, Limit_is_Ord]) 2); |
|
103 |
by (REPEAT (ares_tac [Limit_has_0 RS ltD, |
|
104 |
Ord_nat, Limit_is_Ord] 1)); |
|
105 |
val nat_le_Limit = result(); |
|
106 |
||
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
107 |
(* succ(i): nat ==> i: nat *) |
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
108 |
val succ_natD = [succI1, asm_rl, Ord_nat] MRS Ord_trans; |
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
109 |
|
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
110 |
(* [| succ(i): k; k: nat |] ==> i: k *) |
435 | 111 |
val succ_in_naturalD = [succI1, asm_rl, nat_into_Ord] MRS Ord_trans; |
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
112 |
|
30 | 113 |
goal Nat.thy "!!m n. [| m<n; n: nat |] ==> m: nat"; |
114 |
by (etac ltE 1); |
|
115 |
by (etac (Ord_nat RSN (3,Ord_trans)) 1); |
|
116 |
by (assume_tac 1); |
|
117 |
val lt_nat_in_nat = result(); |
|
118 |
||
119 |
||
0 | 120 |
(** Variations on mathematical induction **) |
121 |
||
122 |
(*complete induction*) |
|
123 |
val complete_induct = Ord_nat RSN (2, Ord_induct); |
|
124 |
||
125 |
val prems = goal Nat.thy |
|
126 |
"[| m: nat; n: nat; \ |
|
30 | 127 |
\ !!x. [| x: nat; m le x; P(x) |] ==> P(succ(x)) \ |
128 |
\ |] ==> m le n --> P(m) --> P(n)"; |
|
0 | 129 |
by (nat_ind_tac "n" prems 1); |
130 |
by (ALLGOALS |
|
6
8ce8c4d13d4d
Installation of new simplifier for ZF. Deleted all congruence rules not
lcp
parents:
0
diff
changeset
|
131 |
(asm_simp_tac |
30 | 132 |
(ZF_ss addsimps (prems@distrib_rews@[le0_iff, le_succ_iff])))); |
0 | 133 |
val nat_induct_from_lemma = result(); |
134 |
||
135 |
(*Induction starting from m rather than 0*) |
|
136 |
val prems = goal Nat.thy |
|
30 | 137 |
"[| m le n; m: nat; n: nat; \ |
0 | 138 |
\ P(m); \ |
30 | 139 |
\ !!x. [| x: nat; m le x; P(x) |] ==> P(succ(x)) \ |
0 | 140 |
\ |] ==> P(n)"; |
141 |
by (rtac (nat_induct_from_lemma RS mp RS mp) 1); |
|
142 |
by (REPEAT (ares_tac prems 1)); |
|
143 |
val nat_induct_from = result(); |
|
144 |
||
145 |
(*Induction suitable for subtraction and less-than*) |
|
146 |
val prems = goal Nat.thy |
|
147 |
"[| m: nat; n: nat; \ |
|
30 | 148 |
\ !!x. x: nat ==> P(x,0); \ |
149 |
\ !!y. y: nat ==> P(0,succ(y)); \ |
|
0 | 150 |
\ !!x y. [| x: nat; y: nat; P(x,y) |] ==> P(succ(x),succ(y)) \ |
151 |
\ |] ==> P(m,n)"; |
|
152 |
by (res_inst_tac [("x","m")] bspec 1); |
|
153 |
by (resolve_tac prems 2); |
|
154 |
by (nat_ind_tac "n" prems 1); |
|
155 |
by (rtac ballI 2); |
|
156 |
by (nat_ind_tac "x" [] 2); |
|
157 |
by (REPEAT (ares_tac (prems@[ballI]) 1 ORELSE etac bspec 1)); |
|
158 |
val diff_induct = result(); |
|
159 |
||
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
160 |
(** Induction principle analogous to trancl_induct **) |
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
161 |
|
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
162 |
goal Nat.thy |
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
163 |
"!!m. m: nat ==> P(m,succ(m)) --> (ALL x: nat. P(m,x) --> P(m,succ(x))) --> \ |
30 | 164 |
\ (ALL n:nat. m<n --> P(m,n))"; |
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
165 |
by (etac nat_induct 1); |
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
166 |
by (ALLGOALS |
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
167 |
(EVERY' [rtac (impI RS impI), rtac (nat_induct RS ballI), assume_tac, |
30 | 168 |
fast_tac lt_cs, fast_tac lt_cs])); |
169 |
val succ_lt_induct_lemma = result(); |
|
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
170 |
|
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
171 |
val prems = goal Nat.thy |
30 | 172 |
"[| m<n; n: nat; \ |
173 |
\ P(m,succ(m)); \ |
|
174 |
\ !!x. [| x: nat; P(m,x) |] ==> P(m,succ(x)) \ |
|
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
175 |
\ |] ==> P(m,n)"; |
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
176 |
by (res_inst_tac [("P4","P")] |
30 | 177 |
(succ_lt_induct_lemma RS mp RS mp RS bspec RS mp) 1); |
178 |
by (REPEAT (ares_tac (prems @ [ballI, impI, lt_nat_in_nat]) 1)); |
|
179 |
val succ_lt_induct = result(); |
|
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
180 |
|
0 | 181 |
(** nat_case **) |
182 |
||
6
8ce8c4d13d4d
Installation of new simplifier for ZF. Deleted all congruence rules not
lcp
parents:
0
diff
changeset
|
183 |
goalw Nat.thy [nat_case_def] "nat_case(a,b,0) = a"; |
0 | 184 |
by (fast_tac (ZF_cs addIs [the_equality]) 1); |
185 |
val nat_case_0 = result(); |
|
186 |
||
6
8ce8c4d13d4d
Installation of new simplifier for ZF. Deleted all congruence rules not
lcp
parents:
0
diff
changeset
|
187 |
goalw Nat.thy [nat_case_def] "nat_case(a,b,succ(m)) = b(m)"; |
0 | 188 |
by (fast_tac (ZF_cs addIs [the_equality]) 1); |
189 |
val nat_case_succ = result(); |
|
190 |
||
191 |
val major::prems = goal Nat.thy |
|
192 |
"[| n: nat; a: C(0); !!m. m: nat ==> b(m): C(succ(m)) \ |
|
6
8ce8c4d13d4d
Installation of new simplifier for ZF. Deleted all congruence rules not
lcp
parents:
0
diff
changeset
|
193 |
\ |] ==> nat_case(a,b,n) : C(n)"; |
0 | 194 |
by (rtac (major RS nat_induct) 1); |
30 | 195 |
by (ALLGOALS |
196 |
(asm_simp_tac (ZF_ss addsimps (prems @ [nat_case_0, nat_case_succ])))); |
|
0 | 197 |
val nat_case_type = result(); |
198 |
||
199 |
||
30 | 200 |
(** nat_rec -- used to define eclose and transrec, then obsolete; |
201 |
rec, from arith.ML, has fewer typing conditions **) |
|
0 | 202 |
|
203 |
val nat_rec_trans = wf_Memrel RS (nat_rec_def RS def_wfrec RS trans); |
|
204 |
||
205 |
goal Nat.thy "nat_rec(0,a,b) = a"; |
|
206 |
by (rtac nat_rec_trans 1); |
|
207 |
by (rtac nat_case_0 1); |
|
208 |
val nat_rec_0 = result(); |
|
209 |
||
210 |
val [prem] = goal Nat.thy |
|
211 |
"m: nat ==> nat_rec(succ(m),a,b) = b(m, nat_rec(m,a,b))"; |
|
212 |
by (rtac nat_rec_trans 1); |
|
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
213 |
by (simp_tac (ZF_ss addsimps [prem, nat_case_succ, nat_succI, Memrel_iff, |
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
214 |
vimage_singleton_iff]) 1); |
0 | 215 |
val nat_rec_succ = result(); |
216 |
||
217 |
(** The union of two natural numbers is a natural number -- their maximum **) |
|
218 |
||
30 | 219 |
goal Nat.thy "!!i j. [| i: nat; j: nat |] ==> i Un j: nat"; |
220 |
by (rtac (Un_least_lt RS ltD) 1); |
|
221 |
by (REPEAT (ares_tac [ltI, Ord_nat] 1)); |
|
222 |
val Un_nat_type = result(); |
|
0 | 223 |
|
30 | 224 |
goal Nat.thy "!!i j. [| i: nat; j: nat |] ==> i Int j: nat"; |
225 |
by (rtac (Int_greatest_lt RS ltD) 1); |
|
226 |
by (REPEAT (ares_tac [ltI, Ord_nat] 1)); |
|
227 |
val Int_nat_type = result(); |