author | haftmann |
Thu, 22 May 2014 16:59:49 +0200 | |
changeset 57067 | b3571d1a3e45 |
parent 57025 | e7fd64f82876 |
child 57275 | 0ddb5b755cdc |
permissions | -rw-r--r-- |
52265 | 1 |
(* Title: HOL/Topological_Spaces.thy |
51471 | 2 |
Author: Brian Huffman |
3 |
Author: Johannes Hölzl |
|
4 |
*) |
|
5 |
||
6 |
header {* Topological Spaces *} |
|
7 |
||
8 |
theory Topological_Spaces |
|
51773 | 9 |
imports Main Conditionally_Complete_Lattices |
51471 | 10 |
begin |
11 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
12 |
ML {* |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
13 |
|
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
14 |
structure Continuous_Intros = Named_Thms |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
15 |
( |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
16 |
val name = @{binding continuous_intros} |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
17 |
val description = "Structural introduction rules for continuity" |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
18 |
) |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
19 |
|
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
20 |
*} |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
21 |
|
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
22 |
setup Continuous_Intros.setup |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
23 |
|
51471 | 24 |
subsection {* Topological space *} |
25 |
||
26 |
class "open" = |
|
27 |
fixes "open" :: "'a set \<Rightarrow> bool" |
|
28 |
||
29 |
class topological_space = "open" + |
|
30 |
assumes open_UNIV [simp, intro]: "open UNIV" |
|
31 |
assumes open_Int [intro]: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<inter> T)" |
|
32 |
assumes open_Union [intro]: "\<forall>S\<in>K. open S \<Longrightarrow> open (\<Union> K)" |
|
33 |
begin |
|
34 |
||
35 |
definition |
|
36 |
closed :: "'a set \<Rightarrow> bool" where |
|
37 |
"closed S \<longleftrightarrow> open (- S)" |
|
38 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
39 |
lemma open_empty [continuous_intros, intro, simp]: "open {}" |
51471 | 40 |
using open_Union [of "{}"] by simp |
41 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
42 |
lemma open_Un [continuous_intros, intro]: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<union> T)" |
51471 | 43 |
using open_Union [of "{S, T}"] by simp |
44 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
45 |
lemma open_UN [continuous_intros, intro]: "\<forall>x\<in>A. open (B x) \<Longrightarrow> open (\<Union>x\<in>A. B x)" |
56166 | 46 |
using open_Union [of "B ` A"] by simp |
51471 | 47 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
48 |
lemma open_Inter [continuous_intros, intro]: "finite S \<Longrightarrow> \<forall>T\<in>S. open T \<Longrightarrow> open (\<Inter>S)" |
51471 | 49 |
by (induct set: finite) auto |
50 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
51 |
lemma open_INT [continuous_intros, intro]: "finite A \<Longrightarrow> \<forall>x\<in>A. open (B x) \<Longrightarrow> open (\<Inter>x\<in>A. B x)" |
56166 | 52 |
using open_Inter [of "B ` A"] by simp |
51471 | 53 |
|
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
54 |
lemma openI: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
55 |
assumes "\<And>x. x \<in> S \<Longrightarrow> \<exists>T. open T \<and> x \<in> T \<and> T \<subseteq> S" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
56 |
shows "open S" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
57 |
proof - |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
58 |
have "open (\<Union>{T. open T \<and> T \<subseteq> S})" by auto |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
59 |
moreover have "\<Union>{T. open T \<and> T \<subseteq> S} = S" by (auto dest!: assms) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
60 |
ultimately show "open S" by simp |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
61 |
qed |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
62 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
63 |
lemma closed_empty [continuous_intros, intro, simp]: "closed {}" |
51471 | 64 |
unfolding closed_def by simp |
65 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
66 |
lemma closed_Un [continuous_intros, intro]: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<union> T)" |
51471 | 67 |
unfolding closed_def by auto |
68 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
69 |
lemma closed_UNIV [continuous_intros, intro, simp]: "closed UNIV" |
51471 | 70 |
unfolding closed_def by simp |
71 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
72 |
lemma closed_Int [continuous_intros, intro]: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<inter> T)" |
51471 | 73 |
unfolding closed_def by auto |
74 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
75 |
lemma closed_INT [continuous_intros, intro]: "\<forall>x\<in>A. closed (B x) \<Longrightarrow> closed (\<Inter>x\<in>A. B x)" |
51471 | 76 |
unfolding closed_def by auto |
77 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
78 |
lemma closed_Inter [continuous_intros, intro]: "\<forall>S\<in>K. closed S \<Longrightarrow> closed (\<Inter> K)" |
51471 | 79 |
unfolding closed_def uminus_Inf by auto |
80 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
81 |
lemma closed_Union [continuous_intros, intro]: "finite S \<Longrightarrow> \<forall>T\<in>S. closed T \<Longrightarrow> closed (\<Union>S)" |
51471 | 82 |
by (induct set: finite) auto |
83 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
84 |
lemma closed_UN [continuous_intros, intro]: "finite A \<Longrightarrow> \<forall>x\<in>A. closed (B x) \<Longrightarrow> closed (\<Union>x\<in>A. B x)" |
56166 | 85 |
using closed_Union [of "B ` A"] by simp |
51471 | 86 |
|
87 |
lemma open_closed: "open S \<longleftrightarrow> closed (- S)" |
|
88 |
unfolding closed_def by simp |
|
89 |
||
90 |
lemma closed_open: "closed S \<longleftrightarrow> open (- S)" |
|
91 |
unfolding closed_def by simp |
|
92 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
93 |
lemma open_Diff [continuous_intros, intro]: "open S \<Longrightarrow> closed T \<Longrightarrow> open (S - T)" |
51471 | 94 |
unfolding closed_open Diff_eq by (rule open_Int) |
95 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
96 |
lemma closed_Diff [continuous_intros, intro]: "closed S \<Longrightarrow> open T \<Longrightarrow> closed (S - T)" |
51471 | 97 |
unfolding open_closed Diff_eq by (rule closed_Int) |
98 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
99 |
lemma open_Compl [continuous_intros, intro]: "closed S \<Longrightarrow> open (- S)" |
51471 | 100 |
unfolding closed_open . |
101 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
102 |
lemma closed_Compl [continuous_intros, intro]: "open S \<Longrightarrow> closed (- S)" |
51471 | 103 |
unfolding open_closed . |
104 |
||
105 |
end |
|
106 |
||
107 |
subsection{* Hausdorff and other separation properties *} |
|
108 |
||
109 |
class t0_space = topological_space + |
|
110 |
assumes t0_space: "x \<noteq> y \<Longrightarrow> \<exists>U. open U \<and> \<not> (x \<in> U \<longleftrightarrow> y \<in> U)" |
|
111 |
||
112 |
class t1_space = topological_space + |
|
113 |
assumes t1_space: "x \<noteq> y \<Longrightarrow> \<exists>U. open U \<and> x \<in> U \<and> y \<notin> U" |
|
114 |
||
115 |
instance t1_space \<subseteq> t0_space |
|
116 |
proof qed (fast dest: t1_space) |
|
117 |
||
118 |
lemma separation_t1: |
|
119 |
fixes x y :: "'a::t1_space" |
|
120 |
shows "x \<noteq> y \<longleftrightarrow> (\<exists>U. open U \<and> x \<in> U \<and> y \<notin> U)" |
|
121 |
using t1_space[of x y] by blast |
|
122 |
||
123 |
lemma closed_singleton: |
|
124 |
fixes a :: "'a::t1_space" |
|
125 |
shows "closed {a}" |
|
126 |
proof - |
|
127 |
let ?T = "\<Union>{S. open S \<and> a \<notin> S}" |
|
128 |
have "open ?T" by (simp add: open_Union) |
|
129 |
also have "?T = - {a}" |
|
130 |
by (simp add: set_eq_iff separation_t1, auto) |
|
131 |
finally show "closed {a}" unfolding closed_def . |
|
132 |
qed |
|
133 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
134 |
lemma closed_insert [continuous_intros, simp]: |
51471 | 135 |
fixes a :: "'a::t1_space" |
136 |
assumes "closed S" shows "closed (insert a S)" |
|
137 |
proof - |
|
138 |
from closed_singleton assms |
|
139 |
have "closed ({a} \<union> S)" by (rule closed_Un) |
|
140 |
thus "closed (insert a S)" by simp |
|
141 |
qed |
|
142 |
||
143 |
lemma finite_imp_closed: |
|
144 |
fixes S :: "'a::t1_space set" |
|
145 |
shows "finite S \<Longrightarrow> closed S" |
|
146 |
by (induct set: finite, simp_all) |
|
147 |
||
148 |
text {* T2 spaces are also known as Hausdorff spaces. *} |
|
149 |
||
150 |
class t2_space = topological_space + |
|
151 |
assumes hausdorff: "x \<noteq> y \<Longrightarrow> \<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {}" |
|
152 |
||
153 |
instance t2_space \<subseteq> t1_space |
|
154 |
proof qed (fast dest: hausdorff) |
|
155 |
||
156 |
lemma separation_t2: |
|
157 |
fixes x y :: "'a::t2_space" |
|
158 |
shows "x \<noteq> y \<longleftrightarrow> (\<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {})" |
|
159 |
using hausdorff[of x y] by blast |
|
160 |
||
161 |
lemma separation_t0: |
|
162 |
fixes x y :: "'a::t0_space" |
|
163 |
shows "x \<noteq> y \<longleftrightarrow> (\<exists>U. open U \<and> ~(x\<in>U \<longleftrightarrow> y\<in>U))" |
|
164 |
using t0_space[of x y] by blast |
|
165 |
||
166 |
text {* A perfect space is a topological space with no isolated points. *} |
|
167 |
||
168 |
class perfect_space = topological_space + |
|
169 |
assumes not_open_singleton: "\<not> open {x}" |
|
170 |
||
171 |
||
172 |
subsection {* Generators for toplogies *} |
|
173 |
||
174 |
inductive generate_topology for S where |
|
175 |
UNIV: "generate_topology S UNIV" |
|
176 |
| Int: "generate_topology S a \<Longrightarrow> generate_topology S b \<Longrightarrow> generate_topology S (a \<inter> b)" |
|
177 |
| UN: "(\<And>k. k \<in> K \<Longrightarrow> generate_topology S k) \<Longrightarrow> generate_topology S (\<Union>K)" |
|
178 |
| Basis: "s \<in> S \<Longrightarrow> generate_topology S s" |
|
179 |
||
180 |
hide_fact (open) UNIV Int UN Basis |
|
181 |
||
182 |
lemma generate_topology_Union: |
|
183 |
"(\<And>k. k \<in> I \<Longrightarrow> generate_topology S (K k)) \<Longrightarrow> generate_topology S (\<Union>k\<in>I. K k)" |
|
56166 | 184 |
using generate_topology.UN [of "K ` I"] by auto |
51471 | 185 |
|
186 |
lemma topological_space_generate_topology: |
|
187 |
"class.topological_space (generate_topology S)" |
|
188 |
by default (auto intro: generate_topology.intros) |
|
189 |
||
190 |
subsection {* Order topologies *} |
|
191 |
||
192 |
class order_topology = order + "open" + |
|
193 |
assumes open_generated_order: "open = generate_topology (range (\<lambda>a. {..< a}) \<union> range (\<lambda>a. {a <..}))" |
|
194 |
begin |
|
195 |
||
196 |
subclass topological_space |
|
197 |
unfolding open_generated_order |
|
198 |
by (rule topological_space_generate_topology) |
|
199 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
200 |
lemma open_greaterThan [continuous_intros, simp]: "open {a <..}" |
51471 | 201 |
unfolding open_generated_order by (auto intro: generate_topology.Basis) |
202 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
203 |
lemma open_lessThan [continuous_intros, simp]: "open {..< a}" |
51471 | 204 |
unfolding open_generated_order by (auto intro: generate_topology.Basis) |
205 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
206 |
lemma open_greaterThanLessThan [continuous_intros, simp]: "open {a <..< b}" |
51471 | 207 |
unfolding greaterThanLessThan_eq by (simp add: open_Int) |
208 |
||
209 |
end |
|
210 |
||
211 |
class linorder_topology = linorder + order_topology |
|
212 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
213 |
lemma closed_atMost [continuous_intros, simp]: "closed {.. a::'a::linorder_topology}" |
51471 | 214 |
by (simp add: closed_open) |
215 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
216 |
lemma closed_atLeast [continuous_intros, simp]: "closed {a::'a::linorder_topology ..}" |
51471 | 217 |
by (simp add: closed_open) |
218 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
219 |
lemma closed_atLeastAtMost [continuous_intros, simp]: "closed {a::'a::linorder_topology .. b}" |
51471 | 220 |
proof - |
221 |
have "{a .. b} = {a ..} \<inter> {.. b}" |
|
222 |
by auto |
|
223 |
then show ?thesis |
|
224 |
by (simp add: closed_Int) |
|
225 |
qed |
|
226 |
||
227 |
lemma (in linorder) less_separate: |
|
228 |
assumes "x < y" |
|
229 |
shows "\<exists>a b. x \<in> {..< a} \<and> y \<in> {b <..} \<and> {..< a} \<inter> {b <..} = {}" |
|
53381 | 230 |
proof (cases "\<exists>z. x < z \<and> z < y") |
231 |
case True |
|
232 |
then obtain z where "x < z \<and> z < y" .. |
|
51471 | 233 |
then have "x \<in> {..< z} \<and> y \<in> {z <..} \<and> {z <..} \<inter> {..< z} = {}" |
234 |
by auto |
|
235 |
then show ?thesis by blast |
|
236 |
next |
|
53381 | 237 |
case False |
51471 | 238 |
with `x < y` have "x \<in> {..< y} \<and> y \<in> {x <..} \<and> {x <..} \<inter> {..< y} = {}" |
239 |
by auto |
|
240 |
then show ?thesis by blast |
|
241 |
qed |
|
242 |
||
243 |
instance linorder_topology \<subseteq> t2_space |
|
244 |
proof |
|
245 |
fix x y :: 'a |
|
246 |
from less_separate[of x y] less_separate[of y x] |
|
247 |
show "x \<noteq> y \<Longrightarrow> \<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {}" |
|
248 |
by (elim neqE) (metis open_lessThan open_greaterThan Int_commute)+ |
|
249 |
qed |
|
250 |
||
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
251 |
lemma (in linorder_topology) open_right: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
252 |
assumes "open S" "x \<in> S" and gt_ex: "x < y" shows "\<exists>b>x. {x ..< b} \<subseteq> S" |
51471 | 253 |
using assms unfolding open_generated_order |
254 |
proof induction |
|
255 |
case (Int A B) |
|
256 |
then obtain a b where "a > x" "{x ..< a} \<subseteq> A" "b > x" "{x ..< b} \<subseteq> B" by auto |
|
257 |
then show ?case by (auto intro!: exI[of _ "min a b"]) |
|
258 |
next |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
259 |
case (Basis S) then show ?case by (fastforce intro: exI[of _ y] gt_ex) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
260 |
qed blast+ |
51471 | 261 |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
262 |
lemma (in linorder_topology) open_left: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
263 |
assumes "open S" "x \<in> S" and lt_ex: "y < x" shows "\<exists>b<x. {b <.. x} \<subseteq> S" |
51471 | 264 |
using assms unfolding open_generated_order |
265 |
proof induction |
|
266 |
case (Int A B) |
|
267 |
then obtain a b where "a < x" "{a <.. x} \<subseteq> A" "b < x" "{b <.. x} \<subseteq> B" by auto |
|
268 |
then show ?case by (auto intro!: exI[of _ "max a b"]) |
|
269 |
next |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
270 |
case (Basis S) then show ?case by (fastforce intro: exI[of _ y] lt_ex) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
271 |
qed blast+ |
51471 | 272 |
|
273 |
subsection {* Filters *} |
|
274 |
||
275 |
text {* |
|
276 |
This definition also allows non-proper filters. |
|
277 |
*} |
|
278 |
||
279 |
locale is_filter = |
|
280 |
fixes F :: "('a \<Rightarrow> bool) \<Rightarrow> bool" |
|
281 |
assumes True: "F (\<lambda>x. True)" |
|
282 |
assumes conj: "F (\<lambda>x. P x) \<Longrightarrow> F (\<lambda>x. Q x) \<Longrightarrow> F (\<lambda>x. P x \<and> Q x)" |
|
283 |
assumes mono: "\<forall>x. P x \<longrightarrow> Q x \<Longrightarrow> F (\<lambda>x. P x) \<Longrightarrow> F (\<lambda>x. Q x)" |
|
284 |
||
285 |
typedef 'a filter = "{F :: ('a \<Rightarrow> bool) \<Rightarrow> bool. is_filter F}" |
|
286 |
proof |
|
287 |
show "(\<lambda>x. True) \<in> ?filter" by (auto intro: is_filter.intro) |
|
288 |
qed |
|
289 |
||
290 |
lemma is_filter_Rep_filter: "is_filter (Rep_filter F)" |
|
291 |
using Rep_filter [of F] by simp |
|
292 |
||
293 |
lemma Abs_filter_inverse': |
|
294 |
assumes "is_filter F" shows "Rep_filter (Abs_filter F) = F" |
|
295 |
using assms by (simp add: Abs_filter_inverse) |
|
296 |
||
297 |
||
298 |
subsubsection {* Eventually *} |
|
299 |
||
300 |
definition eventually :: "('a \<Rightarrow> bool) \<Rightarrow> 'a filter \<Rightarrow> bool" |
|
301 |
where "eventually P F \<longleftrightarrow> Rep_filter F P" |
|
302 |
||
303 |
lemma eventually_Abs_filter: |
|
304 |
assumes "is_filter F" shows "eventually P (Abs_filter F) = F P" |
|
305 |
unfolding eventually_def using assms by (simp add: Abs_filter_inverse) |
|
306 |
||
307 |
lemma filter_eq_iff: |
|
308 |
shows "F = F' \<longleftrightarrow> (\<forall>P. eventually P F = eventually P F')" |
|
309 |
unfolding Rep_filter_inject [symmetric] fun_eq_iff eventually_def .. |
|
310 |
||
311 |
lemma eventually_True [simp]: "eventually (\<lambda>x. True) F" |
|
312 |
unfolding eventually_def |
|
313 |
by (rule is_filter.True [OF is_filter_Rep_filter]) |
|
314 |
||
315 |
lemma always_eventually: "\<forall>x. P x \<Longrightarrow> eventually P F" |
|
316 |
proof - |
|
317 |
assume "\<forall>x. P x" hence "P = (\<lambda>x. True)" by (simp add: ext) |
|
318 |
thus "eventually P F" by simp |
|
319 |
qed |
|
320 |
||
321 |
lemma eventually_mono: |
|
322 |
"(\<forall>x. P x \<longrightarrow> Q x) \<Longrightarrow> eventually P F \<Longrightarrow> eventually Q F" |
|
323 |
unfolding eventually_def |
|
324 |
by (rule is_filter.mono [OF is_filter_Rep_filter]) |
|
325 |
||
326 |
lemma eventually_conj: |
|
327 |
assumes P: "eventually (\<lambda>x. P x) F" |
|
328 |
assumes Q: "eventually (\<lambda>x. Q x) F" |
|
329 |
shows "eventually (\<lambda>x. P x \<and> Q x) F" |
|
330 |
using assms unfolding eventually_def |
|
331 |
by (rule is_filter.conj [OF is_filter_Rep_filter]) |
|
332 |
||
333 |
lemma eventually_Ball_finite: |
|
334 |
assumes "finite A" and "\<forall>y\<in>A. eventually (\<lambda>x. P x y) net" |
|
335 |
shows "eventually (\<lambda>x. \<forall>y\<in>A. P x y) net" |
|
336 |
using assms by (induct set: finite, simp, simp add: eventually_conj) |
|
337 |
||
338 |
lemma eventually_all_finite: |
|
339 |
fixes P :: "'a \<Rightarrow> 'b::finite \<Rightarrow> bool" |
|
340 |
assumes "\<And>y. eventually (\<lambda>x. P x y) net" |
|
341 |
shows "eventually (\<lambda>x. \<forall>y. P x y) net" |
|
342 |
using eventually_Ball_finite [of UNIV P] assms by simp |
|
343 |
||
344 |
lemma eventually_mp: |
|
345 |
assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) F" |
|
346 |
assumes "eventually (\<lambda>x. P x) F" |
|
347 |
shows "eventually (\<lambda>x. Q x) F" |
|
348 |
proof (rule eventually_mono) |
|
349 |
show "\<forall>x. (P x \<longrightarrow> Q x) \<and> P x \<longrightarrow> Q x" by simp |
|
350 |
show "eventually (\<lambda>x. (P x \<longrightarrow> Q x) \<and> P x) F" |
|
351 |
using assms by (rule eventually_conj) |
|
352 |
qed |
|
353 |
||
354 |
lemma eventually_rev_mp: |
|
355 |
assumes "eventually (\<lambda>x. P x) F" |
|
356 |
assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) F" |
|
357 |
shows "eventually (\<lambda>x. Q x) F" |
|
358 |
using assms(2) assms(1) by (rule eventually_mp) |
|
359 |
||
360 |
lemma eventually_conj_iff: |
|
361 |
"eventually (\<lambda>x. P x \<and> Q x) F \<longleftrightarrow> eventually P F \<and> eventually Q F" |
|
362 |
by (auto intro: eventually_conj elim: eventually_rev_mp) |
|
363 |
||
364 |
lemma eventually_elim1: |
|
365 |
assumes "eventually (\<lambda>i. P i) F" |
|
366 |
assumes "\<And>i. P i \<Longrightarrow> Q i" |
|
367 |
shows "eventually (\<lambda>i. Q i) F" |
|
368 |
using assms by (auto elim!: eventually_rev_mp) |
|
369 |
||
370 |
lemma eventually_elim2: |
|
371 |
assumes "eventually (\<lambda>i. P i) F" |
|
372 |
assumes "eventually (\<lambda>i. Q i) F" |
|
373 |
assumes "\<And>i. P i \<Longrightarrow> Q i \<Longrightarrow> R i" |
|
374 |
shows "eventually (\<lambda>i. R i) F" |
|
375 |
using assms by (auto elim!: eventually_rev_mp) |
|
376 |
||
377 |
lemma eventually_subst: |
|
378 |
assumes "eventually (\<lambda>n. P n = Q n) F" |
|
379 |
shows "eventually P F = eventually Q F" (is "?L = ?R") |
|
380 |
proof - |
|
381 |
from assms have "eventually (\<lambda>x. P x \<longrightarrow> Q x) F" |
|
382 |
and "eventually (\<lambda>x. Q x \<longrightarrow> P x) F" |
|
383 |
by (auto elim: eventually_elim1) |
|
384 |
then show ?thesis by (auto elim: eventually_elim2) |
|
385 |
qed |
|
386 |
||
387 |
ML {* |
|
56231
b98813774a63
enforce subgoal boundaries via SUBGOAL/SUBGOAL_CASES -- clean tactical failure if out-of-range;
wenzelm
parents:
56166
diff
changeset
|
388 |
fun eventually_elim_tac ctxt thms = SUBGOAL_CASES (fn (_, _, st) => |
51471 | 389 |
let |
390 |
val thy = Proof_Context.theory_of ctxt |
|
391 |
val mp_thms = thms RL [@{thm eventually_rev_mp}] |
|
392 |
val raw_elim_thm = |
|
393 |
(@{thm allI} RS @{thm always_eventually}) |
|
394 |
|> fold (fn thm1 => fn thm2 => thm2 RS thm1) mp_thms |
|
395 |
|> fold (fn _ => fn thm => @{thm impI} RS thm) thms |
|
56231
b98813774a63
enforce subgoal boundaries via SUBGOAL/SUBGOAL_CASES -- clean tactical failure if out-of-range;
wenzelm
parents:
56166
diff
changeset
|
396 |
val cases_prop = prop_of (raw_elim_thm RS st) |
51471 | 397 |
val cases = (Rule_Cases.make_common (thy, cases_prop) [(("elim", []), [])]) |
398 |
in |
|
56231
b98813774a63
enforce subgoal boundaries via SUBGOAL/SUBGOAL_CASES -- clean tactical failure if out-of-range;
wenzelm
parents:
56166
diff
changeset
|
399 |
CASES cases (rtac raw_elim_thm 1) |
b98813774a63
enforce subgoal boundaries via SUBGOAL/SUBGOAL_CASES -- clean tactical failure if out-of-range;
wenzelm
parents:
56166
diff
changeset
|
400 |
end) 1 |
51471 | 401 |
*} |
402 |
||
403 |
method_setup eventually_elim = {* |
|
404 |
Scan.succeed (fn ctxt => METHOD_CASES (eventually_elim_tac ctxt)) |
|
405 |
*} "elimination of eventually quantifiers" |
|
406 |
||
407 |
||
408 |
subsubsection {* Finer-than relation *} |
|
409 |
||
410 |
text {* @{term "F \<le> F'"} means that filter @{term F} is finer than |
|
411 |
filter @{term F'}. *} |
|
412 |
||
413 |
instantiation filter :: (type) complete_lattice |
|
414 |
begin |
|
415 |
||
416 |
definition le_filter_def: |
|
417 |
"F \<le> F' \<longleftrightarrow> (\<forall>P. eventually P F' \<longrightarrow> eventually P F)" |
|
418 |
||
419 |
definition |
|
420 |
"(F :: 'a filter) < F' \<longleftrightarrow> F \<le> F' \<and> \<not> F' \<le> F" |
|
421 |
||
422 |
definition |
|
423 |
"top = Abs_filter (\<lambda>P. \<forall>x. P x)" |
|
424 |
||
425 |
definition |
|
426 |
"bot = Abs_filter (\<lambda>P. True)" |
|
427 |
||
428 |
definition |
|
429 |
"sup F F' = Abs_filter (\<lambda>P. eventually P F \<and> eventually P F')" |
|
430 |
||
431 |
definition |
|
432 |
"inf F F' = Abs_filter |
|
433 |
(\<lambda>P. \<exists>Q R. eventually Q F \<and> eventually R F' \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))" |
|
434 |
||
435 |
definition |
|
436 |
"Sup S = Abs_filter (\<lambda>P. \<forall>F\<in>S. eventually P F)" |
|
437 |
||
438 |
definition |
|
439 |
"Inf S = Sup {F::'a filter. \<forall>F'\<in>S. F \<le> F'}" |
|
440 |
||
441 |
lemma eventually_top [simp]: "eventually P top \<longleftrightarrow> (\<forall>x. P x)" |
|
442 |
unfolding top_filter_def |
|
443 |
by (rule eventually_Abs_filter, rule is_filter.intro, auto) |
|
444 |
||
445 |
lemma eventually_bot [simp]: "eventually P bot" |
|
446 |
unfolding bot_filter_def |
|
447 |
by (subst eventually_Abs_filter, rule is_filter.intro, auto) |
|
448 |
||
449 |
lemma eventually_sup: |
|
450 |
"eventually P (sup F F') \<longleftrightarrow> eventually P F \<and> eventually P F'" |
|
451 |
unfolding sup_filter_def |
|
452 |
by (rule eventually_Abs_filter, rule is_filter.intro) |
|
453 |
(auto elim!: eventually_rev_mp) |
|
454 |
||
455 |
lemma eventually_inf: |
|
456 |
"eventually P (inf F F') \<longleftrightarrow> |
|
457 |
(\<exists>Q R. eventually Q F \<and> eventually R F' \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))" |
|
458 |
unfolding inf_filter_def |
|
459 |
apply (rule eventually_Abs_filter, rule is_filter.intro) |
|
460 |
apply (fast intro: eventually_True) |
|
461 |
apply clarify |
|
462 |
apply (intro exI conjI) |
|
463 |
apply (erule (1) eventually_conj) |
|
464 |
apply (erule (1) eventually_conj) |
|
465 |
apply simp |
|
466 |
apply auto |
|
467 |
done |
|
468 |
||
469 |
lemma eventually_Sup: |
|
470 |
"eventually P (Sup S) \<longleftrightarrow> (\<forall>F\<in>S. eventually P F)" |
|
471 |
unfolding Sup_filter_def |
|
472 |
apply (rule eventually_Abs_filter, rule is_filter.intro) |
|
473 |
apply (auto intro: eventually_conj elim!: eventually_rev_mp) |
|
474 |
done |
|
475 |
||
476 |
instance proof |
|
477 |
fix F F' F'' :: "'a filter" and S :: "'a filter set" |
|
478 |
{ show "F < F' \<longleftrightarrow> F \<le> F' \<and> \<not> F' \<le> F" |
|
479 |
by (rule less_filter_def) } |
|
480 |
{ show "F \<le> F" |
|
481 |
unfolding le_filter_def by simp } |
|
482 |
{ assume "F \<le> F'" and "F' \<le> F''" thus "F \<le> F''" |
|
483 |
unfolding le_filter_def by simp } |
|
484 |
{ assume "F \<le> F'" and "F' \<le> F" thus "F = F'" |
|
485 |
unfolding le_filter_def filter_eq_iff by fast } |
|
486 |
{ show "inf F F' \<le> F" and "inf F F' \<le> F'" |
|
487 |
unfolding le_filter_def eventually_inf by (auto intro: eventually_True) } |
|
488 |
{ assume "F \<le> F'" and "F \<le> F''" thus "F \<le> inf F' F''" |
|
489 |
unfolding le_filter_def eventually_inf |
|
490 |
by (auto elim!: eventually_mono intro: eventually_conj) } |
|
52729
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
491 |
{ show "F \<le> sup F F'" and "F' \<le> sup F F'" |
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
492 |
unfolding le_filter_def eventually_sup by simp_all } |
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
493 |
{ assume "F \<le> F''" and "F' \<le> F''" thus "sup F F' \<le> F''" |
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
494 |
unfolding le_filter_def eventually_sup by simp } |
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
495 |
{ assume "F'' \<in> S" thus "Inf S \<le> F''" |
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
496 |
unfolding le_filter_def Inf_filter_def eventually_Sup Ball_def by simp } |
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
497 |
{ assume "\<And>F'. F' \<in> S \<Longrightarrow> F \<le> F'" thus "F \<le> Inf S" |
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
498 |
unfolding le_filter_def Inf_filter_def eventually_Sup Ball_def by simp } |
51471 | 499 |
{ assume "F \<in> S" thus "F \<le> Sup S" |
500 |
unfolding le_filter_def eventually_Sup by simp } |
|
501 |
{ assume "\<And>F. F \<in> S \<Longrightarrow> F \<le> F'" thus "Sup S \<le> F'" |
|
502 |
unfolding le_filter_def eventually_Sup by simp } |
|
52729
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
503 |
{ show "Inf {} = (top::'a filter)" |
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
504 |
by (auto simp: top_filter_def Inf_filter_def Sup_filter_def) |
53859 | 505 |
(metis (full_types) top_filter_def always_eventually eventually_top) } |
52729
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
506 |
{ show "Sup {} = (bot::'a filter)" |
412c9e0381a1
factored syntactic type classes for bot and top (by Alessandro Coglio)
haftmann
parents:
52265
diff
changeset
|
507 |
by (auto simp: bot_filter_def Sup_filter_def) } |
51471 | 508 |
qed |
509 |
||
510 |
end |
|
511 |
||
512 |
lemma filter_leD: |
|
513 |
"F \<le> F' \<Longrightarrow> eventually P F' \<Longrightarrow> eventually P F" |
|
514 |
unfolding le_filter_def by simp |
|
515 |
||
516 |
lemma filter_leI: |
|
517 |
"(\<And>P. eventually P F' \<Longrightarrow> eventually P F) \<Longrightarrow> F \<le> F'" |
|
518 |
unfolding le_filter_def by simp |
|
519 |
||
520 |
lemma eventually_False: |
|
521 |
"eventually (\<lambda>x. False) F \<longleftrightarrow> F = bot" |
|
522 |
unfolding filter_eq_iff by (auto elim: eventually_rev_mp) |
|
523 |
||
524 |
abbreviation (input) trivial_limit :: "'a filter \<Rightarrow> bool" |
|
525 |
where "trivial_limit F \<equiv> F = bot" |
|
526 |
||
527 |
lemma trivial_limit_def: "trivial_limit F \<longleftrightarrow> eventually (\<lambda>x. False) F" |
|
528 |
by (rule eventually_False [symmetric]) |
|
529 |
||
530 |
lemma eventually_const: "\<not> trivial_limit net \<Longrightarrow> eventually (\<lambda>x. P) net \<longleftrightarrow> P" |
|
531 |
by (cases P) (simp_all add: eventually_False) |
|
532 |
||
533 |
||
534 |
subsubsection {* Map function for filters *} |
|
535 |
||
536 |
definition filtermap :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a filter \<Rightarrow> 'b filter" |
|
537 |
where "filtermap f F = Abs_filter (\<lambda>P. eventually (\<lambda>x. P (f x)) F)" |
|
538 |
||
539 |
lemma eventually_filtermap: |
|
540 |
"eventually P (filtermap f F) = eventually (\<lambda>x. P (f x)) F" |
|
541 |
unfolding filtermap_def |
|
542 |
apply (rule eventually_Abs_filter) |
|
543 |
apply (rule is_filter.intro) |
|
544 |
apply (auto elim!: eventually_rev_mp) |
|
545 |
done |
|
546 |
||
547 |
lemma filtermap_ident: "filtermap (\<lambda>x. x) F = F" |
|
548 |
by (simp add: filter_eq_iff eventually_filtermap) |
|
549 |
||
550 |
lemma filtermap_filtermap: |
|
551 |
"filtermap f (filtermap g F) = filtermap (\<lambda>x. f (g x)) F" |
|
552 |
by (simp add: filter_eq_iff eventually_filtermap) |
|
553 |
||
554 |
lemma filtermap_mono: "F \<le> F' \<Longrightarrow> filtermap f F \<le> filtermap f F'" |
|
555 |
unfolding le_filter_def eventually_filtermap by simp |
|
556 |
||
557 |
lemma filtermap_bot [simp]: "filtermap f bot = bot" |
|
558 |
by (simp add: filter_eq_iff eventually_filtermap) |
|
559 |
||
560 |
lemma filtermap_sup: "filtermap f (sup F1 F2) = sup (filtermap f F1) (filtermap f F2)" |
|
561 |
by (auto simp: filter_eq_iff eventually_filtermap eventually_sup) |
|
562 |
||
563 |
subsubsection {* Order filters *} |
|
564 |
||
565 |
definition at_top :: "('a::order) filter" |
|
566 |
where "at_top = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<ge>k. P n)" |
|
567 |
||
568 |
lemma eventually_at_top_linorder: "eventually P at_top \<longleftrightarrow> (\<exists>N::'a::linorder. \<forall>n\<ge>N. P n)" |
|
569 |
unfolding at_top_def |
|
570 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
|
571 |
fix P Q :: "'a \<Rightarrow> bool" |
|
572 |
assume "\<exists>i. \<forall>n\<ge>i. P n" and "\<exists>j. \<forall>n\<ge>j. Q n" |
|
573 |
then obtain i j where "\<forall>n\<ge>i. P n" and "\<forall>n\<ge>j. Q n" by auto |
|
574 |
then have "\<forall>n\<ge>max i j. P n \<and> Q n" by simp |
|
575 |
then show "\<exists>k. \<forall>n\<ge>k. P n \<and> Q n" .. |
|
576 |
qed auto |
|
577 |
||
578 |
lemma eventually_ge_at_top: |
|
579 |
"eventually (\<lambda>x. (c::_::linorder) \<le> x) at_top" |
|
580 |
unfolding eventually_at_top_linorder by auto |
|
581 |
||
53215
5e47c31c6f7c
renamed typeclass dense_linorder to unbounded_dense_linorder
hoelzl
parents:
52729
diff
changeset
|
582 |
lemma eventually_at_top_dense: "eventually P at_top \<longleftrightarrow> (\<exists>N::'a::unbounded_dense_linorder. \<forall>n>N. P n)" |
51471 | 583 |
unfolding eventually_at_top_linorder |
584 |
proof safe |
|
53381 | 585 |
fix N assume "\<forall>n\<ge>N. P n" |
586 |
then show "\<exists>N. \<forall>n>N. P n" by (auto intro!: exI[of _ N]) |
|
51471 | 587 |
next |
588 |
fix N assume "\<forall>n>N. P n" |
|
53381 | 589 |
moreover obtain y where "N < y" using gt_ex[of N] .. |
51471 | 590 |
ultimately show "\<exists>N. \<forall>n\<ge>N. P n" by (auto intro!: exI[of _ y]) |
591 |
qed |
|
592 |
||
593 |
lemma eventually_gt_at_top: |
|
53215
5e47c31c6f7c
renamed typeclass dense_linorder to unbounded_dense_linorder
hoelzl
parents:
52729
diff
changeset
|
594 |
"eventually (\<lambda>x. (c::_::unbounded_dense_linorder) < x) at_top" |
51471 | 595 |
unfolding eventually_at_top_dense by auto |
596 |
||
597 |
definition at_bot :: "('a::order) filter" |
|
598 |
where "at_bot = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<le>k. P n)" |
|
599 |
||
600 |
lemma eventually_at_bot_linorder: |
|
601 |
fixes P :: "'a::linorder \<Rightarrow> bool" shows "eventually P at_bot \<longleftrightarrow> (\<exists>N. \<forall>n\<le>N. P n)" |
|
602 |
unfolding at_bot_def |
|
603 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
|
604 |
fix P Q :: "'a \<Rightarrow> bool" |
|
605 |
assume "\<exists>i. \<forall>n\<le>i. P n" and "\<exists>j. \<forall>n\<le>j. Q n" |
|
606 |
then obtain i j where "\<forall>n\<le>i. P n" and "\<forall>n\<le>j. Q n" by auto |
|
607 |
then have "\<forall>n\<le>min i j. P n \<and> Q n" by simp |
|
608 |
then show "\<exists>k. \<forall>n\<le>k. P n \<and> Q n" .. |
|
609 |
qed auto |
|
610 |
||
611 |
lemma eventually_le_at_bot: |
|
612 |
"eventually (\<lambda>x. x \<le> (c::_::linorder)) at_bot" |
|
613 |
unfolding eventually_at_bot_linorder by auto |
|
614 |
||
615 |
lemma eventually_at_bot_dense: |
|
53215
5e47c31c6f7c
renamed typeclass dense_linorder to unbounded_dense_linorder
hoelzl
parents:
52729
diff
changeset
|
616 |
fixes P :: "'a::unbounded_dense_linorder \<Rightarrow> bool" shows "eventually P at_bot \<longleftrightarrow> (\<exists>N. \<forall>n<N. P n)" |
51471 | 617 |
unfolding eventually_at_bot_linorder |
618 |
proof safe |
|
619 |
fix N assume "\<forall>n\<le>N. P n" then show "\<exists>N. \<forall>n<N. P n" by (auto intro!: exI[of _ N]) |
|
620 |
next |
|
621 |
fix N assume "\<forall>n<N. P n" |
|
53381 | 622 |
moreover obtain y where "y < N" using lt_ex[of N] .. |
51471 | 623 |
ultimately show "\<exists>N. \<forall>n\<le>N. P n" by (auto intro!: exI[of _ y]) |
624 |
qed |
|
625 |
||
626 |
lemma eventually_gt_at_bot: |
|
53215
5e47c31c6f7c
renamed typeclass dense_linorder to unbounded_dense_linorder
hoelzl
parents:
52729
diff
changeset
|
627 |
"eventually (\<lambda>x. x < (c::_::unbounded_dense_linorder)) at_bot" |
51471 | 628 |
unfolding eventually_at_bot_dense by auto |
629 |
||
56289 | 630 |
lemma trivial_limit_at_bot_linorder: "\<not> trivial_limit (at_bot ::('a::linorder) filter)" |
631 |
unfolding trivial_limit_def |
|
632 |
by (metis eventually_at_bot_linorder order_refl) |
|
633 |
||
634 |
lemma trivial_limit_at_top_linorder: "\<not> trivial_limit (at_top ::('a::linorder) filter)" |
|
635 |
unfolding trivial_limit_def |
|
636 |
by (metis eventually_at_top_linorder order_refl) |
|
637 |
||
51471 | 638 |
subsection {* Sequentially *} |
639 |
||
640 |
abbreviation sequentially :: "nat filter" |
|
641 |
where "sequentially == at_top" |
|
642 |
||
643 |
lemma sequentially_def: "sequentially = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<ge>k. P n)" |
|
644 |
unfolding at_top_def by simp |
|
645 |
||
646 |
lemma eventually_sequentially: |
|
647 |
"eventually P sequentially \<longleftrightarrow> (\<exists>N. \<forall>n\<ge>N. P n)" |
|
648 |
by (rule eventually_at_top_linorder) |
|
649 |
||
650 |
lemma sequentially_bot [simp, intro]: "sequentially \<noteq> bot" |
|
651 |
unfolding filter_eq_iff eventually_sequentially by auto |
|
652 |
||
653 |
lemmas trivial_limit_sequentially = sequentially_bot |
|
654 |
||
655 |
lemma eventually_False_sequentially [simp]: |
|
656 |
"\<not> eventually (\<lambda>n. False) sequentially" |
|
657 |
by (simp add: eventually_False) |
|
658 |
||
659 |
lemma le_sequentially: |
|
660 |
"F \<le> sequentially \<longleftrightarrow> (\<forall>N. eventually (\<lambda>n. N \<le> n) F)" |
|
661 |
unfolding le_filter_def eventually_sequentially |
|
662 |
by (safe, fast, drule_tac x=N in spec, auto elim: eventually_rev_mp) |
|
663 |
||
664 |
lemma eventually_sequentiallyI: |
|
665 |
assumes "\<And>x. c \<le> x \<Longrightarrow> P x" |
|
666 |
shows "eventually P sequentially" |
|
667 |
using assms by (auto simp: eventually_sequentially) |
|
668 |
||
51474
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
669 |
lemma eventually_sequentially_seg: |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
670 |
"eventually (\<lambda>n. P (n + k)) sequentially \<longleftrightarrow> eventually P sequentially" |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
671 |
unfolding eventually_sequentially |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
672 |
apply safe |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
673 |
apply (rule_tac x="N + k" in exI) |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
674 |
apply rule |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
675 |
apply (erule_tac x="n - k" in allE) |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
676 |
apply auto [] |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
677 |
apply (rule_tac x=N in exI) |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
678 |
apply auto [] |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
679 |
done |
51471 | 680 |
|
681 |
subsubsection {* Standard filters *} |
|
682 |
||
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
683 |
definition principal :: "'a set \<Rightarrow> 'a filter" where |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
684 |
"principal S = Abs_filter (\<lambda>P. \<forall>x\<in>S. P x)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
685 |
|
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
686 |
lemma eventually_principal: "eventually P (principal S) \<longleftrightarrow> (\<forall>x\<in>S. P x)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
687 |
unfolding principal_def |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
688 |
by (rule eventually_Abs_filter, rule is_filter.intro) auto |
51471 | 689 |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
690 |
lemma eventually_inf_principal: "eventually P (inf F (principal s)) \<longleftrightarrow> eventually (\<lambda>x. x \<in> s \<longrightarrow> P x) F" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
691 |
unfolding eventually_inf eventually_principal by (auto elim: eventually_elim1) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
692 |
|
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
693 |
lemma principal_UNIV[simp]: "principal UNIV = top" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
694 |
by (auto simp: filter_eq_iff eventually_principal) |
51471 | 695 |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
696 |
lemma principal_empty[simp]: "principal {} = bot" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
697 |
by (auto simp: filter_eq_iff eventually_principal) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
698 |
|
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
699 |
lemma principal_le_iff[iff]: "principal A \<le> principal B \<longleftrightarrow> A \<subseteq> B" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
700 |
by (auto simp: le_filter_def eventually_principal) |
51471 | 701 |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
702 |
lemma le_principal: "F \<le> principal A \<longleftrightarrow> eventually (\<lambda>x. x \<in> A) F" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
703 |
unfolding le_filter_def eventually_principal |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
704 |
apply safe |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
705 |
apply (erule_tac x="\<lambda>x. x \<in> A" in allE) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
706 |
apply (auto elim: eventually_elim1) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
707 |
done |
51471 | 708 |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
709 |
lemma principal_inject[iff]: "principal A = principal B \<longleftrightarrow> A = B" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
710 |
unfolding eq_iff by simp |
51471 | 711 |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
712 |
lemma sup_principal[simp]: "sup (principal A) (principal B) = principal (A \<union> B)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
713 |
unfolding filter_eq_iff eventually_sup eventually_principal by auto |
51471 | 714 |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
715 |
lemma inf_principal[simp]: "inf (principal A) (principal B) = principal (A \<inter> B)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
716 |
unfolding filter_eq_iff eventually_inf eventually_principal |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
717 |
by (auto intro: exI[of _ "\<lambda>x. x \<in> A"] exI[of _ "\<lambda>x. x \<in> B"]) |
51471 | 718 |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
719 |
lemma SUP_principal[simp]: "(SUP i : I. principal (A i)) = principal (\<Union>i\<in>I. A i)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
720 |
unfolding filter_eq_iff eventually_Sup SUP_def by (auto simp: eventually_principal) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
721 |
|
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
722 |
lemma filtermap_principal[simp]: "filtermap f (principal A) = principal (f ` A)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
723 |
unfolding filter_eq_iff eventually_filtermap eventually_principal by simp |
51471 | 724 |
|
725 |
subsubsection {* Topological filters *} |
|
726 |
||
727 |
definition (in topological_space) nhds :: "'a \<Rightarrow> 'a filter" |
|
728 |
where "nhds a = Abs_filter (\<lambda>P. \<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))" |
|
729 |
||
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
730 |
definition (in topological_space) at_within :: "'a \<Rightarrow> 'a set \<Rightarrow> 'a filter" ("at (_) within (_)" [1000, 60] 60) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
731 |
where "at a within s = inf (nhds a) (principal (s - {a}))" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
732 |
|
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
733 |
abbreviation (in topological_space) at :: "'a \<Rightarrow> 'a filter" ("at") where |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
734 |
"at x \<equiv> at x within (CONST UNIV)" |
51471 | 735 |
|
51473 | 736 |
abbreviation (in order_topology) at_right :: "'a \<Rightarrow> 'a filter" where |
51471 | 737 |
"at_right x \<equiv> at x within {x <..}" |
738 |
||
51473 | 739 |
abbreviation (in order_topology) at_left :: "'a \<Rightarrow> 'a filter" where |
51471 | 740 |
"at_left x \<equiv> at x within {..< x}" |
741 |
||
51473 | 742 |
lemma (in topological_space) eventually_nhds: |
51471 | 743 |
"eventually P (nhds a) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))" |
744 |
unfolding nhds_def |
|
745 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
|
51473 | 746 |
have "open UNIV \<and> a \<in> UNIV \<and> (\<forall>x\<in>UNIV. True)" by simp |
51471 | 747 |
thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. True)" .. |
748 |
next |
|
749 |
fix P Q |
|
750 |
assume "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)" |
|
751 |
and "\<exists>T. open T \<and> a \<in> T \<and> (\<forall>x\<in>T. Q x)" |
|
752 |
then obtain S T where |
|
753 |
"open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)" |
|
754 |
"open T \<and> a \<in> T \<and> (\<forall>x\<in>T. Q x)" by auto |
|
755 |
hence "open (S \<inter> T) \<and> a \<in> S \<inter> T \<and> (\<forall>x\<in>(S \<inter> T). P x \<and> Q x)" |
|
756 |
by (simp add: open_Int) |
|
757 |
thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x \<and> Q x)" .. |
|
758 |
qed auto |
|
759 |
||
760 |
lemma nhds_neq_bot [simp]: "nhds a \<noteq> bot" |
|
761 |
unfolding trivial_limit_def eventually_nhds by simp |
|
762 |
||
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
763 |
lemma eventually_at_filter: |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
764 |
"eventually P (at a within s) \<longleftrightarrow> eventually (\<lambda>x. x \<noteq> a \<longrightarrow> x \<in> s \<longrightarrow> P x) (nhds a)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
765 |
unfolding at_within_def eventually_inf_principal by (simp add: imp_conjL[symmetric] conj_commute) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
766 |
|
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
767 |
lemma at_le: "s \<subseteq> t \<Longrightarrow> at x within s \<le> at x within t" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
768 |
unfolding at_within_def by (intro inf_mono) auto |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
769 |
|
51471 | 770 |
lemma eventually_at_topological: |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
771 |
"eventually P (at a within s) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. x \<noteq> a \<longrightarrow> x \<in> s \<longrightarrow> P x))" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
772 |
unfolding eventually_nhds eventually_at_filter by simp |
51471 | 773 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
774 |
lemma at_within_open: "a \<in> S \<Longrightarrow> open S \<Longrightarrow> at a within S = at a" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
775 |
unfolding filter_eq_iff eventually_at_topological by (metis open_Int Int_iff UNIV_I) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
776 |
|
53859 | 777 |
lemma at_within_empty [simp]: "at a within {} = bot" |
778 |
unfolding at_within_def by simp |
|
779 |
||
53860 | 780 |
lemma at_within_union: "at x within (S \<union> T) = sup (at x within S) (at x within T)" |
781 |
unfolding filter_eq_iff eventually_sup eventually_at_filter |
|
782 |
by (auto elim!: eventually_rev_mp) |
|
783 |
||
51471 | 784 |
lemma at_eq_bot_iff: "at a = bot \<longleftrightarrow> open {a}" |
785 |
unfolding trivial_limit_def eventually_at_topological |
|
786 |
by (safe, case_tac "S = {a}", simp, fast, fast) |
|
787 |
||
788 |
lemma at_neq_bot [simp]: "at (a::'a::perfect_space) \<noteq> bot" |
|
789 |
by (simp add: at_eq_bot_iff not_open_singleton) |
|
790 |
||
791 |
lemma eventually_at_right: |
|
792 |
fixes x :: "'a :: {no_top, linorder_topology}" |
|
793 |
shows "eventually P (at_right x) \<longleftrightarrow> (\<exists>b. x < b \<and> (\<forall>z. x < z \<and> z < b \<longrightarrow> P z))" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
794 |
unfolding eventually_at_topological |
51471 | 795 |
proof safe |
53381 | 796 |
obtain y where "x < y" using gt_ex[of x] .. |
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
797 |
moreover fix S assume "open S" "x \<in> S" note open_right[OF this, of y] |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
798 |
moreover note gt_ex[of x] |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
799 |
moreover assume "\<forall>s\<in>S. s \<noteq> x \<longrightarrow> s \<in> {x<..} \<longrightarrow> P s" |
51471 | 800 |
ultimately show "\<exists>b>x. \<forall>z. x < z \<and> z < b \<longrightarrow> P z" |
801 |
by (auto simp: subset_eq Ball_def) |
|
802 |
next |
|
803 |
fix b assume "x < b" "\<forall>z. x < z \<and> z < b \<longrightarrow> P z" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
804 |
then show "\<exists>S. open S \<and> x \<in> S \<and> (\<forall>xa\<in>S. xa \<noteq> x \<longrightarrow> xa \<in> {x<..} \<longrightarrow> P xa)" |
51471 | 805 |
by (intro exI[of _ "{..< b}"]) auto |
806 |
qed |
|
807 |
||
808 |
lemma eventually_at_left: |
|
809 |
fixes x :: "'a :: {no_bot, linorder_topology}" |
|
810 |
shows "eventually P (at_left x) \<longleftrightarrow> (\<exists>b. x > b \<and> (\<forall>z. b < z \<and> z < x \<longrightarrow> P z))" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
811 |
unfolding eventually_at_topological |
51471 | 812 |
proof safe |
53381 | 813 |
obtain y where "y < x" using lt_ex[of x] .. |
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
814 |
moreover fix S assume "open S" "x \<in> S" note open_left[OF this, of y] |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
815 |
moreover assume "\<forall>s\<in>S. s \<noteq> x \<longrightarrow> s \<in> {..<x} \<longrightarrow> P s" |
51471 | 816 |
ultimately show "\<exists>b<x. \<forall>z. b < z \<and> z < x \<longrightarrow> P z" |
817 |
by (auto simp: subset_eq Ball_def) |
|
818 |
next |
|
819 |
fix b assume "b < x" "\<forall>z. b < z \<and> z < x \<longrightarrow> P z" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
820 |
then show "\<exists>S. open S \<and> x \<in> S \<and> (\<forall>s\<in>S. s \<noteq> x \<longrightarrow> s \<in> {..<x} \<longrightarrow> P s)" |
51471 | 821 |
by (intro exI[of _ "{b <..}"]) auto |
822 |
qed |
|
823 |
||
824 |
lemma trivial_limit_at_left_real [simp]: |
|
53215
5e47c31c6f7c
renamed typeclass dense_linorder to unbounded_dense_linorder
hoelzl
parents:
52729
diff
changeset
|
825 |
"\<not> trivial_limit (at_left (x::'a::{no_bot, unbounded_dense_linorder, linorder_topology}))" |
51471 | 826 |
unfolding trivial_limit_def eventually_at_left by (auto dest: dense) |
827 |
||
828 |
lemma trivial_limit_at_right_real [simp]: |
|
53215
5e47c31c6f7c
renamed typeclass dense_linorder to unbounded_dense_linorder
hoelzl
parents:
52729
diff
changeset
|
829 |
"\<not> trivial_limit (at_right (x::'a::{no_top, unbounded_dense_linorder, linorder_topology}))" |
51471 | 830 |
unfolding trivial_limit_def eventually_at_right by (auto dest: dense) |
831 |
||
832 |
lemma at_eq_sup_left_right: "at (x::'a::linorder_topology) = sup (at_left x) (at_right x)" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
833 |
by (auto simp: eventually_at_filter filter_eq_iff eventually_sup |
51471 | 834 |
elim: eventually_elim2 eventually_elim1) |
835 |
||
836 |
lemma eventually_at_split: |
|
837 |
"eventually P (at (x::'a::linorder_topology)) \<longleftrightarrow> eventually P (at_left x) \<and> eventually P (at_right x)" |
|
838 |
by (subst at_eq_sup_left_right) (simp add: eventually_sup) |
|
839 |
||
840 |
subsection {* Limits *} |
|
841 |
||
842 |
definition filterlim :: "('a \<Rightarrow> 'b) \<Rightarrow> 'b filter \<Rightarrow> 'a filter \<Rightarrow> bool" where |
|
843 |
"filterlim f F2 F1 \<longleftrightarrow> filtermap f F1 \<le> F2" |
|
844 |
||
845 |
syntax |
|
846 |
"_LIM" :: "pttrns \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'a \<Rightarrow> bool" ("(3LIM (_)/ (_)./ (_) :> (_))" [1000, 10, 0, 10] 10) |
|
847 |
||
848 |
translations |
|
849 |
"LIM x F1. f :> F2" == "CONST filterlim (%x. f) F2 F1" |
|
850 |
||
851 |
lemma filterlim_iff: |
|
852 |
"(LIM x F1. f x :> F2) \<longleftrightarrow> (\<forall>P. eventually P F2 \<longrightarrow> eventually (\<lambda>x. P (f x)) F1)" |
|
853 |
unfolding filterlim_def le_filter_def eventually_filtermap .. |
|
854 |
||
855 |
lemma filterlim_compose: |
|
856 |
"filterlim g F3 F2 \<Longrightarrow> filterlim f F2 F1 \<Longrightarrow> filterlim (\<lambda>x. g (f x)) F3 F1" |
|
857 |
unfolding filterlim_def filtermap_filtermap[symmetric] by (metis filtermap_mono order_trans) |
|
858 |
||
859 |
lemma filterlim_mono: |
|
860 |
"filterlim f F2 F1 \<Longrightarrow> F2 \<le> F2' \<Longrightarrow> F1' \<le> F1 \<Longrightarrow> filterlim f F2' F1'" |
|
861 |
unfolding filterlim_def by (metis filtermap_mono order_trans) |
|
862 |
||
863 |
lemma filterlim_ident: "LIM x F. x :> F" |
|
864 |
by (simp add: filterlim_def filtermap_ident) |
|
865 |
||
866 |
lemma filterlim_cong: |
|
867 |
"F1 = F1' \<Longrightarrow> F2 = F2' \<Longrightarrow> eventually (\<lambda>x. f x = g x) F2 \<Longrightarrow> filterlim f F1 F2 = filterlim g F1' F2'" |
|
868 |
by (auto simp: filterlim_def le_filter_def eventually_filtermap elim: eventually_elim2) |
|
869 |
||
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
870 |
lemma filterlim_principal: |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
871 |
"(LIM x F. f x :> principal S) \<longleftrightarrow> (eventually (\<lambda>x. f x \<in> S) F)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
872 |
unfolding filterlim_def eventually_filtermap le_principal .. |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
873 |
|
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
874 |
lemma filterlim_inf: |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
875 |
"(LIM x F1. f x :> inf F2 F3) \<longleftrightarrow> ((LIM x F1. f x :> F2) \<and> (LIM x F1. f x :> F3))" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
876 |
unfolding filterlim_def by simp |
51471 | 877 |
|
878 |
lemma filterlim_filtermap: "filterlim f F1 (filtermap g F2) = filterlim (\<lambda>x. f (g x)) F1 F2" |
|
879 |
unfolding filterlim_def filtermap_filtermap .. |
|
880 |
||
881 |
lemma filterlim_sup: |
|
882 |
"filterlim f F F1 \<Longrightarrow> filterlim f F F2 \<Longrightarrow> filterlim f F (sup F1 F2)" |
|
883 |
unfolding filterlim_def filtermap_sup by auto |
|
884 |
||
885 |
lemma filterlim_Suc: "filterlim Suc sequentially sequentially" |
|
886 |
by (simp add: filterlim_iff eventually_sequentially) (metis le_Suc_eq) |
|
887 |
||
888 |
subsubsection {* Tendsto *} |
|
889 |
||
890 |
abbreviation (in topological_space) |
|
891 |
tendsto :: "('b \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'b filter \<Rightarrow> bool" (infixr "--->" 55) where |
|
892 |
"(f ---> l) F \<equiv> filterlim f (nhds l) F" |
|
893 |
||
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
894 |
definition (in t2_space) Lim :: "'f filter \<Rightarrow> ('f \<Rightarrow> 'a) \<Rightarrow> 'a" where |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
895 |
"Lim A f = (THE l. (f ---> l) A)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
896 |
|
51471 | 897 |
lemma tendsto_eq_rhs: "(f ---> x) F \<Longrightarrow> x = y \<Longrightarrow> (f ---> y) F" |
898 |
by simp |
|
899 |
||
900 |
ML {* |
|
901 |
||
902 |
structure Tendsto_Intros = Named_Thms |
|
903 |
( |
|
904 |
val name = @{binding tendsto_intros} |
|
905 |
val description = "introduction rules for tendsto" |
|
906 |
) |
|
907 |
||
908 |
*} |
|
909 |
||
910 |
setup {* |
|
911 |
Tendsto_Intros.setup #> |
|
912 |
Global_Theory.add_thms_dynamic (@{binding tendsto_eq_intros}, |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
913 |
map_filter (try (fn thm => @{thm tendsto_eq_rhs} OF [thm])) o Tendsto_Intros.get o Context.proof_of); |
51471 | 914 |
*} |
915 |
||
51473 | 916 |
lemma (in topological_space) tendsto_def: |
917 |
"(f ---> l) F \<longleftrightarrow> (\<forall>S. open S \<longrightarrow> l \<in> S \<longrightarrow> eventually (\<lambda>x. f x \<in> S) F)" |
|
51471 | 918 |
unfolding filterlim_def |
919 |
proof safe |
|
920 |
fix S assume "open S" "l \<in> S" "filtermap f F \<le> nhds l" |
|
921 |
then show "eventually (\<lambda>x. f x \<in> S) F" |
|
922 |
unfolding eventually_nhds eventually_filtermap le_filter_def |
|
923 |
by (auto elim!: allE[of _ "\<lambda>x. x \<in> S"] eventually_rev_mp) |
|
924 |
qed (auto elim!: eventually_rev_mp simp: eventually_nhds eventually_filtermap le_filter_def) |
|
925 |
||
926 |
lemma tendsto_mono: "F \<le> F' \<Longrightarrow> (f ---> l) F' \<Longrightarrow> (f ---> l) F" |
|
927 |
unfolding tendsto_def le_filter_def by fast |
|
928 |
||
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
929 |
lemma tendsto_within_subset: "(f ---> l) (at x within S) \<Longrightarrow> T \<subseteq> S \<Longrightarrow> (f ---> l) (at x within T)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
930 |
by (blast intro: tendsto_mono at_le) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
931 |
|
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
932 |
lemma filterlim_at: |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
933 |
"(LIM x F. f x :> at b within s) \<longleftrightarrow> (eventually (\<lambda>x. f x \<in> s \<and> f x \<noteq> b) F \<and> (f ---> b) F)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
934 |
by (simp add: at_within_def filterlim_inf filterlim_principal conj_commute) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
935 |
|
51473 | 936 |
lemma (in topological_space) topological_tendstoI: |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
937 |
"(\<And>S. open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F) \<Longrightarrow> (f ---> l) F" |
51471 | 938 |
unfolding tendsto_def by auto |
939 |
||
51473 | 940 |
lemma (in topological_space) topological_tendstoD: |
51471 | 941 |
"(f ---> l) F \<Longrightarrow> open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F" |
942 |
unfolding tendsto_def by auto |
|
943 |
||
944 |
lemma order_tendstoI: |
|
945 |
fixes y :: "_ :: order_topology" |
|
946 |
assumes "\<And>a. a < y \<Longrightarrow> eventually (\<lambda>x. a < f x) F" |
|
947 |
assumes "\<And>a. y < a \<Longrightarrow> eventually (\<lambda>x. f x < a) F" |
|
948 |
shows "(f ---> y) F" |
|
949 |
proof (rule topological_tendstoI) |
|
950 |
fix S assume "open S" "y \<in> S" |
|
951 |
then show "eventually (\<lambda>x. f x \<in> S) F" |
|
952 |
unfolding open_generated_order |
|
953 |
proof induct |
|
954 |
case (UN K) |
|
955 |
then obtain k where "y \<in> k" "k \<in> K" by auto |
|
956 |
with UN(2)[of k] show ?case |
|
957 |
by (auto elim: eventually_elim1) |
|
958 |
qed (insert assms, auto elim: eventually_elim2) |
|
959 |
qed |
|
960 |
||
961 |
lemma order_tendstoD: |
|
962 |
fixes y :: "_ :: order_topology" |
|
963 |
assumes y: "(f ---> y) F" |
|
964 |
shows "a < y \<Longrightarrow> eventually (\<lambda>x. a < f x) F" |
|
965 |
and "y < a \<Longrightarrow> eventually (\<lambda>x. f x < a) F" |
|
966 |
using topological_tendstoD[OF y, of "{..< a}"] topological_tendstoD[OF y, of "{a <..}"] by auto |
|
967 |
||
968 |
lemma order_tendsto_iff: |
|
969 |
fixes f :: "_ \<Rightarrow> 'a :: order_topology" |
|
970 |
shows "(f ---> x) F \<longleftrightarrow>(\<forall>l<x. eventually (\<lambda>x. l < f x) F) \<and> (\<forall>u>x. eventually (\<lambda>x. f x < u) F)" |
|
971 |
by (metis order_tendstoI order_tendstoD) |
|
972 |
||
973 |
lemma tendsto_bot [simp]: "(f ---> a) bot" |
|
974 |
unfolding tendsto_def by simp |
|
975 |
||
56949 | 976 |
lemma tendsto_max: |
977 |
fixes x y :: "'a::linorder_topology" |
|
978 |
assumes X: "(X ---> x) net" |
|
979 |
assumes Y: "(Y ---> y) net" |
|
980 |
shows "((\<lambda>x. max (X x) (Y x)) ---> max x y) net" |
|
981 |
proof (rule order_tendstoI) |
|
982 |
fix a assume "a < max x y" |
|
983 |
then show "eventually (\<lambda>x. a < max (X x) (Y x)) net" |
|
984 |
using order_tendstoD(1)[OF X, of a] order_tendstoD(1)[OF Y, of a] |
|
985 |
by (auto simp: less_max_iff_disj elim: eventually_elim1) |
|
986 |
next |
|
987 |
fix a assume "max x y < a" |
|
988 |
then show "eventually (\<lambda>x. max (X x) (Y x) < a) net" |
|
989 |
using order_tendstoD(2)[OF X, of a] order_tendstoD(2)[OF Y, of a] |
|
990 |
by (auto simp: eventually_conj_iff) |
|
991 |
qed |
|
992 |
||
993 |
lemma tendsto_min: |
|
994 |
fixes x y :: "'a::linorder_topology" |
|
995 |
assumes X: "(X ---> x) net" |
|
996 |
assumes Y: "(Y ---> y) net" |
|
997 |
shows "((\<lambda>x. min (X x) (Y x)) ---> min x y) net" |
|
998 |
proof (rule order_tendstoI) |
|
999 |
fix a assume "a < min x y" |
|
1000 |
then show "eventually (\<lambda>x. a < min (X x) (Y x)) net" |
|
1001 |
using order_tendstoD(1)[OF X, of a] order_tendstoD(1)[OF Y, of a] |
|
1002 |
by (auto simp: eventually_conj_iff) |
|
1003 |
next |
|
1004 |
fix a assume "min x y < a" |
|
1005 |
then show "eventually (\<lambda>x. min (X x) (Y x) < a) net" |
|
1006 |
using order_tendstoD(2)[OF X, of a] order_tendstoD(2)[OF Y, of a] |
|
1007 |
by (auto simp: min_less_iff_disj elim: eventually_elim1) |
|
1008 |
qed |
|
1009 |
||
1010 |
||
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1011 |
lemma tendsto_ident_at [tendsto_intros]: "((\<lambda>x. x) ---> a) (at a within s)" |
51471 | 1012 |
unfolding tendsto_def eventually_at_topological by auto |
1013 |
||
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1014 |
lemma (in topological_space) tendsto_const [tendsto_intros]: "((\<lambda>x. k) ---> k) F" |
51471 | 1015 |
by (simp add: tendsto_def) |
1016 |
||
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1017 |
lemma (in t2_space) tendsto_unique: |
51471 | 1018 |
assumes "\<not> trivial_limit F" and "(f ---> a) F" and "(f ---> b) F" |
1019 |
shows "a = b" |
|
1020 |
proof (rule ccontr) |
|
1021 |
assume "a \<noteq> b" |
|
1022 |
obtain U V where "open U" "open V" "a \<in> U" "b \<in> V" "U \<inter> V = {}" |
|
1023 |
using hausdorff [OF `a \<noteq> b`] by fast |
|
1024 |
have "eventually (\<lambda>x. f x \<in> U) F" |
|
1025 |
using `(f ---> a) F` `open U` `a \<in> U` by (rule topological_tendstoD) |
|
1026 |
moreover |
|
1027 |
have "eventually (\<lambda>x. f x \<in> V) F" |
|
1028 |
using `(f ---> b) F` `open V` `b \<in> V` by (rule topological_tendstoD) |
|
1029 |
ultimately |
|
1030 |
have "eventually (\<lambda>x. False) F" |
|
1031 |
proof eventually_elim |
|
1032 |
case (elim x) |
|
1033 |
hence "f x \<in> U \<inter> V" by simp |
|
1034 |
with `U \<inter> V = {}` show ?case by simp |
|
1035 |
qed |
|
1036 |
with `\<not> trivial_limit F` show "False" |
|
1037 |
by (simp add: trivial_limit_def) |
|
1038 |
qed |
|
1039 |
||
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1040 |
lemma (in t2_space) tendsto_const_iff: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1041 |
assumes "\<not> trivial_limit F" shows "((\<lambda>x. a :: 'a) ---> b) F \<longleftrightarrow> a = b" |
51471 | 1042 |
by (safe intro!: tendsto_const tendsto_unique [OF assms tendsto_const]) |
1043 |
||
1044 |
lemma increasing_tendsto: |
|
1045 |
fixes f :: "_ \<Rightarrow> 'a::order_topology" |
|
1046 |
assumes bdd: "eventually (\<lambda>n. f n \<le> l) F" |
|
1047 |
and en: "\<And>x. x < l \<Longrightarrow> eventually (\<lambda>n. x < f n) F" |
|
1048 |
shows "(f ---> l) F" |
|
1049 |
using assms by (intro order_tendstoI) (auto elim!: eventually_elim1) |
|
1050 |
||
1051 |
lemma decreasing_tendsto: |
|
1052 |
fixes f :: "_ \<Rightarrow> 'a::order_topology" |
|
1053 |
assumes bdd: "eventually (\<lambda>n. l \<le> f n) F" |
|
1054 |
and en: "\<And>x. l < x \<Longrightarrow> eventually (\<lambda>n. f n < x) F" |
|
1055 |
shows "(f ---> l) F" |
|
1056 |
using assms by (intro order_tendstoI) (auto elim!: eventually_elim1) |
|
1057 |
||
1058 |
lemma tendsto_sandwich: |
|
1059 |
fixes f g h :: "'a \<Rightarrow> 'b::order_topology" |
|
1060 |
assumes ev: "eventually (\<lambda>n. f n \<le> g n) net" "eventually (\<lambda>n. g n \<le> h n) net" |
|
1061 |
assumes lim: "(f ---> c) net" "(h ---> c) net" |
|
1062 |
shows "(g ---> c) net" |
|
1063 |
proof (rule order_tendstoI) |
|
1064 |
fix a show "a < c \<Longrightarrow> eventually (\<lambda>x. a < g x) net" |
|
1065 |
using order_tendstoD[OF lim(1), of a] ev by (auto elim: eventually_elim2) |
|
1066 |
next |
|
1067 |
fix a show "c < a \<Longrightarrow> eventually (\<lambda>x. g x < a) net" |
|
1068 |
using order_tendstoD[OF lim(2), of a] ev by (auto elim: eventually_elim2) |
|
1069 |
qed |
|
1070 |
||
1071 |
lemma tendsto_le: |
|
1072 |
fixes f g :: "'a \<Rightarrow> 'b::linorder_topology" |
|
1073 |
assumes F: "\<not> trivial_limit F" |
|
1074 |
assumes x: "(f ---> x) F" and y: "(g ---> y) F" |
|
1075 |
assumes ev: "eventually (\<lambda>x. g x \<le> f x) F" |
|
1076 |
shows "y \<le> x" |
|
1077 |
proof (rule ccontr) |
|
1078 |
assume "\<not> y \<le> x" |
|
1079 |
with less_separate[of x y] obtain a b where xy: "x < a" "b < y" "{..<a} \<inter> {b<..} = {}" |
|
1080 |
by (auto simp: not_le) |
|
1081 |
then have "eventually (\<lambda>x. f x < a) F" "eventually (\<lambda>x. b < g x) F" |
|
1082 |
using x y by (auto intro: order_tendstoD) |
|
1083 |
with ev have "eventually (\<lambda>x. False) F" |
|
1084 |
by eventually_elim (insert xy, fastforce) |
|
1085 |
with F show False |
|
1086 |
by (simp add: eventually_False) |
|
1087 |
qed |
|
1088 |
||
1089 |
lemma tendsto_le_const: |
|
1090 |
fixes f :: "'a \<Rightarrow> 'b::linorder_topology" |
|
1091 |
assumes F: "\<not> trivial_limit F" |
|
56289 | 1092 |
assumes x: "(f ---> x) F" and a: "eventually (\<lambda>i. a \<le> f i) F" |
51471 | 1093 |
shows "a \<le> x" |
1094 |
using F x tendsto_const a by (rule tendsto_le) |
|
1095 |
||
56289 | 1096 |
lemma tendsto_ge_const: |
1097 |
fixes f :: "'a \<Rightarrow> 'b::linorder_topology" |
|
1098 |
assumes F: "\<not> trivial_limit F" |
|
1099 |
assumes x: "(f ---> x) F" and a: "eventually (\<lambda>i. a \<ge> f i) F" |
|
1100 |
shows "a \<ge> x" |
|
1101 |
by (rule tendsto_le [OF F tendsto_const x a]) |
|
1102 |
||
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1103 |
subsubsection {* Rules about @{const Lim} *} |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1104 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1105 |
lemma (in t2_space) tendsto_Lim: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1106 |
"\<not>(trivial_limit net) \<Longrightarrow> (f ---> l) net \<Longrightarrow> Lim net f = l" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1107 |
unfolding Lim_def using tendsto_unique[of net f] by auto |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1108 |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1109 |
lemma Lim_ident_at: "\<not> trivial_limit (at x within s) \<Longrightarrow> Lim (at x within s) (\<lambda>x. x) = x" |
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1110 |
by (rule tendsto_Lim[OF _ tendsto_ident_at]) auto |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1111 |
|
51471 | 1112 |
subsection {* Limits to @{const at_top} and @{const at_bot} *} |
1113 |
||
1114 |
lemma filterlim_at_top: |
|
1115 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" |
|
1116 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. Z \<le> f x) F)" |
|
1117 |
by (auto simp: filterlim_iff eventually_at_top_linorder elim!: eventually_elim1) |
|
1118 |
||
1119 |
lemma filterlim_at_top_dense: |
|
53215
5e47c31c6f7c
renamed typeclass dense_linorder to unbounded_dense_linorder
hoelzl
parents:
52729
diff
changeset
|
1120 |
fixes f :: "'a \<Rightarrow> ('b::unbounded_dense_linorder)" |
51471 | 1121 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. Z < f x) F)" |
1122 |
by (metis eventually_elim1[of _ F] eventually_gt_at_top order_less_imp_le |
|
1123 |
filterlim_at_top[of f F] filterlim_iff[of f at_top F]) |
|
1124 |
||
1125 |
lemma filterlim_at_top_ge: |
|
1126 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" and c :: "'b" |
|
1127 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z\<ge>c. eventually (\<lambda>x. Z \<le> f x) F)" |
|
1128 |
unfolding filterlim_at_top |
|
1129 |
proof safe |
|
1130 |
fix Z assume *: "\<forall>Z\<ge>c. eventually (\<lambda>x. Z \<le> f x) F" |
|
1131 |
with *[THEN spec, of "max Z c"] show "eventually (\<lambda>x. Z \<le> f x) F" |
|
1132 |
by (auto elim!: eventually_elim1) |
|
1133 |
qed simp |
|
1134 |
||
1135 |
lemma filterlim_at_top_at_top: |
|
1136 |
fixes f :: "'a::linorder \<Rightarrow> 'b::linorder" |
|
1137 |
assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
|
1138 |
assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)" |
|
1139 |
assumes Q: "eventually Q at_top" |
|
1140 |
assumes P: "eventually P at_top" |
|
1141 |
shows "filterlim f at_top at_top" |
|
1142 |
proof - |
|
1143 |
from P obtain x where x: "\<And>y. x \<le> y \<Longrightarrow> P y" |
|
1144 |
unfolding eventually_at_top_linorder by auto |
|
1145 |
show ?thesis |
|
1146 |
proof (intro filterlim_at_top_ge[THEN iffD2] allI impI) |
|
1147 |
fix z assume "x \<le> z" |
|
1148 |
with x have "P z" by auto |
|
1149 |
have "eventually (\<lambda>x. g z \<le> x) at_top" |
|
1150 |
by (rule eventually_ge_at_top) |
|
1151 |
with Q show "eventually (\<lambda>x. z \<le> f x) at_top" |
|
1152 |
by eventually_elim (metis mono bij `P z`) |
|
1153 |
qed |
|
1154 |
qed |
|
1155 |
||
1156 |
lemma filterlim_at_top_gt: |
|
53215
5e47c31c6f7c
renamed typeclass dense_linorder to unbounded_dense_linorder
hoelzl
parents:
52729
diff
changeset
|
1157 |
fixes f :: "'a \<Rightarrow> ('b::unbounded_dense_linorder)" and c :: "'b" |
51471 | 1158 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z>c. eventually (\<lambda>x. Z \<le> f x) F)" |
1159 |
by (metis filterlim_at_top order_less_le_trans gt_ex filterlim_at_top_ge) |
|
1160 |
||
1161 |
lemma filterlim_at_bot: |
|
1162 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" |
|
1163 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. f x \<le> Z) F)" |
|
1164 |
by (auto simp: filterlim_iff eventually_at_bot_linorder elim!: eventually_elim1) |
|
1165 |
||
1166 |
lemma filterlim_at_bot_le: |
|
1167 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" and c :: "'b" |
|
1168 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z\<le>c. eventually (\<lambda>x. Z \<ge> f x) F)" |
|
1169 |
unfolding filterlim_at_bot |
|
1170 |
proof safe |
|
1171 |
fix Z assume *: "\<forall>Z\<le>c. eventually (\<lambda>x. Z \<ge> f x) F" |
|
1172 |
with *[THEN spec, of "min Z c"] show "eventually (\<lambda>x. Z \<ge> f x) F" |
|
1173 |
by (auto elim!: eventually_elim1) |
|
1174 |
qed simp |
|
1175 |
||
1176 |
lemma filterlim_at_bot_lt: |
|
53215
5e47c31c6f7c
renamed typeclass dense_linorder to unbounded_dense_linorder
hoelzl
parents:
52729
diff
changeset
|
1177 |
fixes f :: "'a \<Rightarrow> ('b::unbounded_dense_linorder)" and c :: "'b" |
51471 | 1178 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z<c. eventually (\<lambda>x. Z \<ge> f x) F)" |
1179 |
by (metis filterlim_at_bot filterlim_at_bot_le lt_ex order_le_less_trans) |
|
1180 |
||
1181 |
lemma filterlim_at_bot_at_right: |
|
1182 |
fixes f :: "'a::{no_top, linorder_topology} \<Rightarrow> 'b::linorder" |
|
1183 |
assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
|
1184 |
assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)" |
|
1185 |
assumes Q: "eventually Q (at_right a)" and bound: "\<And>b. Q b \<Longrightarrow> a < b" |
|
1186 |
assumes P: "eventually P at_bot" |
|
1187 |
shows "filterlim f at_bot (at_right a)" |
|
1188 |
proof - |
|
1189 |
from P obtain x where x: "\<And>y. y \<le> x \<Longrightarrow> P y" |
|
1190 |
unfolding eventually_at_bot_linorder by auto |
|
1191 |
show ?thesis |
|
1192 |
proof (intro filterlim_at_bot_le[THEN iffD2] allI impI) |
|
1193 |
fix z assume "z \<le> x" |
|
1194 |
with x have "P z" by auto |
|
1195 |
have "eventually (\<lambda>x. x \<le> g z) (at_right a)" |
|
1196 |
using bound[OF bij(2)[OF `P z`]] |
|
1197 |
unfolding eventually_at_right by (auto intro!: exI[of _ "g z"]) |
|
1198 |
with Q show "eventually (\<lambda>x. f x \<le> z) (at_right a)" |
|
1199 |
by eventually_elim (metis bij `P z` mono) |
|
1200 |
qed |
|
1201 |
qed |
|
1202 |
||
1203 |
lemma filterlim_at_top_at_left: |
|
1204 |
fixes f :: "'a::{no_bot, linorder_topology} \<Rightarrow> 'b::linorder" |
|
1205 |
assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
|
1206 |
assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)" |
|
1207 |
assumes Q: "eventually Q (at_left a)" and bound: "\<And>b. Q b \<Longrightarrow> b < a" |
|
1208 |
assumes P: "eventually P at_top" |
|
1209 |
shows "filterlim f at_top (at_left a)" |
|
1210 |
proof - |
|
1211 |
from P obtain x where x: "\<And>y. x \<le> y \<Longrightarrow> P y" |
|
1212 |
unfolding eventually_at_top_linorder by auto |
|
1213 |
show ?thesis |
|
1214 |
proof (intro filterlim_at_top_ge[THEN iffD2] allI impI) |
|
1215 |
fix z assume "x \<le> z" |
|
1216 |
with x have "P z" by auto |
|
1217 |
have "eventually (\<lambda>x. g z \<le> x) (at_left a)" |
|
1218 |
using bound[OF bij(2)[OF `P z`]] |
|
1219 |
unfolding eventually_at_left by (auto intro!: exI[of _ "g z"]) |
|
1220 |
with Q show "eventually (\<lambda>x. z \<le> f x) (at_left a)" |
|
1221 |
by eventually_elim (metis bij `P z` mono) |
|
1222 |
qed |
|
1223 |
qed |
|
1224 |
||
1225 |
lemma filterlim_split_at: |
|
1226 |
"filterlim f F (at_left x) \<Longrightarrow> filterlim f F (at_right x) \<Longrightarrow> filterlim f F (at (x::'a::linorder_topology))" |
|
1227 |
by (subst at_eq_sup_left_right) (rule filterlim_sup) |
|
1228 |
||
1229 |
lemma filterlim_at_split: |
|
1230 |
"filterlim f F (at (x::'a::linorder_topology)) \<longleftrightarrow> filterlim f F (at_left x) \<and> filterlim f F (at_right x)" |
|
1231 |
by (subst at_eq_sup_left_right) (simp add: filterlim_def filtermap_sup) |
|
1232 |
||
57025 | 1233 |
lemma eventually_nhds_top: |
1234 |
fixes P :: "'a :: {order_top, linorder_topology} \<Rightarrow> bool" |
|
1235 |
assumes "(b::'a) < top" |
|
1236 |
shows "eventually P (nhds top) \<longleftrightarrow> (\<exists>b<top. (\<forall>z. b < z \<longrightarrow> P z))" |
|
1237 |
unfolding eventually_nhds |
|
1238 |
proof safe |
|
1239 |
fix S :: "'a set" assume "open S" "top \<in> S" |
|
1240 |
note open_left[OF this `b < top`] |
|
1241 |
moreover assume "\<forall>s\<in>S. P s" |
|
1242 |
ultimately show "\<exists>b<top. \<forall>z>b. P z" |
|
1243 |
by (auto simp: subset_eq Ball_def) |
|
1244 |
next |
|
1245 |
fix b assume "b < top" "\<forall>z>b. P z" |
|
1246 |
then show "\<exists>S. open S \<and> top \<in> S \<and> (\<forall>xa\<in>S. P xa)" |
|
1247 |
by (intro exI[of _ "{b <..}"]) auto |
|
1248 |
qed |
|
51471 | 1249 |
|
1250 |
subsection {* Limits on sequences *} |
|
1251 |
||
1252 |
abbreviation (in topological_space) |
|
1253 |
LIMSEQ :: "[nat \<Rightarrow> 'a, 'a] \<Rightarrow> bool" |
|
1254 |
("((_)/ ----> (_))" [60, 60] 60) where |
|
1255 |
"X ----> L \<equiv> (X ---> L) sequentially" |
|
1256 |
||
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1257 |
abbreviation (in t2_space) lim :: "(nat \<Rightarrow> 'a) \<Rightarrow> 'a" where |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1258 |
"lim X \<equiv> Lim sequentially X" |
51471 | 1259 |
|
1260 |
definition (in topological_space) convergent :: "(nat \<Rightarrow> 'a) \<Rightarrow> bool" where |
|
1261 |
"convergent X = (\<exists>L. X ----> L)" |
|
1262 |
||
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1263 |
lemma lim_def: "lim X = (THE L. X ----> L)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1264 |
unfolding Lim_def .. |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1265 |
|
51471 | 1266 |
subsubsection {* Monotone sequences and subsequences *} |
1267 |
||
1268 |
definition |
|
1269 |
monoseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" where |
|
1270 |
--{*Definition of monotonicity. |
|
1271 |
The use of disjunction here complicates proofs considerably. |
|
1272 |
One alternative is to add a Boolean argument to indicate the direction. |
|
1273 |
Another is to develop the notions of increasing and decreasing first.*} |
|
56020
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1274 |
"monoseq X = ((\<forall>m. \<forall>n\<ge>m. X m \<le> X n) \<or> (\<forall>m. \<forall>n\<ge>m. X n \<le> X m))" |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1275 |
|
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1276 |
abbreviation incseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" where |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1277 |
"incseq X \<equiv> mono X" |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1278 |
|
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1279 |
lemma incseq_def: "incseq X \<longleftrightarrow> (\<forall>m. \<forall>n\<ge>m. X n \<ge> X m)" |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1280 |
unfolding mono_def .. |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1281 |
|
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1282 |
abbreviation decseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" where |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1283 |
"decseq X \<equiv> antimono X" |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1284 |
|
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1285 |
lemma decseq_def: "decseq X \<longleftrightarrow> (\<forall>m. \<forall>n\<ge>m. X n \<le> X m)" |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
1286 |
unfolding antimono_def .. |
51471 | 1287 |
|
1288 |
definition |
|
1289 |
subseq :: "(nat \<Rightarrow> nat) \<Rightarrow> bool" where |
|
1290 |
--{*Definition of subsequence*} |
|
1291 |
"subseq f \<longleftrightarrow> (\<forall>m. \<forall>n>m. f m < f n)" |
|
1292 |
||
1293 |
lemma incseq_SucI: |
|
1294 |
"(\<And>n. X n \<le> X (Suc n)) \<Longrightarrow> incseq X" |
|
1295 |
using lift_Suc_mono_le[of X] |
|
1296 |
by (auto simp: incseq_def) |
|
1297 |
||
1298 |
lemma incseqD: "\<And>i j. incseq f \<Longrightarrow> i \<le> j \<Longrightarrow> f i \<le> f j" |
|
1299 |
by (auto simp: incseq_def) |
|
1300 |
||
1301 |
lemma incseq_SucD: "incseq A \<Longrightarrow> A i \<le> A (Suc i)" |
|
1302 |
using incseqD[of A i "Suc i"] by auto |
|
1303 |
||
1304 |
lemma incseq_Suc_iff: "incseq f \<longleftrightarrow> (\<forall>n. f n \<le> f (Suc n))" |
|
1305 |
by (auto intro: incseq_SucI dest: incseq_SucD) |
|
1306 |
||
1307 |
lemma incseq_const[simp, intro]: "incseq (\<lambda>x. k)" |
|
1308 |
unfolding incseq_def by auto |
|
1309 |
||
1310 |
lemma decseq_SucI: |
|
1311 |
"(\<And>n. X (Suc n) \<le> X n) \<Longrightarrow> decseq X" |
|
1312 |
using order.lift_Suc_mono_le[OF dual_order, of X] |
|
1313 |
by (auto simp: decseq_def) |
|
1314 |
||
1315 |
lemma decseqD: "\<And>i j. decseq f \<Longrightarrow> i \<le> j \<Longrightarrow> f j \<le> f i" |
|
1316 |
by (auto simp: decseq_def) |
|
1317 |
||
1318 |
lemma decseq_SucD: "decseq A \<Longrightarrow> A (Suc i) \<le> A i" |
|
1319 |
using decseqD[of A i "Suc i"] by auto |
|
1320 |
||
1321 |
lemma decseq_Suc_iff: "decseq f \<longleftrightarrow> (\<forall>n. f (Suc n) \<le> f n)" |
|
1322 |
by (auto intro: decseq_SucI dest: decseq_SucD) |
|
1323 |
||
1324 |
lemma decseq_const[simp, intro]: "decseq (\<lambda>x. k)" |
|
1325 |
unfolding decseq_def by auto |
|
1326 |
||
1327 |
lemma monoseq_iff: "monoseq X \<longleftrightarrow> incseq X \<or> decseq X" |
|
1328 |
unfolding monoseq_def incseq_def decseq_def .. |
|
1329 |
||
1330 |
lemma monoseq_Suc: |
|
1331 |
"monoseq X \<longleftrightarrow> (\<forall>n. X n \<le> X (Suc n)) \<or> (\<forall>n. X (Suc n) \<le> X n)" |
|
1332 |
unfolding monoseq_iff incseq_Suc_iff decseq_Suc_iff .. |
|
1333 |
||
1334 |
lemma monoI1: "\<forall>m. \<forall> n \<ge> m. X m \<le> X n ==> monoseq X" |
|
1335 |
by (simp add: monoseq_def) |
|
1336 |
||
1337 |
lemma monoI2: "\<forall>m. \<forall> n \<ge> m. X n \<le> X m ==> monoseq X" |
|
1338 |
by (simp add: monoseq_def) |
|
1339 |
||
1340 |
lemma mono_SucI1: "\<forall>n. X n \<le> X (Suc n) ==> monoseq X" |
|
1341 |
by (simp add: monoseq_Suc) |
|
1342 |
||
1343 |
lemma mono_SucI2: "\<forall>n. X (Suc n) \<le> X n ==> monoseq X" |
|
1344 |
by (simp add: monoseq_Suc) |
|
1345 |
||
1346 |
lemma monoseq_minus: |
|
1347 |
fixes a :: "nat \<Rightarrow> 'a::ordered_ab_group_add" |
|
1348 |
assumes "monoseq a" |
|
1349 |
shows "monoseq (\<lambda> n. - a n)" |
|
1350 |
proof (cases "\<forall> m. \<forall> n \<ge> m. a m \<le> a n") |
|
1351 |
case True |
|
1352 |
hence "\<forall> m. \<forall> n \<ge> m. - a n \<le> - a m" by auto |
|
1353 |
thus ?thesis by (rule monoI2) |
|
1354 |
next |
|
1355 |
case False |
|
1356 |
hence "\<forall> m. \<forall> n \<ge> m. - a m \<le> - a n" using `monoseq a`[unfolded monoseq_def] by auto |
|
1357 |
thus ?thesis by (rule monoI1) |
|
1358 |
qed |
|
1359 |
||
1360 |
text{*Subsequence (alternative definition, (e.g. Hoskins)*} |
|
1361 |
||
1362 |
lemma subseq_Suc_iff: "subseq f = (\<forall>n. (f n) < (f (Suc n)))" |
|
1363 |
apply (simp add: subseq_def) |
|
1364 |
apply (auto dest!: less_imp_Suc_add) |
|
1365 |
apply (induct_tac k) |
|
1366 |
apply (auto intro: less_trans) |
|
1367 |
done |
|
1368 |
||
1369 |
text{* for any sequence, there is a monotonic subsequence *} |
|
1370 |
lemma seq_monosub: |
|
1371 |
fixes s :: "nat => 'a::linorder" |
|
1372 |
shows "\<exists>f. subseq f \<and> monoseq (\<lambda> n. (s (f n)))" |
|
1373 |
proof cases |
|
1374 |
let "?P p n" = "p > n \<and> (\<forall>m\<ge>p. s m \<le> s p)" |
|
1375 |
assume *: "\<forall>n. \<exists>p. ?P p n" |
|
55415 | 1376 |
def f \<equiv> "rec_nat (SOME p. ?P p 0) (\<lambda>_ n. SOME p. ?P p n)" |
51471 | 1377 |
have f_0: "f 0 = (SOME p. ?P p 0)" unfolding f_def by simp |
55642
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
blanchet
parents:
55564
diff
changeset
|
1378 |
have f_Suc: "\<And>i. f (Suc i) = (SOME p. ?P p (f i))" unfolding f_def nat.rec(2) .. |
51471 | 1379 |
have P_0: "?P (f 0) 0" unfolding f_0 using *[rule_format] by (rule someI2_ex) auto |
1380 |
have P_Suc: "\<And>i. ?P (f (Suc i)) (f i)" unfolding f_Suc using *[rule_format] by (rule someI2_ex) auto |
|
1381 |
then have "subseq f" unfolding subseq_Suc_iff by auto |
|
1382 |
moreover have "monoseq (\<lambda>n. s (f n))" unfolding monoseq_Suc |
|
1383 |
proof (intro disjI2 allI) |
|
1384 |
fix n show "s (f (Suc n)) \<le> s (f n)" |
|
1385 |
proof (cases n) |
|
1386 |
case 0 with P_Suc[of 0] P_0 show ?thesis by auto |
|
1387 |
next |
|
1388 |
case (Suc m) |
|
1389 |
from P_Suc[of n] Suc have "f (Suc m) \<le> f (Suc (Suc m))" by simp |
|
1390 |
with P_Suc Suc show ?thesis by simp |
|
1391 |
qed |
|
1392 |
qed |
|
1393 |
ultimately show ?thesis by auto |
|
1394 |
next |
|
1395 |
let "?P p m" = "m < p \<and> s m < s p" |
|
1396 |
assume "\<not> (\<forall>n. \<exists>p>n. (\<forall>m\<ge>p. s m \<le> s p))" |
|
1397 |
then obtain N where N: "\<And>p. p > N \<Longrightarrow> \<exists>m>p. s p < s m" by (force simp: not_le le_less) |
|
55415 | 1398 |
def f \<equiv> "rec_nat (SOME p. ?P p (Suc N)) (\<lambda>_ n. SOME p. ?P p n)" |
51471 | 1399 |
have f_0: "f 0 = (SOME p. ?P p (Suc N))" unfolding f_def by simp |
55642
63beb38e9258
adapted to renaming of datatype 'cases' and 'recs' to 'case' and 'rec'
blanchet
parents:
55564
diff
changeset
|
1400 |
have f_Suc: "\<And>i. f (Suc i) = (SOME p. ?P p (f i))" unfolding f_def nat.rec(2) .. |
51471 | 1401 |
have P_0: "?P (f 0) (Suc N)" |
1402 |
unfolding f_0 some_eq_ex[of "\<lambda>p. ?P p (Suc N)"] using N[of "Suc N"] by auto |
|
1403 |
{ fix i have "N < f i \<Longrightarrow> ?P (f (Suc i)) (f i)" |
|
1404 |
unfolding f_Suc some_eq_ex[of "\<lambda>p. ?P p (f i)"] using N[of "f i"] . } |
|
1405 |
note P' = this |
|
1406 |
{ fix i have "N < f i \<and> ?P (f (Suc i)) (f i)" |
|
1407 |
by (induct i) (insert P_0 P', auto) } |
|
1408 |
then have "subseq f" "monoseq (\<lambda>x. s (f x))" |
|
1409 |
unfolding subseq_Suc_iff monoseq_Suc by (auto simp: not_le intro: less_imp_le) |
|
1410 |
then show ?thesis by auto |
|
1411 |
qed |
|
1412 |
||
1413 |
lemma seq_suble: assumes sf: "subseq f" shows "n \<le> f n" |
|
1414 |
proof(induct n) |
|
1415 |
case 0 thus ?case by simp |
|
1416 |
next |
|
1417 |
case (Suc n) |
|
1418 |
from sf[unfolded subseq_Suc_iff, rule_format, of n] Suc.hyps |
|
1419 |
have "n < f (Suc n)" by arith |
|
1420 |
thus ?case by arith |
|
1421 |
qed |
|
1422 |
||
1423 |
lemma eventually_subseq: |
|
1424 |
"subseq r \<Longrightarrow> eventually P sequentially \<Longrightarrow> eventually (\<lambda>n. P (r n)) sequentially" |
|
1425 |
unfolding eventually_sequentially by (metis seq_suble le_trans) |
|
1426 |
||
51473 | 1427 |
lemma not_eventually_sequentiallyD: |
1428 |
assumes P: "\<not> eventually P sequentially" |
|
1429 |
shows "\<exists>r. subseq r \<and> (\<forall>n. \<not> P (r n))" |
|
1430 |
proof - |
|
1431 |
from P have "\<forall>n. \<exists>m\<ge>n. \<not> P m" |
|
1432 |
unfolding eventually_sequentially by (simp add: not_less) |
|
1433 |
then obtain r where "\<And>n. r n \<ge> n" "\<And>n. \<not> P (r n)" |
|
1434 |
by (auto simp: choice_iff) |
|
1435 |
then show ?thesis |
|
1436 |
by (auto intro!: exI[of _ "\<lambda>n. r (((Suc \<circ> r) ^^ Suc n) 0)"] |
|
1437 |
simp: less_eq_Suc_le subseq_Suc_iff) |
|
1438 |
qed |
|
1439 |
||
51471 | 1440 |
lemma filterlim_subseq: "subseq f \<Longrightarrow> filterlim f sequentially sequentially" |
1441 |
unfolding filterlim_iff by (metis eventually_subseq) |
|
1442 |
||
1443 |
lemma subseq_o: "subseq r \<Longrightarrow> subseq s \<Longrightarrow> subseq (r \<circ> s)" |
|
1444 |
unfolding subseq_def by simp |
|
1445 |
||
1446 |
lemma subseq_mono: assumes "subseq r" "m < n" shows "r m < r n" |
|
1447 |
using assms by (auto simp: subseq_def) |
|
1448 |
||
1449 |
lemma incseq_imp_monoseq: "incseq X \<Longrightarrow> monoseq X" |
|
1450 |
by (simp add: incseq_def monoseq_def) |
|
1451 |
||
1452 |
lemma decseq_imp_monoseq: "decseq X \<Longrightarrow> monoseq X" |
|
1453 |
by (simp add: decseq_def monoseq_def) |
|
1454 |
||
1455 |
lemma decseq_eq_incseq: |
|
1456 |
fixes X :: "nat \<Rightarrow> 'a::ordered_ab_group_add" shows "decseq X = incseq (\<lambda>n. - X n)" |
|
1457 |
by (simp add: decseq_def incseq_def) |
|
1458 |
||
1459 |
lemma INT_decseq_offset: |
|
1460 |
assumes "decseq F" |
|
1461 |
shows "(\<Inter>i. F i) = (\<Inter>i\<in>{n..}. F i)" |
|
1462 |
proof safe |
|
1463 |
fix x i assume x: "x \<in> (\<Inter>i\<in>{n..}. F i)" |
|
1464 |
show "x \<in> F i" |
|
1465 |
proof cases |
|
1466 |
from x have "x \<in> F n" by auto |
|
1467 |
also assume "i \<le> n" with `decseq F` have "F n \<subseteq> F i" |
|
1468 |
unfolding decseq_def by simp |
|
1469 |
finally show ?thesis . |
|
1470 |
qed (insert x, simp) |
|
1471 |
qed auto |
|
1472 |
||
1473 |
lemma LIMSEQ_const_iff: |
|
1474 |
fixes k l :: "'a::t2_space" |
|
1475 |
shows "(\<lambda>n. k) ----> l \<longleftrightarrow> k = l" |
|
1476 |
using trivial_limit_sequentially by (rule tendsto_const_iff) |
|
1477 |
||
1478 |
lemma LIMSEQ_SUP: |
|
1479 |
"incseq X \<Longrightarrow> X ----> (SUP i. X i :: 'a :: {complete_linorder, linorder_topology})" |
|
1480 |
by (intro increasing_tendsto) |
|
1481 |
(auto simp: SUP_upper less_SUP_iff incseq_def eventually_sequentially intro: less_le_trans) |
|
1482 |
||
1483 |
lemma LIMSEQ_INF: |
|
1484 |
"decseq X \<Longrightarrow> X ----> (INF i. X i :: 'a :: {complete_linorder, linorder_topology})" |
|
1485 |
by (intro decreasing_tendsto) |
|
1486 |
(auto simp: INF_lower INF_less_iff decseq_def eventually_sequentially intro: le_less_trans) |
|
1487 |
||
1488 |
lemma LIMSEQ_ignore_initial_segment: |
|
1489 |
"f ----> a \<Longrightarrow> (\<lambda>n. f (n + k)) ----> a" |
|
51474
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
1490 |
unfolding tendsto_def |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
1491 |
by (subst eventually_sequentially_seg[where k=k]) |
51471 | 1492 |
|
1493 |
lemma LIMSEQ_offset: |
|
1494 |
"(\<lambda>n. f (n + k)) ----> a \<Longrightarrow> f ----> a" |
|
51474
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
1495 |
unfolding tendsto_def |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
1496 |
by (subst (asm) eventually_sequentially_seg[where k=k]) |
51471 | 1497 |
|
1498 |
lemma LIMSEQ_Suc: "f ----> l \<Longrightarrow> (\<lambda>n. f (Suc n)) ----> l" |
|
1499 |
by (drule_tac k="Suc 0" in LIMSEQ_ignore_initial_segment, simp) |
|
1500 |
||
1501 |
lemma LIMSEQ_imp_Suc: "(\<lambda>n. f (Suc n)) ----> l \<Longrightarrow> f ----> l" |
|
1502 |
by (rule_tac k="Suc 0" in LIMSEQ_offset, simp) |
|
1503 |
||
1504 |
lemma LIMSEQ_Suc_iff: "(\<lambda>n. f (Suc n)) ----> l = f ----> l" |
|
1505 |
by (blast intro: LIMSEQ_imp_Suc LIMSEQ_Suc) |
|
1506 |
||
1507 |
lemma LIMSEQ_unique: |
|
1508 |
fixes a b :: "'a::t2_space" |
|
1509 |
shows "\<lbrakk>X ----> a; X ----> b\<rbrakk> \<Longrightarrow> a = b" |
|
1510 |
using trivial_limit_sequentially by (rule tendsto_unique) |
|
1511 |
||
1512 |
lemma LIMSEQ_le_const: |
|
1513 |
"\<lbrakk>X ----> (x::'a::linorder_topology); \<exists>N. \<forall>n\<ge>N. a \<le> X n\<rbrakk> \<Longrightarrow> a \<le> x" |
|
1514 |
using tendsto_le_const[of sequentially X x a] by (simp add: eventually_sequentially) |
|
1515 |
||
1516 |
lemma LIMSEQ_le: |
|
1517 |
"\<lbrakk>X ----> x; Y ----> y; \<exists>N. \<forall>n\<ge>N. X n \<le> Y n\<rbrakk> \<Longrightarrow> x \<le> (y::'a::linorder_topology)" |
|
1518 |
using tendsto_le[of sequentially Y y X x] by (simp add: eventually_sequentially) |
|
1519 |
||
1520 |
lemma LIMSEQ_le_const2: |
|
1521 |
"\<lbrakk>X ----> (x::'a::linorder_topology); \<exists>N. \<forall>n\<ge>N. X n \<le> a\<rbrakk> \<Longrightarrow> x \<le> a" |
|
1522 |
by (rule LIMSEQ_le[of X x "\<lambda>n. a"]) (auto simp: tendsto_const) |
|
1523 |
||
1524 |
lemma convergentD: "convergent X ==> \<exists>L. (X ----> L)" |
|
1525 |
by (simp add: convergent_def) |
|
1526 |
||
1527 |
lemma convergentI: "(X ----> L) ==> convergent X" |
|
1528 |
by (auto simp add: convergent_def) |
|
1529 |
||
1530 |
lemma convergent_LIMSEQ_iff: "convergent X = (X ----> lim X)" |
|
1531 |
by (auto intro: theI LIMSEQ_unique simp add: convergent_def lim_def) |
|
1532 |
||
1533 |
lemma convergent_const: "convergent (\<lambda>n. c)" |
|
1534 |
by (rule convergentI, rule tendsto_const) |
|
1535 |
||
1536 |
lemma monoseq_le: |
|
1537 |
"monoseq a \<Longrightarrow> a ----> (x::'a::linorder_topology) \<Longrightarrow> |
|
1538 |
((\<forall> n. a n \<le> x) \<and> (\<forall>m. \<forall>n\<ge>m. a m \<le> a n)) \<or> ((\<forall> n. x \<le> a n) \<and> (\<forall>m. \<forall>n\<ge>m. a n \<le> a m))" |
|
1539 |
by (metis LIMSEQ_le_const LIMSEQ_le_const2 decseq_def incseq_def monoseq_iff) |
|
1540 |
||
1541 |
lemma LIMSEQ_subseq_LIMSEQ: |
|
1542 |
"\<lbrakk> X ----> L; subseq f \<rbrakk> \<Longrightarrow> (X o f) ----> L" |
|
1543 |
unfolding comp_def by (rule filterlim_compose[of X, OF _ filterlim_subseq]) |
|
1544 |
||
1545 |
lemma convergent_subseq_convergent: |
|
1546 |
"\<lbrakk>convergent X; subseq f\<rbrakk> \<Longrightarrow> convergent (X o f)" |
|
1547 |
unfolding convergent_def by (auto intro: LIMSEQ_subseq_LIMSEQ) |
|
1548 |
||
1549 |
lemma limI: "X ----> L ==> lim X = L" |
|
1550 |
apply (simp add: lim_def) |
|
1551 |
apply (blast intro: LIMSEQ_unique) |
|
1552 |
done |
|
1553 |
||
1554 |
lemma lim_le: "convergent f \<Longrightarrow> (\<And>n. f n \<le> (x::'a::linorder_topology)) \<Longrightarrow> lim f \<le> x" |
|
1555 |
using LIMSEQ_le_const2[of f "lim f" x] by (simp add: convergent_LIMSEQ_iff) |
|
1556 |
||
1557 |
subsubsection{*Increasing and Decreasing Series*} |
|
1558 |
||
1559 |
lemma incseq_le: "incseq X \<Longrightarrow> X ----> L \<Longrightarrow> X n \<le> (L::'a::linorder_topology)" |
|
1560 |
by (metis incseq_def LIMSEQ_le_const) |
|
1561 |
||
1562 |
lemma decseq_le: "decseq X \<Longrightarrow> X ----> L \<Longrightarrow> (L::'a::linorder_topology) \<le> X n" |
|
1563 |
by (metis decseq_def LIMSEQ_le_const2) |
|
1564 |
||
51473 | 1565 |
subsection {* First countable topologies *} |
1566 |
||
1567 |
class first_countable_topology = topological_space + |
|
1568 |
assumes first_countable_basis: |
|
1569 |
"\<exists>A::nat \<Rightarrow> 'a set. (\<forall>i. x \<in> A i \<and> open (A i)) \<and> (\<forall>S. open S \<and> x \<in> S \<longrightarrow> (\<exists>i. A i \<subseteq> S))" |
|
1570 |
||
1571 |
lemma (in first_countable_topology) countable_basis_at_decseq: |
|
1572 |
obtains A :: "nat \<Rightarrow> 'a set" where |
|
1573 |
"\<And>i. open (A i)" "\<And>i. x \<in> (A i)" |
|
1574 |
"\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially" |
|
1575 |
proof atomize_elim |
|
1576 |
from first_countable_basis[of x] obtain A :: "nat \<Rightarrow> 'a set" where |
|
1577 |
nhds: "\<And>i. open (A i)" "\<And>i. x \<in> A i" |
|
1578 |
and incl: "\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> \<exists>i. A i \<subseteq> S" by auto |
|
1579 |
def F \<equiv> "\<lambda>n. \<Inter>i\<le>n. A i" |
|
1580 |
show "\<exists>A. (\<forall>i. open (A i)) \<and> (\<forall>i. x \<in> A i) \<and> |
|
1581 |
(\<forall>S. open S \<longrightarrow> x \<in> S \<longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially)" |
|
1582 |
proof (safe intro!: exI[of _ F]) |
|
1583 |
fix i |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1584 |
show "open (F i)" using nhds(1) by (auto simp: F_def) |
51473 | 1585 |
show "x \<in> F i" using nhds(2) by (auto simp: F_def) |
1586 |
next |
|
1587 |
fix S assume "open S" "x \<in> S" |
|
1588 |
from incl[OF this] obtain i where "F i \<subseteq> S" unfolding F_def by auto |
|
1589 |
moreover have "\<And>j. i \<le> j \<Longrightarrow> F j \<subseteq> F i" |
|
1590 |
by (auto simp: F_def) |
|
1591 |
ultimately show "eventually (\<lambda>i. F i \<subseteq> S) sequentially" |
|
1592 |
by (auto simp: eventually_sequentially) |
|
1593 |
qed |
|
1594 |
qed |
|
1595 |
||
1596 |
lemma (in first_countable_topology) countable_basis: |
|
1597 |
obtains A :: "nat \<Rightarrow> 'a set" where |
|
1598 |
"\<And>i. open (A i)" "\<And>i. x \<in> A i" |
|
1599 |
"\<And>F. (\<forall>n. F n \<in> A n) \<Longrightarrow> F ----> x" |
|
1600 |
proof atomize_elim |
|
53381 | 1601 |
obtain A :: "nat \<Rightarrow> 'a set" where A: |
1602 |
"\<And>i. open (A i)" |
|
1603 |
"\<And>i. x \<in> A i" |
|
1604 |
"\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially" |
|
1605 |
by (rule countable_basis_at_decseq) blast |
|
1606 |
{ |
|
1607 |
fix F S assume "\<forall>n. F n \<in> A n" "open S" "x \<in> S" |
|
51473 | 1608 |
with A(3)[of S] have "eventually (\<lambda>n. F n \<in> S) sequentially" |
53381 | 1609 |
by (auto elim: eventually_elim1 simp: subset_eq) |
1610 |
} |
|
51473 | 1611 |
with A show "\<exists>A. (\<forall>i. open (A i)) \<and> (\<forall>i. x \<in> A i) \<and> (\<forall>F. (\<forall>n. F n \<in> A n) \<longrightarrow> F ----> x)" |
1612 |
by (intro exI[of _ A]) (auto simp: tendsto_def) |
|
1613 |
qed |
|
1614 |
||
1615 |
lemma (in first_countable_topology) sequentially_imp_eventually_nhds_within: |
|
1616 |
assumes "\<forall>f. (\<forall>n. f n \<in> s) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1617 |
shows "eventually P (inf (nhds a) (principal s))" |
51473 | 1618 |
proof (rule ccontr) |
53381 | 1619 |
obtain A :: "nat \<Rightarrow> 'a set" where A: |
1620 |
"\<And>i. open (A i)" |
|
1621 |
"\<And>i. a \<in> A i" |
|
1622 |
"\<And>F. \<forall>n. F n \<in> A n \<Longrightarrow> F ----> a" |
|
1623 |
by (rule countable_basis) blast |
|
1624 |
assume "\<not> ?thesis" |
|
51473 | 1625 |
with A have P: "\<exists>F. \<forall>n. F n \<in> s \<and> F n \<in> A n \<and> \<not> P (F n)" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1626 |
unfolding eventually_inf_principal eventually_nhds by (intro choice) fastforce |
53381 | 1627 |
then obtain F where F0: "\<forall>n. F n \<in> s" and F2: "\<forall>n. F n \<in> A n" and F3: "\<forall>n. \<not> P (F n)" |
1628 |
by blast |
|
51473 | 1629 |
with A have "F ----> a" by auto |
1630 |
hence "eventually (\<lambda>n. P (F n)) sequentially" |
|
1631 |
using assms F0 by simp |
|
1632 |
thus "False" by (simp add: F3) |
|
1633 |
qed |
|
1634 |
||
1635 |
lemma (in first_countable_topology) eventually_nhds_within_iff_sequentially: |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1636 |
"eventually P (inf (nhds a) (principal s)) \<longleftrightarrow> |
51473 | 1637 |
(\<forall>f. (\<forall>n. f n \<in> s) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially)" |
1638 |
proof (safe intro!: sequentially_imp_eventually_nhds_within) |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1639 |
assume "eventually P (inf (nhds a) (principal s))" |
51473 | 1640 |
then obtain S where "open S" "a \<in> S" "\<forall>x\<in>S. x \<in> s \<longrightarrow> P x" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1641 |
by (auto simp: eventually_inf_principal eventually_nhds) |
51473 | 1642 |
moreover fix f assume "\<forall>n. f n \<in> s" "f ----> a" |
1643 |
ultimately show "eventually (\<lambda>n. P (f n)) sequentially" |
|
1644 |
by (auto dest!: topological_tendstoD elim: eventually_elim1) |
|
1645 |
qed |
|
1646 |
||
1647 |
lemma (in first_countable_topology) eventually_nhds_iff_sequentially: |
|
1648 |
"eventually P (nhds a) \<longleftrightarrow> (\<forall>f. f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially)" |
|
1649 |
using eventually_nhds_within_iff_sequentially[of P a UNIV] by simp |
|
1650 |
||
51471 | 1651 |
subsection {* Function limit at a point *} |
1652 |
||
1653 |
abbreviation |
|
1654 |
LIM :: "('a::topological_space \<Rightarrow> 'b::topological_space) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> bool" |
|
1655 |
("((_)/ -- (_)/ --> (_))" [60, 0, 60] 60) where |
|
1656 |
"f -- a --> L \<equiv> (f ---> L) (at a)" |
|
1657 |
||
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1658 |
lemma tendsto_within_open: "a \<in> S \<Longrightarrow> open S \<Longrightarrow> (f ---> l) (at a within S) \<longleftrightarrow> (f -- a --> l)" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1659 |
unfolding tendsto_def by (simp add: at_within_open[where S=S]) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1660 |
|
51471 | 1661 |
lemma LIM_const_not_eq[tendsto_intros]: |
1662 |
fixes a :: "'a::perfect_space" |
|
1663 |
fixes k L :: "'b::t2_space" |
|
1664 |
shows "k \<noteq> L \<Longrightarrow> \<not> (\<lambda>x. k) -- a --> L" |
|
1665 |
by (simp add: tendsto_const_iff) |
|
1666 |
||
1667 |
lemmas LIM_not_zero = LIM_const_not_eq [where L = 0] |
|
1668 |
||
1669 |
lemma LIM_const_eq: |
|
1670 |
fixes a :: "'a::perfect_space" |
|
1671 |
fixes k L :: "'b::t2_space" |
|
1672 |
shows "(\<lambda>x. k) -- a --> L \<Longrightarrow> k = L" |
|
1673 |
by (simp add: tendsto_const_iff) |
|
1674 |
||
1675 |
lemma LIM_unique: |
|
1676 |
fixes a :: "'a::perfect_space" and L M :: "'b::t2_space" |
|
1677 |
shows "f -- a --> L \<Longrightarrow> f -- a --> M \<Longrightarrow> L = M" |
|
1678 |
using at_neq_bot by (rule tendsto_unique) |
|
1679 |
||
1680 |
text {* Limits are equal for functions equal except at limit point *} |
|
1681 |
||
1682 |
lemma LIM_equal: "\<forall>x. x \<noteq> a --> (f x = g x) \<Longrightarrow> (f -- a --> l) \<longleftrightarrow> (g -- a --> l)" |
|
1683 |
unfolding tendsto_def eventually_at_topological by simp |
|
1684 |
||
1685 |
lemma LIM_cong: "a = b \<Longrightarrow> (\<And>x. x \<noteq> b \<Longrightarrow> f x = g x) \<Longrightarrow> l = m \<Longrightarrow> (f -- a --> l) \<longleftrightarrow> (g -- b --> m)" |
|
1686 |
by (simp add: LIM_equal) |
|
1687 |
||
1688 |
lemma LIM_cong_limit: "f -- x --> L \<Longrightarrow> K = L \<Longrightarrow> f -- x --> K" |
|
1689 |
by simp |
|
1690 |
||
1691 |
lemma tendsto_at_iff_tendsto_nhds: |
|
1692 |
"g -- l --> g l \<longleftrightarrow> (g ---> g l) (nhds l)" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1693 |
unfolding tendsto_def eventually_at_filter |
51471 | 1694 |
by (intro ext all_cong imp_cong) (auto elim!: eventually_elim1) |
1695 |
||
1696 |
lemma tendsto_compose: |
|
1697 |
"g -- l --> g l \<Longrightarrow> (f ---> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> g l) F" |
|
1698 |
unfolding tendsto_at_iff_tendsto_nhds by (rule filterlim_compose[of g]) |
|
1699 |
||
1700 |
lemma LIM_o: "\<lbrakk>g -- l --> g l; f -- a --> l\<rbrakk> \<Longrightarrow> (g \<circ> f) -- a --> g l" |
|
1701 |
unfolding o_def by (rule tendsto_compose) |
|
1702 |
||
1703 |
lemma tendsto_compose_eventually: |
|
1704 |
"g -- l --> m \<Longrightarrow> (f ---> l) F \<Longrightarrow> eventually (\<lambda>x. f x \<noteq> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> m) F" |
|
1705 |
by (rule filterlim_compose[of g _ "at l"]) (auto simp add: filterlim_at) |
|
1706 |
||
1707 |
lemma LIM_compose_eventually: |
|
1708 |
assumes f: "f -- a --> b" |
|
1709 |
assumes g: "g -- b --> c" |
|
1710 |
assumes inj: "eventually (\<lambda>x. f x \<noteq> b) (at a)" |
|
1711 |
shows "(\<lambda>x. g (f x)) -- a --> c" |
|
1712 |
using g f inj by (rule tendsto_compose_eventually) |
|
1713 |
||
51473 | 1714 |
subsubsection {* Relation of LIM and LIMSEQ *} |
1715 |
||
1716 |
lemma (in first_countable_topology) sequentially_imp_eventually_within: |
|
1717 |
"(\<forall>f. (\<forall>n. f n \<in> s \<and> f n \<noteq> a) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially) \<Longrightarrow> |
|
1718 |
eventually P (at a within s)" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1719 |
unfolding at_within_def |
51473 | 1720 |
by (intro sequentially_imp_eventually_nhds_within) auto |
1721 |
||
1722 |
lemma (in first_countable_topology) sequentially_imp_eventually_at: |
|
1723 |
"(\<forall>f. (\<forall>n. f n \<noteq> a) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially) \<Longrightarrow> eventually P (at a)" |
|
1724 |
using assms sequentially_imp_eventually_within [where s=UNIV] by simp |
|
1725 |
||
1726 |
lemma LIMSEQ_SEQ_conv1: |
|
1727 |
fixes f :: "'a::topological_space \<Rightarrow> 'b::topological_space" |
|
1728 |
assumes f: "f -- a --> l" |
|
1729 |
shows "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> a \<longrightarrow> (\<lambda>n. f (S n)) ----> l" |
|
1730 |
using tendsto_compose_eventually [OF f, where F=sequentially] by simp |
|
1731 |
||
1732 |
lemma LIMSEQ_SEQ_conv2: |
|
1733 |
fixes f :: "'a::first_countable_topology \<Rightarrow> 'b::topological_space" |
|
1734 |
assumes "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> a \<longrightarrow> (\<lambda>n. f (S n)) ----> l" |
|
1735 |
shows "f -- a --> l" |
|
1736 |
using assms unfolding tendsto_def [where l=l] by (simp add: sequentially_imp_eventually_at) |
|
1737 |
||
1738 |
lemma LIMSEQ_SEQ_conv: |
|
1739 |
"(\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> (a::'a::first_countable_topology) \<longrightarrow> (\<lambda>n. X (S n)) ----> L) = |
|
1740 |
(X -- a --> (L::'b::topological_space))" |
|
1741 |
using LIMSEQ_SEQ_conv2 LIMSEQ_SEQ_conv1 .. |
|
1742 |
||
57025 | 1743 |
lemma sequentially_imp_eventually_at_left: |
1744 |
fixes a :: "'a :: {dense_linorder, linorder_topology, first_countable_topology}" |
|
1745 |
assumes b[simp]: "b < a" |
|
1746 |
assumes *: "\<And>f. (\<And>n. b < f n) \<Longrightarrow> (\<And>n. f n < a) \<Longrightarrow> incseq f \<Longrightarrow> f ----> a \<Longrightarrow> eventually (\<lambda>n. P (f n)) sequentially" |
|
1747 |
shows "eventually P (at_left a)" |
|
1748 |
proof (safe intro!: sequentially_imp_eventually_within) |
|
1749 |
fix X assume X: "\<forall>n. X n \<in> {..<a} \<and> X n \<noteq> a" "X ----> a" |
|
1750 |
show "eventually (\<lambda>n. P (X n)) sequentially" |
|
1751 |
proof (rule ccontr) |
|
1752 |
assume "\<not> eventually (\<lambda>n. P (X n)) sequentially" |
|
1753 |
from not_eventually_sequentiallyD[OF this] |
|
1754 |
obtain r where "subseq r" "\<And>n. \<not> P (X (r n))" |
|
1755 |
by auto |
|
1756 |
with X have "(X \<circ> r) ----> a" |
|
1757 |
by (auto intro: LIMSEQ_subseq_LIMSEQ) |
|
1758 |
from order_tendstoD(1)[OF this] obtain s' where s': "\<And>b i. b < a \<Longrightarrow> s' b \<le> i \<Longrightarrow> b < X (r i)" |
|
1759 |
unfolding eventually_sequentially comp_def by metis |
|
1760 |
def s \<equiv> "rec_nat (s' b) (\<lambda>_ i. max (s' (X (r i))) (Suc i))" |
|
1761 |
then have [simp]: "s 0 = s' b" "\<And>n. s (Suc n) = max (s' (X (r (s n)))) (Suc (s n))" |
|
1762 |
by auto |
|
1763 |
have "eventually (\<lambda>n. P (((X \<circ> r) \<circ> s) n)) sequentially" |
|
1764 |
proof (rule *) |
|
1765 |
from X show inc: "incseq (X \<circ> r \<circ> s)" |
|
1766 |
unfolding incseq_Suc_iff comp_def by (intro allI s'[THEN less_imp_le]) auto |
|
1767 |
{ fix n show "b < (X \<circ> r \<circ> s) n" |
|
1768 |
using inc[THEN incseqD, of 0 n] s'[OF b order_refl] by simp } |
|
1769 |
{ fix n show "(X \<circ> r \<circ> s) n < a" |
|
1770 |
using X by simp } |
|
1771 |
from `(X \<circ> r) ----> a` show "(X \<circ> r \<circ> s) ----> a" |
|
1772 |
by (rule LIMSEQ_subseq_LIMSEQ) (auto simp: subseq_Suc_iff) |
|
1773 |
qed |
|
1774 |
with `\<And>n. \<not> P (X (r n))` show False |
|
1775 |
by auto |
|
1776 |
qed |
|
1777 |
qed |
|
1778 |
||
1779 |
lemma tendsto_at_left_sequentially: |
|
1780 |
fixes a :: "_ :: {dense_linorder, linorder_topology, first_countable_topology}" |
|
1781 |
assumes "b < a" |
|
1782 |
assumes *: "\<And>S. (\<And>n. S n < a) \<Longrightarrow> (\<And>n. b < S n) \<Longrightarrow> incseq S \<Longrightarrow> S ----> a \<Longrightarrow> (\<lambda>n. X (S n)) ----> L" |
|
1783 |
shows "(X ---> L) (at_left a)" |
|
1784 |
using assms unfolding tendsto_def [where l=L] |
|
1785 |
by (simp add: sequentially_imp_eventually_at_left) |
|
1786 |
||
51471 | 1787 |
subsection {* Continuity *} |
1788 |
||
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1789 |
subsubsection {* Continuity on a set *} |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1790 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1791 |
definition continuous_on :: "'a set \<Rightarrow> ('a :: topological_space \<Rightarrow> 'b :: topological_space) \<Rightarrow> bool" where |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1792 |
"continuous_on s f \<longleftrightarrow> (\<forall>x\<in>s. (f ---> f x) (at x within s))" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1793 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1794 |
lemma continuous_on_cong [cong]: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1795 |
"s = t \<Longrightarrow> (\<And>x. x \<in> t \<Longrightarrow> f x = g x) \<Longrightarrow> continuous_on s f \<longleftrightarrow> continuous_on t g" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1796 |
unfolding continuous_on_def by (intro ball_cong filterlim_cong) (auto simp: eventually_at_filter) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1797 |
|
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1798 |
lemma continuous_on_topological: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1799 |
"continuous_on s f \<longleftrightarrow> |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1800 |
(\<forall>x\<in>s. \<forall>B. open B \<longrightarrow> f x \<in> B \<longrightarrow> (\<exists>A. open A \<and> x \<in> A \<and> (\<forall>y\<in>s. y \<in> A \<longrightarrow> f y \<in> B)))" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1801 |
unfolding continuous_on_def tendsto_def eventually_at_topological by metis |
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1802 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1803 |
lemma continuous_on_open_invariant: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1804 |
"continuous_on s f \<longleftrightarrow> (\<forall>B. open B \<longrightarrow> (\<exists>A. open A \<and> A \<inter> s = f -` B \<inter> s))" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1805 |
proof safe |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1806 |
fix B :: "'b set" assume "continuous_on s f" "open B" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1807 |
then have "\<forall>x\<in>f -` B \<inter> s. (\<exists>A. open A \<and> x \<in> A \<and> s \<inter> A \<subseteq> f -` B)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1808 |
by (auto simp: continuous_on_topological subset_eq Ball_def imp_conjL) |
53381 | 1809 |
then obtain A where "\<forall>x\<in>f -` B \<inter> s. open (A x) \<and> x \<in> A x \<and> s \<inter> A x \<subseteq> f -` B" |
1810 |
unfolding bchoice_iff .. |
|
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1811 |
then show "\<exists>A. open A \<and> A \<inter> s = f -` B \<inter> s" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1812 |
by (intro exI[of _ "\<Union>x\<in>f -` B \<inter> s. A x"]) auto |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1813 |
next |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1814 |
assume B: "\<forall>B. open B \<longrightarrow> (\<exists>A. open A \<and> A \<inter> s = f -` B \<inter> s)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1815 |
show "continuous_on s f" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1816 |
unfolding continuous_on_topological |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1817 |
proof safe |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1818 |
fix x B assume "x \<in> s" "open B" "f x \<in> B" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1819 |
with B obtain A where A: "open A" "A \<inter> s = f -` B \<inter> s" by auto |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1820 |
with `x \<in> s` `f x \<in> B` show "\<exists>A. open A \<and> x \<in> A \<and> (\<forall>y\<in>s. y \<in> A \<longrightarrow> f y \<in> B)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1821 |
by (intro exI[of _ A]) auto |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1822 |
qed |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1823 |
qed |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1824 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1825 |
lemma continuous_on_open_vimage: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1826 |
"open s \<Longrightarrow> continuous_on s f \<longleftrightarrow> (\<forall>B. open B \<longrightarrow> open (f -` B \<inter> s))" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1827 |
unfolding continuous_on_open_invariant |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1828 |
by (metis open_Int Int_absorb Int_commute[of s] Int_assoc[of _ _ s]) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1829 |
|
55734 | 1830 |
corollary continuous_imp_open_vimage: |
1831 |
assumes "continuous_on s f" "open s" "open B" "f -` B \<subseteq> s" |
|
1832 |
shows "open (f -` B)" |
|
1833 |
by (metis assms continuous_on_open_vimage le_iff_inf) |
|
1834 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1835 |
corollary open_vimage[continuous_intros]: |
55775 | 1836 |
assumes "open s" and "continuous_on UNIV f" |
1837 |
shows "open (f -` s)" |
|
1838 |
using assms unfolding continuous_on_open_vimage [OF open_UNIV] |
|
1839 |
by simp |
|
1840 |
||
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1841 |
lemma continuous_on_closed_invariant: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1842 |
"continuous_on s f \<longleftrightarrow> (\<forall>B. closed B \<longrightarrow> (\<exists>A. closed A \<and> A \<inter> s = f -` B \<inter> s))" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1843 |
proof - |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1844 |
have *: "\<And>P Q::'b set\<Rightarrow>bool. (\<And>A. P A \<longleftrightarrow> Q (- A)) \<Longrightarrow> (\<forall>A. P A) \<longleftrightarrow> (\<forall>A. Q A)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1845 |
by (metis double_compl) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1846 |
show ?thesis |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1847 |
unfolding continuous_on_open_invariant by (intro *) (auto simp: open_closed[symmetric]) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1848 |
qed |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1849 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1850 |
lemma continuous_on_closed_vimage: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1851 |
"closed s \<Longrightarrow> continuous_on s f \<longleftrightarrow> (\<forall>B. closed B \<longrightarrow> closed (f -` B \<inter> s))" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1852 |
unfolding continuous_on_closed_invariant |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1853 |
by (metis closed_Int Int_absorb Int_commute[of s] Int_assoc[of _ _ s]) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1854 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1855 |
corollary closed_vimage[continuous_intros]: |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1856 |
assumes "closed s" and "continuous_on UNIV f" |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1857 |
shows "closed (f -` s)" |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1858 |
using assms unfolding continuous_on_closed_vimage [OF closed_UNIV] |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1859 |
by simp |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1860 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1861 |
lemma continuous_on_open_Union: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1862 |
"(\<And>s. s \<in> S \<Longrightarrow> open s) \<Longrightarrow> (\<And>s. s \<in> S \<Longrightarrow> continuous_on s f) \<Longrightarrow> continuous_on (\<Union>S) f" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1863 |
unfolding continuous_on_def by safe (metis open_Union at_within_open UnionI) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1864 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1865 |
lemma continuous_on_open_UN: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1866 |
"(\<And>s. s \<in> S \<Longrightarrow> open (A s)) \<Longrightarrow> (\<And>s. s \<in> S \<Longrightarrow> continuous_on (A s) f) \<Longrightarrow> continuous_on (\<Union>s\<in>S. A s) f" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1867 |
unfolding Union_image_eq[symmetric] by (rule continuous_on_open_Union) auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1868 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1869 |
lemma continuous_on_closed_Un: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1870 |
"closed s \<Longrightarrow> closed t \<Longrightarrow> continuous_on s f \<Longrightarrow> continuous_on t f \<Longrightarrow> continuous_on (s \<union> t) f" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1871 |
by (auto simp add: continuous_on_closed_vimage closed_Un Int_Un_distrib) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1872 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1873 |
lemma continuous_on_If: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1874 |
assumes closed: "closed s" "closed t" and cont: "continuous_on s f" "continuous_on t g" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1875 |
and P: "\<And>x. x \<in> s \<Longrightarrow> \<not> P x \<Longrightarrow> f x = g x" "\<And>x. x \<in> t \<Longrightarrow> P x \<Longrightarrow> f x = g x" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1876 |
shows "continuous_on (s \<union> t) (\<lambda>x. if P x then f x else g x)" (is "continuous_on _ ?h") |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1877 |
proof- |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1878 |
from P have "\<forall>x\<in>s. f x = ?h x" "\<forall>x\<in>t. g x = ?h x" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1879 |
by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1880 |
with cont have "continuous_on s ?h" "continuous_on t ?h" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1881 |
by simp_all |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1882 |
with closed show ?thesis |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1883 |
by (rule continuous_on_closed_Un) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1884 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1885 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1886 |
lemma continuous_on_id[continuous_intros]: "continuous_on s (\<lambda>x. x)" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1887 |
unfolding continuous_on_def by (fast intro: tendsto_ident_at) |
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1888 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1889 |
lemma continuous_on_const[continuous_intros]: "continuous_on s (\<lambda>x. c)" |
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1890 |
unfolding continuous_on_def by (auto intro: tendsto_const) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1891 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1892 |
lemma continuous_on_compose[continuous_intros]: |
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1893 |
"continuous_on s f \<Longrightarrow> continuous_on (f ` s) g \<Longrightarrow> continuous_on s (g o f)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1894 |
unfolding continuous_on_topological by simp metis |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1895 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1896 |
lemma continuous_on_compose2: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1897 |
"continuous_on t g \<Longrightarrow> continuous_on s f \<Longrightarrow> t = f ` s \<Longrightarrow> continuous_on s (\<lambda>x. g (f x))" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1898 |
using continuous_on_compose[of s f g] by (simp add: comp_def) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1899 |
|
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1900 |
subsubsection {* Continuity at a point *} |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1901 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1902 |
definition continuous :: "'a::t2_space filter \<Rightarrow> ('a \<Rightarrow> 'b::topological_space) \<Rightarrow> bool" where |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1903 |
"continuous F f \<longleftrightarrow> (f ---> f (Lim F (\<lambda>x. x))) F" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1904 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1905 |
lemma continuous_bot[continuous_intros, simp]: "continuous bot f" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1906 |
unfolding continuous_def by auto |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1907 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1908 |
lemma continuous_trivial_limit: "trivial_limit net \<Longrightarrow> continuous net f" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1909 |
by simp |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1910 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1911 |
lemma continuous_within: "continuous (at x within s) f \<longleftrightarrow> (f ---> f x) (at x within s)" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1912 |
by (cases "trivial_limit (at x within s)") (auto simp add: Lim_ident_at continuous_def) |
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1913 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1914 |
lemma continuous_within_topological: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1915 |
"continuous (at x within s) f \<longleftrightarrow> |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1916 |
(\<forall>B. open B \<longrightarrow> f x \<in> B \<longrightarrow> (\<exists>A. open A \<and> x \<in> A \<and> (\<forall>y\<in>s. y \<in> A \<longrightarrow> f y \<in> B)))" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1917 |
unfolding continuous_within tendsto_def eventually_at_topological by metis |
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1918 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1919 |
lemma continuous_within_compose[continuous_intros]: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1920 |
"continuous (at x within s) f \<Longrightarrow> continuous (at (f x) within f ` s) g \<Longrightarrow> |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1921 |
continuous (at x within s) (g o f)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1922 |
by (simp add: continuous_within_topological) metis |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1923 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1924 |
lemma continuous_within_compose2: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1925 |
"continuous (at x within s) f \<Longrightarrow> continuous (at (f x) within f ` s) g \<Longrightarrow> |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1926 |
continuous (at x within s) (\<lambda>x. g (f x))" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1927 |
using continuous_within_compose[of x s f g] by (simp add: comp_def) |
51471 | 1928 |
|
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1929 |
lemma continuous_at: "continuous (at x) f \<longleftrightarrow> f -- x --> f x" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1930 |
using continuous_within[of x UNIV f] by simp |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1931 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1932 |
lemma continuous_ident[continuous_intros, simp]: "continuous (at x within S) (\<lambda>x. x)" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1933 |
unfolding continuous_within by (rule tendsto_ident_at) |
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1934 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1935 |
lemma continuous_const[continuous_intros, simp]: "continuous F (\<lambda>x. c)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1936 |
unfolding continuous_def by (rule tendsto_const) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1937 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1938 |
lemma continuous_on_eq_continuous_within: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1939 |
"continuous_on s f \<longleftrightarrow> (\<forall>x\<in>s. continuous (at x within s) f)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1940 |
unfolding continuous_on_def continuous_within .. |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1941 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1942 |
abbreviation isCont :: "('a::t2_space \<Rightarrow> 'b::topological_space) \<Rightarrow> 'a \<Rightarrow> bool" where |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1943 |
"isCont f a \<equiv> continuous (at a) f" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1944 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1945 |
lemma isCont_def: "isCont f a \<longleftrightarrow> f -- a --> f a" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1946 |
by (rule continuous_at) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1947 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1948 |
lemma continuous_at_within: "isCont f x \<Longrightarrow> continuous (at x within s) f" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1949 |
by (auto intro: tendsto_mono at_le simp: continuous_at continuous_within) |
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1950 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1951 |
lemma continuous_on_eq_continuous_at: "open s \<Longrightarrow> continuous_on s f \<longleftrightarrow> (\<forall>x\<in>s. isCont f x)" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1952 |
by (simp add: continuous_on_def continuous_at at_within_open[of _ s]) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1953 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1954 |
lemma continuous_on_subset: "continuous_on s f \<Longrightarrow> t \<subseteq> s \<Longrightarrow> continuous_on t f" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1955 |
unfolding continuous_on_def by (metis subset_eq tendsto_within_subset) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1956 |
|
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1957 |
lemma continuous_at_imp_continuous_on: "\<forall>x\<in>s. isCont f x \<Longrightarrow> continuous_on s f" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1958 |
by (auto intro: continuous_at_within simp: continuous_on_eq_continuous_within) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1959 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1960 |
lemma isContI_continuous: "continuous (at x within UNIV) f \<Longrightarrow> isCont f x" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1961 |
by simp |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1962 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1963 |
lemma isCont_ident[continuous_intros, simp]: "isCont (\<lambda>x. x) a" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1964 |
using continuous_ident by (rule isContI_continuous) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1965 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1966 |
lemmas isCont_const = continuous_const |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1967 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1968 |
lemma isCont_o2: "isCont f a \<Longrightarrow> isCont g (f a) \<Longrightarrow> isCont (\<lambda>x. g (f x)) a" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1969 |
unfolding isCont_def by (rule tendsto_compose) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1970 |
|
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1971 |
lemma isCont_o[continuous_intros]: "isCont f a \<Longrightarrow> isCont g (f a) \<Longrightarrow> isCont (g \<circ> f) a" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1972 |
unfolding o_def by (rule isCont_o2) |
51471 | 1973 |
|
1974 |
lemma isCont_tendsto_compose: "isCont g l \<Longrightarrow> (f ---> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> g l) F" |
|
1975 |
unfolding isCont_def by (rule tendsto_compose) |
|
1976 |
||
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1977 |
lemma continuous_within_compose3: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1978 |
"isCont g (f x) \<Longrightarrow> continuous (at x within s) f \<Longrightarrow> continuous (at x within s) (\<lambda>x. g (f x))" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1979 |
using continuous_within_compose2[of x s f g] by (simp add: continuous_at_within) |
51471 | 1980 |
|
51479
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1981 |
subsubsection{* Open-cover compactness *} |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1982 |
|
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1983 |
context topological_space |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1984 |
begin |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1985 |
|
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1986 |
definition compact :: "'a set \<Rightarrow> bool" where |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1987 |
compact_eq_heine_borel: -- "This name is used for backwards compatibility" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1988 |
"compact S \<longleftrightarrow> (\<forall>C. (\<forall>c\<in>C. open c) \<and> S \<subseteq> \<Union>C \<longrightarrow> (\<exists>D\<subseteq>C. finite D \<and> S \<subseteq> \<Union>D))" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1989 |
|
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1990 |
lemma compactI: |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1991 |
assumes "\<And>C. \<forall>t\<in>C. open t \<Longrightarrow> s \<subseteq> \<Union> C \<Longrightarrow> \<exists>C'. C' \<subseteq> C \<and> finite C' \<and> s \<subseteq> \<Union> C'" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1992 |
shows "compact s" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1993 |
unfolding compact_eq_heine_borel using assms by metis |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1994 |
|
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1995 |
lemma compact_empty[simp]: "compact {}" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1996 |
by (auto intro!: compactI) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1997 |
|
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1998 |
lemma compactE: |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1999 |
assumes "compact s" and "\<forall>t\<in>C. open t" and "s \<subseteq> \<Union>C" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2000 |
obtains C' where "C' \<subseteq> C" and "finite C'" and "s \<subseteq> \<Union>C'" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2001 |
using assms unfolding compact_eq_heine_borel by metis |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2002 |
|
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2003 |
lemma compactE_image: |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2004 |
assumes "compact s" and "\<forall>t\<in>C. open (f t)" and "s \<subseteq> (\<Union>c\<in>C. f c)" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2005 |
obtains C' where "C' \<subseteq> C" and "finite C'" and "s \<subseteq> (\<Union>c\<in>C'. f c)" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2006 |
using assms unfolding ball_simps[symmetric] SUP_def |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2007 |
by (metis (lifting) finite_subset_image compact_eq_heine_borel[of s]) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2008 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2009 |
lemma compact_inter_closed [intro]: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2010 |
assumes "compact s" and "closed t" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2011 |
shows "compact (s \<inter> t)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2012 |
proof (rule compactI) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2013 |
fix C assume C: "\<forall>c\<in>C. open c" and cover: "s \<inter> t \<subseteq> \<Union>C" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2014 |
from C `closed t` have "\<forall>c\<in>C \<union> {-t}. open c" by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2015 |
moreover from cover have "s \<subseteq> \<Union>(C \<union> {-t})" by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2016 |
ultimately have "\<exists>D\<subseteq>C \<union> {-t}. finite D \<and> s \<subseteq> \<Union>D" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2017 |
using `compact s` unfolding compact_eq_heine_borel by auto |
53381 | 2018 |
then obtain D where "D \<subseteq> C \<union> {- t} \<and> finite D \<and> s \<subseteq> \<Union>D" .. |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2019 |
then show "\<exists>D\<subseteq>C. finite D \<and> s \<inter> t \<subseteq> \<Union>D" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2020 |
by (intro exI[of _ "D - {-t}"]) auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2021 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2022 |
|
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2023 |
lemma inj_setminus: "inj_on uminus (A::'a set set)" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2024 |
by (auto simp: inj_on_def) |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2025 |
|
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2026 |
lemma compact_fip: |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2027 |
"compact U \<longleftrightarrow> |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2028 |
(\<forall>A. (\<forall>a\<in>A. closed a) \<longrightarrow> (\<forall>B \<subseteq> A. finite B \<longrightarrow> U \<inter> \<Inter>B \<noteq> {}) \<longrightarrow> U \<inter> \<Inter>A \<noteq> {})" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2029 |
(is "_ \<longleftrightarrow> ?R") |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2030 |
proof (safe intro!: compact_eq_heine_borel[THEN iffD2]) |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2031 |
fix A |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2032 |
assume "compact U" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2033 |
and A: "\<forall>a\<in>A. closed a" "U \<inter> \<Inter>A = {}" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2034 |
and fi: "\<forall>B \<subseteq> A. finite B \<longrightarrow> U \<inter> \<Inter>B \<noteq> {}" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2035 |
from A have "(\<forall>a\<in>uminus`A. open a) \<and> U \<subseteq> \<Union>(uminus`A)" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2036 |
by auto |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2037 |
with `compact U` obtain B where "B \<subseteq> A" "finite (uminus`B)" "U \<subseteq> \<Union>(uminus`B)" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2038 |
unfolding compact_eq_heine_borel by (metis subset_image_iff) |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2039 |
with fi[THEN spec, of B] show False |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2040 |
by (auto dest: finite_imageD intro: inj_setminus) |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2041 |
next |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2042 |
fix A |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2043 |
assume ?R |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2044 |
assume "\<forall>a\<in>A. open a" "U \<subseteq> \<Union>A" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2045 |
then have "U \<inter> \<Inter>(uminus`A) = {}" "\<forall>a\<in>uminus`A. closed a" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2046 |
by auto |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2047 |
with `?R` obtain B where "B \<subseteq> A" "finite (uminus`B)" "U \<inter> \<Inter>(uminus`B) = {}" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2048 |
by (metis subset_image_iff) |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2049 |
then show "\<exists>T\<subseteq>A. finite T \<and> U \<subseteq> \<Union>T" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2050 |
by (auto intro!: exI[of _ B] inj_setminus dest: finite_imageD) |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2051 |
qed |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2052 |
|
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2053 |
lemma compact_imp_fip: |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2054 |
"compact s \<Longrightarrow> \<forall>t \<in> f. closed t \<Longrightarrow> \<forall>f'. finite f' \<and> f' \<subseteq> f \<longrightarrow> (s \<inter> (\<Inter> f') \<noteq> {}) \<Longrightarrow> |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2055 |
s \<inter> (\<Inter> f) \<noteq> {}" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2056 |
unfolding compact_fip by auto |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2057 |
|
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2058 |
lemma compact_imp_fip_image: |
56166 | 2059 |
assumes "compact s" |
2060 |
and P: "\<And>i. i \<in> I \<Longrightarrow> closed (f i)" |
|
2061 |
and Q: "\<And>I'. finite I' \<Longrightarrow> I' \<subseteq> I \<Longrightarrow> (s \<inter> (\<Inter>i\<in>I'. f i) \<noteq> {})" |
|
2062 |
shows "s \<inter> (\<Inter>i\<in>I. f i) \<noteq> {}" |
|
2063 |
proof - |
|
2064 |
note `compact s` |
|
2065 |
moreover from P have "\<forall>i \<in> f ` I. closed i" by blast |
|
2066 |
moreover have "\<forall>A. finite A \<and> A \<subseteq> f ` I \<longrightarrow> (s \<inter> (\<Inter>A) \<noteq> {})" |
|
2067 |
proof (rule, rule, erule conjE) |
|
2068 |
fix A :: "'a set set" |
|
2069 |
assume "finite A" |
|
2070 |
moreover assume "A \<subseteq> f ` I" |
|
2071 |
ultimately obtain B where "B \<subseteq> I" and "finite B" and "A = f ` B" |
|
2072 |
using finite_subset_image [of A f I] by blast |
|
2073 |
with Q [of B] show "s \<inter> \<Inter>A \<noteq> {}" by simp |
|
2074 |
qed |
|
2075 |
ultimately have "s \<inter> (\<Inter>(f ` I)) \<noteq> {}" by (rule compact_imp_fip) |
|
2076 |
then show ?thesis by simp |
|
2077 |
qed |
|
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2078 |
|
51471 | 2079 |
end |
2080 |
||
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2081 |
lemma (in t2_space) compact_imp_closed: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2082 |
assumes "compact s" shows "closed s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2083 |
unfolding closed_def |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2084 |
proof (rule openI) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2085 |
fix y assume "y \<in> - s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2086 |
let ?C = "\<Union>x\<in>s. {u. open u \<and> x \<in> u \<and> eventually (\<lambda>y. y \<notin> u) (nhds y)}" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2087 |
note `compact s` |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2088 |
moreover have "\<forall>u\<in>?C. open u" by simp |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2089 |
moreover have "s \<subseteq> \<Union>?C" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2090 |
proof |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2091 |
fix x assume "x \<in> s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2092 |
with `y \<in> - s` have "x \<noteq> y" by clarsimp |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2093 |
hence "\<exists>u v. open u \<and> open v \<and> x \<in> u \<and> y \<in> v \<and> u \<inter> v = {}" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2094 |
by (rule hausdorff) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2095 |
with `x \<in> s` show "x \<in> \<Union>?C" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2096 |
unfolding eventually_nhds by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2097 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2098 |
ultimately obtain D where "D \<subseteq> ?C" and "finite D" and "s \<subseteq> \<Union>D" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2099 |
by (rule compactE) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2100 |
from `D \<subseteq> ?C` have "\<forall>x\<in>D. eventually (\<lambda>y. y \<notin> x) (nhds y)" by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2101 |
with `finite D` have "eventually (\<lambda>y. y \<notin> \<Union>D) (nhds y)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2102 |
by (simp add: eventually_Ball_finite) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2103 |
with `s \<subseteq> \<Union>D` have "eventually (\<lambda>y. y \<notin> s) (nhds y)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2104 |
by (auto elim!: eventually_mono [rotated]) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2105 |
thus "\<exists>t. open t \<and> y \<in> t \<and> t \<subseteq> - s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2106 |
by (simp add: eventually_nhds subset_eq) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2107 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2108 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2109 |
lemma compact_continuous_image: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2110 |
assumes f: "continuous_on s f" and s: "compact s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2111 |
shows "compact (f ` s)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2112 |
proof (rule compactI) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2113 |
fix C assume "\<forall>c\<in>C. open c" and cover: "f`s \<subseteq> \<Union>C" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2114 |
with f have "\<forall>c\<in>C. \<exists>A. open A \<and> A \<inter> s = f -` c \<inter> s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2115 |
unfolding continuous_on_open_invariant by blast |
53381 | 2116 |
then obtain A where A: "\<forall>c\<in>C. open (A c) \<and> A c \<inter> s = f -` c \<inter> s" |
2117 |
unfolding bchoice_iff .. |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2118 |
with cover have "\<forall>c\<in>C. open (A c)" "s \<subseteq> (\<Union>c\<in>C. A c)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2119 |
by (fastforce simp add: subset_eq set_eq_iff)+ |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2120 |
from compactE_image[OF s this] obtain D where "D \<subseteq> C" "finite D" "s \<subseteq> (\<Union>c\<in>D. A c)" . |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2121 |
with A show "\<exists>D \<subseteq> C. finite D \<and> f`s \<subseteq> \<Union>D" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2122 |
by (intro exI[of _ D]) (fastforce simp add: subset_eq set_eq_iff)+ |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2123 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2124 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2125 |
lemma continuous_on_inv: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2126 |
fixes f :: "'a::topological_space \<Rightarrow> 'b::t2_space" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2127 |
assumes "continuous_on s f" "compact s" "\<forall>x\<in>s. g (f x) = x" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2128 |
shows "continuous_on (f ` s) g" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2129 |
unfolding continuous_on_topological |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2130 |
proof (clarsimp simp add: assms(3)) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2131 |
fix x :: 'a and B :: "'a set" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2132 |
assume "x \<in> s" and "open B" and "x \<in> B" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2133 |
have 1: "\<forall>x\<in>s. f x \<in> f ` (s - B) \<longleftrightarrow> x \<in> s - B" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2134 |
using assms(3) by (auto, metis) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2135 |
have "continuous_on (s - B) f" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2136 |
using `continuous_on s f` Diff_subset |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2137 |
by (rule continuous_on_subset) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2138 |
moreover have "compact (s - B)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2139 |
using `open B` and `compact s` |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2140 |
unfolding Diff_eq by (intro compact_inter_closed closed_Compl) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2141 |
ultimately have "compact (f ` (s - B))" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2142 |
by (rule compact_continuous_image) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2143 |
hence "closed (f ` (s - B))" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2144 |
by (rule compact_imp_closed) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2145 |
hence "open (- f ` (s - B))" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2146 |
by (rule open_Compl) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2147 |
moreover have "f x \<in> - f ` (s - B)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2148 |
using `x \<in> s` and `x \<in> B` by (simp add: 1) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2149 |
moreover have "\<forall>y\<in>s. f y \<in> - f ` (s - B) \<longrightarrow> y \<in> B" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2150 |
by (simp add: 1) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2151 |
ultimately show "\<exists>A. open A \<and> f x \<in> A \<and> (\<forall>y\<in>s. f y \<in> A \<longrightarrow> y \<in> B)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2152 |
by fast |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2153 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2154 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2155 |
lemma continuous_on_inv_into: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2156 |
fixes f :: "'a::topological_space \<Rightarrow> 'b::t2_space" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2157 |
assumes s: "continuous_on s f" "compact s" and f: "inj_on f s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2158 |
shows "continuous_on (f ` s) (the_inv_into s f)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2159 |
by (rule continuous_on_inv[OF s]) (auto simp: the_inv_into_f_f[OF f]) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2160 |
|
51479
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2161 |
lemma (in linorder_topology) compact_attains_sup: |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2162 |
assumes "compact S" "S \<noteq> {}" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2163 |
shows "\<exists>s\<in>S. \<forall>t\<in>S. t \<le> s" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2164 |
proof (rule classical) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2165 |
assume "\<not> (\<exists>s\<in>S. \<forall>t\<in>S. t \<le> s)" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2166 |
then obtain t where t: "\<forall>s\<in>S. t s \<in> S" and "\<forall>s\<in>S. s < t s" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2167 |
by (metis not_le) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2168 |
then have "\<forall>s\<in>S. open {..< t s}" "S \<subseteq> (\<Union>s\<in>S. {..< t s})" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2169 |
by auto |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2170 |
with `compact S` obtain C where "C \<subseteq> S" "finite C" and C: "S \<subseteq> (\<Union>s\<in>C. {..< t s})" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2171 |
by (erule compactE_image) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2172 |
with `S \<noteq> {}` have Max: "Max (t`C) \<in> t`C" and "\<forall>s\<in>t`C. s \<le> Max (t`C)" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2173 |
by (auto intro!: Max_in) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2174 |
with C have "S \<subseteq> {..< Max (t`C)}" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2175 |
by (auto intro: less_le_trans simp: subset_eq) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2176 |
with t Max `C \<subseteq> S` show ?thesis |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2177 |
by fastforce |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2178 |
qed |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2179 |
|
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2180 |
lemma (in linorder_topology) compact_attains_inf: |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2181 |
assumes "compact S" "S \<noteq> {}" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2182 |
shows "\<exists>s\<in>S. \<forall>t\<in>S. s \<le> t" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2183 |
proof (rule classical) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2184 |
assume "\<not> (\<exists>s\<in>S. \<forall>t\<in>S. s \<le> t)" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2185 |
then obtain t where t: "\<forall>s\<in>S. t s \<in> S" and "\<forall>s\<in>S. t s < s" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2186 |
by (metis not_le) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2187 |
then have "\<forall>s\<in>S. open {t s <..}" "S \<subseteq> (\<Union>s\<in>S. {t s <..})" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2188 |
by auto |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2189 |
with `compact S` obtain C where "C \<subseteq> S" "finite C" and C: "S \<subseteq> (\<Union>s\<in>C. {t s <..})" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2190 |
by (erule compactE_image) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2191 |
with `S \<noteq> {}` have Min: "Min (t`C) \<in> t`C" and "\<forall>s\<in>t`C. Min (t`C) \<le> s" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2192 |
by (auto intro!: Min_in) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2193 |
with C have "S \<subseteq> {Min (t`C) <..}" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2194 |
by (auto intro: le_less_trans simp: subset_eq) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2195 |
with t Min `C \<subseteq> S` show ?thesis |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2196 |
by fastforce |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2197 |
qed |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2198 |
|
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2199 |
lemma continuous_attains_sup: |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2200 |
fixes f :: "'a::topological_space \<Rightarrow> 'b::linorder_topology" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2201 |
shows "compact s \<Longrightarrow> s \<noteq> {} \<Longrightarrow> continuous_on s f \<Longrightarrow> (\<exists>x\<in>s. \<forall>y\<in>s. f y \<le> f x)" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2202 |
using compact_attains_sup[of "f ` s"] compact_continuous_image[of s f] by auto |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2203 |
|
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2204 |
lemma continuous_attains_inf: |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2205 |
fixes f :: "'a::topological_space \<Rightarrow> 'b::linorder_topology" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2206 |
shows "compact s \<Longrightarrow> s \<noteq> {} \<Longrightarrow> continuous_on s f \<Longrightarrow> (\<exists>x\<in>s. \<forall>y\<in>s. f x \<le> f y)" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2207 |
using compact_attains_inf[of "f ` s"] compact_continuous_image[of s f] by auto |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2208 |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2209 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2210 |
subsection {* Connectedness *} |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2211 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2212 |
context topological_space |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2213 |
begin |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2214 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2215 |
definition "connected S \<longleftrightarrow> |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2216 |
\<not> (\<exists>A B. open A \<and> open B \<and> S \<subseteq> A \<union> B \<and> A \<inter> B \<inter> S = {} \<and> A \<inter> S \<noteq> {} \<and> B \<inter> S \<noteq> {})" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2217 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2218 |
lemma connectedI: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2219 |
"(\<And>A B. open A \<Longrightarrow> open B \<Longrightarrow> A \<inter> U \<noteq> {} \<Longrightarrow> B \<inter> U \<noteq> {} \<Longrightarrow> A \<inter> B \<inter> U = {} \<Longrightarrow> U \<subseteq> A \<union> B \<Longrightarrow> False) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2220 |
\<Longrightarrow> connected U" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2221 |
by (auto simp: connected_def) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2222 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2223 |
lemma connected_empty[simp]: "connected {}" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2224 |
by (auto intro!: connectedI) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2225 |
|
56329 | 2226 |
lemma connectedD: |
2227 |
"connected A \<Longrightarrow> open U \<Longrightarrow> open V \<Longrightarrow> U \<inter> V \<inter> A = {} \<Longrightarrow> A \<subseteq> U \<union> V \<Longrightarrow> U \<inter> A = {} \<or> V \<inter> A = {}" |
|
2228 |
by (auto simp: connected_def) |
|
2229 |
||
51479
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2230 |
end |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
2231 |
|
56329 | 2232 |
lemma connected_local_const: |
2233 |
assumes "connected A" "a \<in> A" "b \<in> A" |
|
2234 |
assumes *: "\<forall>a\<in>A. eventually (\<lambda>b. f a = f b) (at a within A)" |
|
2235 |
shows "f a = f b" |
|
2236 |
proof - |
|
2237 |
obtain S where S: "\<And>a. a \<in> A \<Longrightarrow> a \<in> S a" "\<And>a. a \<in> A \<Longrightarrow> open (S a)" |
|
2238 |
"\<And>a x. a \<in> A \<Longrightarrow> x \<in> S a \<Longrightarrow> x \<in> A \<Longrightarrow> f a = f x" |
|
2239 |
using * unfolding eventually_at_topological by metis |
|
2240 |
||
2241 |
let ?P = "\<Union>b\<in>{b\<in>A. f a = f b}. S b" and ?N = "\<Union>b\<in>{b\<in>A. f a \<noteq> f b}. S b" |
|
2242 |
have "?P \<inter> A = {} \<or> ?N \<inter> A = {}" |
|
2243 |
using `connected A` S `a\<in>A` |
|
2244 |
by (intro connectedD) (auto, metis) |
|
2245 |
then show "f a = f b" |
|
2246 |
proof |
|
2247 |
assume "?N \<inter> A = {}" |
|
2248 |
then have "\<forall>x\<in>A. f a = f x" |
|
2249 |
using S(1) by auto |
|
2250 |
with `b\<in>A` show ?thesis by auto |
|
2251 |
next |
|
2252 |
assume "?P \<inter> A = {}" then show ?thesis |
|
2253 |
using `a \<in> A` S(1)[of a] by auto |
|
2254 |
qed |
|
2255 |
qed |
|
2256 |
||
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2257 |
lemma (in linorder_topology) connectedD_interval: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2258 |
assumes "connected U" and xy: "x \<in> U" "y \<in> U" and "x \<le> z" "z \<le> y" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2259 |
shows "z \<in> U" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2260 |
proof - |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2261 |
have eq: "{..<z} \<union> {z<..} = - {z}" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2262 |
by auto |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2263 |
{ assume "z \<notin> U" "x < z" "z < y" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2264 |
with xy have "\<not> connected U" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2265 |
unfolding connected_def simp_thms |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2266 |
apply (rule_tac exI[of _ "{..< z}"]) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2267 |
apply (rule_tac exI[of _ "{z <..}"]) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2268 |
apply (auto simp add: eq) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2269 |
done } |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2270 |
with assms show "z \<in> U" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2271 |
by (metis less_le) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2272 |
qed |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2273 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2274 |
lemma connected_continuous_image: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2275 |
assumes *: "continuous_on s f" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2276 |
assumes "connected s" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2277 |
shows "connected (f ` s)" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2278 |
proof (rule connectedI) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2279 |
fix A B assume A: "open A" "A \<inter> f ` s \<noteq> {}" and B: "open B" "B \<inter> f ` s \<noteq> {}" and |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2280 |
AB: "A \<inter> B \<inter> f ` s = {}" "f ` s \<subseteq> A \<union> B" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2281 |
obtain A' where A': "open A'" "f -` A \<inter> s = A' \<inter> s" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2282 |
using * `open A` unfolding continuous_on_open_invariant by metis |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2283 |
obtain B' where B': "open B'" "f -` B \<inter> s = B' \<inter> s" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2284 |
using * `open B` unfolding continuous_on_open_invariant by metis |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2285 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2286 |
have "\<exists>A B. open A \<and> open B \<and> s \<subseteq> A \<union> B \<and> A \<inter> B \<inter> s = {} \<and> A \<inter> s \<noteq> {} \<and> B \<inter> s \<noteq> {}" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2287 |
proof (rule exI[of _ A'], rule exI[of _ B'], intro conjI) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2288 |
have "s \<subseteq> (f -` A \<inter> s) \<union> (f -` B \<inter> s)" using AB by auto |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2289 |
then show "s \<subseteq> A' \<union> B'" using A' B' by auto |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2290 |
next |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2291 |
have "(f -` A \<inter> s) \<inter> (f -` B \<inter> s) = {}" using AB by auto |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2292 |
then show "A' \<inter> B' \<inter> s = {}" using A' B' by auto |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2293 |
qed (insert A' B' A B, auto) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2294 |
with `connected s` show False |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2295 |
unfolding connected_def by blast |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2296 |
qed |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2297 |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2298 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2299 |
section {* Connectedness *} |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2300 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2301 |
class linear_continuum_topology = linorder_topology + linear_continuum |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2302 |
begin |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2303 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2304 |
lemma Inf_notin_open: |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2305 |
assumes A: "open A" and bnd: "\<forall>a\<in>A. x < a" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2306 |
shows "Inf A \<notin> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2307 |
proof |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2308 |
assume "Inf A \<in> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2309 |
then obtain b where "b < Inf A" "{b <.. Inf A} \<subseteq> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2310 |
using open_left[of A "Inf A" x] assms by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2311 |
with dense[of b "Inf A"] obtain c where "c < Inf A" "c \<in> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2312 |
by (auto simp: subset_eq) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2313 |
then show False |
54258
adfc759263ab
use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents:
53946
diff
changeset
|
2314 |
using cInf_lower[OF `c \<in> A`] bnd by (metis not_le less_imp_le bdd_belowI) |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2315 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2316 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2317 |
lemma Sup_notin_open: |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2318 |
assumes A: "open A" and bnd: "\<forall>a\<in>A. a < x" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2319 |
shows "Sup A \<notin> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2320 |
proof |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2321 |
assume "Sup A \<in> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2322 |
then obtain b where "Sup A < b" "{Sup A ..< b} \<subseteq> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2323 |
using open_right[of A "Sup A" x] assms by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2324 |
with dense[of "Sup A" b] obtain c where "Sup A < c" "c \<in> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2325 |
by (auto simp: subset_eq) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2326 |
then show False |
54258
adfc759263ab
use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents:
53946
diff
changeset
|
2327 |
using cSup_upper[OF `c \<in> A`] bnd by (metis less_imp_le not_le bdd_aboveI) |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2328 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2329 |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2330 |
end |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2331 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2332 |
instance linear_continuum_topology \<subseteq> perfect_space |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2333 |
proof |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2334 |
fix x :: 'a |
53381 | 2335 |
obtain y where "x < y \<or> y < x" |
2336 |
using ex_gt_or_lt [of x] .. |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2337 |
with Inf_notin_open[of "{x}" y] Sup_notin_open[of "{x}" y] |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2338 |
show "\<not> open {x}" |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2339 |
by auto |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2340 |
qed |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2341 |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2342 |
lemma connectedI_interval: |
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2343 |
fixes U :: "'a :: linear_continuum_topology set" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2344 |
assumes *: "\<And>x y z. x \<in> U \<Longrightarrow> y \<in> U \<Longrightarrow> x \<le> z \<Longrightarrow> z \<le> y \<Longrightarrow> z \<in> U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2345 |
shows "connected U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2346 |
proof (rule connectedI) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2347 |
{ fix A B assume "open A" "open B" "A \<inter> B \<inter> U = {}" "U \<subseteq> A \<union> B" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2348 |
fix x y assume "x < y" "x \<in> A" "y \<in> B" "x \<in> U" "y \<in> U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2349 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2350 |
let ?z = "Inf (B \<inter> {x <..})" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2351 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2352 |
have "x \<le> ?z" "?z \<le> y" |
54258
adfc759263ab
use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents:
53946
diff
changeset
|
2353 |
using `y \<in> B` `x < y` by (auto intro: cInf_lower cInf_greatest) |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2354 |
with `x \<in> U` `y \<in> U` have "?z \<in> U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2355 |
by (rule *) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2356 |
moreover have "?z \<notin> B \<inter> {x <..}" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2357 |
using `open B` by (intro Inf_notin_open) auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2358 |
ultimately have "?z \<in> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2359 |
using `x \<le> ?z` `A \<inter> B \<inter> U = {}` `x \<in> A` `U \<subseteq> A \<union> B` by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2360 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2361 |
{ assume "?z < y" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2362 |
obtain a where "?z < a" "{?z ..< a} \<subseteq> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2363 |
using open_right[OF `open A` `?z \<in> A` `?z < y`] by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2364 |
moreover obtain b where "b \<in> B" "x < b" "b < min a y" |
54258
adfc759263ab
use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents:
53946
diff
changeset
|
2365 |
using cInf_less_iff[of "B \<inter> {x <..}" "min a y"] `?z < a` `?z < y` `x < y` `y \<in> B` |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2366 |
by (auto intro: less_imp_le) |
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53215
diff
changeset
|
2367 |
moreover have "?z \<le> b" |
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53215
diff
changeset
|
2368 |
using `b \<in> B` `x < b` |
54258
adfc759263ab
use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents:
53946
diff
changeset
|
2369 |
by (intro cInf_lower) auto |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2370 |
moreover have "b \<in> U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2371 |
using `x \<le> ?z` `?z \<le> b` `b < min a y` |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2372 |
by (intro *[OF `x \<in> U` `y \<in> U`]) (auto simp: less_imp_le) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2373 |
ultimately have "\<exists>b\<in>B. b \<in> A \<and> b \<in> U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2374 |
by (intro bexI[of _ b]) auto } |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2375 |
then have False |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2376 |
using `?z \<le> y` `?z \<in> A` `y \<in> B` `y \<in> U` `A \<inter> B \<inter> U = {}` unfolding le_less by blast } |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2377 |
note not_disjoint = this |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2378 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2379 |
fix A B assume AB: "open A" "open B" "U \<subseteq> A \<union> B" "A \<inter> B \<inter> U = {}" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2380 |
moreover assume "A \<inter> U \<noteq> {}" then obtain x where x: "x \<in> U" "x \<in> A" by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2381 |
moreover assume "B \<inter> U \<noteq> {}" then obtain y where y: "y \<in> U" "y \<in> B" by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2382 |
moreover note not_disjoint[of B A y x] not_disjoint[of A B x y] |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2383 |
ultimately show False by (cases x y rule: linorder_cases) auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2384 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2385 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2386 |
lemma connected_iff_interval: |
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2387 |
fixes U :: "'a :: linear_continuum_topology set" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2388 |
shows "connected U \<longleftrightarrow> (\<forall>x\<in>U. \<forall>y\<in>U. \<forall>z. x \<le> z \<longrightarrow> z \<le> y \<longrightarrow> z \<in> U)" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2389 |
by (auto intro: connectedI_interval dest: connectedD_interval) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2390 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2391 |
lemma connected_UNIV[simp]: "connected (UNIV::'a::linear_continuum_topology set)" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2392 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2393 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2394 |
lemma connected_Ioi[simp]: "connected {a::'a::linear_continuum_topology <..}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2395 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2396 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2397 |
lemma connected_Ici[simp]: "connected {a::'a::linear_continuum_topology ..}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2398 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2399 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2400 |
lemma connected_Iio[simp]: "connected {..< a::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2401 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2402 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2403 |
lemma connected_Iic[simp]: "connected {.. a::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2404 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2405 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2406 |
lemma connected_Ioo[simp]: "connected {a <..< b::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2407 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2408 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2409 |
lemma connected_Ioc[simp]: "connected {a <.. b::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2410 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2411 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2412 |
lemma connected_Ico[simp]: "connected {a ..< b::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2413 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2414 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2415 |
lemma connected_Icc[simp]: "connected {a .. b::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2416 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2417 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2418 |
lemma connected_contains_Ioo: |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2419 |
fixes A :: "'a :: linorder_topology set" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2420 |
assumes A: "connected A" "a \<in> A" "b \<in> A" shows "{a <..< b} \<subseteq> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2421 |
using connectedD_interval[OF A] by (simp add: subset_eq Ball_def less_imp_le) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2422 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2423 |
subsection {* Intermediate Value Theorem *} |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2424 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2425 |
lemma IVT': |
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2426 |
fixes f :: "'a :: linear_continuum_topology \<Rightarrow> 'b :: linorder_topology" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2427 |
assumes y: "f a \<le> y" "y \<le> f b" "a \<le> b" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2428 |
assumes *: "continuous_on {a .. b} f" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2429 |
shows "\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2430 |
proof - |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2431 |
have "connected {a..b}" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2432 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2433 |
from connected_continuous_image[OF * this, THEN connectedD_interval, of "f a" "f b" y] y |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2434 |
show ?thesis |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2435 |
by (auto simp add: atLeastAtMost_def atLeast_def atMost_def) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2436 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2437 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2438 |
lemma IVT2': |
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2439 |
fixes f :: "'a :: linear_continuum_topology \<Rightarrow> 'b :: linorder_topology" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2440 |
assumes y: "f b \<le> y" "y \<le> f a" "a \<le> b" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2441 |
assumes *: "continuous_on {a .. b} f" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2442 |
shows "\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2443 |
proof - |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2444 |
have "connected {a..b}" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2445 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2446 |
from connected_continuous_image[OF * this, THEN connectedD_interval, of "f b" "f a" y] y |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2447 |
show ?thesis |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2448 |
by (auto simp add: atLeastAtMost_def atLeast_def atMost_def) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2449 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2450 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2451 |
lemma IVT: |
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2452 |
fixes f :: "'a :: linear_continuum_topology \<Rightarrow> 'b :: linorder_topology" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2453 |
shows "f a \<le> y \<Longrightarrow> y \<le> f b \<Longrightarrow> a \<le> b \<Longrightarrow> (\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x) \<Longrightarrow> \<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2454 |
by (rule IVT') (auto intro: continuous_at_imp_continuous_on) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2455 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2456 |
lemma IVT2: |
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2457 |
fixes f :: "'a :: linear_continuum_topology \<Rightarrow> 'b :: linorder_topology" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2458 |
shows "f b \<le> y \<Longrightarrow> y \<le> f a \<Longrightarrow> a \<le> b \<Longrightarrow> (\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x) \<Longrightarrow> \<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2459 |
by (rule IVT2') (auto intro: continuous_at_imp_continuous_on) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2460 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2461 |
lemma continuous_inj_imp_mono: |
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2462 |
fixes f :: "'a::linear_continuum_topology \<Rightarrow> 'b :: linorder_topology" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2463 |
assumes x: "a < x" "x < b" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2464 |
assumes cont: "continuous_on {a..b} f" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2465 |
assumes inj: "inj_on f {a..b}" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2466 |
shows "(f a < f x \<and> f x < f b) \<or> (f b < f x \<and> f x < f a)" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2467 |
proof - |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2468 |
note I = inj_on_iff[OF inj] |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2469 |
{ assume "f x < f a" "f x < f b" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2470 |
then obtain s t where "x \<le> s" "s \<le> b" "a \<le> t" "t \<le> x" "f s = f t" "f x < f s" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2471 |
using IVT'[of f x "min (f a) (f b)" b] IVT2'[of f x "min (f a) (f b)" a] x |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2472 |
by (auto simp: continuous_on_subset[OF cont] less_imp_le) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2473 |
with x I have False by auto } |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2474 |
moreover |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2475 |
{ assume "f a < f x" "f b < f x" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2476 |
then obtain s t where "x \<le> s" "s \<le> b" "a \<le> t" "t \<le> x" "f s = f t" "f s < f x" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2477 |
using IVT'[of f a "max (f a) (f b)" x] IVT2'[of f b "max (f a) (f b)" x] x |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2478 |
by (auto simp: continuous_on_subset[OF cont] less_imp_le) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2479 |
with x I have False by auto } |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2480 |
ultimately show ?thesis |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2481 |
using I[of a x] I[of x b] x less_trans[OF x] by (auto simp add: le_less less_imp_neq neq_iff) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2482 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2483 |
|
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2484 |
subsection {* Setup @{typ "'a filter"} for lifting and transfer *} |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2485 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2486 |
context begin interpretation lifting_syntax . |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2487 |
|
55942 | 2488 |
definition rel_filter :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'a filter \<Rightarrow> 'b filter \<Rightarrow> bool" |
2489 |
where "rel_filter R F G = ((R ===> op =) ===> op =) (Rep_filter F) (Rep_filter G)" |
|
2490 |
||
2491 |
lemma rel_filter_eventually: |
|
2492 |
"rel_filter R F G \<longleftrightarrow> |
|
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2493 |
((R ===> op =) ===> op =) (\<lambda>P. eventually P F) (\<lambda>P. eventually P G)" |
55942 | 2494 |
by(simp add: rel_filter_def eventually_def) |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2495 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2496 |
lemma filtermap_id [simp, id_simps]: "filtermap id = id" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2497 |
by(simp add: fun_eq_iff id_def filtermap_ident) |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2498 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2499 |
lemma filtermap_id' [simp]: "filtermap (\<lambda>x. x) = (\<lambda>F. F)" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2500 |
using filtermap_id unfolding id_def . |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2501 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2502 |
lemma Quotient_filter [quot_map]: |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2503 |
assumes Q: "Quotient R Abs Rep T" |
55942 | 2504 |
shows "Quotient (rel_filter R) (filtermap Abs) (filtermap Rep) (rel_filter T)" |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2505 |
unfolding Quotient_alt_def |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2506 |
proof(intro conjI strip) |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2507 |
from Q have *: "\<And>x y. T x y \<Longrightarrow> Abs x = y" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2508 |
unfolding Quotient_alt_def by blast |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2509 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2510 |
fix F G |
55942 | 2511 |
assume "rel_filter T F G" |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2512 |
thus "filtermap Abs F = G" unfolding filter_eq_iff |
55945 | 2513 |
by(auto simp add: eventually_filtermap rel_filter_eventually * rel_funI del: iffI elim!: rel_funD) |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2514 |
next |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2515 |
from Q have *: "\<And>x. T (Rep x) x" unfolding Quotient_alt_def by blast |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2516 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2517 |
fix F |
55942 | 2518 |
show "rel_filter T (filtermap Rep F) F" |
55945 | 2519 |
by(auto elim: rel_funD intro: * intro!: ext arg_cong[where f="\<lambda>P. eventually P F"] rel_funI |
55942 | 2520 |
del: iffI simp add: eventually_filtermap rel_filter_eventually) |
2521 |
qed(auto simp add: map_fun_def o_def eventually_filtermap filter_eq_iff fun_eq_iff rel_filter_eventually |
|
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2522 |
fun_quotient[OF fun_quotient[OF Q identity_quotient] identity_quotient, unfolded Quotient_alt_def]) |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2523 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2524 |
lemma eventually_parametric [transfer_rule]: |
55942 | 2525 |
"((A ===> op =) ===> rel_filter A ===> op =) eventually eventually" |
55945 | 2526 |
by(simp add: rel_fun_def rel_filter_eventually) |
55942 | 2527 |
|
2528 |
lemma rel_filter_eq [relator_eq]: "rel_filter op = = op =" |
|
55945 | 2529 |
by(auto simp add: rel_filter_eventually rel_fun_eq fun_eq_iff filter_eq_iff) |
55942 | 2530 |
|
2531 |
lemma rel_filter_mono [relator_mono]: |
|
2532 |
"A \<le> B \<Longrightarrow> rel_filter A \<le> rel_filter B" |
|
2533 |
unfolding rel_filter_eventually[abs_def] |
|
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2534 |
by(rule le_funI)+(intro fun_mono fun_mono[THEN le_funD, THEN le_funD] order.refl) |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2535 |
|
55942 | 2536 |
lemma rel_filter_conversep [simp]: "rel_filter A\<inverse>\<inverse> = (rel_filter A)\<inverse>\<inverse>" |
55945 | 2537 |
by(auto simp add: rel_filter_eventually fun_eq_iff rel_fun_def) |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2538 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2539 |
lemma is_filter_parametric_aux: |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2540 |
assumes "is_filter F" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2541 |
assumes [transfer_rule]: "bi_total A" "bi_unique A" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2542 |
and [transfer_rule]: "((A ===> op =) ===> op =) F G" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2543 |
shows "is_filter G" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2544 |
proof - |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2545 |
interpret is_filter F by fact |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2546 |
show ?thesis |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2547 |
proof |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2548 |
have "F (\<lambda>_. True) = G (\<lambda>x. True)" by transfer_prover |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2549 |
thus "G (\<lambda>x. True)" by(simp add: True) |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2550 |
next |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2551 |
fix P' Q' |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2552 |
assume "G P'" "G Q'" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2553 |
moreover |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2554 |
from bi_total_fun[OF `bi_unique A` bi_total_eq, unfolded bi_total_def] |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2555 |
obtain P Q where [transfer_rule]: "(A ===> op =) P P'" "(A ===> op =) Q Q'" by blast |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2556 |
have "F P = G P'" "F Q = G Q'" by transfer_prover+ |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2557 |
ultimately have "F (\<lambda>x. P x \<and> Q x)" by(simp add: conj) |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2558 |
moreover have "F (\<lambda>x. P x \<and> Q x) = G (\<lambda>x. P' x \<and> Q' x)" by transfer_prover |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2559 |
ultimately show "G (\<lambda>x. P' x \<and> Q' x)" by simp |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2560 |
next |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2561 |
fix P' Q' |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2562 |
assume "\<forall>x. P' x \<longrightarrow> Q' x" "G P'" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2563 |
moreover |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2564 |
from bi_total_fun[OF `bi_unique A` bi_total_eq, unfolded bi_total_def] |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2565 |
obtain P Q where [transfer_rule]: "(A ===> op =) P P'" "(A ===> op =) Q Q'" by blast |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2566 |
have "F P = G P'" by transfer_prover |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2567 |
moreover have "(\<forall>x. P x \<longrightarrow> Q x) \<longleftrightarrow> (\<forall>x. P' x \<longrightarrow> Q' x)" by transfer_prover |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2568 |
ultimately have "F Q" by(simp add: mono) |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2569 |
moreover have "F Q = G Q'" by transfer_prover |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2570 |
ultimately show "G Q'" by simp |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2571 |
qed |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2572 |
qed |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2573 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2574 |
lemma is_filter_parametric [transfer_rule]: |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2575 |
"\<lbrakk> bi_total A; bi_unique A \<rbrakk> |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2576 |
\<Longrightarrow> (((A ===> op =) ===> op =) ===> op =) is_filter is_filter" |
55945 | 2577 |
apply(rule rel_funI) |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2578 |
apply(rule iffI) |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2579 |
apply(erule (3) is_filter_parametric_aux) |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2580 |
apply(erule is_filter_parametric_aux[where A="conversep A"]) |
55945 | 2581 |
apply(auto simp add: rel_fun_def) |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2582 |
done |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2583 |
|
56518
beb3b6851665
left_total and left_unique rules are now transfer rules (cleaner solution, reflexvity_rule attribute not needed anymore)
kuncar
parents:
56371
diff
changeset
|
2584 |
lemma left_total_rel_filter [transfer_rule]: |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2585 |
assumes [transfer_rule]: "bi_total A" "bi_unique A" |
55942 | 2586 |
shows "left_total (rel_filter A)" |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2587 |
proof(rule left_totalI) |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2588 |
fix F :: "'a filter" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2589 |
from bi_total_fun[OF bi_unique_fun[OF `bi_total A` bi_unique_eq] bi_total_eq] |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2590 |
obtain G where [transfer_rule]: "((A ===> op =) ===> op =) (\<lambda>P. eventually P F) G" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2591 |
unfolding bi_total_def by blast |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2592 |
moreover have "is_filter (\<lambda>P. eventually P F) \<longleftrightarrow> is_filter G" by transfer_prover |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2593 |
hence "is_filter G" by(simp add: eventually_def is_filter_Rep_filter) |
55942 | 2594 |
ultimately have "rel_filter A F (Abs_filter G)" |
2595 |
by(simp add: rel_filter_eventually eventually_Abs_filter) |
|
2596 |
thus "\<exists>G. rel_filter A F G" .. |
|
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2597 |
qed |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2598 |
|
55942 | 2599 |
lemma right_total_rel_filter [transfer_rule]: |
2600 |
"\<lbrakk> bi_total A; bi_unique A \<rbrakk> \<Longrightarrow> right_total (rel_filter A)" |
|
2601 |
using left_total_rel_filter[of "A\<inverse>\<inverse>"] by simp |
|
2602 |
||
2603 |
lemma bi_total_rel_filter [transfer_rule]: |
|
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2604 |
assumes "bi_total A" "bi_unique A" |
55942 | 2605 |
shows "bi_total (rel_filter A)" |
56524
f4ba736040fa
setup for Transfer and Lifting from BNF; tuned thm names
kuncar
parents:
56518
diff
changeset
|
2606 |
unfolding bi_total_alt_def using assms |
55942 | 2607 |
by(simp add: left_total_rel_filter right_total_rel_filter) |
2608 |
||
56518
beb3b6851665
left_total and left_unique rules are now transfer rules (cleaner solution, reflexvity_rule attribute not needed anymore)
kuncar
parents:
56371
diff
changeset
|
2609 |
lemma left_unique_rel_filter [transfer_rule]: |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2610 |
assumes "left_unique A" |
55942 | 2611 |
shows "left_unique (rel_filter A)" |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2612 |
proof(rule left_uniqueI) |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2613 |
fix F F' G |
55942 | 2614 |
assume [transfer_rule]: "rel_filter A F G" "rel_filter A F' G" |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2615 |
show "F = F'" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2616 |
unfolding filter_eq_iff |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2617 |
proof |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2618 |
fix P :: "'a \<Rightarrow> bool" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2619 |
obtain P' where [transfer_rule]: "(A ===> op =) P P'" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2620 |
using left_total_fun[OF assms left_total_eq] unfolding left_total_def by blast |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2621 |
have "eventually P F = eventually P' G" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2622 |
and "eventually P F' = eventually P' G" by transfer_prover+ |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2623 |
thus "eventually P F = eventually P F'" by simp |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2624 |
qed |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2625 |
qed |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2626 |
|
55942 | 2627 |
lemma right_unique_rel_filter [transfer_rule]: |
2628 |
"right_unique A \<Longrightarrow> right_unique (rel_filter A)" |
|
2629 |
using left_unique_rel_filter[of "A\<inverse>\<inverse>"] by simp |
|
2630 |
||
2631 |
lemma bi_unique_rel_filter [transfer_rule]: |
|
2632 |
"bi_unique A \<Longrightarrow> bi_unique (rel_filter A)" |
|
56524
f4ba736040fa
setup for Transfer and Lifting from BNF; tuned thm names
kuncar
parents:
56518
diff
changeset
|
2633 |
by(simp add: bi_unique_alt_def left_unique_rel_filter right_unique_rel_filter) |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2634 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2635 |
lemma top_filter_parametric [transfer_rule]: |
55942 | 2636 |
"bi_total A \<Longrightarrow> (rel_filter A) top top" |
2637 |
by(simp add: rel_filter_eventually All_transfer) |
|
2638 |
||
2639 |
lemma bot_filter_parametric [transfer_rule]: "(rel_filter A) bot bot" |
|
55945 | 2640 |
by(simp add: rel_filter_eventually rel_fun_def) |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2641 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2642 |
lemma sup_filter_parametric [transfer_rule]: |
55942 | 2643 |
"(rel_filter A ===> rel_filter A ===> rel_filter A) sup sup" |
55945 | 2644 |
by(fastforce simp add: rel_filter_eventually[abs_def] eventually_sup dest: rel_funD) |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2645 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2646 |
lemma Sup_filter_parametric [transfer_rule]: |
55942 | 2647 |
"(rel_set (rel_filter A) ===> rel_filter A) Sup Sup" |
55945 | 2648 |
proof(rule rel_funI) |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2649 |
fix S T |
55942 | 2650 |
assume [transfer_rule]: "rel_set (rel_filter A) S T" |
2651 |
show "rel_filter A (Sup S) (Sup T)" |
|
2652 |
by(simp add: rel_filter_eventually eventually_Sup) transfer_prover |
|
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2653 |
qed |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2654 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2655 |
lemma principal_parametric [transfer_rule]: |
55942 | 2656 |
"(rel_set A ===> rel_filter A) principal principal" |
55945 | 2657 |
proof(rule rel_funI) |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2658 |
fix S S' |
55938 | 2659 |
assume [transfer_rule]: "rel_set A S S'" |
55942 | 2660 |
show "rel_filter A (principal S) (principal S')" |
2661 |
by(simp add: rel_filter_eventually eventually_principal) transfer_prover |
|
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2662 |
qed |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2663 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2664 |
context |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2665 |
fixes A :: "'a \<Rightarrow> 'b \<Rightarrow> bool" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2666 |
assumes [transfer_rule]: "bi_unique A" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2667 |
begin |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2668 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2669 |
lemma le_filter_parametric [transfer_rule]: |
55942 | 2670 |
"(rel_filter A ===> rel_filter A ===> op =) op \<le> op \<le>" |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2671 |
unfolding le_filter_def[abs_def] by transfer_prover |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2672 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2673 |
lemma less_filter_parametric [transfer_rule]: |
55942 | 2674 |
"(rel_filter A ===> rel_filter A ===> op =) op < op <" |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2675 |
unfolding less_filter_def[abs_def] by transfer_prover |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2676 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2677 |
context |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2678 |
assumes [transfer_rule]: "bi_total A" |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2679 |
begin |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2680 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2681 |
lemma Inf_filter_parametric [transfer_rule]: |
55942 | 2682 |
"(rel_set (rel_filter A) ===> rel_filter A) Inf Inf" |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2683 |
unfolding Inf_filter_def[abs_def] by transfer_prover |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2684 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2685 |
lemma inf_filter_parametric [transfer_rule]: |
55942 | 2686 |
"(rel_filter A ===> rel_filter A ===> rel_filter A) inf inf" |
55945 | 2687 |
proof(intro rel_funI)+ |
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2688 |
fix F F' G G' |
55942 | 2689 |
assume [transfer_rule]: "rel_filter A F F'" "rel_filter A G G'" |
2690 |
have "rel_filter A (Inf {F, G}) (Inf {F', G'})" by transfer_prover |
|
2691 |
thus "rel_filter A (inf F G) (inf F' G')" by simp |
|
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2692 |
qed |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2693 |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2694 |
end |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2695 |
|
53946
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2696 |
end |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2697 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2698 |
end |
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2699 |
|
5431e1392b14
add relator for 'a filter and parametricity theorems
Andreas Lochbihler
parents:
53860
diff
changeset
|
2700 |
end |