author | haftmann |
Tue, 23 Jun 2009 14:24:58 +0200 | |
changeset 31776 | 151c3f5f28f9 |
parent 30971 | 7fbebf75b3ef |
child 32456 | 341c83339aeb |
permissions | -rw-r--r-- |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
1 |
(* Title: HOL/Library/Continuity.thy |
11355 | 2 |
Author: David von Oheimb, TU Muenchen |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
3 |
*) |
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
4 |
|
14706 | 5 |
header {* Continuity and iterations (of set transformers) *} |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
6 |
|
15131 | 7 |
theory Continuity |
30952
7ab2716dd93b
power operation on functions with syntax o^; power operation on relations with syntax ^^
haftmann
parents:
30950
diff
changeset
|
8 |
imports Transitive_Closure Main |
15131 | 9 |
begin |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
10 |
|
22367 | 11 |
subsection {* Continuity for complete lattices *} |
21312 | 12 |
|
22367 | 13 |
definition |
22452
8a86fd2a1bf0
adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents:
22431
diff
changeset
|
14 |
chain :: "(nat \<Rightarrow> 'a::complete_lattice) \<Rightarrow> bool" where |
22367 | 15 |
"chain M \<longleftrightarrow> (\<forall>i. M i \<le> M (Suc i))" |
16 |
||
17 |
definition |
|
22452
8a86fd2a1bf0
adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents:
22431
diff
changeset
|
18 |
continuous :: "('a::complete_lattice \<Rightarrow> 'a::complete_lattice) \<Rightarrow> bool" where |
22367 | 19 |
"continuous F \<longleftrightarrow> (\<forall>M. chain M \<longrightarrow> F (SUP i. M i) = (SUP i. F (M i)))" |
21312 | 20 |
|
21 |
lemma SUP_nat_conv: |
|
22431 | 22 |
"(SUP n. M n) = sup (M 0) (SUP n. M(Suc n))" |
21312 | 23 |
apply(rule order_antisym) |
24 |
apply(rule SUP_leI) |
|
25 |
apply(case_tac n) |
|
26 |
apply simp |
|
22431 | 27 |
apply (fast intro:le_SUPI le_supI2) |
21312 | 28 |
apply(simp) |
29 |
apply (blast intro:SUP_leI le_SUPI) |
|
30 |
done |
|
31 |
||
22452
8a86fd2a1bf0
adjusted to new lattice theory developement in Lattices.thy / FixedPoint.thy
haftmann
parents:
22431
diff
changeset
|
32 |
lemma continuous_mono: fixes F :: "'a::complete_lattice \<Rightarrow> 'a::complete_lattice" |
21312 | 33 |
assumes "continuous F" shows "mono F" |
34 |
proof |
|
35 |
fix A B :: "'a" assume "A <= B" |
|
36 |
let ?C = "%i::nat. if i=0 then A else B" |
|
37 |
have "chain ?C" using `A <= B` by(simp add:chain_def) |
|
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22367
diff
changeset
|
38 |
have "F B = sup (F A) (F B)" |
21312 | 39 |
proof - |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22367
diff
changeset
|
40 |
have "sup A B = B" using `A <= B` by (simp add:sup_absorb2) |
22431 | 41 |
hence "F B = F(SUP i. ?C i)" by (subst SUP_nat_conv) simp |
21312 | 42 |
also have "\<dots> = (SUP i. F(?C i))" |
43 |
using `chain ?C` `continuous F` by(simp add:continuous_def) |
|
22431 | 44 |
also have "\<dots> = sup (F A) (F B)" by (subst SUP_nat_conv) simp |
21312 | 45 |
finally show ?thesis . |
46 |
qed |
|
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22367
diff
changeset
|
47 |
thus "F A \<le> F B" by(subst le_iff_sup, simp) |
21312 | 48 |
qed |
49 |
||
50 |
lemma continuous_lfp: |
|
30971 | 51 |
assumes "continuous F" shows "lfp F = (SUP i. (F ^^ i) bot)" |
21312 | 52 |
proof - |
53 |
note mono = continuous_mono[OF `continuous F`] |
|
30971 | 54 |
{ fix i have "(F ^^ i) bot \<le> lfp F" |
21312 | 55 |
proof (induct i) |
30971 | 56 |
show "(F ^^ 0) bot \<le> lfp F" by simp |
21312 | 57 |
next |
58 |
case (Suc i) |
|
30971 | 59 |
have "(F ^^ Suc i) bot = F((F ^^ i) bot)" by simp |
21312 | 60 |
also have "\<dots> \<le> F(lfp F)" by(rule monoD[OF mono Suc]) |
61 |
also have "\<dots> = lfp F" by(simp add:lfp_unfold[OF mono, symmetric]) |
|
62 |
finally show ?case . |
|
63 |
qed } |
|
30971 | 64 |
hence "(SUP i. (F ^^ i) bot) \<le> lfp F" by (blast intro!:SUP_leI) |
65 |
moreover have "lfp F \<le> (SUP i. (F ^^ i) bot)" (is "_ \<le> ?U") |
|
21312 | 66 |
proof (rule lfp_lowerbound) |
30971 | 67 |
have "chain(%i. (F ^^ i) bot)" |
21312 | 68 |
proof - |
30971 | 69 |
{ fix i have "(F ^^ i) bot \<le> (F ^^ (Suc i)) bot" |
21312 | 70 |
proof (induct i) |
71 |
case 0 show ?case by simp |
|
72 |
next |
|
73 |
case Suc thus ?case using monoD[OF mono Suc] by auto |
|
74 |
qed } |
|
75 |
thus ?thesis by(auto simp add:chain_def) |
|
76 |
qed |
|
30971 | 77 |
hence "F ?U = (SUP i. (F ^^ (i+1)) bot)" using `continuous F` by (simp add:continuous_def) |
22431 | 78 |
also have "\<dots> \<le> ?U" by(fast intro:SUP_leI le_SUPI) |
21312 | 79 |
finally show "F ?U \<le> ?U" . |
80 |
qed |
|
81 |
ultimately show ?thesis by (blast intro:order_antisym) |
|
82 |
qed |
|
83 |
||
84 |
text{* The following development is just for sets but presents an up |
|
85 |
and a down version of chains and continuity and covers @{const gfp}. *} |
|
86 |
||
87 |
||
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
88 |
subsection "Chains" |
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
89 |
|
19736 | 90 |
definition |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21312
diff
changeset
|
91 |
up_chain :: "(nat => 'a set) => bool" where |
19736 | 92 |
"up_chain F = (\<forall>i. F i \<subseteq> F (Suc i))" |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
93 |
|
11355 | 94 |
lemma up_chainI: "(!!i. F i \<subseteq> F (Suc i)) ==> up_chain F" |
95 |
by (simp add: up_chain_def) |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
96 |
|
11355 | 97 |
lemma up_chainD: "up_chain F ==> F i \<subseteq> F (Suc i)" |
98 |
by (simp add: up_chain_def) |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
99 |
|
19736 | 100 |
lemma up_chain_less_mono: |
101 |
"up_chain F ==> x < y ==> F x \<subseteq> F y" |
|
102 |
apply (induct y) |
|
103 |
apply (blast dest: up_chainD elim: less_SucE)+ |
|
11355 | 104 |
done |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
105 |
|
11355 | 106 |
lemma up_chain_mono: "up_chain F ==> x \<le> y ==> F x \<subseteq> F y" |
107 |
apply (drule le_imp_less_or_eq) |
|
108 |
apply (blast dest: up_chain_less_mono) |
|
109 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
110 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
111 |
|
19736 | 112 |
definition |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21312
diff
changeset
|
113 |
down_chain :: "(nat => 'a set) => bool" where |
19736 | 114 |
"down_chain F = (\<forall>i. F (Suc i) \<subseteq> F i)" |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
115 |
|
11355 | 116 |
lemma down_chainI: "(!!i. F (Suc i) \<subseteq> F i) ==> down_chain F" |
117 |
by (simp add: down_chain_def) |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
118 |
|
11355 | 119 |
lemma down_chainD: "down_chain F ==> F (Suc i) \<subseteq> F i" |
120 |
by (simp add: down_chain_def) |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
121 |
|
19736 | 122 |
lemma down_chain_less_mono: |
123 |
"down_chain F ==> x < y ==> F y \<subseteq> F x" |
|
124 |
apply (induct y) |
|
125 |
apply (blast dest: down_chainD elim: less_SucE)+ |
|
11355 | 126 |
done |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
127 |
|
11355 | 128 |
lemma down_chain_mono: "down_chain F ==> x \<le> y ==> F y \<subseteq> F x" |
129 |
apply (drule le_imp_less_or_eq) |
|
130 |
apply (blast dest: down_chain_less_mono) |
|
131 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
132 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
133 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
134 |
subsection "Continuity" |
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
135 |
|
19736 | 136 |
definition |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21312
diff
changeset
|
137 |
up_cont :: "('a set => 'a set) => bool" where |
19736 | 138 |
"up_cont f = (\<forall>F. up_chain F --> f (\<Union>(range F)) = \<Union>(f ` range F))" |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
139 |
|
11355 | 140 |
lemma up_contI: |
24331 | 141 |
"(!!F. up_chain F ==> f (\<Union>(range F)) = \<Union>(f ` range F)) ==> up_cont f" |
142 |
apply (unfold up_cont_def) |
|
143 |
apply blast |
|
144 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
145 |
|
11355 | 146 |
lemma up_contD: |
24331 | 147 |
"up_cont f ==> up_chain F ==> f (\<Union>(range F)) = \<Union>(f ` range F)" |
148 |
apply (unfold up_cont_def) |
|
149 |
apply auto |
|
150 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
151 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
152 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
153 |
lemma up_cont_mono: "up_cont f ==> mono f" |
24331 | 154 |
apply (rule monoI) |
25076 | 155 |
apply (drule_tac F = "\<lambda>i. if i = 0 then x else y" in up_contD) |
24331 | 156 |
apply (rule up_chainI) |
157 |
apply simp |
|
158 |
apply (drule Un_absorb1) |
|
159 |
apply (auto simp add: nat_not_singleton) |
|
160 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
161 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
162 |
|
19736 | 163 |
definition |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21312
diff
changeset
|
164 |
down_cont :: "('a set => 'a set) => bool" where |
19736 | 165 |
"down_cont f = |
166 |
(\<forall>F. down_chain F --> f (Inter (range F)) = Inter (f ` range F))" |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
167 |
|
11355 | 168 |
lemma down_contI: |
169 |
"(!!F. down_chain F ==> f (Inter (range F)) = Inter (f ` range F)) ==> |
|
170 |
down_cont f" |
|
171 |
apply (unfold down_cont_def) |
|
172 |
apply blast |
|
173 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
174 |
|
11355 | 175 |
lemma down_contD: "down_cont f ==> down_chain F ==> |
176 |
f (Inter (range F)) = Inter (f ` range F)" |
|
177 |
apply (unfold down_cont_def) |
|
178 |
apply auto |
|
179 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
180 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
181 |
lemma down_cont_mono: "down_cont f ==> mono f" |
24331 | 182 |
apply (rule monoI) |
25076 | 183 |
apply (drule_tac F = "\<lambda>i. if i = 0 then y else x" in down_contD) |
24331 | 184 |
apply (rule down_chainI) |
185 |
apply simp |
|
186 |
apply (drule Int_absorb1) |
|
25076 | 187 |
apply auto |
24331 | 188 |
apply (auto simp add: nat_not_singleton) |
189 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
190 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
191 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
192 |
subsection "Iteration" |
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
193 |
|
19736 | 194 |
definition |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21312
diff
changeset
|
195 |
up_iterate :: "('a set => 'a set) => nat => 'a set" where |
30971 | 196 |
"up_iterate f n = (f ^^ n) {}" |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
197 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
198 |
lemma up_iterate_0 [simp]: "up_iterate f 0 = {}" |
11355 | 199 |
by (simp add: up_iterate_def) |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
200 |
|
11355 | 201 |
lemma up_iterate_Suc [simp]: "up_iterate f (Suc i) = f (up_iterate f i)" |
202 |
by (simp add: up_iterate_def) |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
203 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
204 |
lemma up_iterate_chain: "mono F ==> up_chain (up_iterate F)" |
11355 | 205 |
apply (rule up_chainI) |
206 |
apply (induct_tac i) |
|
207 |
apply simp+ |
|
208 |
apply (erule (1) monoD) |
|
209 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
210 |
|
11355 | 211 |
lemma UNION_up_iterate_is_fp: |
212 |
"up_cont F ==> |
|
213 |
F (UNION UNIV (up_iterate F)) = UNION UNIV (up_iterate F)" |
|
214 |
apply (frule up_cont_mono [THEN up_iterate_chain]) |
|
215 |
apply (drule (1) up_contD) |
|
216 |
apply simp |
|
217 |
apply (auto simp del: up_iterate_Suc simp add: up_iterate_Suc [symmetric]) |
|
218 |
apply (case_tac xa) |
|
219 |
apply auto |
|
220 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
221 |
|
11355 | 222 |
lemma UNION_up_iterate_lowerbound: |
223 |
"mono F ==> F P = P ==> UNION UNIV (up_iterate F) \<subseteq> P" |
|
224 |
apply (subgoal_tac "(!!i. up_iterate F i \<subseteq> P)") |
|
225 |
apply fast |
|
226 |
apply (induct_tac i) |
|
227 |
prefer 2 apply (drule (1) monoD) |
|
228 |
apply auto |
|
229 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
230 |
|
11355 | 231 |
lemma UNION_up_iterate_is_lfp: |
232 |
"up_cont F ==> lfp F = UNION UNIV (up_iterate F)" |
|
233 |
apply (rule set_eq_subset [THEN iffD2]) |
|
234 |
apply (rule conjI) |
|
235 |
prefer 2 |
|
236 |
apply (drule up_cont_mono) |
|
237 |
apply (rule UNION_up_iterate_lowerbound) |
|
238 |
apply assumption |
|
239 |
apply (erule lfp_unfold [symmetric]) |
|
240 |
apply (rule lfp_lowerbound) |
|
241 |
apply (rule set_eq_subset [THEN iffD1, THEN conjunct2]) |
|
242 |
apply (erule UNION_up_iterate_is_fp [symmetric]) |
|
243 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
244 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
245 |
|
19736 | 246 |
definition |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21312
diff
changeset
|
247 |
down_iterate :: "('a set => 'a set) => nat => 'a set" where |
30971 | 248 |
"down_iterate f n = (f ^^ n) UNIV" |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
249 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
250 |
lemma down_iterate_0 [simp]: "down_iterate f 0 = UNIV" |
11355 | 251 |
by (simp add: down_iterate_def) |
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
252 |
|
11355 | 253 |
lemma down_iterate_Suc [simp]: |
254 |
"down_iterate f (Suc i) = f (down_iterate f i)" |
|
255 |
by (simp add: down_iterate_def) |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
256 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
257 |
lemma down_iterate_chain: "mono F ==> down_chain (down_iterate F)" |
11355 | 258 |
apply (rule down_chainI) |
259 |
apply (induct_tac i) |
|
260 |
apply simp+ |
|
261 |
apply (erule (1) monoD) |
|
262 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
263 |
|
11355 | 264 |
lemma INTER_down_iterate_is_fp: |
265 |
"down_cont F ==> |
|
266 |
F (INTER UNIV (down_iterate F)) = INTER UNIV (down_iterate F)" |
|
267 |
apply (frule down_cont_mono [THEN down_iterate_chain]) |
|
268 |
apply (drule (1) down_contD) |
|
269 |
apply simp |
|
270 |
apply (auto simp del: down_iterate_Suc simp add: down_iterate_Suc [symmetric]) |
|
271 |
apply (case_tac xa) |
|
272 |
apply auto |
|
273 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
274 |
|
11355 | 275 |
lemma INTER_down_iterate_upperbound: |
276 |
"mono F ==> F P = P ==> P \<subseteq> INTER UNIV (down_iterate F)" |
|
277 |
apply (subgoal_tac "(!!i. P \<subseteq> down_iterate F i)") |
|
278 |
apply fast |
|
279 |
apply (induct_tac i) |
|
280 |
prefer 2 apply (drule (1) monoD) |
|
281 |
apply auto |
|
282 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
283 |
|
11355 | 284 |
lemma INTER_down_iterate_is_gfp: |
285 |
"down_cont F ==> gfp F = INTER UNIV (down_iterate F)" |
|
286 |
apply (rule set_eq_subset [THEN iffD2]) |
|
287 |
apply (rule conjI) |
|
288 |
apply (drule down_cont_mono) |
|
289 |
apply (rule INTER_down_iterate_upperbound) |
|
290 |
apply assumption |
|
291 |
apply (erule gfp_unfold [symmetric]) |
|
292 |
apply (rule gfp_upperbound) |
|
293 |
apply (rule set_eq_subset [THEN iffD1, THEN conjunct2]) |
|
294 |
apply (erule INTER_down_iterate_is_fp) |
|
295 |
done |
|
11351
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
296 |
|
c5c403d30c77
added Library/Nat_Infinity.thy and Library/Continuity.thy
oheimb
parents:
diff
changeset
|
297 |
end |