author | wenzelm |
Mon, 17 Jan 2000 15:56:58 +0100 | |
changeset 8134 | ceedd1a8bad6 |
parent 6070 | 032babd0120b |
child 9211 | 6236c5285bd8 |
permissions | -rw-r--r-- |
1461 | 1 |
(* Title: ZF/quniv |
0 | 2 |
ID: $Id$ |
1461 | 3 |
Author: Lawrence C Paulson, Cambridge University Computer Laboratory |
0 | 4 |
Copyright 1993 University of Cambridge |
5 |
||
5809 | 6 |
A small universe for lazy recursive types |
0 | 7 |
*) |
8 |
||
838
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
9 |
(** Properties involving Transset and Sum **) |
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
10 |
|
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
11 |
val [prem1,prem2] = goalw QUniv.thy [sum_def] |
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
12 |
"[| Transset(C); A+B <= C |] ==> A <= C & B <= C"; |
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
13 |
by (rtac (prem2 RS (Un_subset_iff RS iffD1) RS conjE) 1); |
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
14 |
by (REPEAT (etac (prem1 RS Transset_includes_range) 1 |
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
15 |
ORELSE resolve_tac [conjI, singletonI] 1)); |
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
16 |
qed "Transset_includes_summands"; |
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
17 |
|
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
18 |
val [prem] = goalw QUniv.thy [sum_def] |
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
19 |
"Transset(C) ==> (A+B) Int C <= (A Int C) + (B Int C)"; |
2033 | 20 |
by (stac Int_Un_distrib 1); |
4091 | 21 |
by (blast_tac (claset() addSDs [prem RS Transset_Pair_D]) 1); |
838
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
22 |
qed "Transset_sum_Int_subset"; |
120edb26ee93
Moved Transset_includes_summands and Transset_sum_Int_subset
lcp
parents:
803
diff
changeset
|
23 |
|
0 | 24 |
(** Introduction and elimination rules avoid tiresome folding/unfolding **) |
25 |
||
5067 | 26 |
Goalw [quniv_def] |
5147
825877190618
More tidying and removal of "\!\!... from Goal commands
paulson
parents:
5137
diff
changeset
|
27 |
"X <= univ(eclose(A)) ==> X : quniv(A)"; |
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
28 |
by (etac PowI 1); |
760 | 29 |
qed "qunivI"; |
0 | 30 |
|
5067 | 31 |
Goalw [quniv_def] |
5147
825877190618
More tidying and removal of "\!\!... from Goal commands
paulson
parents:
5137
diff
changeset
|
32 |
"X : quniv(A) ==> X <= univ(eclose(A))"; |
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
33 |
by (etac PowD 1); |
760 | 34 |
qed "qunivD"; |
0 | 35 |
|
5137 | 36 |
Goalw [quniv_def] "A<=B ==> quniv(A) <= quniv(B)"; |
0 | 37 |
by (etac (eclose_mono RS univ_mono RS Pow_mono) 1); |
760 | 38 |
qed "quniv_mono"; |
0 | 39 |
|
40 |
(*** Closure properties ***) |
|
41 |
||
5067 | 42 |
Goalw [quniv_def] "univ(eclose(A)) <= quniv(A)"; |
0 | 43 |
by (rtac (Transset_iff_Pow RS iffD1) 1); |
44 |
by (rtac (Transset_eclose RS Transset_univ) 1); |
|
760 | 45 |
qed "univ_eclose_subset_quniv"; |
0 | 46 |
|
170
590c9d1e0d73
ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents:
129
diff
changeset
|
47 |
(*Key property for proving A_subset_quniv; requires eclose in def of quniv*) |
5067 | 48 |
Goal "univ(A) <= quniv(A)"; |
0 | 49 |
by (rtac (arg_subset_eclose RS univ_mono RS subset_trans) 1); |
50 |
by (rtac univ_eclose_subset_quniv 1); |
|
760 | 51 |
qed "univ_subset_quniv"; |
0 | 52 |
|
803
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
53 |
bind_thm ("univ_into_quniv", univ_subset_quniv RS subsetD); |
0 | 54 |
|
5067 | 55 |
Goalw [quniv_def] "Pow(univ(A)) <= quniv(A)"; |
0 | 56 |
by (rtac (arg_subset_eclose RS univ_mono RS Pow_mono) 1); |
760 | 57 |
qed "Pow_univ_subset_quniv"; |
0 | 58 |
|
803
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
59 |
bind_thm ("univ_subset_into_quniv", |
1461 | 60 |
PowI RS (Pow_univ_subset_quniv RS subsetD)); |
0 | 61 |
|
803
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
62 |
bind_thm ("zero_in_quniv", zero_in_univ RS univ_into_quniv); |
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
63 |
bind_thm ("one_in_quniv", one_in_univ RS univ_into_quniv); |
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
64 |
bind_thm ("two_in_quniv", two_in_univ RS univ_into_quniv); |
0 | 65 |
|
803
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
66 |
bind_thm ("A_subset_quniv", |
1461 | 67 |
[A_subset_univ, univ_subset_quniv] MRS subset_trans); |
0 | 68 |
|
69 |
val A_into_quniv = A_subset_quniv RS subsetD; |
|
70 |
||
71 |
(*** univ(A) closure for Quine-inspired pairs and injections ***) |
|
72 |
||
73 |
(*Quine ordered pairs*) |
|
5067 | 74 |
Goalw [QPair_def] |
5147
825877190618
More tidying and removal of "\!\!... from Goal commands
paulson
parents:
5137
diff
changeset
|
75 |
"[| a <= univ(A); b <= univ(A) |] ==> <a;b> <= univ(A)"; |
0 | 76 |
by (REPEAT (ares_tac [sum_subset_univ] 1)); |
760 | 77 |
qed "QPair_subset_univ"; |
0 | 78 |
|
79 |
(** Quine disjoint sum **) |
|
80 |
||
5137 | 81 |
Goalw [QInl_def] "a <= univ(A) ==> QInl(a) <= univ(A)"; |
0 | 82 |
by (etac (empty_subsetI RS QPair_subset_univ) 1); |
760 | 83 |
qed "QInl_subset_univ"; |
0 | 84 |
|
85 |
val naturals_subset_nat = |
|
86 |
rewrite_rule [Transset_def] (Ord_nat RS Ord_is_Transset) |
|
87 |
RS bspec; |
|
88 |
||
89 |
val naturals_subset_univ = |
|
90 |
[naturals_subset_nat, nat_subset_univ] MRS subset_trans; |
|
91 |
||
5137 | 92 |
Goalw [QInr_def] "a <= univ(A) ==> QInr(a) <= univ(A)"; |
0 | 93 |
by (etac (nat_1I RS naturals_subset_univ RS QPair_subset_univ) 1); |
760 | 94 |
qed "QInr_subset_univ"; |
0 | 95 |
|
96 |
(*** Closure for Quine-inspired products and sums ***) |
|
97 |
||
98 |
(*Quine ordered pairs*) |
|
5067 | 99 |
Goalw [quniv_def,QPair_def] |
5147
825877190618
More tidying and removal of "\!\!... from Goal commands
paulson
parents:
5137
diff
changeset
|
100 |
"[| a: quniv(A); b: quniv(A) |] ==> <a;b> : quniv(A)"; |
0 | 101 |
by (REPEAT (dtac PowD 1)); |
102 |
by (REPEAT (ares_tac [PowI, sum_subset_univ] 1)); |
|
760 | 103 |
qed "QPair_in_quniv"; |
0 | 104 |
|
5067 | 105 |
Goal "quniv(A) <*> quniv(A) <= quniv(A)"; |
0 | 106 |
by (REPEAT (ares_tac [subsetI, QPair_in_quniv] 1 |
107 |
ORELSE eresolve_tac [QSigmaE, ssubst] 1)); |
|
760 | 108 |
qed "QSigma_quniv"; |
0 | 109 |
|
803
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
110 |
bind_thm ("QSigma_subset_quniv", |
1461 | 111 |
[QSigma_mono, QSigma_quniv] MRS subset_trans); |
0 | 112 |
|
113 |
(*The opposite inclusion*) |
|
5067 | 114 |
Goalw [quniv_def,QPair_def] |
5147
825877190618
More tidying and removal of "\!\!... from Goal commands
paulson
parents:
5137
diff
changeset
|
115 |
"<a;b> : quniv(A) ==> a: quniv(A) & b: quniv(A)"; |
129 | 116 |
by (etac ([Transset_eclose RS Transset_univ, PowD] MRS |
1461 | 117 |
Transset_includes_summands RS conjE) 1); |
0 | 118 |
by (REPEAT (ares_tac [conjI,PowI] 1)); |
760 | 119 |
qed "quniv_QPair_D"; |
0 | 120 |
|
803
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
121 |
bind_thm ("quniv_QPair_E", quniv_QPair_D RS conjE); |
0 | 122 |
|
5067 | 123 |
Goal "<a;b> : quniv(A) <-> a: quniv(A) & b: quniv(A)"; |
0 | 124 |
by (REPEAT (ares_tac [iffI, QPair_in_quniv, quniv_QPair_D] 1 |
125 |
ORELSE etac conjE 1)); |
|
760 | 126 |
qed "quniv_QPair_iff"; |
0 | 127 |
|
128 |
||
129 |
(** Quine disjoint sum **) |
|
130 |
||
5137 | 131 |
Goalw [QInl_def] "a: quniv(A) ==> QInl(a) : quniv(A)"; |
0 | 132 |
by (REPEAT (ares_tac [zero_in_quniv,QPair_in_quniv] 1)); |
760 | 133 |
qed "QInl_in_quniv"; |
0 | 134 |
|
5137 | 135 |
Goalw [QInr_def] "b: quniv(A) ==> QInr(b) : quniv(A)"; |
0 | 136 |
by (REPEAT (ares_tac [one_in_quniv, QPair_in_quniv] 1)); |
760 | 137 |
qed "QInr_in_quniv"; |
0 | 138 |
|
5067 | 139 |
Goal "quniv(C) <+> quniv(C) <= quniv(C)"; |
0 | 140 |
by (REPEAT (ares_tac [subsetI, QInl_in_quniv, QInr_in_quniv] 1 |
141 |
ORELSE eresolve_tac [qsumE, ssubst] 1)); |
|
760 | 142 |
qed "qsum_quniv"; |
0 | 143 |
|
803
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
144 |
bind_thm ("qsum_subset_quniv", [qsum_mono, qsum_quniv] MRS subset_trans); |
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
145 |
|
0 | 146 |
|
147 |
(*** The natural numbers ***) |
|
148 |
||
803
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
149 |
bind_thm ("nat_subset_quniv", |
1461 | 150 |
[nat_subset_univ, univ_subset_quniv] MRS subset_trans); |
0 | 151 |
|
152 |
(* n:nat ==> n:quniv(A) *) |
|
782
200a16083201
added bind_thm for theorems defined by "standard ..."
clasohm
parents:
760
diff
changeset
|
153 |
bind_thm ("nat_into_quniv", (nat_subset_quniv RS subsetD)); |
0 | 154 |
|
803
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
155 |
bind_thm ("bool_subset_quniv", |
1461 | 156 |
[bool_subset_univ, univ_subset_quniv] MRS subset_trans); |
0 | 157 |
|
803
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
158 |
bind_thm ("bool_into_quniv", bool_subset_quniv RS subsetD); |
0 | 159 |
|
160 |
||
161 |
(*** Intersecting <a;b> with Vfrom... ***) |
|
162 |
||
5067 | 163 |
Goalw [QPair_def,sum_def] |
5147
825877190618
More tidying and removal of "\!\!... from Goal commands
paulson
parents:
5137
diff
changeset
|
164 |
"Transset(X) ==> \ |
0 | 165 |
\ <a;b> Int Vfrom(X, succ(i)) <= <a Int Vfrom(X,i); b Int Vfrom(X,i)>"; |
2033 | 166 |
by (stac Int_Un_distrib 1); |
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
167 |
by (rtac Un_mono 1); |
0 | 168 |
by (REPEAT (ares_tac [product_Int_Vfrom_subset RS subset_trans, |
1461 | 169 |
[Int_lower1, subset_refl] MRS Sigma_mono] 1)); |
760 | 170 |
qed "QPair_Int_Vfrom_succ_subset"; |
0 | 171 |
|
170
590c9d1e0d73
ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents:
129
diff
changeset
|
172 |
(**** "Take-lemma" rules for proving a=b by coinduction and c: quniv(A) ****) |
0 | 173 |
|
170
590c9d1e0d73
ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents:
129
diff
changeset
|
174 |
(*Rule for level i -- preserving the level, not decreasing it*) |
0 | 175 |
|
5067 | 176 |
Goalw [QPair_def] |
5147
825877190618
More tidying and removal of "\!\!... from Goal commands
paulson
parents:
5137
diff
changeset
|
177 |
"Transset(X) ==> \ |
0 | 178 |
\ <a;b> Int Vfrom(X,i) <= <a Int Vfrom(X,i); b Int Vfrom(X,i)>"; |
15
6c6d2f6e3185
ex/{bin.ML,comb.ML,prop.ML}: replaced NewSext by Syntax.simple_sext
lcp
parents:
6
diff
changeset
|
179 |
by (etac (Transset_Vfrom RS Transset_sum_Int_subset) 1); |
760 | 180 |
qed "QPair_Int_Vfrom_subset"; |
0 | 181 |
|
170
590c9d1e0d73
ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents:
129
diff
changeset
|
182 |
(*[| a Int Vset(i) <= c; b Int Vset(i) <= d |] ==> <a;b> Int Vset(i) <= <c;d>*) |
803
4c8333ab3eae
changed useless "qed" calls for lemmas back to uses of "result",
lcp
parents:
782
diff
changeset
|
183 |
bind_thm ("QPair_Int_Vset_subset_trans", |
1461 | 184 |
[Transset_0 RS QPair_Int_Vfrom_subset, QPair_mono] MRS subset_trans); |
0 | 185 |
|
5268 | 186 |
Goal "Ord(i) ==> <a;b> Int Vset(i) <= (UN j:i. <a Int Vset(j); b Int Vset(j)>)"; |
170
590c9d1e0d73
ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents:
129
diff
changeset
|
187 |
by (etac Ord_cases 1 THEN REPEAT_FIRST hyp_subst_tac); |
590c9d1e0d73
ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents:
129
diff
changeset
|
188 |
(*0 case*) |
2033 | 189 |
by (stac Vfrom_0 1); |
2469 | 190 |
by (Fast_tac 1); |
170
590c9d1e0d73
ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents:
129
diff
changeset
|
191 |
(*succ(j) case*) |
590c9d1e0d73
ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents:
129
diff
changeset
|
192 |
by (rtac (Transset_0 RS QPair_Int_Vfrom_succ_subset RS subset_trans) 1); |
590c9d1e0d73
ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents:
129
diff
changeset
|
193 |
by (rtac (succI1 RS UN_upper) 1); |
590c9d1e0d73
ZF/quniv/QPair_Int_Vset_subset_UN: new, isolates key argument of many
lcp
parents:
129
diff
changeset
|
194 |
(*Limit(i) case*) |
5268 | 195 |
by (asm_simp_tac |
6070 | 196 |
(simpset() addsimps [Limit_Vfrom_eq, Int_UN_distrib, |
5268 | 197 |
UN_mono, QPair_Int_Vset_subset_trans]) 1); |
760 | 198 |
qed "QPair_Int_Vset_subset_UN"; |