author | paulson <lp15@cam.ac.uk> |
Wed, 22 Feb 2017 15:04:59 +0000 | |
changeset 65039 | 87972e6177bc |
parent 65036 | ab7e11730ad8 |
child 65204 | d23eded35a33 |
permissions | -rw-r--r-- |
52265 | 1 |
(* Title: HOL/Topological_Spaces.thy |
51471 | 2 |
Author: Brian Huffman |
3 |
Author: Johannes Hölzl |
|
4 |
*) |
|
5 |
||
60758 | 6 |
section \<open>Topological Spaces\<close> |
51471 | 7 |
|
8 |
theory Topological_Spaces |
|
63494 | 9 |
imports Main |
51471 | 10 |
begin |
11 |
||
57953 | 12 |
named_theorems continuous_intros "structural introduction rules for continuity" |
13 |
||
60758 | 14 |
subsection \<open>Topological space\<close> |
51471 | 15 |
|
16 |
class "open" = |
|
17 |
fixes "open" :: "'a set \<Rightarrow> bool" |
|
18 |
||
19 |
class topological_space = "open" + |
|
20 |
assumes open_UNIV [simp, intro]: "open UNIV" |
|
21 |
assumes open_Int [intro]: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<inter> T)" |
|
60585 | 22 |
assumes open_Union [intro]: "\<forall>S\<in>K. open S \<Longrightarrow> open (\<Union>K)" |
51471 | 23 |
begin |
24 |
||
63494 | 25 |
definition closed :: "'a set \<Rightarrow> bool" |
26 |
where "closed S \<longleftrightarrow> open (- S)" |
|
51471 | 27 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
28 |
lemma open_empty [continuous_intros, intro, simp]: "open {}" |
51471 | 29 |
using open_Union [of "{}"] by simp |
30 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
31 |
lemma open_Un [continuous_intros, intro]: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<union> T)" |
51471 | 32 |
using open_Union [of "{S, T}"] by simp |
33 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
34 |
lemma open_UN [continuous_intros, intro]: "\<forall>x\<in>A. open (B x) \<Longrightarrow> open (\<Union>x\<in>A. B x)" |
56166 | 35 |
using open_Union [of "B ` A"] by simp |
51471 | 36 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
37 |
lemma open_Inter [continuous_intros, intro]: "finite S \<Longrightarrow> \<forall>T\<in>S. open T \<Longrightarrow> open (\<Inter>S)" |
51471 | 38 |
by (induct set: finite) auto |
39 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
40 |
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 | 41 |
using open_Inter [of "B ` A"] by simp |
51471 | 42 |
|
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
|
43 |
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
|
44 |
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
|
45 |
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
|
46 |
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
|
47 |
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
|
48 |
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
|
49 |
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
|
50 |
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
|
51 |
|
63494 | 52 |
lemma closed_empty [continuous_intros, intro, simp]: "closed {}" |
51471 | 53 |
unfolding closed_def by simp |
54 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
55 |
lemma closed_Un [continuous_intros, intro]: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<union> T)" |
51471 | 56 |
unfolding closed_def by auto |
57 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
58 |
lemma closed_UNIV [continuous_intros, intro, simp]: "closed UNIV" |
51471 | 59 |
unfolding closed_def by simp |
60 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
61 |
lemma closed_Int [continuous_intros, intro]: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<inter> T)" |
51471 | 62 |
unfolding closed_def by auto |
63 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
64 |
lemma closed_INT [continuous_intros, intro]: "\<forall>x\<in>A. closed (B x) \<Longrightarrow> closed (\<Inter>x\<in>A. B x)" |
51471 | 65 |
unfolding closed_def by auto |
66 |
||
60585 | 67 |
lemma closed_Inter [continuous_intros, intro]: "\<forall>S\<in>K. closed S \<Longrightarrow> closed (\<Inter>K)" |
51471 | 68 |
unfolding closed_def uminus_Inf by auto |
69 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
70 |
lemma closed_Union [continuous_intros, intro]: "finite S \<Longrightarrow> \<forall>T\<in>S. closed T \<Longrightarrow> closed (\<Union>S)" |
51471 | 71 |
by (induct set: finite) auto |
72 |
||
63494 | 73 |
lemma closed_UN [continuous_intros, intro]: |
74 |
"finite A \<Longrightarrow> \<forall>x\<in>A. closed (B x) \<Longrightarrow> closed (\<Union>x\<in>A. B x)" |
|
56166 | 75 |
using closed_Union [of "B ` A"] by simp |
51471 | 76 |
|
77 |
lemma open_closed: "open S \<longleftrightarrow> closed (- S)" |
|
63170 | 78 |
by (simp add: closed_def) |
51471 | 79 |
|
80 |
lemma closed_open: "closed S \<longleftrightarrow> open (- S)" |
|
63170 | 81 |
by (rule closed_def) |
51471 | 82 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
83 |
lemma open_Diff [continuous_intros, intro]: "open S \<Longrightarrow> closed T \<Longrightarrow> open (S - T)" |
63170 | 84 |
by (simp add: closed_open Diff_eq open_Int) |
51471 | 85 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
86 |
lemma closed_Diff [continuous_intros, intro]: "closed S \<Longrightarrow> open T \<Longrightarrow> closed (S - T)" |
63170 | 87 |
by (simp add: open_closed Diff_eq closed_Int) |
51471 | 88 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
89 |
lemma open_Compl [continuous_intros, intro]: "closed S \<Longrightarrow> open (- S)" |
63170 | 90 |
by (simp add: closed_open) |
51471 | 91 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
92 |
lemma closed_Compl [continuous_intros, intro]: "open S \<Longrightarrow> closed (- S)" |
63170 | 93 |
by (simp add: open_closed) |
51471 | 94 |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
95 |
lemma open_Collect_neg: "closed {x. P x} \<Longrightarrow> open {x. \<not> P x}" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
96 |
unfolding Collect_neg_eq by (rule open_Compl) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
97 |
|
63494 | 98 |
lemma open_Collect_conj: |
99 |
assumes "open {x. P x}" "open {x. Q x}" |
|
100 |
shows "open {x. P x \<and> Q x}" |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
101 |
using open_Int[OF assms] by (simp add: Int_def) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
102 |
|
63494 | 103 |
lemma open_Collect_disj: |
104 |
assumes "open {x. P x}" "open {x. Q x}" |
|
105 |
shows "open {x. P x \<or> Q x}" |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
106 |
using open_Un[OF assms] by (simp add: Un_def) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
107 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
108 |
lemma open_Collect_ex: "(\<And>i. open {x. P i x}) \<Longrightarrow> open {x. \<exists>i. P i x}" |
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
109 |
using open_UN[of UNIV "\<lambda>i. {x. P i x}"] unfolding Collect_ex_eq by simp |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
110 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
111 |
lemma open_Collect_imp: "closed {x. P x} \<Longrightarrow> open {x. Q x} \<Longrightarrow> open {x. P x \<longrightarrow> Q x}" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
112 |
unfolding imp_conv_disj by (intro open_Collect_disj open_Collect_neg) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
113 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
114 |
lemma open_Collect_const: "open {x. P}" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
115 |
by (cases P) auto |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
116 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
117 |
lemma closed_Collect_neg: "open {x. P x} \<Longrightarrow> closed {x. \<not> P x}" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
118 |
unfolding Collect_neg_eq by (rule closed_Compl) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
119 |
|
63494 | 120 |
lemma closed_Collect_conj: |
121 |
assumes "closed {x. P x}" "closed {x. Q x}" |
|
122 |
shows "closed {x. P x \<and> Q x}" |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
123 |
using closed_Int[OF assms] by (simp add: Int_def) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
124 |
|
63494 | 125 |
lemma closed_Collect_disj: |
126 |
assumes "closed {x. P x}" "closed {x. Q x}" |
|
127 |
shows "closed {x. P x \<or> Q x}" |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
128 |
using closed_Un[OF assms] by (simp add: Un_def) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
129 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
130 |
lemma closed_Collect_all: "(\<And>i. closed {x. P i x}) \<Longrightarrow> closed {x. \<forall>i. P i x}" |
63494 | 131 |
using closed_INT[of UNIV "\<lambda>i. {x. P i x}"] by (simp add: Collect_all_eq) |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
132 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
133 |
lemma closed_Collect_imp: "open {x. P x} \<Longrightarrow> closed {x. Q x} \<Longrightarrow> closed {x. P x \<longrightarrow> Q x}" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
134 |
unfolding imp_conv_disj by (intro closed_Collect_disj closed_Collect_neg) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
135 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
136 |
lemma closed_Collect_const: "closed {x. P}" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
137 |
by (cases P) auto |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
138 |
|
51471 | 139 |
end |
140 |
||
63494 | 141 |
|
142 |
subsection \<open>Hausdorff and other separation properties\<close> |
|
51471 | 143 |
|
144 |
class t0_space = topological_space + |
|
145 |
assumes t0_space: "x \<noteq> y \<Longrightarrow> \<exists>U. open U \<and> \<not> (x \<in> U \<longleftrightarrow> y \<in> U)" |
|
146 |
||
147 |
class t1_space = topological_space + |
|
148 |
assumes t1_space: "x \<noteq> y \<Longrightarrow> \<exists>U. open U \<and> x \<in> U \<and> y \<notin> U" |
|
149 |
||
150 |
instance t1_space \<subseteq> t0_space |
|
63494 | 151 |
by standard (fast dest: t1_space) |
152 |
||
153 |
lemma separation_t1: "x \<noteq> y \<longleftrightarrow> (\<exists>U. open U \<and> x \<in> U \<and> y \<notin> U)" |
|
154 |
for x y :: "'a::t1_space" |
|
51471 | 155 |
using t1_space[of x y] by blast |
156 |
||
63494 | 157 |
lemma closed_singleton [iff]: "closed {a}" |
158 |
for a :: "'a::t1_space" |
|
51471 | 159 |
proof - |
160 |
let ?T = "\<Union>{S. open S \<and> a \<notin> S}" |
|
63494 | 161 |
have "open ?T" |
162 |
by (simp add: open_Union) |
|
51471 | 163 |
also have "?T = - {a}" |
63494 | 164 |
by (auto simp add: set_eq_iff separation_t1) |
165 |
finally show "closed {a}" |
|
166 |
by (simp only: closed_def) |
|
51471 | 167 |
qed |
168 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
169 |
lemma closed_insert [continuous_intros, simp]: |
51471 | 170 |
fixes a :: "'a::t1_space" |
63494 | 171 |
assumes "closed S" |
172 |
shows "closed (insert a S)" |
|
51471 | 173 |
proof - |
63494 | 174 |
from closed_singleton assms have "closed ({a} \<union> S)" |
175 |
by (rule closed_Un) |
|
176 |
then show "closed (insert a S)" |
|
177 |
by simp |
|
51471 | 178 |
qed |
179 |
||
63494 | 180 |
lemma finite_imp_closed: "finite S \<Longrightarrow> closed S" |
181 |
for S :: "'a::t1_space set" |
|
182 |
by (induct pred: finite) simp_all |
|
183 |
||
51471 | 184 |
|
60758 | 185 |
text \<open>T2 spaces are also known as Hausdorff spaces.\<close> |
51471 | 186 |
|
187 |
class t2_space = topological_space + |
|
188 |
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 = {}" |
|
189 |
||
190 |
instance t2_space \<subseteq> t1_space |
|
63494 | 191 |
by standard (fast dest: hausdorff) |
192 |
||
193 |
lemma separation_t2: "x \<noteq> y \<longleftrightarrow> (\<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {})" |
|
194 |
for x y :: "'a::t2_space" |
|
195 |
using hausdorff [of x y] by blast |
|
196 |
||
197 |
lemma separation_t0: "x \<noteq> y \<longleftrightarrow> (\<exists>U. open U \<and> \<not> (x \<in> U \<longleftrightarrow> y \<in> U))" |
|
198 |
for x y :: "'a::t0_space" |
|
199 |
using t0_space [of x y] by blast |
|
200 |
||
51471 | 201 |
|
60758 | 202 |
text \<open>A perfect space is a topological space with no isolated points.\<close> |
51471 | 203 |
|
204 |
class perfect_space = topological_space + |
|
205 |
assumes not_open_singleton: "\<not> open {x}" |
|
206 |
||
63494 | 207 |
lemma UNIV_not_singleton: "UNIV \<noteq> {x}" |
208 |
for x :: "'a::perfect_space" |
|
62381
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62369
diff
changeset
|
209 |
by (metis open_UNIV not_open_singleton) |
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62369
diff
changeset
|
210 |
|
51471 | 211 |
|
60758 | 212 |
subsection \<open>Generators for toplogies\<close> |
51471 | 213 |
|
63494 | 214 |
inductive generate_topology :: "'a set set \<Rightarrow> 'a set \<Rightarrow> bool" for S :: "'a set set" |
215 |
where |
|
216 |
UNIV: "generate_topology S UNIV" |
|
217 |
| Int: "generate_topology S (a \<inter> b)" if "generate_topology S a" and "generate_topology S b" |
|
218 |
| UN: "generate_topology S (\<Union>K)" if "(\<And>k. k \<in> K \<Longrightarrow> generate_topology S k)" |
|
219 |
| Basis: "generate_topology S s" if "s \<in> S" |
|
51471 | 220 |
|
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
221 |
hide_fact (open) UNIV Int UN Basis |
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
222 |
|
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
223 |
lemma generate_topology_Union: |
51471 | 224 |
"(\<And>k. k \<in> I \<Longrightarrow> generate_topology S (K k)) \<Longrightarrow> generate_topology S (\<Union>k\<in>I. K k)" |
56166 | 225 |
using generate_topology.UN [of "K ` I"] by auto |
51471 | 226 |
|
63494 | 227 |
lemma topological_space_generate_topology: "class.topological_space (generate_topology S)" |
61169 | 228 |
by standard (auto intro: generate_topology.intros) |
51471 | 229 |
|
63494 | 230 |
|
60758 | 231 |
subsection \<open>Order topologies\<close> |
51471 | 232 |
|
233 |
class order_topology = order + "open" + |
|
234 |
assumes open_generated_order: "open = generate_topology (range (\<lambda>a. {..< a}) \<union> range (\<lambda>a. {a <..}))" |
|
235 |
begin |
|
236 |
||
237 |
subclass topological_space |
|
238 |
unfolding open_generated_order |
|
239 |
by (rule topological_space_generate_topology) |
|
240 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
241 |
lemma open_greaterThan [continuous_intros, simp]: "open {a <..}" |
51471 | 242 |
unfolding open_generated_order by (auto intro: generate_topology.Basis) |
243 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
244 |
lemma open_lessThan [continuous_intros, simp]: "open {..< a}" |
51471 | 245 |
unfolding open_generated_order by (auto intro: generate_topology.Basis) |
246 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
247 |
lemma open_greaterThanLessThan [continuous_intros, simp]: "open {a <..< b}" |
51471 | 248 |
unfolding greaterThanLessThan_eq by (simp add: open_Int) |
249 |
||
250 |
end |
|
251 |
||
252 |
class linorder_topology = linorder + order_topology |
|
253 |
||
63494 | 254 |
lemma closed_atMost [continuous_intros, simp]: "closed {..a}" |
255 |
for a :: "'a::linorder_topology" |
|
51471 | 256 |
by (simp add: closed_open) |
257 |
||
63494 | 258 |
lemma closed_atLeast [continuous_intros, simp]: "closed {a..}" |
259 |
for a :: "'a::linorder_topology" |
|
51471 | 260 |
by (simp add: closed_open) |
261 |
||
63494 | 262 |
lemma closed_atLeastAtMost [continuous_intros, simp]: "closed {a..b}" |
263 |
for a b :: "'a::linorder_topology" |
|
51471 | 264 |
proof - |
265 |
have "{a .. b} = {a ..} \<inter> {.. b}" |
|
266 |
by auto |
|
267 |
then show ?thesis |
|
268 |
by (simp add: closed_Int) |
|
269 |
qed |
|
270 |
||
271 |
lemma (in linorder) less_separate: |
|
272 |
assumes "x < y" |
|
273 |
shows "\<exists>a b. x \<in> {..< a} \<and> y \<in> {b <..} \<and> {..< a} \<inter> {b <..} = {}" |
|
53381 | 274 |
proof (cases "\<exists>z. x < z \<and> z < y") |
275 |
case True |
|
276 |
then obtain z where "x < z \<and> z < y" .. |
|
51471 | 277 |
then have "x \<in> {..< z} \<and> y \<in> {z <..} \<and> {z <..} \<inter> {..< z} = {}" |
278 |
by auto |
|
279 |
then show ?thesis by blast |
|
280 |
next |
|
53381 | 281 |
case False |
63494 | 282 |
with \<open>x < y\<close> have "x \<in> {..< y}" "y \<in> {x <..}" "{x <..} \<inter> {..< y} = {}" |
51471 | 283 |
by auto |
284 |
then show ?thesis by blast |
|
285 |
qed |
|
286 |
||
287 |
instance linorder_topology \<subseteq> t2_space |
|
288 |
proof |
|
289 |
fix x y :: 'a |
|
290 |
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 = {}" |
|
63494 | 291 |
using less_separate [of x y] less_separate [of y x] |
292 |
by (elim neqE; metis open_lessThan open_greaterThan Int_commute) |
|
51471 | 293 |
qed |
294 |
||
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
295 |
lemma (in linorder_topology) open_right: |
63494 | 296 |
assumes "open S" "x \<in> S" |
297 |
and gt_ex: "x < y" |
|
298 |
shows "\<exists>b>x. {x ..< b} \<subseteq> S" |
|
299 |
using assms unfolding open_generated_order |
|
300 |
proof induct |
|
301 |
case UNIV |
|
302 |
then show ?case by blast |
|
303 |
next |
|
304 |
case (Int A B) |
|
305 |
then obtain a b where "a > x" "{x ..< a} \<subseteq> A" "b > x" "{x ..< b} \<subseteq> B" |
|
306 |
by auto |
|
307 |
then show ?case |
|
308 |
by (auto intro!: exI[of _ "min a b"]) |
|
309 |
next |
|
310 |
case UN |
|
311 |
then show ?case by blast |
|
312 |
next |
|
313 |
case Basis |
|
314 |
then show ?case |
|
315 |
by (fastforce intro: exI[of _ y] gt_ex) |
|
316 |
qed |
|
317 |
||
318 |
lemma (in linorder_topology) open_left: |
|
319 |
assumes "open S" "x \<in> S" |
|
320 |
and lt_ex: "y < x" |
|
321 |
shows "\<exists>b<x. {b <.. x} \<subseteq> S" |
|
51471 | 322 |
using assms unfolding open_generated_order |
323 |
proof induction |
|
63494 | 324 |
case UNIV |
325 |
then show ?case by blast |
|
326 |
next |
|
51471 | 327 |
case (Int A B) |
63494 | 328 |
then obtain a b where "a < x" "{a <.. x} \<subseteq> A" "b < x" "{b <.. x} \<subseteq> B" |
329 |
by auto |
|
330 |
then show ?case |
|
331 |
by (auto intro!: exI[of _ "max a b"]) |
|
51471 | 332 |
next |
63494 | 333 |
case UN |
334 |
then show ?case by blast |
|
51471 | 335 |
next |
63494 | 336 |
case Basis |
337 |
then show ?case |
|
338 |
by (fastforce intro: exI[of _ y] lt_ex) |
|
339 |
qed |
|
340 |
||
51471 | 341 |
|
62369 | 342 |
subsection \<open>Setup some topologies\<close> |
343 |
||
60758 | 344 |
subsubsection \<open>Boolean is an order topology\<close> |
59106 | 345 |
|
62369 | 346 |
class discrete_topology = topological_space + |
347 |
assumes open_discrete: "\<And>A. open A" |
|
348 |
||
349 |
instance discrete_topology < t2_space |
|
350 |
proof |
|
63494 | 351 |
fix x y :: 'a |
352 |
assume "x \<noteq> y" |
|
353 |
then show "\<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {}" |
|
62369 | 354 |
by (intro exI[of _ "{_}"]) (auto intro!: open_discrete) |
355 |
qed |
|
356 |
||
357 |
instantiation bool :: linorder_topology |
|
59106 | 358 |
begin |
359 |
||
63494 | 360 |
definition open_bool :: "bool set \<Rightarrow> bool" |
361 |
where "open_bool = generate_topology (range (\<lambda>a. {..< a}) \<union> range (\<lambda>a. {a <..}))" |
|
59106 | 362 |
|
363 |
instance |
|
63494 | 364 |
by standard (rule open_bool_def) |
59106 | 365 |
|
366 |
end |
|
367 |
||
62369 | 368 |
instance bool :: discrete_topology |
369 |
proof |
|
370 |
fix A :: "bool set" |
|
59106 | 371 |
have *: "{False <..} = {True}" "{..< True} = {False}" |
372 |
by auto |
|
373 |
have "A = UNIV \<or> A = {} \<or> A = {False <..} \<or> A = {..< True}" |
|
63171 | 374 |
using subset_UNIV[of A] unfolding UNIV_bool * by blast |
59106 | 375 |
then show "open A" |
376 |
by auto |
|
377 |
qed |
|
378 |
||
62369 | 379 |
instantiation nat :: linorder_topology |
380 |
begin |
|
381 |
||
63494 | 382 |
definition open_nat :: "nat set \<Rightarrow> bool" |
383 |
where "open_nat = generate_topology (range (\<lambda>a. {..< a}) \<union> range (\<lambda>a. {a <..}))" |
|
62369 | 384 |
|
385 |
instance |
|
63494 | 386 |
by standard (rule open_nat_def) |
62369 | 387 |
|
388 |
end |
|
389 |
||
390 |
instance nat :: discrete_topology |
|
391 |
proof |
|
392 |
fix A :: "nat set" |
|
393 |
have "open {n}" for n :: nat |
|
394 |
proof (cases n) |
|
395 |
case 0 |
|
396 |
moreover have "{0} = {..<1::nat}" |
|
397 |
by auto |
|
398 |
ultimately show ?thesis |
|
399 |
by auto |
|
400 |
next |
|
401 |
case (Suc n') |
|
63494 | 402 |
then have "{n} = {..<Suc n} \<inter> {n' <..}" |
62369 | 403 |
by auto |
63494 | 404 |
with Suc show ?thesis |
62369 | 405 |
by (auto intro: open_lessThan open_greaterThan) |
406 |
qed |
|
407 |
then have "open (\<Union>a\<in>A. {a})" |
|
408 |
by (intro open_UN) auto |
|
409 |
then show "open A" |
|
410 |
by simp |
|
411 |
qed |
|
412 |
||
413 |
instantiation int :: linorder_topology |
|
414 |
begin |
|
415 |
||
63494 | 416 |
definition open_int :: "int set \<Rightarrow> bool" |
417 |
where "open_int = generate_topology (range (\<lambda>a. {..< a}) \<union> range (\<lambda>a. {a <..}))" |
|
62369 | 418 |
|
419 |
instance |
|
63494 | 420 |
by standard (rule open_int_def) |
62369 | 421 |
|
422 |
end |
|
423 |
||
424 |
instance int :: discrete_topology |
|
425 |
proof |
|
426 |
fix A :: "int set" |
|
427 |
have "{..<i + 1} \<inter> {i-1 <..} = {i}" for i :: int |
|
428 |
by auto |
|
429 |
then have "open {i}" for i :: int |
|
430 |
using open_Int[OF open_lessThan[of "i + 1"] open_greaterThan[of "i - 1"]] by auto |
|
431 |
then have "open (\<Union>a\<in>A. {a})" |
|
432 |
by (intro open_UN) auto |
|
433 |
then show "open A" |
|
434 |
by simp |
|
435 |
qed |
|
436 |
||
63494 | 437 |
|
60758 | 438 |
subsubsection \<open>Topological filters\<close> |
51471 | 439 |
|
440 |
definition (in topological_space) nhds :: "'a \<Rightarrow> 'a filter" |
|
57276 | 441 |
where "nhds a = (INF S:{S. open S \<and> a \<in> S}. principal S)" |
51471 | 442 |
|
63494 | 443 |
definition (in topological_space) at_within :: "'a \<Rightarrow> 'a set \<Rightarrow> 'a filter" |
444 |
("at (_)/ within (_)" [1000, 60] 60) |
|
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
|
445 |
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
|
446 |
|
63494 | 447 |
abbreviation (in topological_space) at :: "'a \<Rightarrow> 'a filter" ("at") |
448 |
where "at x \<equiv> at x within (CONST UNIV)" |
|
449 |
||
450 |
abbreviation (in order_topology) at_right :: "'a \<Rightarrow> 'a filter" |
|
451 |
where "at_right x \<equiv> at x within {x <..}" |
|
452 |
||
453 |
abbreviation (in order_topology) at_left :: "'a \<Rightarrow> 'a filter" |
|
454 |
where "at_left x \<equiv> at x within {..< x}" |
|
51471 | 455 |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
456 |
lemma (in topological_space) nhds_generated_topology: |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
457 |
"open = generate_topology T \<Longrightarrow> nhds x = (INF S:{S\<in>T. x \<in> S}. principal S)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
458 |
unfolding nhds_def |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
459 |
proof (safe intro!: antisym INF_greatest) |
63494 | 460 |
fix S |
461 |
assume "generate_topology T S" "x \<in> S" |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
462 |
then show "(INF S:{S \<in> T. x \<in> S}. principal S) \<le> principal S" |
63494 | 463 |
by induct |
464 |
(auto intro: INF_lower order_trans simp: inf_principal[symmetric] simp del: inf_principal) |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
465 |
qed (auto intro!: INF_lower intro: generate_topology.intros) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
466 |
|
51473 | 467 |
lemma (in topological_space) eventually_nhds: |
51471 | 468 |
"eventually P (nhds a) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))" |
57276 | 469 |
unfolding nhds_def by (subst eventually_INF_base) (auto simp: eventually_principal) |
51471 | 470 |
|
65036
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
471 |
lemma eventually_eventually: |
64969 | 472 |
"eventually (\<lambda>y. eventually P (nhds y)) (nhds x) = eventually P (nhds x)" |
65036
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
473 |
by (auto simp: eventually_nhds) |
64969 | 474 |
|
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
475 |
lemma (in topological_space) eventually_nhds_in_open: |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
476 |
"open s \<Longrightarrow> x \<in> s \<Longrightarrow> eventually (\<lambda>y. y \<in> s) (nhds x)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
477 |
by (subst eventually_nhds) blast |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
478 |
|
63494 | 479 |
lemma eventually_nhds_x_imp_x: "eventually P (nhds x) \<Longrightarrow> P x" |
63295
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
480 |
by (subst (asm) eventually_nhds) blast |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
481 |
|
51471 | 482 |
lemma nhds_neq_bot [simp]: "nhds a \<noteq> bot" |
63494 | 483 |
by (simp add: trivial_limit_def eventually_nhds) |
484 |
||
485 |
lemma (in t1_space) t1_space_nhds: "x \<noteq> y \<Longrightarrow> (\<forall>\<^sub>F x in nhds x. x \<noteq> y)" |
|
60182
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
hoelzl
parents:
60172
diff
changeset
|
486 |
by (drule t1_space) (auto simp: eventually_nhds) |
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
hoelzl
parents:
60172
diff
changeset
|
487 |
|
62369 | 488 |
lemma (in topological_space) nhds_discrete_open: "open {x} \<Longrightarrow> nhds x = principal {x}" |
489 |
by (auto simp: nhds_def intro!: antisym INF_greatest INF_lower2[of "{x}"]) |
|
490 |
||
491 |
lemma (in discrete_topology) nhds_discrete: "nhds x = principal {x}" |
|
492 |
by (simp add: nhds_discrete_open open_discrete) |
|
493 |
||
494 |
lemma (in discrete_topology) at_discrete: "at x within S = bot" |
|
495 |
unfolding at_within_def nhds_discrete by simp |
|
496 |
||
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
497 |
lemma at_within_eq: "at x within s = (INF S:{S. open S \<and> x \<in> S}. principal (S \<inter> s - {x}))" |
63494 | 498 |
unfolding nhds_def at_within_def |
499 |
by (subst INF_inf_const2[symmetric]) (auto simp: Diff_Int_distrib) |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
500 |
|
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
|
501 |
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
|
502 |
"eventually P (at a within s) \<longleftrightarrow> eventually (\<lambda>x. x \<noteq> a \<longrightarrow> x \<in> s \<longrightarrow> P x) (nhds a)" |
63494 | 503 |
by (simp add: at_within_def eventually_inf_principal imp_conjL[symmetric] conj_commute) |
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
|
504 |
|
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
|
505 |
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
|
506 |
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
|
507 |
|
51471 | 508 |
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
|
509 |
"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))" |
63494 | 510 |
by (simp add: eventually_nhds eventually_at_filter) |
51471 | 511 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
512 |
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
|
513 |
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
|
514 |
|
63494 | 515 |
lemma at_within_open_NO_MATCH: "a \<in> s \<Longrightarrow> open s \<Longrightarrow> NO_MATCH UNIV s \<Longrightarrow> at a within s = at a" |
61234 | 516 |
by (simp only: at_within_open) |
517 |
||
61245 | 518 |
lemma at_within_nhd: |
519 |
assumes "x \<in> S" "open S" "T \<inter> S - {x} = U \<inter> S - {x}" |
|
520 |
shows "at x within T = at x within U" |
|
521 |
unfolding filter_eq_iff eventually_at_filter |
|
522 |
proof (intro allI eventually_subst) |
|
523 |
have "eventually (\<lambda>x. x \<in> S) (nhds x)" |
|
524 |
using \<open>x \<in> S\<close> \<open>open S\<close> by (auto simp: eventually_nhds) |
|
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
525 |
then show "\<forall>\<^sub>F n in nhds x. (n \<noteq> x \<longrightarrow> n \<in> T \<longrightarrow> P n) = (n \<noteq> x \<longrightarrow> n \<in> U \<longrightarrow> P n)" for P |
61245 | 526 |
by eventually_elim (insert \<open>T \<inter> S - {x} = U \<inter> S - {x}\<close>, blast) |
527 |
qed |
|
528 |
||
53859 | 529 |
lemma at_within_empty [simp]: "at a within {} = bot" |
530 |
unfolding at_within_def by simp |
|
531 |
||
53860 | 532 |
lemma at_within_union: "at x within (S \<union> T) = sup (at x within S) (at x within T)" |
533 |
unfolding filter_eq_iff eventually_sup eventually_at_filter |
|
534 |
by (auto elim!: eventually_rev_mp) |
|
535 |
||
51471 | 536 |
lemma at_eq_bot_iff: "at a = bot \<longleftrightarrow> open {a}" |
537 |
unfolding trivial_limit_def eventually_at_topological |
|
63494 | 538 |
apply safe |
539 |
apply (case_tac "S = {a}") |
|
540 |
apply simp |
|
541 |
apply fast |
|
542 |
apply fast |
|
543 |
done |
|
544 |
||
545 |
lemma at_neq_bot [simp]: "at a \<noteq> bot" |
|
546 |
for a :: "'a::perfect_space" |
|
51471 | 547 |
by (simp add: at_eq_bot_iff not_open_singleton) |
548 |
||
63494 | 549 |
lemma (in order_topology) nhds_order: |
550 |
"nhds x = inf (INF a:{x <..}. principal {..< a}) (INF a:{..< x}. principal {a <..})" |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
551 |
proof - |
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
552 |
have 1: "{S \<in> range lessThan \<union> range greaterThan. x \<in> S} = |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
553 |
(\<lambda>a. {..< a}) ` {x <..} \<union> (\<lambda>a. {a <..}) ` {..< x}" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
554 |
by auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
555 |
show ?thesis |
63494 | 556 |
by (simp only: nhds_generated_topology[OF open_generated_order] INF_union 1 INF_image comp_def) |
51471 | 557 |
qed |
558 |
||
63295
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
559 |
lemma filterlim_at_within_If: |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
560 |
assumes "filterlim f G (at x within (A \<inter> {x. P x}))" |
63494 | 561 |
and "filterlim g G (at x within (A \<inter> {x. \<not>P x}))" |
562 |
shows "filterlim (\<lambda>x. if P x then f x else g x) G (at x within A)" |
|
63295
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
563 |
proof (rule filterlim_If) |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
564 |
note assms(1) |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
565 |
also have "at x within (A \<inter> {x. P x}) = inf (nhds x) (principal (A \<inter> Collect P - {x}))" |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
566 |
by (simp add: at_within_def) |
63494 | 567 |
also have "A \<inter> Collect P - {x} = (A - {x}) \<inter> Collect P" |
568 |
by blast |
|
63295
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
569 |
also have "inf (nhds x) (principal \<dots>) = inf (at x within A) (principal (Collect P))" |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
570 |
by (simp add: at_within_def inf_assoc) |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
571 |
finally show "filterlim f G (inf (at x within A) (principal (Collect P)))" . |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
572 |
next |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
573 |
note assms(2) |
63494 | 574 |
also have "at x within (A \<inter> {x. \<not> P x}) = inf (nhds x) (principal (A \<inter> {x. \<not> P x} - {x}))" |
63295
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
575 |
by (simp add: at_within_def) |
63494 | 576 |
also have "A \<inter> {x. \<not> P x} - {x} = (A - {x}) \<inter> {x. \<not> P x}" |
577 |
by blast |
|
578 |
also have "inf (nhds x) (principal \<dots>) = inf (at x within A) (principal {x. \<not> P x})" |
|
63295
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
579 |
by (simp add: at_within_def inf_assoc) |
63494 | 580 |
finally show "filterlim g G (inf (at x within A) (principal {x. \<not> P x}))" . |
63295
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
581 |
qed |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
582 |
|
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
583 |
lemma filterlim_at_If: |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
584 |
assumes "filterlim f G (at x within {x. P x})" |
63494 | 585 |
and "filterlim g G (at x within {x. \<not>P x})" |
586 |
shows "filterlim (\<lambda>x. if P x then f x else g x) G (at x)" |
|
63295
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
587 |
using assms by (intro filterlim_at_within_If) simp_all |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
588 |
|
63494 | 589 |
lemma (in linorder_topology) at_within_order: |
590 |
assumes "UNIV \<noteq> {x}" |
|
591 |
shows "at x within s = |
|
592 |
inf (INF a:{x <..}. principal ({..< a} \<inter> s - {x})) |
|
593 |
(INF a:{..< x}. principal ({a <..} \<inter> s - {x}))" |
|
594 |
proof (cases "{x <..} = {}" "{..< x} = {}" rule: case_split [case_product case_split]) |
|
595 |
case True_True |
|
596 |
have "UNIV = {..< x} \<union> {x} \<union> {x <..}" |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
597 |
by auto |
63494 | 598 |
with assms True_True show ?thesis |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
599 |
by auto |
63494 | 600 |
qed (auto simp del: inf_principal simp: at_within_def nhds_order Int_Diff |
601 |
inf_principal[symmetric] INF_inf_const2 inf_sup_aci[where 'a="'a filter"]) |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
602 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
603 |
lemma (in linorder_topology) at_left_eq: |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
604 |
"y < x \<Longrightarrow> at_left x = (INF a:{..< x}. principal {a <..< x})" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
605 |
by (subst at_within_order) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
606 |
(auto simp: greaterThan_Int_greaterThan greaterThanLessThan_eq[symmetric] min.absorb2 INF_constant |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
607 |
intro!: INF_lower2 inf_absorb2) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
608 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
609 |
lemma (in linorder_topology) eventually_at_left: |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
610 |
"y < x \<Longrightarrow> eventually P (at_left x) \<longleftrightarrow> (\<exists>b<x. \<forall>y>b. y < x \<longrightarrow> P y)" |
63494 | 611 |
unfolding at_left_eq |
612 |
by (subst eventually_INF_base) (auto simp: eventually_principal Ball_def) |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
613 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
614 |
lemma (in linorder_topology) at_right_eq: |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
615 |
"x < y \<Longrightarrow> at_right x = (INF a:{x <..}. principal {x <..< a})" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
616 |
by (subst at_within_order) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
617 |
(auto simp: lessThan_Int_lessThan greaterThanLessThan_eq[symmetric] max.absorb2 INF_constant Int_commute |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
618 |
intro!: INF_lower2 inf_absorb1) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
619 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
620 |
lemma (in linorder_topology) eventually_at_right: |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
621 |
"x < y \<Longrightarrow> eventually P (at_right x) \<longleftrightarrow> (\<exists>b>x. \<forall>y>x. y < b \<longrightarrow> P y)" |
63494 | 622 |
unfolding at_right_eq |
623 |
by (subst eventually_INF_base) (auto simp: eventually_principal Ball_def) |
|
51471 | 624 |
|
62083 | 625 |
lemma eventually_at_right_less: "\<forall>\<^sub>F y in at_right (x::'a::{linorder_topology, no_top}). x < y" |
626 |
using gt_ex[of x] eventually_at_right[of x] by auto |
|
627 |
||
63494 | 628 |
lemma trivial_limit_at_right_top: "at_right (top::_::{order_top,linorder_topology}) = bot" |
629 |
by (auto simp: filter_eq_iff eventually_at_topological) |
|
630 |
||
631 |
lemma trivial_limit_at_left_bot: "at_left (bot::_::{order_bot,linorder_topology}) = bot" |
|
632 |
by (auto simp: filter_eq_iff eventually_at_topological) |
|
633 |
||
634 |
lemma trivial_limit_at_left_real [simp]: "\<not> trivial_limit (at_left x)" |
|
635 |
for x :: "'a::{no_bot,dense_order,linorder_topology}" |
|
636 |
using lt_ex [of x] |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
637 |
by safe (auto simp add: trivial_limit_def eventually_at_left dest: dense) |
51471 | 638 |
|
63494 | 639 |
lemma trivial_limit_at_right_real [simp]: "\<not> trivial_limit (at_right x)" |
640 |
for x :: "'a::{no_top,dense_order,linorder_topology}" |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
641 |
using gt_ex[of x] |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
642 |
by safe (auto simp add: trivial_limit_def eventually_at_right dest: dense) |
51471 | 643 |
|
63494 | 644 |
lemma at_eq_sup_left_right: "at x = sup (at_left x) (at_right x)" |
645 |
for x :: "'a::linorder_topology" |
|
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
646 |
by (auto simp: eventually_at_filter filter_eq_iff eventually_sup |
63494 | 647 |
elim: eventually_elim2 eventually_mono) |
51471 | 648 |
|
649 |
lemma eventually_at_split: |
|
63494 | 650 |
"eventually P (at x) \<longleftrightarrow> eventually P (at_left x) \<and> eventually P (at_right x)" |
651 |
for x :: "'a::linorder_topology" |
|
51471 | 652 |
by (subst at_eq_sup_left_right) (simp add: eventually_sup) |
653 |
||
63713 | 654 |
lemma eventually_at_leftI: |
655 |
assumes "\<And>x. x \<in> {a<..<b} \<Longrightarrow> P x" "a < b" |
|
656 |
shows "eventually P (at_left b)" |
|
657 |
using assms unfolding eventually_at_topological by (intro exI[of _ "{a<..}"]) auto |
|
658 |
||
659 |
lemma eventually_at_rightI: |
|
660 |
assumes "\<And>x. x \<in> {a<..<b} \<Longrightarrow> P x" "a < b" |
|
661 |
shows "eventually P (at_right a)" |
|
662 |
using assms unfolding eventually_at_topological by (intro exI[of _ "{..<b}"]) auto |
|
663 |
||
63494 | 664 |
|
60758 | 665 |
subsubsection \<open>Tendsto\<close> |
51471 | 666 |
|
667 |
abbreviation (in topological_space) |
|
63494 | 668 |
tendsto :: "('b \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'b filter \<Rightarrow> bool" (infixr "\<longlongrightarrow>" 55) |
669 |
where "(f \<longlongrightarrow> l) F \<equiv> filterlim f (nhds l) F" |
|
670 |
||
671 |
definition (in t2_space) Lim :: "'f filter \<Rightarrow> ('f \<Rightarrow> 'a) \<Rightarrow> 'a" |
|
672 |
where "Lim A f = (THE l. (f \<longlongrightarrow> l) A)" |
|
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
|
673 |
|
61973 | 674 |
lemma tendsto_eq_rhs: "(f \<longlongrightarrow> x) F \<Longrightarrow> x = y \<Longrightarrow> (f \<longlongrightarrow> y) F" |
51471 | 675 |
by simp |
676 |
||
57953 | 677 |
named_theorems tendsto_intros "introduction rules for tendsto" |
60758 | 678 |
setup \<open> |
51471 | 679 |
Global_Theory.add_thms_dynamic (@{binding tendsto_eq_intros}, |
57953 | 680 |
fn context => |
681 |
Named_Theorems.get (Context.proof_of context) @{named_theorems tendsto_intros} |
|
682 |
|> map_filter (try (fn thm => @{thm tendsto_eq_rhs} OF [thm]))) |
|
60758 | 683 |
\<close> |
51471 | 684 |
|
51473 | 685 |
lemma (in topological_space) tendsto_def: |
61973 | 686 |
"(f \<longlongrightarrow> l) F \<longleftrightarrow> (\<forall>S. open S \<longrightarrow> l \<in> S \<longrightarrow> eventually (\<lambda>x. f x \<in> S) F)" |
57276 | 687 |
unfolding nhds_def filterlim_INF filterlim_principal by auto |
51471 | 688 |
|
63494 | 689 |
lemma tendsto_cong: "(f \<longlongrightarrow> c) F \<longleftrightarrow> (g \<longlongrightarrow> c) F" if "eventually (\<lambda>x. f x = g x) F" |
690 |
by (rule filterlim_cong [OF refl refl that]) |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
691 |
|
61973 | 692 |
lemma tendsto_mono: "F \<le> F' \<Longrightarrow> (f \<longlongrightarrow> l) F' \<Longrightarrow> (f \<longlongrightarrow> l) F" |
51471 | 693 |
unfolding tendsto_def le_filter_def by fast |
694 |
||
61973 | 695 |
lemma tendsto_within_subset: "(f \<longlongrightarrow> l) (at x within S) \<Longrightarrow> T \<subseteq> S \<Longrightarrow> (f \<longlongrightarrow> l) (at x within T)" |
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 |
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
|
697 |
|
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 |
lemma filterlim_at: |
63494 | 699 |
"(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 \<longlongrightarrow> b) 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
|
700 |
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
|
701 |
|
63713 | 702 |
lemma filterlim_at_withinI: |
703 |
assumes "filterlim f (nhds c) F" |
|
704 |
assumes "eventually (\<lambda>x. f x \<in> A - {c}) F" |
|
705 |
shows "filterlim f (at c within A) F" |
|
64008
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63952
diff
changeset
|
706 |
using assms by (simp add: filterlim_at) |
63713 | 707 |
|
708 |
lemma filterlim_atI: |
|
709 |
assumes "filterlim f (nhds c) F" |
|
710 |
assumes "eventually (\<lambda>x. f x \<noteq> c) F" |
|
711 |
shows "filterlim f (at c) F" |
|
712 |
using assms by (intro filterlim_at_withinI) simp_all |
|
713 |
||
51473 | 714 |
lemma (in topological_space) topological_tendstoI: |
61973 | 715 |
"(\<And>S. open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F) \<Longrightarrow> (f \<longlongrightarrow> l) F" |
63494 | 716 |
by (auto simp: tendsto_def) |
51471 | 717 |
|
51473 | 718 |
lemma (in topological_space) topological_tendstoD: |
61973 | 719 |
"(f \<longlongrightarrow> l) F \<Longrightarrow> open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F" |
63494 | 720 |
by (auto simp: tendsto_def) |
51471 | 721 |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
722 |
lemma (in order_topology) order_tendsto_iff: |
61973 | 723 |
"(f \<longlongrightarrow> x) F \<longleftrightarrow> (\<forall>l<x. eventually (\<lambda>x. l < f x) F) \<and> (\<forall>u>x. eventually (\<lambda>x. f x < u) F)" |
63494 | 724 |
by (auto simp: nhds_order filterlim_inf filterlim_INF filterlim_principal) |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
725 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
726 |
lemma (in order_topology) order_tendstoI: |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
727 |
"(\<And>a. a < y \<Longrightarrow> eventually (\<lambda>x. a < f x) F) \<Longrightarrow> (\<And>a. y < a \<Longrightarrow> eventually (\<lambda>x. f x < a) F) \<Longrightarrow> |
61973 | 728 |
(f \<longlongrightarrow> y) F" |
63494 | 729 |
by (auto simp: order_tendsto_iff) |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
730 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
731 |
lemma (in order_topology) order_tendstoD: |
61973 | 732 |
assumes "(f \<longlongrightarrow> y) F" |
51471 | 733 |
shows "a < y \<Longrightarrow> eventually (\<lambda>x. a < f x) F" |
734 |
and "y < a \<Longrightarrow> eventually (\<lambda>x. f x < a) F" |
|
63494 | 735 |
using assms by (auto simp: order_tendsto_iff) |
51471 | 736 |
|
61973 | 737 |
lemma tendsto_bot [simp]: "(f \<longlongrightarrow> a) bot" |
63494 | 738 |
by (simp add: tendsto_def) |
51471 | 739 |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
740 |
lemma (in linorder_topology) tendsto_max: |
61973 | 741 |
assumes X: "(X \<longlongrightarrow> x) net" |
63494 | 742 |
and Y: "(Y \<longlongrightarrow> y) net" |
61973 | 743 |
shows "((\<lambda>x. max (X x) (Y x)) \<longlongrightarrow> max x y) net" |
56949 | 744 |
proof (rule order_tendstoI) |
63494 | 745 |
fix a |
746 |
assume "a < max x y" |
|
56949 | 747 |
then show "eventually (\<lambda>x. a < max (X x) (Y x)) net" |
748 |
using order_tendstoD(1)[OF X, of a] order_tendstoD(1)[OF Y, of a] |
|
61810 | 749 |
by (auto simp: less_max_iff_disj elim: eventually_mono) |
56949 | 750 |
next |
63494 | 751 |
fix a |
752 |
assume "max x y < a" |
|
56949 | 753 |
then show "eventually (\<lambda>x. max (X x) (Y x) < a) net" |
754 |
using order_tendstoD(2)[OF X, of a] order_tendstoD(2)[OF Y, of a] |
|
755 |
by (auto simp: eventually_conj_iff) |
|
756 |
qed |
|
757 |
||
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
758 |
lemma (in linorder_topology) tendsto_min: |
61973 | 759 |
assumes X: "(X \<longlongrightarrow> x) net" |
63494 | 760 |
and Y: "(Y \<longlongrightarrow> y) net" |
61973 | 761 |
shows "((\<lambda>x. min (X x) (Y x)) \<longlongrightarrow> min x y) net" |
56949 | 762 |
proof (rule order_tendstoI) |
63494 | 763 |
fix a |
764 |
assume "a < min x y" |
|
56949 | 765 |
then show "eventually (\<lambda>x. a < min (X x) (Y x)) net" |
766 |
using order_tendstoD(1)[OF X, of a] order_tendstoD(1)[OF Y, of a] |
|
767 |
by (auto simp: eventually_conj_iff) |
|
768 |
next |
|
63494 | 769 |
fix a |
770 |
assume "min x y < a" |
|
56949 | 771 |
then show "eventually (\<lambda>x. min (X x) (Y x) < a) net" |
772 |
using order_tendstoD(2)[OF X, of a] order_tendstoD(2)[OF Y, of a] |
|
61810 | 773 |
by (auto simp: min_less_iff_disj elim: eventually_mono) |
56949 | 774 |
qed |
775 |
||
61973 | 776 |
lemma tendsto_ident_at [tendsto_intros, simp, intro]: "((\<lambda>x. x) \<longlongrightarrow> a) (at a within s)" |
63494 | 777 |
by (auto simp: tendsto_def eventually_at_topological) |
51471 | 778 |
|
61973 | 779 |
lemma (in topological_space) tendsto_const [tendsto_intros, simp, intro]: "((\<lambda>x. k) \<longlongrightarrow> k) F" |
51471 | 780 |
by (simp add: tendsto_def) |
781 |
||
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
|
782 |
lemma (in t2_space) tendsto_unique: |
63494 | 783 |
assumes "F \<noteq> bot" |
784 |
and "(f \<longlongrightarrow> a) F" |
|
785 |
and "(f \<longlongrightarrow> b) F" |
|
51471 | 786 |
shows "a = b" |
787 |
proof (rule ccontr) |
|
788 |
assume "a \<noteq> b" |
|
789 |
obtain U V where "open U" "open V" "a \<in> U" "b \<in> V" "U \<inter> V = {}" |
|
60758 | 790 |
using hausdorff [OF \<open>a \<noteq> b\<close>] by fast |
51471 | 791 |
have "eventually (\<lambda>x. f x \<in> U) F" |
61973 | 792 |
using \<open>(f \<longlongrightarrow> a) F\<close> \<open>open U\<close> \<open>a \<in> U\<close> by (rule topological_tendstoD) |
51471 | 793 |
moreover |
794 |
have "eventually (\<lambda>x. f x \<in> V) F" |
|
61973 | 795 |
using \<open>(f \<longlongrightarrow> b) F\<close> \<open>open V\<close> \<open>b \<in> V\<close> by (rule topological_tendstoD) |
51471 | 796 |
ultimately |
797 |
have "eventually (\<lambda>x. False) F" |
|
798 |
proof eventually_elim |
|
799 |
case (elim x) |
|
63494 | 800 |
then have "f x \<in> U \<inter> V" by simp |
60758 | 801 |
with \<open>U \<inter> V = {}\<close> show ?case by simp |
51471 | 802 |
qed |
60758 | 803 |
with \<open>\<not> trivial_limit F\<close> show "False" |
51471 | 804 |
by (simp add: trivial_limit_def) |
805 |
qed |
|
806 |
||
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
|
807 |
lemma (in t2_space) tendsto_const_iff: |
63494 | 808 |
fixes a b :: 'a |
809 |
assumes "\<not> trivial_limit F" |
|
810 |
shows "((\<lambda>x. a) \<longlongrightarrow> b) F \<longleftrightarrow> a = b" |
|
58729
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents:
57953
diff
changeset
|
811 |
by (auto intro!: tendsto_unique [OF assms tendsto_const]) |
51471 | 812 |
|
813 |
lemma increasing_tendsto: |
|
814 |
fixes f :: "_ \<Rightarrow> 'a::order_topology" |
|
815 |
assumes bdd: "eventually (\<lambda>n. f n \<le> l) F" |
|
63494 | 816 |
and en: "\<And>x. x < l \<Longrightarrow> eventually (\<lambda>n. x < f n) F" |
61973 | 817 |
shows "(f \<longlongrightarrow> l) F" |
61810 | 818 |
using assms by (intro order_tendstoI) (auto elim!: eventually_mono) |
51471 | 819 |
|
820 |
lemma decreasing_tendsto: |
|
821 |
fixes f :: "_ \<Rightarrow> 'a::order_topology" |
|
822 |
assumes bdd: "eventually (\<lambda>n. l \<le> f n) F" |
|
63494 | 823 |
and en: "\<And>x. l < x \<Longrightarrow> eventually (\<lambda>n. f n < x) F" |
61973 | 824 |
shows "(f \<longlongrightarrow> l) F" |
61810 | 825 |
using assms by (intro order_tendstoI) (auto elim!: eventually_mono) |
51471 | 826 |
|
827 |
lemma tendsto_sandwich: |
|
828 |
fixes f g h :: "'a \<Rightarrow> 'b::order_topology" |
|
829 |
assumes ev: "eventually (\<lambda>n. f n \<le> g n) net" "eventually (\<lambda>n. g n \<le> h n) net" |
|
61973 | 830 |
assumes lim: "(f \<longlongrightarrow> c) net" "(h \<longlongrightarrow> c) net" |
831 |
shows "(g \<longlongrightarrow> c) net" |
|
51471 | 832 |
proof (rule order_tendstoI) |
63494 | 833 |
fix a |
834 |
show "a < c \<Longrightarrow> eventually (\<lambda>x. a < g x) net" |
|
51471 | 835 |
using order_tendstoD[OF lim(1), of a] ev by (auto elim: eventually_elim2) |
836 |
next |
|
63494 | 837 |
fix a |
838 |
show "c < a \<Longrightarrow> eventually (\<lambda>x. g x < a) net" |
|
51471 | 839 |
using order_tendstoD[OF lim(2), of a] ev by (auto elim: eventually_elim2) |
840 |
qed |
|
841 |
||
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
842 |
lemma limit_frequently_eq: |
63494 | 843 |
fixes c d :: "'a::t1_space" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
844 |
assumes "F \<noteq> bot" |
63494 | 845 |
and "frequently (\<lambda>x. f x = c) F" |
846 |
and "(f \<longlongrightarrow> d) F" |
|
847 |
shows "d = c" |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
848 |
proof (rule ccontr) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
849 |
assume "d \<noteq> c" |
63494 | 850 |
from t1_space[OF this] obtain U where "open U" "d \<in> U" "c \<notin> U" |
851 |
by blast |
|
852 |
with assms have "eventually (\<lambda>x. f x \<in> U) F" |
|
853 |
unfolding tendsto_def by blast |
|
854 |
then have "eventually (\<lambda>x. f x \<noteq> c) F" |
|
855 |
by eventually_elim (insert \<open>c \<notin> U\<close>, blast) |
|
856 |
with assms(2) show False |
|
857 |
unfolding frequently_def by contradiction |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
858 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
859 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
860 |
lemma tendsto_imp_eventually_ne: |
63494 | 861 |
fixes c :: "'a::t1_space" |
64394 | 862 |
assumes "(f \<longlongrightarrow> c) F" "c \<noteq> c'" |
63494 | 863 |
shows "eventually (\<lambda>z. f z \<noteq> c') F" |
64394 | 864 |
proof (cases "F=bot") |
865 |
case True |
|
866 |
thus ?thesis by auto |
|
867 |
next |
|
868 |
case False |
|
869 |
show ?thesis |
|
870 |
proof (rule ccontr) |
|
871 |
assume "\<not> eventually (\<lambda>z. f z \<noteq> c') F" |
|
872 |
then have "frequently (\<lambda>z. f z = c') F" |
|
873 |
by (simp add: frequently_def) |
|
874 |
from limit_frequently_eq[OF False this \<open>(f \<longlongrightarrow> c) F\<close>] and \<open>c \<noteq> c'\<close> show False |
|
875 |
by contradiction |
|
876 |
qed |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
877 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
878 |
|
51471 | 879 |
lemma tendsto_le: |
880 |
fixes f g :: "'a \<Rightarrow> 'b::linorder_topology" |
|
881 |
assumes F: "\<not> trivial_limit F" |
|
63494 | 882 |
and x: "(f \<longlongrightarrow> x) F" |
883 |
and y: "(g \<longlongrightarrow> y) F" |
|
884 |
and ev: "eventually (\<lambda>x. g x \<le> f x) F" |
|
51471 | 885 |
shows "y \<le> x" |
886 |
proof (rule ccontr) |
|
887 |
assume "\<not> y \<le> x" |
|
888 |
with less_separate[of x y] obtain a b where xy: "x < a" "b < y" "{..<a} \<inter> {b<..} = {}" |
|
889 |
by (auto simp: not_le) |
|
890 |
then have "eventually (\<lambda>x. f x < a) F" "eventually (\<lambda>x. b < g x) F" |
|
891 |
using x y by (auto intro: order_tendstoD) |
|
892 |
with ev have "eventually (\<lambda>x. False) F" |
|
893 |
by eventually_elim (insert xy, fastforce) |
|
894 |
with F show False |
|
895 |
by (simp add: eventually_False) |
|
896 |
qed |
|
897 |
||
63952
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63713
diff
changeset
|
898 |
lemma tendsto_lowerbound: |
51471 | 899 |
fixes f :: "'a \<Rightarrow> 'b::linorder_topology" |
63952
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63713
diff
changeset
|
900 |
assumes x: "(f \<longlongrightarrow> x) F" |
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63713
diff
changeset
|
901 |
and ev: "eventually (\<lambda>i. a \<le> f i) F" |
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63713
diff
changeset
|
902 |
and F: "\<not> trivial_limit F" |
51471 | 903 |
shows "a \<le> x" |
63494 | 904 |
using F x tendsto_const ev by (rule tendsto_le) |
51471 | 905 |
|
63952
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63713
diff
changeset
|
906 |
lemma tendsto_upperbound: |
56289 | 907 |
fixes f :: "'a \<Rightarrow> 'b::linorder_topology" |
63952
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63713
diff
changeset
|
908 |
assumes x: "(f \<longlongrightarrow> x) F" |
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63713
diff
changeset
|
909 |
and ev: "eventually (\<lambda>i. a \<ge> f i) F" |
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63713
diff
changeset
|
910 |
and F: "\<not> trivial_limit F" |
56289 | 911 |
shows "a \<ge> x" |
63494 | 912 |
by (rule tendsto_le [OF F tendsto_const x ev]) |
56289 | 913 |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
914 |
|
60758 | 915 |
subsubsection \<open>Rules about @{const Lim}\<close> |
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
|
916 |
|
63494 | 917 |
lemma tendsto_Lim: "\<not> trivial_limit net \<Longrightarrow> (f \<longlongrightarrow> l) net \<Longrightarrow> Lim net f = l" |
918 |
unfolding Lim_def using tendsto_unique [of net f] by auto |
|
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
|
919 |
|
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
|
920 |
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
|
921 |
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
|
922 |
|
51471 | 923 |
lemma filterlim_at_bot_at_right: |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
924 |
fixes f :: "'a::linorder_topology \<Rightarrow> 'b::linorder" |
51471 | 925 |
assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
63494 | 926 |
and bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)" |
927 |
and Q: "eventually Q (at_right a)" |
|
928 |
and bound: "\<And>b. Q b \<Longrightarrow> a < b" |
|
929 |
and P: "eventually P at_bot" |
|
51471 | 930 |
shows "filterlim f at_bot (at_right a)" |
931 |
proof - |
|
932 |
from P obtain x where x: "\<And>y. y \<le> x \<Longrightarrow> P y" |
|
933 |
unfolding eventually_at_bot_linorder by auto |
|
934 |
show ?thesis |
|
935 |
proof (intro filterlim_at_bot_le[THEN iffD2] allI impI) |
|
63494 | 936 |
fix z |
937 |
assume "z \<le> x" |
|
51471 | 938 |
with x have "P z" by auto |
939 |
have "eventually (\<lambda>x. x \<le> g z) (at_right a)" |
|
60758 | 940 |
using bound[OF bij(2)[OF \<open>P z\<close>]] |
63494 | 941 |
unfolding eventually_at_right[OF bound[OF bij(2)[OF \<open>P z\<close>]]] |
942 |
by (auto intro!: exI[of _ "g z"]) |
|
51471 | 943 |
with Q show "eventually (\<lambda>x. f x \<le> z) (at_right a)" |
60758 | 944 |
by eventually_elim (metis bij \<open>P z\<close> mono) |
51471 | 945 |
qed |
946 |
qed |
|
947 |
||
948 |
lemma filterlim_at_top_at_left: |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
949 |
fixes f :: "'a::linorder_topology \<Rightarrow> 'b::linorder" |
51471 | 950 |
assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
63494 | 951 |
and bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)" |
952 |
and Q: "eventually Q (at_left a)" |
|
953 |
and bound: "\<And>b. Q b \<Longrightarrow> b < a" |
|
954 |
and P: "eventually P at_top" |
|
51471 | 955 |
shows "filterlim f at_top (at_left a)" |
956 |
proof - |
|
957 |
from P obtain x where x: "\<And>y. x \<le> y \<Longrightarrow> P y" |
|
958 |
unfolding eventually_at_top_linorder by auto |
|
959 |
show ?thesis |
|
960 |
proof (intro filterlim_at_top_ge[THEN iffD2] allI impI) |
|
63494 | 961 |
fix z |
962 |
assume "x \<le> z" |
|
51471 | 963 |
with x have "P z" by auto |
964 |
have "eventually (\<lambda>x. g z \<le> x) (at_left a)" |
|
60758 | 965 |
using bound[OF bij(2)[OF \<open>P z\<close>]] |
63494 | 966 |
unfolding eventually_at_left[OF bound[OF bij(2)[OF \<open>P z\<close>]]] |
967 |
by (auto intro!: exI[of _ "g z"]) |
|
51471 | 968 |
with Q show "eventually (\<lambda>x. z \<le> f x) (at_left a)" |
60758 | 969 |
by eventually_elim (metis bij \<open>P z\<close> mono) |
51471 | 970 |
qed |
971 |
qed |
|
972 |
||
973 |
lemma filterlim_split_at: |
|
63494 | 974 |
"filterlim f F (at_left x) \<Longrightarrow> filterlim f F (at_right x) \<Longrightarrow> |
975 |
filterlim f F (at x)" |
|
976 |
for x :: "'a::linorder_topology" |
|
51471 | 977 |
by (subst at_eq_sup_left_right) (rule filterlim_sup) |
978 |
||
979 |
lemma filterlim_at_split: |
|
63494 | 980 |
"filterlim f F (at x) \<longleftrightarrow> filterlim f F (at_left x) \<and> filterlim f F (at_right x)" |
981 |
for x :: "'a::linorder_topology" |
|
51471 | 982 |
by (subst at_eq_sup_left_right) (simp add: filterlim_def filtermap_sup) |
983 |
||
57025 | 984 |
lemma eventually_nhds_top: |
63494 | 985 |
fixes P :: "'a :: {order_top,linorder_topology} \<Rightarrow> bool" |
986 |
and b :: 'a |
|
987 |
assumes "b < top" |
|
57025 | 988 |
shows "eventually P (nhds top) \<longleftrightarrow> (\<exists>b<top. (\<forall>z. b < z \<longrightarrow> P z))" |
989 |
unfolding eventually_nhds |
|
990 |
proof safe |
|
63494 | 991 |
fix S :: "'a set" |
992 |
assume "open S" "top \<in> S" |
|
60758 | 993 |
note open_left[OF this \<open>b < top\<close>] |
57025 | 994 |
moreover assume "\<forall>s\<in>S. P s" |
995 |
ultimately show "\<exists>b<top. \<forall>z>b. P z" |
|
996 |
by (auto simp: subset_eq Ball_def) |
|
997 |
next |
|
63494 | 998 |
fix b |
999 |
assume "b < top" "\<forall>z>b. P z" |
|
57025 | 1000 |
then show "\<exists>S. open S \<and> top \<in> S \<and> (\<forall>xa\<in>S. P xa)" |
1001 |
by (intro exI[of _ "{b <..}"]) auto |
|
1002 |
qed |
|
51471 | 1003 |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1004 |
lemma tendsto_at_within_iff_tendsto_nhds: |
61973 | 1005 |
"(g \<longlongrightarrow> g l) (at l within S) \<longleftrightarrow> (g \<longlongrightarrow> g l) (inf (nhds l) (principal S))" |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1006 |
unfolding tendsto_def eventually_at_filter eventually_inf_principal |
61810 | 1007 |
by (intro ext all_cong imp_cong) (auto elim!: eventually_mono) |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1008 |
|
63494 | 1009 |
|
60758 | 1010 |
subsection \<open>Limits on sequences\<close> |
51471 | 1011 |
|
1012 |
abbreviation (in topological_space) |
|
63494 | 1013 |
LIMSEQ :: "[nat \<Rightarrow> 'a, 'a] \<Rightarrow> bool" ("((_)/ \<longlonglongrightarrow> (_))" [60, 60] 60) |
1014 |
where "X \<longlonglongrightarrow> L \<equiv> (X \<longlongrightarrow> L) sequentially" |
|
1015 |
||
1016 |
abbreviation (in t2_space) lim :: "(nat \<Rightarrow> 'a) \<Rightarrow> 'a" |
|
1017 |
where "lim X \<equiv> Lim sequentially X" |
|
1018 |
||
1019 |
definition (in topological_space) convergent :: "(nat \<Rightarrow> 'a) \<Rightarrow> bool" |
|
1020 |
where "convergent X = (\<exists>L. X \<longlonglongrightarrow> L)" |
|
51471 | 1021 |
|
61969 | 1022 |
lemma lim_def: "lim X = (THE L. X \<longlonglongrightarrow> L)" |
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
|
1023 |
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
|
1024 |
|
63494 | 1025 |
|
60758 | 1026 |
subsubsection \<open>Monotone sequences and subsequences\<close> |
51471 | 1027 |
|
63494 | 1028 |
text \<open> |
1029 |
Definition of monotonicity. |
|
1030 |
The use of disjunction here complicates proofs considerably. |
|
1031 |
One alternative is to add a Boolean argument to indicate the direction. |
|
1032 |
Another is to develop the notions of increasing and decreasing first. |
|
1033 |
\<close> |
|
1034 |
definition monoseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" |
|
1035 |
where "monoseq X \<longleftrightarrow> (\<forall>m. \<forall>n\<ge>m. X m \<le> X n) \<or> (\<forall>m. \<forall>n\<ge>m. X n \<le> X m)" |
|
1036 |
||
1037 |
abbreviation incseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" |
|
1038 |
where "incseq X \<equiv> mono X" |
|
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
|
1039 |
|
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
|
1040 |
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
|
1041 |
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
|
1042 |
|
63494 | 1043 |
abbreviation decseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" |
1044 |
where "decseq X \<equiv> antimono X" |
|
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
|
1045 |
|
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
|
1046 |
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
|
1047 |
unfolding antimono_def .. |
51471 | 1048 |
|
63494 | 1049 |
text \<open>Definition of subsequence.\<close> |
1050 |
definition subseq :: "(nat \<Rightarrow> nat) \<Rightarrow> bool" |
|
1051 |
where "subseq f \<longleftrightarrow> (\<forall>m. \<forall>n>m. f m < f n)" |
|
1052 |
||
65036
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1053 |
lemma subseq_le_mono: "subseq r \<Longrightarrow> m \<le> n \<Longrightarrow> r m \<le> r n" |
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1054 |
by (simp add: less_mono_imp_le_mono subseq_def) |
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1055 |
|
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1056 |
lemma subseq_id: "subseq id" |
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1057 |
by (simp add: subseq_def) |
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1058 |
|
63494 | 1059 |
lemma incseq_SucI: "(\<And>n. X n \<le> X (Suc n)) \<Longrightarrow> incseq X" |
1060 |
using lift_Suc_mono_le[of X] by (auto simp: incseq_def) |
|
1061 |
||
1062 |
lemma incseqD: "incseq f \<Longrightarrow> i \<le> j \<Longrightarrow> f i \<le> f j" |
|
51471 | 1063 |
by (auto simp: incseq_def) |
1064 |
||
1065 |
lemma incseq_SucD: "incseq A \<Longrightarrow> A i \<le> A (Suc i)" |
|
1066 |
using incseqD[of A i "Suc i"] by auto |
|
1067 |
||
1068 |
lemma incseq_Suc_iff: "incseq f \<longleftrightarrow> (\<forall>n. f n \<le> f (Suc n))" |
|
1069 |
by (auto intro: incseq_SucI dest: incseq_SucD) |
|
1070 |
||
1071 |
lemma incseq_const[simp, intro]: "incseq (\<lambda>x. k)" |
|
1072 |
unfolding incseq_def by auto |
|
1073 |
||
63494 | 1074 |
lemma decseq_SucI: "(\<And>n. X (Suc n) \<le> X n) \<Longrightarrow> decseq X" |
1075 |
using order.lift_Suc_mono_le[OF dual_order, of X] by (auto simp: decseq_def) |
|
1076 |
||
1077 |
lemma decseqD: "decseq f \<Longrightarrow> i \<le> j \<Longrightarrow> f j \<le> f i" |
|
51471 | 1078 |
by (auto simp: decseq_def) |
1079 |
||
1080 |
lemma decseq_SucD: "decseq A \<Longrightarrow> A (Suc i) \<le> A i" |
|
1081 |
using decseqD[of A i "Suc i"] by auto |
|
1082 |
||
1083 |
lemma decseq_Suc_iff: "decseq f \<longleftrightarrow> (\<forall>n. f (Suc n) \<le> f n)" |
|
1084 |
by (auto intro: decseq_SucI dest: decseq_SucD) |
|
1085 |
||
1086 |
lemma decseq_const[simp, intro]: "decseq (\<lambda>x. k)" |
|
1087 |
unfolding decseq_def by auto |
|
1088 |
||
1089 |
lemma monoseq_iff: "monoseq X \<longleftrightarrow> incseq X \<or> decseq X" |
|
1090 |
unfolding monoseq_def incseq_def decseq_def .. |
|
1091 |
||
63494 | 1092 |
lemma monoseq_Suc: "monoseq X \<longleftrightarrow> (\<forall>n. X n \<le> X (Suc n)) \<or> (\<forall>n. X (Suc n) \<le> X n)" |
51471 | 1093 |
unfolding monoseq_iff incseq_Suc_iff decseq_Suc_iff .. |
1094 |
||
63494 | 1095 |
lemma monoI1: "\<forall>m. \<forall>n \<ge> m. X m \<le> X n \<Longrightarrow> monoseq X" |
1096 |
by (simp add: monoseq_def) |
|
1097 |
||
1098 |
lemma monoI2: "\<forall>m. \<forall>n \<ge> m. X n \<le> X m \<Longrightarrow> monoseq X" |
|
1099 |
by (simp add: monoseq_def) |
|
1100 |
||
1101 |
lemma mono_SucI1: "\<forall>n. X n \<le> X (Suc n) \<Longrightarrow> monoseq X" |
|
1102 |
by (simp add: monoseq_Suc) |
|
1103 |
||
1104 |
lemma mono_SucI2: "\<forall>n. X (Suc n) \<le> X n \<Longrightarrow> monoseq X" |
|
1105 |
by (simp add: monoseq_Suc) |
|
51471 | 1106 |
|
1107 |
lemma monoseq_minus: |
|
1108 |
fixes a :: "nat \<Rightarrow> 'a::ordered_ab_group_add" |
|
1109 |
assumes "monoseq a" |
|
1110 |
shows "monoseq (\<lambda> n. - a n)" |
|
63494 | 1111 |
proof (cases "\<forall>m. \<forall>n \<ge> m. a m \<le> a n") |
51471 | 1112 |
case True |
63494 | 1113 |
then have "\<forall>m. \<forall>n \<ge> m. - a n \<le> - a m" by auto |
1114 |
then show ?thesis by (rule monoI2) |
|
51471 | 1115 |
next |
1116 |
case False |
|
63494 | 1117 |
then have "\<forall>m. \<forall>n \<ge> m. - a m \<le> - a n" |
1118 |
using \<open>monoseq a\<close>[unfolded monoseq_def] by auto |
|
1119 |
then show ?thesis by (rule monoI1) |
|
51471 | 1120 |
qed |
1121 |
||
63494 | 1122 |
|
1123 |
text \<open>Subsequence (alternative definition, (e.g. Hoskins)\<close> |
|
1124 |
||
1125 |
lemma subseq_Suc_iff: "subseq f \<longleftrightarrow> (\<forall>n. f n < f (Suc n))" |
|
1126 |
apply (simp add: subseq_def) |
|
1127 |
apply (auto dest!: less_imp_Suc_add) |
|
1128 |
apply (induct_tac k) |
|
1129 |
apply (auto intro: less_trans) |
|
1130 |
done |
|
51471 | 1131 |
|
63317
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
eberlm
parents:
63301
diff
changeset
|
1132 |
lemma subseq_add: "subseq (\<lambda>n. n + k)" |
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
eberlm
parents:
63301
diff
changeset
|
1133 |
by (auto simp: subseq_Suc_iff) |
ca187a9f66da
Various additions to polynomials, FPSs, Gamma function
eberlm
parents:
63301
diff
changeset
|
1134 |
|
63494 | 1135 |
text \<open>For any sequence, there is a monotonic subsequence.\<close> |
51471 | 1136 |
lemma seq_monosub: |
63494 | 1137 |
fixes s :: "nat \<Rightarrow> 'a::linorder" |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1138 |
shows "\<exists>f. subseq f \<and> monoseq (\<lambda>n. (s (f n)))" |
63494 | 1139 |
proof (cases "\<forall>n. \<exists>p>n. \<forall>m\<ge>p. s m \<le> s p") |
1140 |
case True |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1141 |
then have "\<exists>f. \<forall>n. (\<forall>m\<ge>f n. s m \<le> s (f n)) \<and> f n < f (Suc n)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1142 |
by (intro dependent_nat_choice) (auto simp: conj_commute) |
63494 | 1143 |
then obtain f where f: "subseq f" and mono: "\<And>n m. f n \<le> m \<Longrightarrow> s m \<le> s (f n)" |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1144 |
by (auto simp: subseq_Suc_iff) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1145 |
then have "incseq f" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1146 |
unfolding subseq_Suc_iff incseq_Suc_iff by (auto intro: less_imp_le) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1147 |
then have "monoseq (\<lambda>n. s (f n))" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1148 |
by (auto simp add: incseq_def intro!: mono monoI2) |
63494 | 1149 |
with f show ?thesis |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1150 |
by auto |
51471 | 1151 |
next |
63494 | 1152 |
case False |
1153 |
then obtain N where N: "p > N \<Longrightarrow> \<exists>m>p. s p < s m" for p |
|
1154 |
by (force simp: not_le le_less) |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1155 |
have "\<exists>f. \<forall>n. N < f n \<and> f n < f (Suc n) \<and> s (f n) \<le> s (f (Suc n))" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1156 |
proof (intro dependent_nat_choice) |
63494 | 1157 |
fix x |
1158 |
assume "N < x" with N[of x] |
|
1159 |
show "\<exists>y>N. x < y \<and> s x \<le> s y" |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1160 |
by (auto intro: less_trans) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1161 |
qed auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1162 |
then show ?thesis |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1163 |
by (auto simp: monoseq_iff incseq_Suc_iff subseq_Suc_iff) |
51471 | 1164 |
qed |
1165 |
||
63494 | 1166 |
lemma seq_suble: |
1167 |
assumes sf: "subseq f" |
|
1168 |
shows "n \<le> f n" |
|
1169 |
proof (induct n) |
|
1170 |
case 0 |
|
1171 |
show ?case by simp |
|
51471 | 1172 |
next |
1173 |
case (Suc n) |
|
63494 | 1174 |
with sf [unfolded subseq_Suc_iff, rule_format, of n] have "n < f (Suc n)" |
1175 |
by arith |
|
1176 |
then show ?case by arith |
|
51471 | 1177 |
qed |
1178 |
||
1179 |
lemma eventually_subseq: |
|
1180 |
"subseq r \<Longrightarrow> eventually P sequentially \<Longrightarrow> eventually (\<lambda>n. P (r n)) sequentially" |
|
1181 |
unfolding eventually_sequentially by (metis seq_suble le_trans) |
|
1182 |
||
51473 | 1183 |
lemma not_eventually_sequentiallyD: |
63494 | 1184 |
assumes "\<not> eventually P sequentially" |
51473 | 1185 |
shows "\<exists>r. subseq r \<and> (\<forall>n. \<not> P (r n))" |
1186 |
proof - |
|
63494 | 1187 |
from assms have "\<forall>n. \<exists>m\<ge>n. \<not> P m" |
51473 | 1188 |
unfolding eventually_sequentially by (simp add: not_less) |
1189 |
then obtain r where "\<And>n. r n \<ge> n" "\<And>n. \<not> P (r n)" |
|
1190 |
by (auto simp: choice_iff) |
|
1191 |
then show ?thesis |
|
1192 |
by (auto intro!: exI[of _ "\<lambda>n. r (((Suc \<circ> r) ^^ Suc n) 0)"] |
|
1193 |
simp: less_eq_Suc_le subseq_Suc_iff) |
|
1194 |
qed |
|
1195 |
||
51471 | 1196 |
lemma filterlim_subseq: "subseq f \<Longrightarrow> filterlim f sequentially sequentially" |
1197 |
unfolding filterlim_iff by (metis eventually_subseq) |
|
1198 |
||
1199 |
lemma subseq_o: "subseq r \<Longrightarrow> subseq s \<Longrightarrow> subseq (r \<circ> s)" |
|
1200 |
unfolding subseq_def by simp |
|
1201 |
||
63494 | 1202 |
lemma subseq_mono: "subseq r \<Longrightarrow> m < n \<Longrightarrow> r m < r n" |
1203 |
by (auto simp: subseq_def) |
|
51471 | 1204 |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
1205 |
lemma subseq_imp_inj_on: "subseq g \<Longrightarrow> inj_on g A" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
1206 |
proof (rule inj_onI) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
1207 |
assume g: "subseq g" |
63494 | 1208 |
fix x y |
1209 |
assume "g x = g y" |
|
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
1210 |
with subseq_mono[OF g, of x y] subseq_mono[OF g, of y x] show "x = y" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
1211 |
by (cases x y rule: linorder_cases) simp_all |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
1212 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
1213 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
1214 |
lemma subseq_strict_mono: "subseq g \<Longrightarrow> strict_mono g" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
1215 |
by (intro strict_monoI subseq_mono[of g]) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
1216 |
|
51471 | 1217 |
lemma incseq_imp_monoseq: "incseq X \<Longrightarrow> monoseq X" |
1218 |
by (simp add: incseq_def monoseq_def) |
|
1219 |
||
1220 |
lemma decseq_imp_monoseq: "decseq X \<Longrightarrow> monoseq X" |
|
1221 |
by (simp add: decseq_def monoseq_def) |
|
1222 |
||
63494 | 1223 |
lemma decseq_eq_incseq: "decseq X = incseq (\<lambda>n. - X n)" |
1224 |
for X :: "nat \<Rightarrow> 'a::ordered_ab_group_add" |
|
51471 | 1225 |
by (simp add: decseq_def incseq_def) |
1226 |
||
1227 |
lemma INT_decseq_offset: |
|
1228 |
assumes "decseq F" |
|
1229 |
shows "(\<Inter>i. F i) = (\<Inter>i\<in>{n..}. F i)" |
|
1230 |
proof safe |
|
63494 | 1231 |
fix x i |
1232 |
assume x: "x \<in> (\<Inter>i\<in>{n..}. F i)" |
|
51471 | 1233 |
show "x \<in> F i" |
1234 |
proof cases |
|
1235 |
from x have "x \<in> F n" by auto |
|
60758 | 1236 |
also assume "i \<le> n" with \<open>decseq F\<close> have "F n \<subseteq> F i" |
51471 | 1237 |
unfolding decseq_def by simp |
1238 |
finally show ?thesis . |
|
1239 |
qed (insert x, simp) |
|
1240 |
qed auto |
|
1241 |
||
63494 | 1242 |
lemma LIMSEQ_const_iff: "(\<lambda>n. k) \<longlonglongrightarrow> l \<longleftrightarrow> k = l" |
1243 |
for k l :: "'a::t2_space" |
|
51471 | 1244 |
using trivial_limit_sequentially by (rule tendsto_const_iff) |
1245 |
||
63494 | 1246 |
lemma LIMSEQ_SUP: "incseq X \<Longrightarrow> X \<longlonglongrightarrow> (SUP i. X i :: 'a::{complete_linorder,linorder_topology})" |
51471 | 1247 |
by (intro increasing_tendsto) |
63494 | 1248 |
(auto simp: SUP_upper less_SUP_iff incseq_def eventually_sequentially intro: less_le_trans) |
1249 |
||
1250 |
lemma LIMSEQ_INF: "decseq X \<Longrightarrow> X \<longlonglongrightarrow> (INF i. X i :: 'a::{complete_linorder,linorder_topology})" |
|
51471 | 1251 |
by (intro decreasing_tendsto) |
63494 | 1252 |
(auto simp: INF_lower INF_less_iff decseq_def eventually_sequentially intro: le_less_trans) |
1253 |
||
1254 |
lemma LIMSEQ_ignore_initial_segment: "f \<longlonglongrightarrow> a \<Longrightarrow> (\<lambda>n. f (n + k)) \<longlonglongrightarrow> a" |
|
1255 |
unfolding tendsto_def by (subst eventually_sequentially_seg[where k=k]) |
|
1256 |
||
1257 |
lemma LIMSEQ_offset: "(\<lambda>n. f (n + k)) \<longlonglongrightarrow> a \<Longrightarrow> f \<longlonglongrightarrow> a" |
|
51474
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
1258 |
unfolding tendsto_def |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
1259 |
by (subst (asm) eventually_sequentially_seg[where k=k]) |
51471 | 1260 |
|
61969 | 1261 |
lemma LIMSEQ_Suc: "f \<longlonglongrightarrow> l \<Longrightarrow> (\<lambda>n. f (Suc n)) \<longlonglongrightarrow> l" |
63494 | 1262 |
by (drule LIMSEQ_ignore_initial_segment [where k="Suc 0"]) simp |
51471 | 1263 |
|
61969 | 1264 |
lemma LIMSEQ_imp_Suc: "(\<lambda>n. f (Suc n)) \<longlonglongrightarrow> l \<Longrightarrow> f \<longlonglongrightarrow> l" |
63494 | 1265 |
by (rule LIMSEQ_offset [where k="Suc 0"]) simp |
51471 | 1266 |
|
61969 | 1267 |
lemma LIMSEQ_Suc_iff: "(\<lambda>n. f (Suc n)) \<longlonglongrightarrow> l = f \<longlonglongrightarrow> l" |
63494 | 1268 |
by (blast intro: LIMSEQ_imp_Suc LIMSEQ_Suc) |
1269 |
||
1270 |
lemma LIMSEQ_unique: "X \<longlonglongrightarrow> a \<Longrightarrow> X \<longlonglongrightarrow> b \<Longrightarrow> a = b" |
|
1271 |
for a b :: "'a::t2_space" |
|
51471 | 1272 |
using trivial_limit_sequentially by (rule tendsto_unique) |
1273 |
||
63494 | 1274 |
lemma LIMSEQ_le_const: "X \<longlonglongrightarrow> x \<Longrightarrow> \<exists>N. \<forall>n\<ge>N. a \<le> X n \<Longrightarrow> a \<le> x" |
1275 |
for a x :: "'a::linorder_topology" |
|
63952
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63713
diff
changeset
|
1276 |
by (simp add: eventually_at_top_linorder tendsto_lowerbound) |
51471 | 1277 |
|
63494 | 1278 |
lemma LIMSEQ_le: "X \<longlonglongrightarrow> x \<Longrightarrow> Y \<longlonglongrightarrow> y \<Longrightarrow> \<exists>N. \<forall>n\<ge>N. X n \<le> Y n \<Longrightarrow> x \<le> y" |
1279 |
for x y :: "'a::linorder_topology" |
|
51471 | 1280 |
using tendsto_le[of sequentially Y y X x] by (simp add: eventually_sequentially) |
1281 |
||
63494 | 1282 |
lemma LIMSEQ_le_const2: "X \<longlonglongrightarrow> x \<Longrightarrow> \<exists>N. \<forall>n\<ge>N. X n \<le> a \<Longrightarrow> x \<le> a" |
1283 |
for a x :: "'a::linorder_topology" |
|
58729
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents:
57953
diff
changeset
|
1284 |
by (rule LIMSEQ_le[of X x "\<lambda>n. a"]) auto |
51471 | 1285 |
|
63494 | 1286 |
lemma convergentD: "convergent X \<Longrightarrow> \<exists>L. X \<longlonglongrightarrow> L" |
1287 |
by (simp add: convergent_def) |
|
1288 |
||
1289 |
lemma convergentI: "X \<longlonglongrightarrow> L \<Longrightarrow> convergent X" |
|
1290 |
by (auto simp add: convergent_def) |
|
1291 |
||
1292 |
lemma convergent_LIMSEQ_iff: "convergent X \<longleftrightarrow> X \<longlonglongrightarrow> lim X" |
|
1293 |
by (auto intro: theI LIMSEQ_unique simp add: convergent_def lim_def) |
|
51471 | 1294 |
|
1295 |
lemma convergent_const: "convergent (\<lambda>n. c)" |
|
63494 | 1296 |
by (rule convergentI) (rule tendsto_const) |
51471 | 1297 |
|
1298 |
lemma monoseq_le: |
|
63494 | 1299 |
"monoseq a \<Longrightarrow> a \<longlonglongrightarrow> x \<Longrightarrow> |
1300 |
(\<forall>n. a n \<le> x) \<and> (\<forall>m. \<forall>n\<ge>m. a m \<le> a n) \<or> |
|
1301 |
(\<forall>n. x \<le> a n) \<and> (\<forall>m. \<forall>n\<ge>m. a n \<le> a m)" |
|
1302 |
for x :: "'a::linorder_topology" |
|
51471 | 1303 |
by (metis LIMSEQ_le_const LIMSEQ_le_const2 decseq_def incseq_def monoseq_iff) |
1304 |
||
63494 | 1305 |
lemma LIMSEQ_subseq_LIMSEQ: "X \<longlonglongrightarrow> L \<Longrightarrow> subseq f \<Longrightarrow> (X \<circ> f) \<longlonglongrightarrow> L" |
1306 |
unfolding comp_def by (rule filterlim_compose [of X, OF _ filterlim_subseq]) |
|
1307 |
||
1308 |
lemma convergent_subseq_convergent: "convergent X \<Longrightarrow> subseq f \<Longrightarrow> convergent (X \<circ> f)" |
|
1309 |
by (auto simp: convergent_def intro: LIMSEQ_subseq_LIMSEQ) |
|
1310 |
||
1311 |
lemma limI: "X \<longlonglongrightarrow> L \<Longrightarrow> lim X = L" |
|
57276 | 1312 |
by (rule tendsto_Lim) (rule trivial_limit_sequentially) |
51471 | 1313 |
|
63494 | 1314 |
lemma lim_le: "convergent f \<Longrightarrow> (\<And>n. f n \<le> x) \<Longrightarrow> lim f \<le> x" |
1315 |
for x :: "'a::linorder_topology" |
|
51471 | 1316 |
using LIMSEQ_le_const2[of f "lim f" x] by (simp add: convergent_LIMSEQ_iff) |
1317 |
||
62217 | 1318 |
lemma lim_const [simp]: "lim (\<lambda>m. a) = a" |
1319 |
by (simp add: limI) |
|
1320 |
||
63494 | 1321 |
|
1322 |
subsubsection \<open>Increasing and Decreasing Series\<close> |
|
1323 |
||
1324 |
lemma incseq_le: "incseq X \<Longrightarrow> X \<longlonglongrightarrow> L \<Longrightarrow> X n \<le> L" |
|
1325 |
for L :: "'a::linorder_topology" |
|
51471 | 1326 |
by (metis incseq_def LIMSEQ_le_const) |
1327 |
||
63494 | 1328 |
lemma decseq_le: "decseq X \<Longrightarrow> X \<longlonglongrightarrow> L \<Longrightarrow> L \<le> X n" |
1329 |
for L :: "'a::linorder_topology" |
|
51471 | 1330 |
by (metis decseq_def LIMSEQ_le_const2) |
1331 |
||
63494 | 1332 |
|
60758 | 1333 |
subsection \<open>First countable topologies\<close> |
51473 | 1334 |
|
1335 |
class first_countable_topology = topological_space + |
|
1336 |
assumes first_countable_basis: |
|
1337 |
"\<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))" |
|
1338 |
||
1339 |
lemma (in first_countable_topology) countable_basis_at_decseq: |
|
1340 |
obtains A :: "nat \<Rightarrow> 'a set" where |
|
1341 |
"\<And>i. open (A i)" "\<And>i. x \<in> (A i)" |
|
1342 |
"\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially" |
|
1343 |
proof atomize_elim |
|
63494 | 1344 |
from first_countable_basis[of x] obtain A :: "nat \<Rightarrow> 'a set" |
1345 |
where nhds: "\<And>i. open (A i)" "\<And>i. x \<in> A i" |
|
1346 |
and incl: "\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> \<exists>i. A i \<subseteq> S" |
|
1347 |
by auto |
|
63040 | 1348 |
define F where "F n = (\<Inter>i\<le>n. A i)" for n |
51473 | 1349 |
show "\<exists>A. (\<forall>i. open (A i)) \<and> (\<forall>i. x \<in> A i) \<and> |
63494 | 1350 |
(\<forall>S. open S \<longrightarrow> x \<in> S \<longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially)" |
51473 | 1351 |
proof (safe intro!: exI[of _ F]) |
1352 |
fix i |
|
63494 | 1353 |
show "open (F i)" |
1354 |
using nhds(1) by (auto simp: F_def) |
|
1355 |
show "x \<in> F i" |
|
1356 |
using nhds(2) by (auto simp: F_def) |
|
51473 | 1357 |
next |
63494 | 1358 |
fix S |
1359 |
assume "open S" "x \<in> S" |
|
1360 |
from incl[OF this] obtain i where "F i \<subseteq> S" |
|
1361 |
unfolding F_def by auto |
|
51473 | 1362 |
moreover have "\<And>j. i \<le> j \<Longrightarrow> F j \<subseteq> F i" |
63171 | 1363 |
by (simp add: Inf_superset_mono F_def image_mono) |
51473 | 1364 |
ultimately show "eventually (\<lambda>i. F i \<subseteq> S) sequentially" |
1365 |
by (auto simp: eventually_sequentially) |
|
1366 |
qed |
|
1367 |
qed |
|
1368 |
||
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1369 |
lemma (in first_countable_topology) nhds_countable: |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1370 |
obtains X :: "nat \<Rightarrow> 'a set" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1371 |
where "decseq X" "\<And>n. open (X n)" "\<And>n. x \<in> X n" "nhds x = (INF n. principal (X n))" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1372 |
proof - |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1373 |
from first_countable_basis obtain A :: "nat \<Rightarrow> 'a set" |
63494 | 1374 |
where *: "\<And>n. x \<in> A n" "\<And>n. open (A n)" "\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> \<exists>i. A i \<subseteq> S" |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1375 |
by metis |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1376 |
show thesis |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1377 |
proof |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1378 |
show "decseq (\<lambda>n. \<Inter>i\<le>n. A i)" |
63171 | 1379 |
by (simp add: antimono_iff_le_Suc atMost_Suc) |
63494 | 1380 |
show "x \<in> (\<Inter>i\<le>n. A i)" "\<And>n. open (\<Inter>i\<le>n. A i)" for n |
1381 |
using * by auto |
|
60585 | 1382 |
show "nhds x = (INF n. principal (\<Inter>i\<le>n. A i))" |
63494 | 1383 |
using * |
1384 |
unfolding nhds_def |
|
62343
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62217
diff
changeset
|
1385 |
apply - |
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62217
diff
changeset
|
1386 |
apply (rule INF_eq) |
63494 | 1387 |
apply simp_all |
1388 |
apply fastforce |
|
62343
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62217
diff
changeset
|
1389 |
apply (intro exI [of _ "\<Inter>i\<le>n. A i" for n] conjI open_INT) |
63494 | 1390 |
apply auto |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1391 |
done |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1392 |
qed |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1393 |
qed |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1394 |
|
51473 | 1395 |
lemma (in first_countable_topology) countable_basis: |
1396 |
obtains A :: "nat \<Rightarrow> 'a set" where |
|
1397 |
"\<And>i. open (A i)" "\<And>i. x \<in> A i" |
|
61969 | 1398 |
"\<And>F. (\<forall>n. F n \<in> A n) \<Longrightarrow> F \<longlonglongrightarrow> x" |
51473 | 1399 |
proof atomize_elim |
63494 | 1400 |
obtain A :: "nat \<Rightarrow> 'a set" where *: |
53381 | 1401 |
"\<And>i. open (A i)" |
1402 |
"\<And>i. x \<in> A i" |
|
1403 |
"\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially" |
|
1404 |
by (rule countable_basis_at_decseq) blast |
|
63494 | 1405 |
have "eventually (\<lambda>n. F n \<in> S) sequentially" |
1406 |
if "\<forall>n. F n \<in> A n" "open S" "x \<in> S" for F S |
|
1407 |
using *(3)[of S] that by (auto elim: eventually_mono simp: subset_eq) |
|
1408 |
with * 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 \<longlonglongrightarrow> x)" |
|
51473 | 1409 |
by (intro exI[of _ A]) (auto simp: tendsto_def) |
1410 |
qed |
|
1411 |
||
1412 |
lemma (in first_countable_topology) sequentially_imp_eventually_nhds_within: |
|
61969 | 1413 |
assumes "\<forall>f. (\<forall>n. f n \<in> s) \<and> f \<longlonglongrightarrow> 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
|
1414 |
shows "eventually P (inf (nhds a) (principal s))" |
51473 | 1415 |
proof (rule ccontr) |
63494 | 1416 |
obtain A :: "nat \<Rightarrow> 'a set" where *: |
53381 | 1417 |
"\<And>i. open (A i)" |
1418 |
"\<And>i. a \<in> A i" |
|
61969 | 1419 |
"\<And>F. \<forall>n. F n \<in> A n \<Longrightarrow> F \<longlonglongrightarrow> a" |
53381 | 1420 |
by (rule countable_basis) blast |
1421 |
assume "\<not> ?thesis" |
|
63494 | 1422 |
with * have "\<exists>F. \<forall>n. F n \<in> s \<and> F n \<in> A n \<and> \<not> P (F n)" |
1423 |
unfolding eventually_inf_principal eventually_nhds |
|
1424 |
by (intro choice) fastforce |
|
1425 |
then obtain F where F: "\<forall>n. F n \<in> s" and "\<forall>n. F n \<in> A n" and F': "\<forall>n. \<not> P (F n)" |
|
53381 | 1426 |
by blast |
63494 | 1427 |
with * have "F \<longlonglongrightarrow> a" |
1428 |
by auto |
|
1429 |
then have "eventually (\<lambda>n. P (F n)) sequentially" |
|
1430 |
using assms F by simp |
|
1431 |
then show False |
|
1432 |
by (simp add: F') |
|
51473 | 1433 |
qed |
1434 |
||
1435 |
lemma (in first_countable_topology) eventually_nhds_within_iff_sequentially: |
|
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
1436 |
"eventually P (inf (nhds a) (principal s)) \<longleftrightarrow> |
61969 | 1437 |
(\<forall>f. (\<forall>n. f n \<in> s) \<and> f \<longlonglongrightarrow> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially)" |
51473 | 1438 |
proof (safe intro!: sequentially_imp_eventually_nhds_within) |
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
1439 |
assume "eventually P (inf (nhds a) (principal s))" |
51473 | 1440 |
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
|
1441 |
by (auto simp: eventually_inf_principal eventually_nhds) |
63494 | 1442 |
moreover |
1443 |
fix f |
|
1444 |
assume "\<forall>n. f n \<in> s" "f \<longlonglongrightarrow> a" |
|
51473 | 1445 |
ultimately show "eventually (\<lambda>n. P (f n)) sequentially" |
61810 | 1446 |
by (auto dest!: topological_tendstoD elim: eventually_mono) |
51473 | 1447 |
qed |
1448 |
||
1449 |
lemma (in first_countable_topology) eventually_nhds_iff_sequentially: |
|
61969 | 1450 |
"eventually P (nhds a) \<longleftrightarrow> (\<forall>f. f \<longlonglongrightarrow> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially)" |
51473 | 1451 |
using eventually_nhds_within_iff_sequentially[of P a UNIV] by simp |
1452 |
||
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1453 |
lemma tendsto_at_iff_sequentially: |
63494 | 1454 |
"(f \<longlongrightarrow> a) (at x within s) \<longleftrightarrow> (\<forall>X. (\<forall>i. X i \<in> s - {x}) \<longrightarrow> X \<longlonglongrightarrow> x \<longrightarrow> ((f \<circ> X) \<longlonglongrightarrow> a))" |
1455 |
for f :: "'a::first_countable_topology \<Rightarrow> _" |
|
1456 |
unfolding filterlim_def[of _ "nhds a"] le_filter_def eventually_filtermap |
|
1457 |
at_within_def eventually_nhds_within_iff_sequentially comp_def |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1458 |
by metis |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1459 |
|
64283
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1460 |
lemma approx_from_above_dense_linorder: |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1461 |
fixes x::"'a::{dense_linorder, linorder_topology, first_countable_topology}" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1462 |
assumes "x < y" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1463 |
shows "\<exists>u. (\<forall>n. u n > x) \<and> (u \<longlonglongrightarrow> x)" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1464 |
proof - |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1465 |
obtain A :: "nat \<Rightarrow> 'a set" where A: "\<And>i. open (A i)" "\<And>i. x \<in> A i" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1466 |
"\<And>F. (\<forall>n. F n \<in> A n) \<Longrightarrow> F \<longlonglongrightarrow> x" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1467 |
by (metis first_countable_topology_class.countable_basis) |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1468 |
define u where "u = (\<lambda>n. SOME z. z \<in> A n \<and> z > x)" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1469 |
have "\<exists>z. z \<in> U \<and> x < z" if "x \<in> U" "open U" for U |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1470 |
using open_right[OF `open U` `x \<in> U` `x < y`] |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1471 |
by (meson atLeastLessThan_iff dense less_imp_le subset_eq) |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1472 |
then have *: "u n \<in> A n \<and> x < u n" for n |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1473 |
using `x \<in> A n` `open (A n)` unfolding u_def by (metis (no_types, lifting) someI_ex) |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1474 |
then have "u \<longlonglongrightarrow> x" using A(3) by simp |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1475 |
then show ?thesis using * by auto |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1476 |
qed |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1477 |
|
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1478 |
lemma approx_from_below_dense_linorder: |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1479 |
fixes x::"'a::{dense_linorder, linorder_topology, first_countable_topology}" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1480 |
assumes "x > y" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1481 |
shows "\<exists>u. (\<forall>n. u n < x) \<and> (u \<longlonglongrightarrow> x)" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1482 |
proof - |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1483 |
obtain A :: "nat \<Rightarrow> 'a set" where A: "\<And>i. open (A i)" "\<And>i. x \<in> A i" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1484 |
"\<And>F. (\<forall>n. F n \<in> A n) \<Longrightarrow> F \<longlonglongrightarrow> x" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1485 |
by (metis first_countable_topology_class.countable_basis) |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1486 |
define u where "u = (\<lambda>n. SOME z. z \<in> A n \<and> z < x)" |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1487 |
have "\<exists>z. z \<in> U \<and> z < x" if "x \<in> U" "open U" for U |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1488 |
using open_left[OF `open U` `x \<in> U` `x > y`] |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1489 |
by (meson dense greaterThanAtMost_iff less_imp_le subset_eq) |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1490 |
then have *: "u n \<in> A n \<and> u n < x" for n |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1491 |
using `x \<in> A n` `open (A n)` unfolding u_def by (metis (no_types, lifting) someI_ex) |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1492 |
then have "u \<longlonglongrightarrow> x" using A(3) by simp |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1493 |
then show ?thesis using * by auto |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1494 |
qed |
979cdfdf7a79
HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents:
64008
diff
changeset
|
1495 |
|
63494 | 1496 |
|
60758 | 1497 |
subsection \<open>Function limit at a point\<close> |
51471 | 1498 |
|
63494 | 1499 |
abbreviation LIM :: "('a::topological_space \<Rightarrow> 'b::topological_space) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> bool" |
1500 |
("((_)/ \<midarrow>(_)/\<rightarrow> (_))" [60, 0, 60] 60) |
|
1501 |
where "f \<midarrow>a\<rightarrow> L \<equiv> (f \<longlongrightarrow> L) (at a)" |
|
51471 | 1502 |
|
61976 | 1503 |
lemma tendsto_within_open: "a \<in> S \<Longrightarrow> open S \<Longrightarrow> (f \<longlongrightarrow> l) (at a within S) \<longleftrightarrow> (f \<midarrow>a\<rightarrow> l)" |
63494 | 1504 |
by (simp add: tendsto_def at_within_open[where S = S]) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1505 |
|
62397
5ae24f33d343
Substantial new material for multivariate analysis. Also removal of some duplicates.
paulson <lp15@cam.ac.uk>
parents:
62381
diff
changeset
|
1506 |
lemma tendsto_within_open_NO_MATCH: |
63494 | 1507 |
"a \<in> S \<Longrightarrow> NO_MATCH UNIV S \<Longrightarrow> open S \<Longrightarrow> (f \<longlongrightarrow> l)(at a within S) \<longleftrightarrow> (f \<longlongrightarrow> l)(at a)" |
1508 |
for f :: "'a::topological_space \<Rightarrow> 'b::topological_space" |
|
1509 |
using tendsto_within_open by blast |
|
1510 |
||
1511 |
lemma LIM_const_not_eq[tendsto_intros]: "k \<noteq> L \<Longrightarrow> \<not> (\<lambda>x. k) \<midarrow>a\<rightarrow> L" |
|
1512 |
for a :: "'a::perfect_space" and k L :: "'b::t2_space" |
|
51471 | 1513 |
by (simp add: tendsto_const_iff) |
1514 |
||
1515 |
lemmas LIM_not_zero = LIM_const_not_eq [where L = 0] |
|
1516 |
||
63494 | 1517 |
lemma LIM_const_eq: "(\<lambda>x. k) \<midarrow>a\<rightarrow> L \<Longrightarrow> k = L" |
1518 |
for a :: "'a::perfect_space" and k L :: "'b::t2_space" |
|
51471 | 1519 |
by (simp add: tendsto_const_iff) |
1520 |
||
63494 | 1521 |
lemma LIM_unique: "f \<midarrow>a\<rightarrow> L \<Longrightarrow> f \<midarrow>a\<rightarrow> M \<Longrightarrow> L = M" |
1522 |
for a :: "'a::perfect_space" and L M :: "'b::t2_space" |
|
51471 | 1523 |
using at_neq_bot by (rule tendsto_unique) |
1524 |
||
63494 | 1525 |
|
1526 |
text \<open>Limits are equal for functions equal except at limit point.\<close> |
|
1527 |
lemma LIM_equal: "\<forall>x. x \<noteq> a \<longrightarrow> f x = g x \<Longrightarrow> (f \<midarrow>a\<rightarrow> l) \<longleftrightarrow> (g \<midarrow>a\<rightarrow> l)" |
|
1528 |
by (simp add: tendsto_def eventually_at_topological) |
|
51471 | 1529 |
|
61976 | 1530 |
lemma LIM_cong: "a = b \<Longrightarrow> (\<And>x. x \<noteq> b \<Longrightarrow> f x = g x) \<Longrightarrow> l = m \<Longrightarrow> (f \<midarrow>a\<rightarrow> l) \<longleftrightarrow> (g \<midarrow>b\<rightarrow> m)" |
51471 | 1531 |
by (simp add: LIM_equal) |
1532 |
||
61976 | 1533 |
lemma LIM_cong_limit: "f \<midarrow>x\<rightarrow> L \<Longrightarrow> K = L \<Longrightarrow> f \<midarrow>x\<rightarrow> K" |
51471 | 1534 |
by simp |
1535 |
||
63494 | 1536 |
lemma tendsto_at_iff_tendsto_nhds: "g \<midarrow>l\<rightarrow> g l \<longleftrightarrow> (g \<longlongrightarrow> 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
|
1537 |
unfolding tendsto_def eventually_at_filter |
61810 | 1538 |
by (intro ext all_cong imp_cong) (auto elim!: eventually_mono) |
51471 | 1539 |
|
63494 | 1540 |
lemma tendsto_compose: "g \<midarrow>l\<rightarrow> g l \<Longrightarrow> (f \<longlongrightarrow> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) \<longlongrightarrow> g l) F" |
51471 | 1541 |
unfolding tendsto_at_iff_tendsto_nhds by (rule filterlim_compose[of g]) |
1542 |
||
1543 |
lemma tendsto_compose_eventually: |
|
61976 | 1544 |
"g \<midarrow>l\<rightarrow> m \<Longrightarrow> (f \<longlongrightarrow> l) F \<Longrightarrow> eventually (\<lambda>x. f x \<noteq> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) \<longlongrightarrow> m) F" |
51471 | 1545 |
by (rule filterlim_compose[of g _ "at l"]) (auto simp add: filterlim_at) |
1546 |
||
1547 |
lemma LIM_compose_eventually: |
|
63494 | 1548 |
assumes "f \<midarrow>a\<rightarrow> b" |
1549 |
and "g \<midarrow>b\<rightarrow> c" |
|
1550 |
and "eventually (\<lambda>x. f x \<noteq> b) (at a)" |
|
61976 | 1551 |
shows "(\<lambda>x. g (f x)) \<midarrow>a\<rightarrow> c" |
63494 | 1552 |
using assms(2,1,3) by (rule tendsto_compose_eventually) |
51471 | 1553 |
|
61973 | 1554 |
lemma tendsto_compose_filtermap: "((g \<circ> f) \<longlongrightarrow> T) F \<longleftrightarrow> (g \<longlongrightarrow> T) (filtermap f F)" |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1555 |
by (simp add: filterlim_def filtermap_filtermap comp_def) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1556 |
|
64758
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1557 |
lemma tendsto_compose_at: |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1558 |
assumes f: "(f \<longlongrightarrow> y) F" and g: "(g \<longlongrightarrow> z) (at y)" and fg: "eventually (\<lambda>w. f w = y \<longrightarrow> g y = z) F" |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1559 |
shows "((g \<circ> f) \<longlongrightarrow> z) F" |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1560 |
proof - |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1561 |
have "(\<forall>\<^sub>F a in F. f a \<noteq> y) \<or> g y = z" |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1562 |
using fg by force |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1563 |
moreover have "(g \<longlongrightarrow> z) (filtermap f F) \<or> \<not> (\<forall>\<^sub>F a in F. f a \<noteq> y)" |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1564 |
by (metis (no_types) filterlim_atI filterlim_def tendsto_mono f g) |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1565 |
ultimately show ?thesis |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1566 |
by (metis (no_types) f filterlim_compose filterlim_filtermap g tendsto_at_iff_tendsto_nhds tendsto_compose_filtermap) |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1567 |
qed |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
1568 |
|
63494 | 1569 |
|
1570 |
subsubsection \<open>Relation of \<open>LIM\<close> and \<open>LIMSEQ\<close>\<close> |
|
51473 | 1571 |
|
1572 |
lemma (in first_countable_topology) sequentially_imp_eventually_within: |
|
61969 | 1573 |
"(\<forall>f. (\<forall>n. f n \<in> s \<and> f n \<noteq> a) \<and> f \<longlonglongrightarrow> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially) \<Longrightarrow> |
51473 | 1574 |
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
|
1575 |
unfolding at_within_def |
51473 | 1576 |
by (intro sequentially_imp_eventually_nhds_within) auto |
1577 |
||
1578 |
lemma (in first_countable_topology) sequentially_imp_eventually_at: |
|
61969 | 1579 |
"(\<forall>f. (\<forall>n. f n \<noteq> a) \<and> f \<longlonglongrightarrow> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially) \<Longrightarrow> eventually P (at a)" |
63092 | 1580 |
using sequentially_imp_eventually_within [where s=UNIV] by simp |
51473 | 1581 |
|
1582 |
lemma LIMSEQ_SEQ_conv1: |
|
1583 |
fixes f :: "'a::topological_space \<Rightarrow> 'b::topological_space" |
|
61976 | 1584 |
assumes f: "f \<midarrow>a\<rightarrow> l" |
61969 | 1585 |
shows "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S \<longlonglongrightarrow> a \<longrightarrow> (\<lambda>n. f (S n)) \<longlonglongrightarrow> l" |
51473 | 1586 |
using tendsto_compose_eventually [OF f, where F=sequentially] by simp |
1587 |
||
1588 |
lemma LIMSEQ_SEQ_conv2: |
|
1589 |
fixes f :: "'a::first_countable_topology \<Rightarrow> 'b::topological_space" |
|
61969 | 1590 |
assumes "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S \<longlonglongrightarrow> a \<longrightarrow> (\<lambda>n. f (S n)) \<longlonglongrightarrow> l" |
61976 | 1591 |
shows "f \<midarrow>a\<rightarrow> l" |
51473 | 1592 |
using assms unfolding tendsto_def [where l=l] by (simp add: sequentially_imp_eventually_at) |
1593 |
||
63494 | 1594 |
lemma LIMSEQ_SEQ_conv: "(\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S \<longlonglongrightarrow> a \<longrightarrow> (\<lambda>n. X (S n)) \<longlonglongrightarrow> L) \<longleftrightarrow> X \<midarrow>a\<rightarrow> L" |
1595 |
for a :: "'a::first_countable_topology" and L :: "'b::topological_space" |
|
51473 | 1596 |
using LIMSEQ_SEQ_conv2 LIMSEQ_SEQ_conv1 .. |
1597 |
||
57025 | 1598 |
lemma sequentially_imp_eventually_at_left: |
63494 | 1599 |
fixes a :: "'a::{linorder_topology,first_countable_topology}" |
57025 | 1600 |
assumes b[simp]: "b < a" |
63494 | 1601 |
and *: "\<And>f. (\<And>n. b < f n) \<Longrightarrow> (\<And>n. f n < a) \<Longrightarrow> incseq f \<Longrightarrow> f \<longlonglongrightarrow> a \<Longrightarrow> |
1602 |
eventually (\<lambda>n. P (f n)) sequentially" |
|
57025 | 1603 |
shows "eventually P (at_left a)" |
1604 |
proof (safe intro!: sequentially_imp_eventually_within) |
|
63494 | 1605 |
fix X |
1606 |
assume X: "\<forall>n. X n \<in> {..< a} \<and> X n \<noteq> a" "X \<longlonglongrightarrow> a" |
|
57025 | 1607 |
show "eventually (\<lambda>n. P (X n)) sequentially" |
1608 |
proof (rule ccontr) |
|
63494 | 1609 |
assume neg: "\<not> ?thesis" |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1610 |
have "\<exists>s. \<forall>n. (\<not> P (X (s n)) \<and> b < X (s n)) \<and> (X (s n) \<le> X (s (Suc n)) \<and> Suc (s n) \<le> s (Suc n))" |
63494 | 1611 |
(is "\<exists>s. ?P s") |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1612 |
proof (rule dependent_nat_choice) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1613 |
have "\<not> eventually (\<lambda>n. b < X n \<longrightarrow> P (X n)) sequentially" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1614 |
by (intro not_eventually_impI neg order_tendstoD(1) [OF X(2) b]) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1615 |
then show "\<exists>x. \<not> P (X x) \<and> b < X x" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1616 |
by (auto dest!: not_eventuallyD) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1617 |
next |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1618 |
fix x n |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1619 |
have "\<not> eventually (\<lambda>n. Suc x \<le> n \<longrightarrow> b < X n \<longrightarrow> X x < X n \<longrightarrow> P (X n)) sequentially" |
63494 | 1620 |
using X |
1621 |
by (intro not_eventually_impI order_tendstoD(1)[OF X(2)] eventually_ge_at_top neg) auto |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1622 |
then show "\<exists>n. (\<not> P (X n) \<and> b < X n) \<and> (X x \<le> X n \<and> Suc x \<le> n)" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1623 |
by (auto dest!: not_eventuallyD) |
57025 | 1624 |
qed |
63494 | 1625 |
then obtain s where "?P s" .. |
1626 |
with X have "b < X (s n)" |
|
1627 |
and "X (s n) < a" |
|
1628 |
and "incseq (\<lambda>n. X (s n))" |
|
1629 |
and "(\<lambda>n. X (s n)) \<longlonglongrightarrow> a" |
|
1630 |
and "\<not> P (X (s n))" |
|
1631 |
for n |
|
1632 |
by (auto simp: subseq_Suc_iff Suc_le_eq incseq_Suc_iff |
|
1633 |
intro!: LIMSEQ_subseq_LIMSEQ[OF \<open>X \<longlonglongrightarrow> a\<close>, unfolded comp_def]) |
|
1634 |
from *[OF this(1,2,3,4)] this(5) show False |
|
1635 |
by auto |
|
57025 | 1636 |
qed |
1637 |
qed |
|
1638 |
||
1639 |
lemma tendsto_at_left_sequentially: |
|
63494 | 1640 |
fixes a b :: "'b::{linorder_topology,first_countable_topology}" |
57025 | 1641 |
assumes "b < a" |
63494 | 1642 |
assumes *: "\<And>S. (\<And>n. S n < a) \<Longrightarrow> (\<And>n. b < S n) \<Longrightarrow> incseq S \<Longrightarrow> S \<longlonglongrightarrow> a \<Longrightarrow> |
1643 |
(\<lambda>n. X (S n)) \<longlonglongrightarrow> L" |
|
61973 | 1644 |
shows "(X \<longlongrightarrow> L) (at_left a)" |
63494 | 1645 |
using assms by (simp add: tendsto_def [where l=L] sequentially_imp_eventually_at_left) |
57025 | 1646 |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1647 |
lemma sequentially_imp_eventually_at_right: |
63494 | 1648 |
fixes a b :: "'a::{linorder_topology,first_countable_topology}" |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1649 |
assumes b[simp]: "a < b" |
63494 | 1650 |
assumes *: "\<And>f. (\<And>n. a < f n) \<Longrightarrow> (\<And>n. f n < b) \<Longrightarrow> decseq f \<Longrightarrow> f \<longlonglongrightarrow> a \<Longrightarrow> |
1651 |
eventually (\<lambda>n. P (f n)) sequentially" |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1652 |
shows "eventually P (at_right a)" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1653 |
proof (safe intro!: sequentially_imp_eventually_within) |
63494 | 1654 |
fix X |
1655 |
assume X: "\<forall>n. X n \<in> {a <..} \<and> X n \<noteq> a" "X \<longlonglongrightarrow> a" |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1656 |
show "eventually (\<lambda>n. P (X n)) sequentially" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1657 |
proof (rule ccontr) |
63494 | 1658 |
assume neg: "\<not> ?thesis" |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1659 |
have "\<exists>s. \<forall>n. (\<not> P (X (s n)) \<and> X (s n) < b) \<and> (X (s (Suc n)) \<le> X (s n) \<and> Suc (s n) \<le> s (Suc n))" |
63494 | 1660 |
(is "\<exists>s. ?P s") |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1661 |
proof (rule dependent_nat_choice) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1662 |
have "\<not> eventually (\<lambda>n. X n < b \<longrightarrow> P (X n)) sequentially" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1663 |
by (intro not_eventually_impI neg order_tendstoD(2) [OF X(2) b]) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1664 |
then show "\<exists>x. \<not> P (X x) \<and> X x < b" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1665 |
by (auto dest!: not_eventuallyD) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1666 |
next |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1667 |
fix x n |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1668 |
have "\<not> eventually (\<lambda>n. Suc x \<le> n \<longrightarrow> X n < b \<longrightarrow> X n < X x \<longrightarrow> P (X n)) sequentially" |
63494 | 1669 |
using X |
1670 |
by (intro not_eventually_impI order_tendstoD(2)[OF X(2)] eventually_ge_at_top neg) auto |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1671 |
then show "\<exists>n. (\<not> P (X n) \<and> X n < b) \<and> (X n \<le> X x \<and> Suc x \<le> n)" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1672 |
by (auto dest!: not_eventuallyD) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1673 |
qed |
63494 | 1674 |
then obtain s where "?P s" .. |
1675 |
with X have "a < X (s n)" |
|
1676 |
and "X (s n) < b" |
|
1677 |
and "decseq (\<lambda>n. X (s n))" |
|
1678 |
and "(\<lambda>n. X (s n)) \<longlonglongrightarrow> a" |
|
1679 |
and "\<not> P (X (s n))" |
|
1680 |
for n |
|
1681 |
by (auto simp: subseq_Suc_iff Suc_le_eq decseq_Suc_iff |
|
1682 |
intro!: LIMSEQ_subseq_LIMSEQ[OF \<open>X \<longlonglongrightarrow> a\<close>, unfolded comp_def]) |
|
1683 |
from *[OF this(1,2,3,4)] this(5) show False |
|
1684 |
by auto |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1685 |
qed |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1686 |
qed |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1687 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1688 |
lemma tendsto_at_right_sequentially: |
60172
423273355b55
rename continuous and down_continuous in Order_Continuity to sup_/inf_continuous; relate them with topological continuity
hoelzl
parents:
60150
diff
changeset
|
1689 |
fixes a :: "_ :: {linorder_topology, first_countable_topology}" |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1690 |
assumes "a < b" |
63494 | 1691 |
and *: "\<And>S. (\<And>n. a < S n) \<Longrightarrow> (\<And>n. S n < b) \<Longrightarrow> decseq S \<Longrightarrow> S \<longlonglongrightarrow> a \<Longrightarrow> |
1692 |
(\<lambda>n. X (S n)) \<longlonglongrightarrow> L" |
|
61973 | 1693 |
shows "(X \<longlongrightarrow> L) (at_right a)" |
63494 | 1694 |
using assms by (simp add: tendsto_def [where l=L] sequentially_imp_eventually_at_right) |
1695 |
||
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1696 |
|
60758 | 1697 |
subsection \<open>Continuity\<close> |
51471 | 1698 |
|
60758 | 1699 |
subsubsection \<open>Continuity on a set\<close> |
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
|
1700 |
|
63494 | 1701 |
definition continuous_on :: "'a set \<Rightarrow> ('a::topological_space \<Rightarrow> 'b::topological_space) \<Rightarrow> bool" |
1702 |
where "continuous_on s f \<longleftrightarrow> (\<forall>x\<in>s. (f \<longlongrightarrow> f x) (at x within s))" |
|
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
|
1703 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1704 |
lemma continuous_on_cong [cong]: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1705 |
"s = t \<Longrightarrow> (\<And>x. x \<in> t \<Longrightarrow> f x = g x) \<Longrightarrow> continuous_on s f \<longleftrightarrow> continuous_on t g" |
63494 | 1706 |
unfolding continuous_on_def |
1707 |
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
|
1708 |
|
64008
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63952
diff
changeset
|
1709 |
lemma continuous_on_strong_cong: |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63952
diff
changeset
|
1710 |
"s = t \<Longrightarrow> (\<And>x. x \<in> t =simp=> f x = g x) \<Longrightarrow> continuous_on s f \<longleftrightarrow> continuous_on t g" |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63952
diff
changeset
|
1711 |
unfolding simp_implies_def by (rule continuous_on_cong) |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63952
diff
changeset
|
1712 |
|
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
|
1713 |
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
|
1714 |
"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
|
1715 |
(\<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
|
1716 |
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
|
1717 |
|
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
|
1718 |
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
|
1719 |
"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
|
1720 |
proof safe |
63494 | 1721 |
fix B :: "'b set" |
1722 |
assume "continuous_on s f" "open B" |
|
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
|
1723 |
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
|
1724 |
by (auto simp: continuous_on_topological subset_eq Ball_def imp_conjL) |
53381 | 1725 |
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" |
1726 |
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
|
1727 |
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
|
1728 |
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
|
1729 |
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
|
1730 |
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
|
1731 |
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
|
1732 |
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
|
1733 |
proof safe |
63494 | 1734 |
fix x B |
1735 |
assume "x \<in> s" "open B" "f x \<in> B" |
|
1736 |
with B obtain A where A: "open A" "A \<inter> s = f -` B \<inter> s" |
|
1737 |
by auto |
|
60758 | 1738 |
with \<open>x \<in> s\<close> \<open>f x \<in> B\<close> show "\<exists>A. open A \<and> x \<in> A \<and> (\<forall>y\<in>s. y \<in> A \<longrightarrow> f y \<in> B)" |
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
|
1739 |
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
|
1740 |
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
|
1741 |
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
|
1742 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1743 |
lemma continuous_on_open_vimage: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1744 |
"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
|
1745 |
unfolding continuous_on_open_invariant |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1746 |
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
|
1747 |
|
55734 | 1748 |
corollary continuous_imp_open_vimage: |
1749 |
assumes "continuous_on s f" "open s" "open B" "f -` B \<subseteq> s" |
|
63494 | 1750 |
shows "open (f -` B)" |
1751 |
by (metis assms continuous_on_open_vimage le_iff_inf) |
|
55734 | 1752 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1753 |
corollary open_vimage[continuous_intros]: |
63494 | 1754 |
assumes "open s" |
1755 |
and "continuous_on UNIV f" |
|
55775 | 1756 |
shows "open (f -` s)" |
63494 | 1757 |
using assms by (simp add: continuous_on_open_vimage [OF open_UNIV]) |
55775 | 1758 |
|
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
|
1759 |
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
|
1760 |
"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
|
1761 |
proof - |
63494 | 1762 |
have *: "(\<And>A. P A \<longleftrightarrow> Q (- A)) \<Longrightarrow> (\<forall>A. P A) \<longleftrightarrow> (\<forall>A. Q A)" |
1763 |
for P Q :: "'b set \<Rightarrow> bool" |
|
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
|
1764 |
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
|
1765 |
show ?thesis |
63494 | 1766 |
unfolding continuous_on_open_invariant |
1767 |
by (intro *) (auto simp: open_closed[symmetric]) |
|
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
|
1768 |
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
|
1769 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1770 |
lemma continuous_on_closed_vimage: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1771 |
"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
|
1772 |
unfolding continuous_on_closed_invariant |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1773 |
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
|
1774 |
|
61426
d53db136e8fd
new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents:
61342
diff
changeset
|
1775 |
corollary closed_vimage_Int[continuous_intros]: |
63494 | 1776 |
assumes "closed s" |
1777 |
and "continuous_on t f" |
|
1778 |
and t: "closed t" |
|
61426
d53db136e8fd
new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents:
61342
diff
changeset
|
1779 |
shows "closed (f -` s \<inter> t)" |
63494 | 1780 |
using assms by (simp add: continuous_on_closed_vimage [OF t]) |
61426
d53db136e8fd
new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents:
61342
diff
changeset
|
1781 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1782 |
corollary closed_vimage[continuous_intros]: |
63494 | 1783 |
assumes "closed s" |
1784 |
and "continuous_on UNIV f" |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1785 |
shows "closed (f -` s)" |
61426
d53db136e8fd
new material on path_component_sets, inside, outside, etc. And more default simprules
paulson <lp15@cam.ac.uk>
parents:
61342
diff
changeset
|
1786 |
using closed_vimage_Int [OF assms] by simp |
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1787 |
|
62843
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents:
62533
diff
changeset
|
1788 |
lemma continuous_on_empty [simp]: "continuous_on {} f" |
61907
f0c894ab18c9
Liouville theorem, Fundamental Theorem of Algebra, etc.
paulson <lp15@cam.ac.uk>
parents:
61810
diff
changeset
|
1789 |
by (simp add: continuous_on_def) |
f0c894ab18c9
Liouville theorem, Fundamental Theorem of Algebra, etc.
paulson <lp15@cam.ac.uk>
parents:
61810
diff
changeset
|
1790 |
|
62843
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents:
62533
diff
changeset
|
1791 |
lemma continuous_on_sing [simp]: "continuous_on {x} f" |
61907
f0c894ab18c9
Liouville theorem, Fundamental Theorem of Algebra, etc.
paulson <lp15@cam.ac.uk>
parents:
61810
diff
changeset
|
1792 |
by (simp add: continuous_on_def at_within_def) |
f0c894ab18c9
Liouville theorem, Fundamental Theorem of Algebra, etc.
paulson <lp15@cam.ac.uk>
parents:
61810
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_open_Union: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1795 |
"(\<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" |
63494 | 1796 |
unfolding continuous_on_def |
1797 |
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
|
1798 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1799 |
lemma continuous_on_open_UN: |
63494 | 1800 |
"(\<And>s. s \<in> S \<Longrightarrow> open (A s)) \<Longrightarrow> (\<And>s. s \<in> S \<Longrightarrow> continuous_on (A s) f) \<Longrightarrow> |
1801 |
continuous_on (\<Union>s\<in>S. A s) f" |
|
62343
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62217
diff
changeset
|
1802 |
by (rule continuous_on_open_Union) auto |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1803 |
|
61204 | 1804 |
lemma continuous_on_open_Un: |
1805 |
"open s \<Longrightarrow> open t \<Longrightarrow> continuous_on s f \<Longrightarrow> continuous_on t f \<Longrightarrow> continuous_on (s \<union> t) f" |
|
1806 |
using continuous_on_open_Union [of "{s,t}"] by auto |
|
1807 |
||
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1808 |
lemma continuous_on_closed_Un: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1809 |
"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
|
1810 |
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
|
1811 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1812 |
lemma continuous_on_If: |
63494 | 1813 |
assumes closed: "closed s" "closed t" |
1814 |
and cont: "continuous_on s f" "continuous_on t g" |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1815 |
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" |
63494 | 1816 |
shows "continuous_on (s \<union> t) (\<lambda>x. if P x then f x else g x)" |
1817 |
(is "continuous_on _ ?h") |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1818 |
proof- |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1819 |
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
|
1820 |
by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1821 |
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
|
1822 |
by simp_all |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1823 |
with closed show ?thesis |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1824 |
by (rule continuous_on_closed_Un) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1825 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1826 |
|
65036
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1827 |
lemma continuous_on_cases: |
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1828 |
"closed s \<Longrightarrow> closed t \<Longrightarrow> continuous_on s f \<Longrightarrow> continuous_on t g \<Longrightarrow> |
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1829 |
\<forall>x. (x\<in>s \<and> \<not> P x) \<or> (x \<in> t \<and> P x) \<longrightarrow> f x = g x \<Longrightarrow> |
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1830 |
continuous_on (s \<union> t) (\<lambda>x. if P x then f x else g x)" |
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1831 |
by (rule continuous_on_If) auto |
ab7e11730ad8
Some new lemmas. Existing lemmas modified to use uniform_limit rather than its expansion
paulson <lp15@cam.ac.uk>
parents:
64969
diff
changeset
|
1832 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1833 |
lemma continuous_on_id[continuous_intros]: "continuous_on s (\<lambda>x. x)" |
58729
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents:
57953
diff
changeset
|
1834 |
unfolding continuous_on_def by fast |
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
|
1835 |
|
63301 | 1836 |
lemma continuous_on_id'[continuous_intros]: "continuous_on s id" |
1837 |
unfolding continuous_on_def id_def by fast |
|
1838 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1839 |
lemma continuous_on_const[continuous_intros]: "continuous_on s (\<lambda>x. c)" |
58729
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents:
57953
diff
changeset
|
1840 |
unfolding continuous_on_def by auto |
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 |
|
61738
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
paulson <lp15@cam.ac.uk>
parents:
61531
diff
changeset
|
1842 |
lemma continuous_on_subset: "continuous_on s f \<Longrightarrow> t \<subseteq> s \<Longrightarrow> continuous_on t f" |
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
paulson <lp15@cam.ac.uk>
parents:
61531
diff
changeset
|
1843 |
unfolding continuous_on_def by (metis subset_eq tendsto_within_subset) |
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
paulson <lp15@cam.ac.uk>
parents:
61531
diff
changeset
|
1844 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1845 |
lemma continuous_on_compose[continuous_intros]: |
63494 | 1846 |
"continuous_on s f \<Longrightarrow> continuous_on (f ` s) g \<Longrightarrow> continuous_on s (g \<circ> f)" |
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
|
1847 |
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
|
1848 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1849 |
lemma continuous_on_compose2: |
61738
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
paulson <lp15@cam.ac.uk>
parents:
61531
diff
changeset
|
1850 |
"continuous_on t g \<Longrightarrow> continuous_on s f \<Longrightarrow> f ` s \<subseteq> t \<Longrightarrow> continuous_on s (\<lambda>x. g (f x))" |
c4f6031f1310
New material about paths, winding numbers, etc. Added lemmas to divide_const_simps. Misc tuning.
paulson <lp15@cam.ac.uk>
parents:
61531
diff
changeset
|
1851 |
using continuous_on_compose[of s f g] continuous_on_subset by (force simp add: comp_def) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1852 |
|
60720 | 1853 |
lemma continuous_on_generate_topology: |
1854 |
assumes *: "open = generate_topology X" |
|
63494 | 1855 |
and **: "\<And>B. B \<in> X \<Longrightarrow> \<exists>C. open C \<and> C \<inter> A = f -` B \<inter> A" |
60720 | 1856 |
shows "continuous_on A f" |
1857 |
unfolding continuous_on_open_invariant |
|
1858 |
proof safe |
|
63494 | 1859 |
fix B :: "'a set" |
1860 |
assume "open B" |
|
1861 |
then show "\<exists>C. open C \<and> C \<inter> A = f -` B \<inter> A" |
|
60720 | 1862 |
unfolding * |
63494 | 1863 |
proof induct |
60720 | 1864 |
case (UN K) |
1865 |
then obtain C where "\<And>k. k \<in> K \<Longrightarrow> open (C k)" "\<And>k. k \<in> K \<Longrightarrow> C k \<inter> A = f -` k \<inter> A" |
|
1866 |
by metis |
|
1867 |
then show ?case |
|
1868 |
by (intro exI[of _ "\<Union>k\<in>K. C k"]) blast |
|
1869 |
qed (auto intro: **) |
|
1870 |
qed |
|
1871 |
||
1872 |
lemma continuous_onI_mono: |
|
63494 | 1873 |
fixes f :: "'a::linorder_topology \<Rightarrow> 'b::{dense_order,linorder_topology}" |
60720 | 1874 |
assumes "open (f`A)" |
63494 | 1875 |
and mono: "\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
60720 | 1876 |
shows "continuous_on A f" |
1877 |
proof (rule continuous_on_generate_topology[OF open_generated_order], safe) |
|
1878 |
have monoD: "\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> f x < f y \<Longrightarrow> x < y" |
|
1879 |
by (auto simp: not_le[symmetric] mono) |
|
63494 | 1880 |
have "\<exists>x. x \<in> A \<and> f x < b \<and> a < x" if a: "a \<in> A" and fa: "f a < b" for a b |
1881 |
proof - |
|
1882 |
obtain y where "f a < y" "{f a ..< y} \<subseteq> f`A" |
|
1883 |
using open_right[OF \<open>open (f`A)\<close>, of "f a" b] a fa |
|
60720 | 1884 |
by auto |
63494 | 1885 |
obtain z where z: "f a < z" "z < min b y" |
60720 | 1886 |
using dense[of "f a" "min b y"] \<open>f a < y\<close> \<open>f a < b\<close> by auto |
63494 | 1887 |
then obtain c where "z = f c" "c \<in> A" |
60720 | 1888 |
using \<open>{f a ..< y} \<subseteq> f`A\<close>[THEN subsetD, of z] by (auto simp: less_imp_le) |
63494 | 1889 |
with a z show ?thesis |
1890 |
by (auto intro!: exI[of _ c] simp: monoD) |
|
1891 |
qed |
|
60720 | 1892 |
then show "\<exists>C. open C \<and> C \<inter> A = f -` {..<b} \<inter> A" for b |
1893 |
by (intro exI[of _ "(\<Union>x\<in>{x\<in>A. f x < b}. {..< x})"]) |
|
1894 |
(auto intro: le_less_trans[OF mono] less_imp_le) |
|
1895 |
||
63494 | 1896 |
have "\<exists>x. x \<in> A \<and> b < f x \<and> x < a" if a: "a \<in> A" and fa: "b < f a" for a b |
1897 |
proof - |
|
1898 |
note a fa |
|
60720 | 1899 |
moreover |
63494 | 1900 |
obtain y where "y < f a" "{y <.. f a} \<subseteq> f`A" |
1901 |
using open_left[OF \<open>open (f`A)\<close>, of "f a" b] a fa |
|
60720 | 1902 |
by auto |
63494 | 1903 |
then obtain z where z: "max b y < z" "z < f a" |
60720 | 1904 |
using dense[of "max b y" "f a"] \<open>y < f a\<close> \<open>b < f a\<close> by auto |
63494 | 1905 |
then obtain c where "z = f c" "c \<in> A" |
60720 | 1906 |
using \<open>{y <.. f a} \<subseteq> f`A\<close>[THEN subsetD, of z] by (auto simp: less_imp_le) |
63494 | 1907 |
with a z show ?thesis |
1908 |
by (auto intro!: exI[of _ c] simp: monoD) |
|
1909 |
qed |
|
60720 | 1910 |
then show "\<exists>C. open C \<and> C \<inter> A = f -` {b <..} \<inter> A" for b |
1911 |
by (intro exI[of _ "(\<Union>x\<in>{x\<in>A. b < f x}. {x <..})"]) |
|
1912 |
(auto intro: less_le_trans[OF _ mono] less_imp_le) |
|
1913 |
qed |
|
1914 |
||
63494 | 1915 |
|
60758 | 1916 |
subsubsection \<open>Continuity at a point\<close> |
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
|
1917 |
|
63494 | 1918 |
definition continuous :: "'a::t2_space filter \<Rightarrow> ('a \<Rightarrow> 'b::topological_space) \<Rightarrow> bool" |
1919 |
where "continuous F f \<longleftrightarrow> (f \<longlongrightarrow> f (Lim F (\<lambda>x. x))) F" |
|
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
|
1920 |
|
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 |
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
|
1922 |
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
|
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_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
|
1925 |
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
|
1926 |
|
61973 | 1927 |
lemma continuous_within: "continuous (at x within s) f \<longleftrightarrow> (f \<longlongrightarrow> 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
|
1928 |
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
|
1929 |
|
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 |
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
|
1931 |
"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
|
1932 |
(\<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
|
1933 |
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
|
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_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
|
1936 |
"continuous (at x within s) f \<Longrightarrow> continuous (at (f x) within f ` s) g \<Longrightarrow> |
63494 | 1937 |
continuous (at x within s) (g \<circ> f)" |
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
|
1938 |
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
|
1939 |
|
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 |
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
|
1941 |
"continuous (at x within s) f \<Longrightarrow> continuous (at (f x) within f ` s) g \<Longrightarrow> |
63494 | 1942 |
continuous (at x within s) (\<lambda>x. g (f 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
|
1943 |
using continuous_within_compose[of x s f g] by (simp add: comp_def) |
51471 | 1944 |
|
61976 | 1945 |
lemma continuous_at: "continuous (at x) f \<longleftrightarrow> f \<midarrow>x\<rightarrow> f 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
|
1946 |
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
|
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_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
|
1949 |
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
|
1950 |
|
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
|
1951 |
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
|
1952 |
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
|
1953 |
|
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
|
1954 |
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
|
1955 |
"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
|
1956 |
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
|
1957 |
|
63494 | 1958 |
abbreviation isCont :: "('a::t2_space \<Rightarrow> 'b::topological_space) \<Rightarrow> 'a \<Rightarrow> bool" |
1959 |
where "isCont f a \<equiv> continuous (at a) f" |
|
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
|
1960 |
|
61976 | 1961 |
lemma isCont_def: "isCont f a \<longleftrightarrow> f \<midarrow>a\<rightarrow> f a" |
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
|
1962 |
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
|
1963 |
|
63295
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
1964 |
lemma isCont_cong: |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
1965 |
assumes "eventually (\<lambda>x. f x = g x) (nhds x)" |
63494 | 1966 |
shows "isCont f x \<longleftrightarrow> isCont g x" |
63295
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
1967 |
proof - |
63494 | 1968 |
from assms have [simp]: "f x = g x" |
1969 |
by (rule eventually_nhds_x_imp_x) |
|
63295
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
1970 |
from assms have "eventually (\<lambda>x. f x = g x) (at x)" |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
1971 |
by (auto simp: eventually_at_filter elim!: eventually_mono) |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
1972 |
with assms have "isCont f x \<longleftrightarrow> isCont g x" unfolding isCont_def |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
1973 |
by (intro filterlim_cong) (auto elim!: eventually_mono) |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
1974 |
with assms show ?thesis by simp |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
1975 |
qed |
52792bb9126e
Facts about HK integration, complex powers, Gamma function
eberlm
parents:
63171
diff
changeset
|
1976 |
|
60762 | 1977 |
lemma continuous_at_imp_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
|
1978 |
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
|
1979 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1980 |
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
|
1981 |
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
|
1982 |
|
62083 | 1983 |
lemma continuous_within_open: "a \<in> A \<Longrightarrow> open A \<Longrightarrow> continuous (at a within A) f \<longleftrightarrow> isCont f a" |
1984 |
by (simp add: at_within_open_NO_MATCH) |
|
1985 |
||
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
|
1986 |
lemma continuous_at_imp_continuous_on: "\<forall>x\<in>s. isCont f x \<Longrightarrow> continuous_on s f" |
60762 | 1987 |
by (auto intro: continuous_at_imp_continuous_at_within simp: continuous_on_eq_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
|
1988 |
|
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
|
1989 |
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
|
1990 |
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
|
1991 |
|
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
|
1992 |
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
|
1993 |
unfolding o_def by (rule isCont_o2) |
51471 | 1994 |
|
61973 | 1995 |
lemma isCont_tendsto_compose: "isCont g l \<Longrightarrow> (f \<longlongrightarrow> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) \<longlongrightarrow> g l) F" |
51471 | 1996 |
unfolding isCont_def by (rule tendsto_compose) |
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
1997 |
|
62049
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
1998 |
lemma continuous_on_tendsto_compose: |
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
1999 |
assumes f_cont: "continuous_on s f" |
63494 | 2000 |
and g: "(g \<longlongrightarrow> l) F" |
2001 |
and l: "l \<in> s" |
|
2002 |
and ev: "\<forall>\<^sub>Fx in F. g x \<in> s" |
|
62049
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
2003 |
shows "((\<lambda>x. f (g x)) \<longlongrightarrow> f l) F" |
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
2004 |
proof - |
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
2005 |
from f_cont l have f: "(f \<longlongrightarrow> f l) (at l within s)" |
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
2006 |
by (simp add: continuous_on_def) |
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
2007 |
have i: "((\<lambda>x. if g x = l then f l else f (g x)) \<longlongrightarrow> f l) F" |
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
2008 |
by (rule filterlim_If) |
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
2009 |
(auto intro!: filterlim_compose[OF f] eventually_conj tendsto_mono[OF _ g] |
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
2010 |
simp: filterlim_at eventually_inf_principal eventually_mono[OF ev]) |
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
2011 |
show ?thesis |
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
2012 |
by (rule filterlim_cong[THEN iffD1[OF _ i]]) auto |
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
eberlm
parents:
61976
diff
changeset
|
2013 |
qed |
51471 | 2014 |
|
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
|
2015 |
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
|
2016 |
"isCont g (f x) \<Longrightarrow> continuous (at x within s) f \<Longrightarrow> continuous (at x within s) (\<lambda>x. g (f x))" |
63171 | 2017 |
using continuous_at_imp_continuous_at_within continuous_within_compose2 by blast |
51471 | 2018 |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
2019 |
lemma filtermap_nhds_open_map: |
63494 | 2020 |
assumes cont: "isCont f a" |
2021 |
and open_map: "\<And>S. open S \<Longrightarrow> open (f`S)" |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
2022 |
shows "filtermap f (nhds a) = nhds (f a)" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
2023 |
unfolding filter_eq_iff |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
2024 |
proof safe |
63494 | 2025 |
fix P |
2026 |
assume "eventually P (filtermap f (nhds a))" |
|
2027 |
then obtain S where "open S" "a \<in> S" "\<forall>x\<in>S. P (f x)" |
|
2028 |
by (auto simp: eventually_filtermap eventually_nhds) |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
2029 |
then show "eventually P (nhds (f a))" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
2030 |
unfolding eventually_nhds by (intro exI[of _ "f`S"]) (auto intro!: open_map) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
2031 |
qed (metis filterlim_iff tendsto_at_iff_tendsto_nhds isCont_def eventually_filtermap cont) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
2032 |
|
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
2033 |
lemma continuous_at_split: |
63494 | 2034 |
"continuous (at x) f \<longleftrightarrow> continuous (at_left x) f \<and> continuous (at_right x) f" |
2035 |
for x :: "'a::linorder_topology" |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
2036 |
by (simp add: continuous_within filterlim_at_split) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
2037 |
|
63494 | 2038 |
text \<open> |
63495 | 2039 |
The following open/closed Collect lemmas are ported from |
2040 |
Sébastien Gouëzel's \<open>Ergodic_Theory\<close>. |
|
63494 | 2041 |
\<close> |
63332 | 2042 |
lemma open_Collect_neq: |
63494 | 2043 |
fixes f g :: "'a::topological_space \<Rightarrow> 'b::t2_space" |
63332 | 2044 |
assumes f: "continuous_on UNIV f" and g: "continuous_on UNIV g" |
2045 |
shows "open {x. f x \<noteq> g x}" |
|
2046 |
proof (rule openI) |
|
63494 | 2047 |
fix t |
2048 |
assume "t \<in> {x. f x \<noteq> g x}" |
|
63332 | 2049 |
then obtain U V where *: "open U" "open V" "f t \<in> U" "g t \<in> V" "U \<inter> V = {}" |
2050 |
by (auto simp add: separation_t2) |
|
2051 |
with open_vimage[OF \<open>open U\<close> f] open_vimage[OF \<open>open V\<close> g] |
|
2052 |
show "\<exists>T. open T \<and> t \<in> T \<and> T \<subseteq> {x. f x \<noteq> g x}" |
|
2053 |
by (intro exI[of _ "f -` U \<inter> g -` V"]) auto |
|
2054 |
qed |
|
2055 |
||
2056 |
lemma closed_Collect_eq: |
|
63494 | 2057 |
fixes f g :: "'a::topological_space \<Rightarrow> 'b::t2_space" |
63332 | 2058 |
assumes f: "continuous_on UNIV f" and g: "continuous_on UNIV g" |
2059 |
shows "closed {x. f x = g x}" |
|
2060 |
using open_Collect_neq[OF f g] by (simp add: closed_def Collect_neg_eq) |
|
2061 |
||
2062 |
lemma open_Collect_less: |
|
63494 | 2063 |
fixes f g :: "'a::topological_space \<Rightarrow> 'b::linorder_topology" |
63332 | 2064 |
assumes f: "continuous_on UNIV f" and g: "continuous_on UNIV g" |
2065 |
shows "open {x. f x < g x}" |
|
2066 |
proof (rule openI) |
|
63494 | 2067 |
fix t |
2068 |
assume t: "t \<in> {x. f x < g x}" |
|
63332 | 2069 |
show "\<exists>T. open T \<and> t \<in> T \<and> T \<subseteq> {x. f x < g x}" |
63494 | 2070 |
proof (cases "\<exists>z. f t < z \<and> z < g t") |
2071 |
case True |
|
2072 |
then obtain z where "f t < z \<and> z < g t" by blast |
|
63332 | 2073 |
then show ?thesis |
2074 |
using open_vimage[OF _ f, of "{..< z}"] open_vimage[OF _ g, of "{z <..}"] |
|
2075 |
by (intro exI[of _ "f -` {..<z} \<inter> g -` {z<..}"]) auto |
|
2076 |
next |
|
63494 | 2077 |
case False |
63332 | 2078 |
then have *: "{g t ..} = {f t <..}" "{..< g t} = {.. f t}" |
2079 |
using t by (auto intro: leI) |
|
2080 |
show ?thesis |
|
2081 |
using open_vimage[OF _ f, of "{..< g t}"] open_vimage[OF _ g, of "{f t <..}"] t |
|
2082 |
apply (intro exI[of _ "f -` {..< g t} \<inter> g -` {f t<..}"]) |
|
2083 |
apply (simp add: open_Int) |
|
2084 |
apply (auto simp add: *) |
|
2085 |
done |
|
2086 |
qed |
|
2087 |
qed |
|
2088 |
||
2089 |
lemma closed_Collect_le: |
|
2090 |
fixes f g :: "'a :: topological_space \<Rightarrow> 'b::linorder_topology" |
|
63494 | 2091 |
assumes f: "continuous_on UNIV f" |
2092 |
and g: "continuous_on UNIV g" |
|
63332 | 2093 |
shows "closed {x. f x \<le> g x}" |
63494 | 2094 |
using open_Collect_less [OF g f] |
2095 |
by (simp add: closed_def Collect_neg_eq[symmetric] not_le) |
|
2096 |
||
63332 | 2097 |
|
61245 | 2098 |
subsubsection \<open>Open-cover compactness\<close> |
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
|
2099 |
|
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
|
2100 |
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
|
2101 |
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
|
2102 |
|
63494 | 2103 |
definition compact :: "'a set \<Rightarrow> bool" |
2104 |
where compact_eq_heine_borel: (* This name is used for backwards compatibility *) |
|
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
|
2105 |
"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
|
2106 |
|
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
|
2107 |
lemma compactI: |
60585 | 2108 |
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'" |
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
|
2109 |
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
|
2110 |
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
|
2111 |
|
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
|
2112 |
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
|
2113 |
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
|
2114 |
|
64758
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
2115 |
lemma compactE: (*related to COMPACT_IMP_HEINE_BOREL in HOL Light*) |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
2116 |
assumes "compact S" "S \<subseteq> \<Union>\<T>" "\<And>B. B \<in> \<T> \<Longrightarrow> open B" |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
2117 |
obtains \<T>' where "\<T>' \<subseteq> \<T>" "finite \<T>'" "S \<subseteq> \<Union>\<T>'" |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
2118 |
by (meson assms compact_eq_heine_borel) |
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
|
2119 |
|
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
|
2120 |
lemma compactE_image: |
64845 | 2121 |
assumes "compact S" |
2122 |
and "\<forall>T\<in>C. open (f T)" |
|
2123 |
and "S \<subseteq> (\<Union>c\<in>C. f c)" |
|
2124 |
obtains C' where "C' \<subseteq> C" and "finite C'" and "S \<subseteq> (\<Union>c\<in>C'. f c)" |
|
62343
24106dc44def
prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents:
62217
diff
changeset
|
2125 |
using assms unfolding ball_simps [symmetric] |
64845 | 2126 |
by (metis (lifting) finite_subset_image compact_eq_heine_borel[of S]) |
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
|
2127 |
|
62843
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents:
62533
diff
changeset
|
2128 |
lemma compact_Int_closed [intro]: |
64845 | 2129 |
assumes "compact S" |
2130 |
and "closed T" |
|
2131 |
shows "compact (S \<inter> T)" |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2132 |
proof (rule compactI) |
63494 | 2133 |
fix C |
2134 |
assume C: "\<forall>c\<in>C. open c" |
|
64845 | 2135 |
assume cover: "S \<inter> T \<subseteq> \<Union>C" |
2136 |
from C \<open>closed T\<close> have "\<forall>c\<in>C \<union> {- T}. open c" |
|
63494 | 2137 |
by auto |
64845 | 2138 |
moreover from cover have "S \<subseteq> \<Union>(C \<union> {- T})" |
63494 | 2139 |
by auto |
64845 | 2140 |
ultimately have "\<exists>D\<subseteq>C \<union> {- T}. finite D \<and> S \<subseteq> \<Union>D" |
2141 |
using \<open>compact S\<close> unfolding compact_eq_heine_borel by auto |
|
2142 |
then obtain D where "D \<subseteq> C \<union> {- T} \<and> finite D \<and> S \<subseteq> \<Union>D" .. |
|
2143 |
then show "\<exists>D\<subseteq>C. finite D \<and> S \<inter> T \<subseteq> \<Union>D" |
|
2144 |
by (intro exI[of _ "D - {-T}"]) auto |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2145 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2146 |
|
64845 | 2147 |
lemma compact_diff: "\<lbrakk>compact S; open T\<rbrakk> \<Longrightarrow> compact(S - T)" |
2148 |
by (simp add: Diff_eq compact_Int_closed open_closed) |
|
2149 |
||
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2150 |
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
|
2151 |
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
|
2152 |
|
63494 | 2153 |
|
2154 |
subsection \<open>Finite intersection property\<close> |
|
63301 | 2155 |
|
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2156 |
lemma compact_fip: |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2157 |
"compact U \<longleftrightarrow> |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2158 |
(\<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
|
2159 |
(is "_ \<longleftrightarrow> ?R") |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2160 |
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
|
2161 |
fix A |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2162 |
assume "compact U" |
63494 | 2163 |
assume A: "\<forall>a\<in>A. closed a" "U \<inter> \<Inter>A = {}" |
2164 |
assume fin: "\<forall>B \<subseteq> A. finite B \<longrightarrow> U \<inter> \<Inter>B \<noteq> {}" |
|
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2165 |
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
|
2166 |
by auto |
60758 | 2167 |
with \<open>compact U\<close> obtain B where "B \<subseteq> A" "finite (uminus`B)" "U \<subseteq> \<Union>(uminus`B)" |
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2168 |
unfolding compact_eq_heine_borel by (metis subset_image_iff) |
63494 | 2169 |
with fin[THEN spec, of B] show False |
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2170 |
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
|
2171 |
next |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2172 |
fix A |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2173 |
assume ?R |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2174 |
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
|
2175 |
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
|
2176 |
by auto |
60758 | 2177 |
with \<open>?R\<close> obtain B where "B \<subseteq> A" "finite (uminus`B)" "U \<inter> \<Inter>(uminus`B) = {}" |
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2178 |
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
|
2179 |
then show "\<exists>T\<subseteq>A. finite T \<and> U \<subseteq> \<Union>T" |
63494 | 2180 |
by (auto intro!: exI[of _ B] inj_setminus dest: finite_imageD) |
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2181 |
qed |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2182 |
|
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2183 |
lemma compact_imp_fip: |
63494 | 2184 |
assumes "compact S" |
2185 |
and "\<And>T. T \<in> F \<Longrightarrow> closed T" |
|
2186 |
and "\<And>F'. finite F' \<Longrightarrow> F' \<subseteq> F \<Longrightarrow> S \<inter> (\<Inter>F') \<noteq> {}" |
|
2187 |
shows "S \<inter> (\<Inter>F) \<noteq> {}" |
|
2188 |
using assms unfolding compact_fip by auto |
|
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2189 |
|
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2190 |
lemma compact_imp_fip_image: |
56166 | 2191 |
assumes "compact s" |
2192 |
and P: "\<And>i. i \<in> I \<Longrightarrow> closed (f i)" |
|
2193 |
and Q: "\<And>I'. finite I' \<Longrightarrow> I' \<subseteq> I \<Longrightarrow> (s \<inter> (\<Inter>i\<in>I'. f i) \<noteq> {})" |
|
2194 |
shows "s \<inter> (\<Inter>i\<in>I. f i) \<noteq> {}" |
|
2195 |
proof - |
|
60758 | 2196 |
note \<open>compact s\<close> |
63494 | 2197 |
moreover from P have "\<forall>i \<in> f ` I. closed i" |
2198 |
by blast |
|
56166 | 2199 |
moreover have "\<forall>A. finite A \<and> A \<subseteq> f ` I \<longrightarrow> (s \<inter> (\<Inter>A) \<noteq> {})" |
63494 | 2200 |
apply rule |
2201 |
apply rule |
|
2202 |
apply (erule conjE) |
|
2203 |
proof - |
|
56166 | 2204 |
fix A :: "'a set set" |
63494 | 2205 |
assume "finite A" and "A \<subseteq> f ` I" |
2206 |
then obtain B where "B \<subseteq> I" and "finite B" and "A = f ` B" |
|
56166 | 2207 |
using finite_subset_image [of A f I] by blast |
63494 | 2208 |
with Q [of B] show "s \<inter> \<Inter>A \<noteq> {}" |
2209 |
by simp |
|
56166 | 2210 |
qed |
63494 | 2211 |
ultimately have "s \<inter> (\<Inter>(f ` I)) \<noteq> {}" |
2212 |
by (metis compact_imp_fip) |
|
56166 | 2213 |
then show ?thesis by simp |
2214 |
qed |
|
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
2215 |
|
51471 | 2216 |
end |
2217 |
||
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2218 |
lemma (in t2_space) compact_imp_closed: |
63494 | 2219 |
assumes "compact s" |
2220 |
shows "closed s" |
|
2221 |
unfolding closed_def |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2222 |
proof (rule openI) |
63494 | 2223 |
fix y |
2224 |
assume "y \<in> - s" |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2225 |
let ?C = "\<Union>x\<in>s. {u. open u \<and> x \<in> u \<and> eventually (\<lambda>y. y \<notin> u) (nhds y)}" |
64758
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
2226 |
have "s \<subseteq> \<Union>?C" |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2227 |
proof |
63494 | 2228 |
fix x |
2229 |
assume "x \<in> s" |
|
60758 | 2230 |
with \<open>y \<in> - s\<close> have "x \<noteq> y" by clarsimp |
63494 | 2231 |
then have "\<exists>u v. open u \<and> open v \<and> x \<in> u \<and> y \<in> v \<and> u \<inter> v = {}" |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2232 |
by (rule hausdorff) |
60758 | 2233 |
with \<open>x \<in> s\<close> show "x \<in> \<Union>?C" |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2234 |
unfolding eventually_nhds by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2235 |
qed |
64758
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
2236 |
then obtain D where "D \<subseteq> ?C" and "finite D" and "s \<subseteq> \<Union>D" |
3b33d2fc5fc0
A few new lemmas and needed adaptations
paulson <lp15@cam.ac.uk>
parents:
64394
diff
changeset
|
2237 |
by (rule compactE [OF \<open>compact s\<close>]) auto |
63494 | 2238 |
from \<open>D \<subseteq> ?C\<close> have "\<forall>x\<in>D. eventually (\<lambda>y. y \<notin> x) (nhds y)" |
2239 |
by auto |
|
60758 | 2240 |
with \<open>finite D\<close> have "eventually (\<lambda>y. y \<notin> \<Union>D) (nhds y)" |
60040
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60036
diff
changeset
|
2241 |
by (simp add: eventually_ball_finite) |
60758 | 2242 |
with \<open>s \<subseteq> \<Union>D\<close> have "eventually (\<lambda>y. y \<notin> s) (nhds y)" |
61810 | 2243 |
by (auto elim!: eventually_mono) |
63494 | 2244 |
then show "\<exists>t. open t \<and> y \<in> t \<and> t \<subseteq> - s" |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2245 |
by (simp add: eventually_nhds subset_eq) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2246 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2247 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2248 |
lemma compact_continuous_image: |
63494 | 2249 |
assumes f: "continuous_on s f" |
2250 |
and s: "compact s" |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2251 |
shows "compact (f ` s)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2252 |
proof (rule compactI) |
63494 | 2253 |
fix C |
2254 |
assume "\<forall>c\<in>C. open c" and cover: "f`s \<subseteq> \<Union>C" |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2255 |
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
|
2256 |
unfolding continuous_on_open_invariant by blast |
53381 | 2257 |
then obtain A where A: "\<forall>c\<in>C. open (A c) \<and> A c \<inter> s = f -` c \<inter> s" |
2258 |
unfolding bchoice_iff .. |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2259 |
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
|
2260 |
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
|
2261 |
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
|
2262 |
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
|
2263 |
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
|
2264 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2265 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2266 |
lemma continuous_on_inv: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2267 |
fixes f :: "'a::topological_space \<Rightarrow> 'b::t2_space" |
63494 | 2268 |
assumes "continuous_on s f" |
2269 |
and "compact s" |
|
2270 |
and "\<forall>x\<in>s. g (f x) = x" |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2271 |
shows "continuous_on (f ` s) g" |
63494 | 2272 |
unfolding continuous_on_topological |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2273 |
proof (clarsimp simp add: assms(3)) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2274 |
fix x :: 'a and B :: "'a set" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2275 |
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
|
2276 |
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
|
2277 |
using assms(3) by (auto, metis) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2278 |
have "continuous_on (s - B) f" |
60758 | 2279 |
using \<open>continuous_on s f\<close> Diff_subset |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2280 |
by (rule continuous_on_subset) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2281 |
moreover have "compact (s - B)" |
60758 | 2282 |
using \<open>open B\<close> and \<open>compact s\<close> |
62843
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
paulson <lp15@cam.ac.uk>
parents:
62533
diff
changeset
|
2283 |
unfolding Diff_eq by (intro compact_Int_closed closed_Compl) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2284 |
ultimately have "compact (f ` (s - B))" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2285 |
by (rule compact_continuous_image) |
63494 | 2286 |
then have "closed (f ` (s - B))" |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2287 |
by (rule compact_imp_closed) |
63494 | 2288 |
then have "open (- f ` (s - B))" |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2289 |
by (rule open_Compl) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2290 |
moreover have "f x \<in> - f ` (s - B)" |
60758 | 2291 |
using \<open>x \<in> s\<close> and \<open>x \<in> B\<close> by (simp add: 1) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2292 |
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
|
2293 |
by (simp add: 1) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2294 |
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
|
2295 |
by fast |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2296 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2297 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2298 |
lemma continuous_on_inv_into: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2299 |
fixes f :: "'a::topological_space \<Rightarrow> 'b::t2_space" |
63494 | 2300 |
assumes s: "continuous_on s f" "compact s" |
2301 |
and f: "inj_on f s" |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
2302 |
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
|
2303 |
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
|
2304 |
|
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
|
2305 |
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
|
2306 |
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
|
2307 |
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
|
2308 |
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
|
2309 |
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
|
2310 |
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
|
2311 |
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
|
2312 |
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
|
2313 |
by auto |
60758 | 2314 |
with \<open>compact S\<close> obtain C where "C \<subseteq> S" "finite C" and C: "S \<subseteq> (\<Union>s\<in>C. {..< t s})" |
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
|
2315 |
by (erule compactE_image) |
60758 | 2316 |
with \<open>S \<noteq> {}\<close> have Max: "Max (t`C) \<in> t`C" and "\<forall>s\<in>t`C. s \<le> Max (t`C)" |
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
|
2317 |
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
|
2318 |
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
|
2319 |
by (auto intro: less_le_trans simp: subset_eq) |
60758 | 2320 |
with t Max \<open>C \<subseteq> S\<close> show ?thesis |
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
|
2321 |
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
|
2322 |
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
|
2323 |
|
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
|
2324 |
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
|
2325 |
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
|
2326 |
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
|
2327 |
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
|
2328 |
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
|
2329 |
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
|
2330 |
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
|
2331 |
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
|
2332 |
by auto |
60758 | 2333 |
with \<open>compact S\<close> obtain C where "C \<subseteq> S" "finite C" and C: "S \<subseteq> (\<Union>s\<in>C. {t s <..})" |
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
|
2334 |
by (erule compactE_image) |
60758 | 2335 |
with \<open>S \<noteq> {}\<close> have Min: "Min (t`C) \<in> t`C" and "\<forall>s\<in>t`C. Min (t`C) \<le> s" |
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
|
2336 |
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
|
2337 |
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
|
2338 |
by (auto intro: le_less_trans simp: subset_eq) |
60758 | 2339 |
with t Min \<open>C \<subseteq> S\<close> show ?thesis |
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
|
2340 |
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
|
2341 |
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
|
2342 |
|
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
|
2343 |
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
|
2344 |
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
|
2345 |
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
|
2346 |
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
|
2347 |
|
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
|
2348 |
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
|
2349 |
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
|
2350 |
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
|
2351 |
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
|
2352 |
|
63494 | 2353 |
|
60758 | 2354 |
subsection \<open>Connectedness\<close> |
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2355 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2356 |
context topological_space |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2357 |
begin |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2358 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2359 |
definition "connected S \<longleftrightarrow> |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2360 |
\<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
|
2361 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2362 |
lemma connectedI: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2363 |
"(\<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
|
2364 |
\<Longrightarrow> connected U" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2365 |
by (auto simp: connected_def) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2366 |
|
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2367 |
lemma connected_empty [simp]: "connected {}" |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2368 |
by (auto intro!: connectedI) |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2369 |
|
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2370 |
lemma connected_sing [simp]: "connected {x}" |
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2371 |
by (auto intro!: connectedI) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2372 |
|
56329 | 2373 |
lemma connectedD: |
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
2374 |
"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 = {}" |
56329 | 2375 |
by (auto simp: connected_def) |
2376 |
||
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
|
2377 |
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
|
2378 |
|
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2379 |
lemma connected_closed: |
63494 | 2380 |
"connected s \<longleftrightarrow> |
2381 |
\<not> (\<exists>A B. closed A \<and> closed B \<and> s \<subseteq> A \<union> B \<and> A \<inter> B \<inter> s = {} \<and> A \<inter> s \<noteq> {} \<and> B \<inter> s \<noteq> {})" |
|
2382 |
apply (simp add: connected_def del: ex_simps, safe) |
|
2383 |
apply (drule_tac x="-A" in spec) |
|
2384 |
apply (drule_tac x="-B" in spec) |
|
2385 |
apply (fastforce simp add: closed_def [symmetric]) |
|
2386 |
apply (drule_tac x="-A" in spec) |
|
2387 |
apply (drule_tac x="-B" in spec) |
|
2388 |
apply (fastforce simp add: open_closed [symmetric]) |
|
2389 |
done |
|
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2390 |
|
62397
5ae24f33d343
Substantial new material for multivariate analysis. Also removal of some duplicates.
paulson <lp15@cam.ac.uk>
parents:
62381
diff
changeset
|
2391 |
lemma connected_closedD: |
63494 | 2392 |
"\<lbrakk>connected s; A \<inter> B \<inter> s = {}; s \<subseteq> A \<union> B; closed A; closed B\<rbrakk> \<Longrightarrow> A \<inter> s = {} \<or> B \<inter> s = {}" |
2393 |
by (simp add: connected_closed) |
|
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2394 |
|
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2395 |
lemma connected_Union: |
63494 | 2396 |
assumes cs: "\<And>s. s \<in> S \<Longrightarrow> connected s" |
2397 |
and ne: "\<Inter>S \<noteq> {}" |
|
2398 |
shows "connected(\<Union>S)" |
|
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2399 |
proof (rule connectedI) |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2400 |
fix A B |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2401 |
assume A: "open A" and B: "open B" and Alap: "A \<inter> \<Union>S \<noteq> {}" and Blap: "B \<inter> \<Union>S \<noteq> {}" |
63494 | 2402 |
and disj: "A \<inter> B \<inter> \<Union>S = {}" and cover: "\<Union>S \<subseteq> A \<union> B" |
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2403 |
have disjs:"\<And>s. s \<in> S \<Longrightarrow> A \<inter> B \<inter> s = {}" |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2404 |
using disj by auto |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2405 |
obtain sa where sa: "sa \<in> S" "A \<inter> sa \<noteq> {}" |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2406 |
using Alap by auto |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2407 |
obtain sb where sb: "sb \<in> S" "B \<inter> sb \<noteq> {}" |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2408 |
using Blap by auto |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2409 |
obtain x where x: "\<And>s. s \<in> S \<Longrightarrow> x \<in> s" |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2410 |
using ne by auto |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2411 |
then have "x \<in> \<Union>S" |
61342 | 2412 |
using \<open>sa \<in> S\<close> by blast |
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2413 |
then have "x \<in> A \<or> x \<in> B" |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2414 |
using cover by auto |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2415 |
then show False |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2416 |
using cs [unfolded connected_def] |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2417 |
by (metis A B IntI Sup_upper sa sb disjs x cover empty_iff subset_trans) |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2418 |
qed |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2419 |
|
63494 | 2420 |
lemma connected_Un: "connected s \<Longrightarrow> connected t \<Longrightarrow> s \<inter> t \<noteq> {} \<Longrightarrow> connected (s \<union> t)" |
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2421 |
using connected_Union [of "{s,t}"] by auto |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2422 |
|
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2423 |
lemma connected_diff_open_from_closed: |
63494 | 2424 |
assumes st: "s \<subseteq> t" |
2425 |
and tu: "t \<subseteq> u" |
|
2426 |
and s: "open s" |
|
2427 |
and t: "closed t" |
|
2428 |
and u: "connected u" |
|
2429 |
and ts: "connected (t - s)" |
|
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2430 |
shows "connected(u - s)" |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2431 |
proof (rule connectedI) |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2432 |
fix A B |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2433 |
assume AB: "open A" "open B" "A \<inter> (u - s) \<noteq> {}" "B \<inter> (u - s) \<noteq> {}" |
63494 | 2434 |
and disj: "A \<inter> B \<inter> (u - s) = {}" |
2435 |
and cover: "u - s \<subseteq> A \<union> B" |
|
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2436 |
then consider "A \<inter> (t - s) = {}" | "B \<inter> (t - s) = {}" |
63494 | 2437 |
using st ts tu connectedD [of "t-s" "A" "B"] by auto |
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2438 |
then show False |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2439 |
proof cases |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2440 |
case 1 |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2441 |
then have "(A - t) \<inter> (B \<union> s) \<inter> u = {}" |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2442 |
using disj st by auto |
63494 | 2443 |
moreover have "u \<subseteq> (A - t) \<union> (B \<union> s)" |
2444 |
using 1 cover by auto |
|
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2445 |
ultimately show False |
63494 | 2446 |
using connectedD [of u "A - t" "B \<union> s"] AB s t 1 u by auto |
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2447 |
next |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2448 |
case 2 |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2449 |
then have "(A \<union> s) \<inter> (B - t) \<inter> u = {}" |
63494 | 2450 |
using disj st by auto |
2451 |
moreover have "u \<subseteq> (A \<union> s) \<union> (B - t)" |
|
2452 |
using 2 cover by auto |
|
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2453 |
ultimately show False |
63494 | 2454 |
using connectedD [of u "A \<union> s" "B - t"] AB s t 2 u by auto |
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2455 |
qed |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2456 |
qed |
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2457 |
|
59106 | 2458 |
lemma connected_iff_const: |
2459 |
fixes S :: "'a::topological_space set" |
|
2460 |
shows "connected S \<longleftrightarrow> (\<forall>P::'a \<Rightarrow> bool. continuous_on S P \<longrightarrow> (\<exists>c. \<forall>s\<in>S. P s = c))" |
|
2461 |
proof safe |
|
63494 | 2462 |
fix P :: "'a \<Rightarrow> bool" |
2463 |
assume "connected S" "continuous_on S P" |
|
59106 | 2464 |
then have "\<And>b. \<exists>A. open A \<and> A \<inter> S = P -` {b} \<inter> S" |
62369 | 2465 |
unfolding continuous_on_open_invariant by (simp add: open_discrete) |
59106 | 2466 |
from this[of True] this[of False] |
2467 |
obtain t f where "open t" "open f" and *: "f \<inter> S = P -` {False} \<inter> S" "t \<inter> S = P -` {True} \<inter> S" |
|
63171 | 2468 |
by meson |
59106 | 2469 |
then have "t \<inter> S = {} \<or> f \<inter> S = {}" |
60758 | 2470 |
by (intro connectedD[OF \<open>connected S\<close>]) auto |
59106 | 2471 |
then show "\<exists>c. \<forall>s\<in>S. P s = c" |
2472 |
proof (rule disjE) |
|
63494 | 2473 |
assume "t \<inter> S = {}" |
2474 |
then show ?thesis |
|
59106 | 2475 |
unfolding * by (intro exI[of _ False]) auto |
2476 |
next |
|
63494 | 2477 |
assume "f \<inter> S = {}" |
2478 |
then show ?thesis |
|
59106 | 2479 |
unfolding * by (intro exI[of _ True]) auto |
2480 |
qed |
|
2481 |
next |
|
2482 |
assume P: "\<forall>P::'a \<Rightarrow> bool. continuous_on S P \<longrightarrow> (\<exists>c. \<forall>s\<in>S. P s = c)" |
|
2483 |
show "connected S" |
|
2484 |
proof (rule connectedI) |
|
63494 | 2485 |
fix A B |
2486 |
assume *: "open A" "open B" "A \<inter> S \<noteq> {}" "B \<inter> S \<noteq> {}" "A \<inter> B \<inter> S = {}" "S \<subseteq> A \<union> B" |
|
59106 | 2487 |
have "continuous_on S (\<lambda>x. x \<in> A)" |
2488 |
unfolding continuous_on_open_invariant |
|
2489 |
proof safe |
|
2490 |
fix C :: "bool set" |
|
2491 |
have "C = UNIV \<or> C = {True} \<or> C = {False} \<or> C = {}" |
|
2492 |
using subset_UNIV[of C] unfolding UNIV_bool by auto |
|
2493 |
with * show "\<exists>T. open T \<and> T \<inter> S = (\<lambda>x. x \<in> A) -` C \<inter> S" |
|
2494 |
by (intro exI[of _ "(if True \<in> C then A else {}) \<union> (if False \<in> C then B else {})"]) auto |
|
2495 |
qed |
|
63494 | 2496 |
from P[rule_format, OF this] obtain c where "\<And>s. s \<in> S \<Longrightarrow> (s \<in> A) = c" |
2497 |
by blast |
|
59106 | 2498 |
with * show False |
2499 |
by (cases c) auto |
|
2500 |
qed |
|
2501 |
qed |
|
2502 |
||
63494 | 2503 |
lemma connectedD_const: "connected S \<Longrightarrow> continuous_on S P \<Longrightarrow> \<exists>c. \<forall>s\<in>S. P s = c" |
2504 |
for P :: "'a::topological_space \<Rightarrow> bool" |
|
2505 |
by (auto simp: connected_iff_const) |
|
59106 | 2506 |
|
2507 |
lemma connectedI_const: |
|
2508 |
"(\<And>P::'a::topological_space \<Rightarrow> bool. continuous_on S P \<Longrightarrow> \<exists>c. \<forall>s\<in>S. P s = c) \<Longrightarrow> connected S" |
|
63494 | 2509 |
by (auto simp: connected_iff_const) |
59106 | 2510 |
|
56329 | 2511 |
lemma connected_local_const: |
2512 |
assumes "connected A" "a \<in> A" "b \<in> A" |
|
63494 | 2513 |
and *: "\<forall>a\<in>A. eventually (\<lambda>b. f a = f b) (at a within A)" |
56329 | 2514 |
shows "f a = f b" |
2515 |
proof - |
|
2516 |
obtain S where S: "\<And>a. a \<in> A \<Longrightarrow> a \<in> S a" "\<And>a. a \<in> A \<Longrightarrow> open (S a)" |
|
2517 |
"\<And>a x. a \<in> A \<Longrightarrow> x \<in> S a \<Longrightarrow> x \<in> A \<Longrightarrow> f a = f x" |
|
2518 |
using * unfolding eventually_at_topological by metis |
|
2519 |
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" |
|
2520 |
have "?P \<inter> A = {} \<or> ?N \<inter> A = {}" |
|
60758 | 2521 |
using \<open>connected A\<close> S \<open>a\<in>A\<close> |
56329 | 2522 |
by (intro connectedD) (auto, metis) |
2523 |
then show "f a = f b" |
|
2524 |
proof |
|
2525 |
assume "?N \<inter> A = {}" |
|
2526 |
then have "\<forall>x\<in>A. f a = f x" |
|
2527 |
using S(1) by auto |
|
60758 | 2528 |
with \<open>b\<in>A\<close> show ?thesis by auto |
56329 | 2529 |
next |
2530 |
assume "?P \<inter> A = {}" then show ?thesis |
|
60758 | 2531 |
using \<open>a \<in> A\<close> S(1)[of a] by auto |
56329 | 2532 |
qed |
2533 |
qed |
|
2534 |
||
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2535 |
lemma (in linorder_topology) connectedD_interval: |
63494 | 2536 |
assumes "connected U" |
2537 |
and xy: "x \<in> U" "y \<in> U" |
|
2538 |
and "x \<le> z" "z \<le> y" |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2539 |
shows "z \<in> U" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2540 |
proof - |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2541 |
have eq: "{..<z} \<union> {z<..} = - {z}" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2542 |
by auto |
63494 | 2543 |
have "\<not> connected U" if "z \<notin> U" "x < z" "z < y" |
2544 |
using xy that |
|
2545 |
apply (simp only: connected_def simp_thms) |
|
2546 |
apply (rule_tac exI[of _ "{..< z}"]) |
|
2547 |
apply (rule_tac exI[of _ "{z <..}"]) |
|
2548 |
apply (auto simp add: eq) |
|
2549 |
done |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2550 |
with assms show "z \<in> U" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2551 |
by (metis less_le) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2552 |
qed |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2553 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2554 |
lemma connected_continuous_image: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2555 |
assumes *: "continuous_on s f" |
63494 | 2556 |
and "connected s" |
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2557 |
shows "connected (f ` s)" |
59106 | 2558 |
proof (rule connectedI_const) |
63494 | 2559 |
fix P :: "'b \<Rightarrow> bool" |
2560 |
assume "continuous_on (f ` s) P" |
|
59106 | 2561 |
then have "continuous_on s (P \<circ> f)" |
2562 |
by (rule continuous_on_compose[OF *]) |
|
60758 | 2563 |
from connectedD_const[OF \<open>connected s\<close> this] show "\<exists>c. \<forall>s\<in>f ` s. P s = c" |
59106 | 2564 |
by auto |
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2565 |
qed |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2566 |
|
61306
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2567 |
|
9dd394c866fc
New theorems about connected sets. And pairwise moved to Set.thy.
paulson <lp15@cam.ac.uk>
parents:
61245
diff
changeset
|
2568 |
section \<open>Linear Continuum Topologies\<close> |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2569 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2570 |
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
|
2571 |
begin |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2572 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2573 |
lemma Inf_notin_open: |
63494 | 2574 |
assumes A: "open A" |
2575 |
and bnd: "\<forall>a\<in>A. x < a" |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2576 |
shows "Inf A \<notin> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2577 |
proof |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2578 |
assume "Inf A \<in> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2579 |
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
|
2580 |
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
|
2581 |
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
|
2582 |
by (auto simp: subset_eq) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2583 |
then show False |
63494 | 2584 |
using cInf_lower[OF \<open>c \<in> A\<close>] bnd |
2585 |
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
|
2586 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2587 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2588 |
lemma Sup_notin_open: |
63494 | 2589 |
assumes A: "open A" |
2590 |
and bnd: "\<forall>a\<in>A. a < x" |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2591 |
shows "Sup A \<notin> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2592 |
proof |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2593 |
assume "Sup A \<in> A" |
63494 | 2594 |
with assms obtain b where "Sup A < b" "{Sup A ..< b} \<subseteq> A" |
2595 |
using open_right[of A "Sup A" x] by auto |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2596 |
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
|
2597 |
by (auto simp: subset_eq) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2598 |
then show False |
63494 | 2599 |
using cSup_upper[OF \<open>c \<in> A\<close>] bnd |
2600 |
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
|
2601 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2602 |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2603 |
end |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
2604 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2605 |
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
|
2606 |
proof |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2607 |
fix x :: 'a |
53381 | 2608 |
obtain y where "x < y \<or> y < x" |
2609 |
using ex_gt_or_lt [of x] .. |
|
63494 | 2610 |
with Inf_notin_open[of "{x}" y] Sup_notin_open[of "{x}" y] show "\<not> open {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
|
2611 |
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
|
2612 |
qed |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2613 |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2614 |
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
|
2615 |
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
|
2616 |
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
|
2617 |
shows "connected U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2618 |
proof (rule connectedI) |
63494 | 2619 |
{ |
2620 |
fix A B |
|
2621 |
assume "open A" "open B" "A \<inter> B \<inter> U = {}" "U \<subseteq> A \<union> B" |
|
2622 |
fix x y |
|
2623 |
assume "x < y" "x \<in> A" "y \<in> B" "x \<in> U" "y \<in> U" |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2624 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2625 |
let ?z = "Inf (B \<inter> {x <..})" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2626 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2627 |
have "x \<le> ?z" "?z \<le> y" |
60758 | 2628 |
using \<open>y \<in> B\<close> \<open>x < y\<close> by (auto intro: cInf_lower cInf_greatest) |
2629 |
with \<open>x \<in> U\<close> \<open>y \<in> U\<close> have "?z \<in> U" |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2630 |
by (rule *) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2631 |
moreover have "?z \<notin> B \<inter> {x <..}" |
60758 | 2632 |
using \<open>open B\<close> by (intro Inf_notin_open) auto |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2633 |
ultimately have "?z \<in> A" |
60758 | 2634 |
using \<open>x \<le> ?z\<close> \<open>A \<inter> B \<inter> U = {}\<close> \<open>x \<in> A\<close> \<open>U \<subseteq> A \<union> B\<close> by auto |
63494 | 2635 |
have "\<exists>b\<in>B. b \<in> A \<and> b \<in> U" if "?z < y" |
2636 |
proof - |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2637 |
obtain a where "?z < a" "{?z ..< a} \<subseteq> A" |
60758 | 2638 |
using open_right[OF \<open>open A\<close> \<open>?z \<in> A\<close> \<open>?z < y\<close>] by auto |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2639 |
moreover obtain b where "b \<in> B" "x < b" "b < min a y" |
60758 | 2640 |
using cInf_less_iff[of "B \<inter> {x <..}" "min a y"] \<open>?z < a\<close> \<open>?z < y\<close> \<open>x < y\<close> \<open>y \<in> B\<close> |
63171 | 2641 |
by auto |
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53215
diff
changeset
|
2642 |
moreover have "?z \<le> b" |
60758 | 2643 |
using \<open>b \<in> B\<close> \<open>x < b\<close> |
54258
adfc759263ab
use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents:
53946
diff
changeset
|
2644 |
by (intro cInf_lower) auto |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2645 |
moreover have "b \<in> U" |
60758 | 2646 |
using \<open>x \<le> ?z\<close> \<open>?z \<le> b\<close> \<open>b < min a y\<close> |
2647 |
by (intro *[OF \<open>x \<in> U\<close> \<open>y \<in> U\<close>]) (auto simp: less_imp_le) |
|
63494 | 2648 |
ultimately show ?thesis |
2649 |
by (intro bexI[of _ b]) auto |
|
2650 |
qed |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2651 |
then have False |
63494 | 2652 |
using \<open>?z \<le> y\<close> \<open>?z \<in> A\<close> \<open>y \<in> B\<close> \<open>y \<in> U\<close> \<open>A \<inter> B \<inter> U = {}\<close> |
2653 |
unfolding le_less by blast |
|
2654 |
} |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2655 |
note not_disjoint = this |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2656 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2657 |
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
|
2658 |
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
|
2659 |
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
|
2660 |
moreover note not_disjoint[of B A y x] not_disjoint[of A B x y] |
63494 | 2661 |
ultimately show False |
2662 |
by (cases x y rule: linorder_cases) auto |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2663 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2664 |
|
63494 | 2665 |
lemma connected_iff_interval: "connected U \<longleftrightarrow> (\<forall>x\<in>U. \<forall>y\<in>U. \<forall>z. x \<le> z \<longrightarrow> z \<le> y \<longrightarrow> z \<in> U)" |
2666 |
for 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
|
2667 |
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
|
2668 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2669 |
lemma connected_UNIV[simp]: "connected (UNIV::'a::linear_continuum_topology set)" |
63494 | 2670 |
by (simp add: connected_iff_interval) |
2671 |
||
2672 |
lemma connected_Ioi[simp]: "connected {a<..}" |
|
2673 |
for a :: "'a::linear_continuum_topology" |
|
2674 |
by (auto simp: connected_iff_interval) |
|
2675 |
||
2676 |
lemma connected_Ici[simp]: "connected {a..}" |
|
2677 |
for a :: "'a::linear_continuum_topology" |
|
2678 |
by (auto simp: connected_iff_interval) |
|
2679 |
||
2680 |
lemma connected_Iio[simp]: "connected {..<a}" |
|
2681 |
for a :: "'a::linear_continuum_topology" |
|
2682 |
by (auto simp: connected_iff_interval) |
|
2683 |
||
2684 |
lemma connected_Iic[simp]: "connected {..a}" |
|
2685 |
for a :: "'a::linear_continuum_topology" |
|
2686 |
by (auto simp: connected_iff_interval) |
|
2687 |
||
2688 |
lemma connected_Ioo[simp]: "connected {a<..<b}" |
|
2689 |
for 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
|
2690 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2691 |
|
63494 | 2692 |
lemma connected_Ioc[simp]: "connected {a<..b}" |
2693 |
for a b :: "'a::linear_continuum_topology" |
|
2694 |
by (auto simp: connected_iff_interval) |
|
2695 |
||
2696 |
lemma connected_Ico[simp]: "connected {a..<b}" |
|
2697 |
for a b :: "'a::linear_continuum_topology" |
|
2698 |
by (auto simp: connected_iff_interval) |
|
2699 |
||
2700 |
lemma connected_Icc[simp]: "connected {a..b}" |
|
2701 |
for a b :: "'a::linear_continuum_topology" |
|
2702 |
by (auto simp: connected_iff_interval) |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2703 |
|
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
2704 |
lemma connected_contains_Ioo: |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2705 |
fixes A :: "'a :: linorder_topology set" |
63494 | 2706 |
assumes "connected A" "a \<in> A" "b \<in> A" shows "{a <..< b} \<subseteq> A" |
2707 |
using connectedD_interval[OF assms] by (simp add: subset_eq Ball_def less_imp_le) |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2708 |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
2709 |
lemma connected_contains_Icc: |
63494 | 2710 |
fixes A :: "'a::linorder_topology set" |
2711 |
assumes "connected A" "a \<in> A" "b \<in> A" |
|
2712 |
shows "{a..b} \<subseteq> A" |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
2713 |
proof |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
2714 |
fix x assume "x \<in> {a..b}" |
63494 | 2715 |
then have "x = a \<or> x = b \<or> x \<in> {a<..<b}" |
2716 |
by auto |
|
2717 |
then show "x \<in> A" |
|
2718 |
using assms connected_contains_Ioo[of A a b] by auto |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
2719 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61520
diff
changeset
|
2720 |
|
63494 | 2721 |
|
60758 | 2722 |
subsection \<open>Intermediate Value Theorem\<close> |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2723 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2724 |
lemma IVT': |
63494 | 2725 |
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
|
2726 |
assumes y: "f a \<le> y" "y \<le> f b" "a \<le> b" |
63494 | 2727 |
and *: "continuous_on {a .. b} f" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2728 |
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
|
2729 |
proof - |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2730 |
have "connected {a..b}" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2731 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2732 |
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
|
2733 |
show ?thesis |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2734 |
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
|
2735 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2736 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2737 |
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
|
2738 |
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
|
2739 |
assumes y: "f b \<le> y" "y \<le> f a" "a \<le> b" |
63494 | 2740 |
and *: "continuous_on {a .. b} f" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2741 |
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
|
2742 |
proof - |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2743 |
have "connected {a..b}" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2744 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2745 |
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
|
2746 |
show ?thesis |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2747 |
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
|
2748 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2749 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2750 |
lemma IVT: |
63494 | 2751 |
fixes f :: "'a::linear_continuum_topology \<Rightarrow> 'b::linorder_topology" |
2752 |
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> |
|
2753 |
\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y" |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2754 |
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
|
2755 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2756 |
lemma IVT2: |
63494 | 2757 |
fixes f :: "'a::linear_continuum_topology \<Rightarrow> 'b::linorder_topology" |
2758 |
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> |
|
2759 |
\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y" |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2760 |
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
|
2761 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2762 |
lemma continuous_inj_imp_mono: |
63494 | 2763 |
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
|
2764 |
assumes x: "a < x" "x < b" |
63494 | 2765 |
and cont: "continuous_on {a..b} f" |
2766 |
and inj: "inj_on f {a..b}" |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2767 |
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
|
2768 |
proof - |
61520
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61426
diff
changeset
|
2769 |
note I = inj_on_eq_iff[OF inj] |
63494 | 2770 |
{ |
2771 |
assume "f x < f a" "f x < f b" |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2772 |
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
|
2773 |
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
|
2774 |
by (auto simp: continuous_on_subset[OF cont] less_imp_le) |
63494 | 2775 |
with x I have False by auto |
2776 |
} |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2777 |
moreover |
63494 | 2778 |
{ |
2779 |
assume "f a < f x" "f b < f x" |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2780 |
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
|
2781 |
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
|
2782 |
by (auto simp: continuous_on_subset[OF cont] less_imp_le) |
63494 | 2783 |
with x I have False by auto |
2784 |
} |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2785 |
ultimately show ?thesis |
63494 | 2786 |
using I[of a x] I[of x b] x less_trans[OF x] |
2787 |
by (auto simp add: le_less less_imp_neq neq_iff) |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2788 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2789 |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2790 |
lemma continuous_at_Sup_mono: |
63494 | 2791 |
fixes f :: "'a::{linorder_topology,conditionally_complete_linorder} \<Rightarrow> |
2792 |
'b::{linorder_topology,conditionally_complete_linorder}" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2793 |
assumes "mono f" |
63494 | 2794 |
and cont: "continuous (at_left (Sup S)) f" |
2795 |
and S: "S \<noteq> {}" "bdd_above S" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2796 |
shows "f (Sup S) = (SUP s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2797 |
proof (rule antisym) |
61973 | 2798 |
have f: "(f \<longlongrightarrow> f (Sup S)) (at_left (Sup S))" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2799 |
using cont unfolding continuous_within . |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2800 |
show "f (Sup S) \<le> (SUP s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2801 |
proof cases |
63494 | 2802 |
assume "Sup S \<in> S" |
2803 |
then show ?thesis |
|
60758 | 2804 |
by (rule cSUP_upper) (auto intro: bdd_above_image_mono S \<open>mono f\<close>) |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2805 |
next |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2806 |
assume "Sup S \<notin> S" |
60758 | 2807 |
from \<open>S \<noteq> {}\<close> obtain s where "s \<in> S" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2808 |
by auto |
60758 | 2809 |
with \<open>Sup S \<notin> S\<close> S have "s < Sup S" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2810 |
unfolding less_le by (blast intro: cSup_upper) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2811 |
show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2812 |
proof (rule ccontr) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2813 |
assume "\<not> ?thesis" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2814 |
with order_tendstoD(1)[OF f, of "SUP s:S. f s"] obtain b where "b < Sup S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2815 |
and *: "\<And>y. b < y \<Longrightarrow> y < Sup S \<Longrightarrow> (SUP s:S. f s) < f y" |
60758 | 2816 |
by (auto simp: not_le eventually_at_left[OF \<open>s < Sup S\<close>]) |
2817 |
with \<open>S \<noteq> {}\<close> obtain c where "c \<in> S" "b < c" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2818 |
using less_cSupD[of S b] by auto |
60758 | 2819 |
with \<open>Sup S \<notin> S\<close> S have "c < Sup S" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2820 |
unfolding less_le by (blast intro: cSup_upper) |
60758 | 2821 |
from *[OF \<open>b < c\<close> \<open>c < Sup S\<close>] cSUP_upper[OF \<open>c \<in> S\<close> bdd_above_image_mono[of f]] |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2822 |
show False |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2823 |
by (auto simp: assms) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2824 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2825 |
qed |
60758 | 2826 |
qed (intro cSUP_least \<open>mono f\<close>[THEN monoD] cSup_upper S) |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2827 |
|
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2828 |
lemma continuous_at_Sup_antimono: |
63494 | 2829 |
fixes f :: "'a::{linorder_topology,conditionally_complete_linorder} \<Rightarrow> |
2830 |
'b::{linorder_topology,conditionally_complete_linorder}" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2831 |
assumes "antimono f" |
63494 | 2832 |
and cont: "continuous (at_left (Sup S)) f" |
2833 |
and S: "S \<noteq> {}" "bdd_above S" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2834 |
shows "f (Sup S) = (INF s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2835 |
proof (rule antisym) |
61973 | 2836 |
have f: "(f \<longlongrightarrow> f (Sup S)) (at_left (Sup S))" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2837 |
using cont unfolding continuous_within . |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2838 |
show "(INF s:S. f s) \<le> f (Sup S)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2839 |
proof cases |
63494 | 2840 |
assume "Sup S \<in> S" |
2841 |
then show ?thesis |
|
60758 | 2842 |
by (intro cINF_lower) (auto intro: bdd_below_image_antimono S \<open>antimono f\<close>) |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2843 |
next |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2844 |
assume "Sup S \<notin> S" |
60758 | 2845 |
from \<open>S \<noteq> {}\<close> obtain s where "s \<in> S" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2846 |
by auto |
60758 | 2847 |
with \<open>Sup S \<notin> S\<close> S have "s < Sup S" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2848 |
unfolding less_le by (blast intro: cSup_upper) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2849 |
show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2850 |
proof (rule ccontr) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2851 |
assume "\<not> ?thesis" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2852 |
with order_tendstoD(2)[OF f, of "INF s:S. f s"] obtain b where "b < Sup S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2853 |
and *: "\<And>y. b < y \<Longrightarrow> y < Sup S \<Longrightarrow> f y < (INF s:S. f s)" |
60758 | 2854 |
by (auto simp: not_le eventually_at_left[OF \<open>s < Sup S\<close>]) |
2855 |
with \<open>S \<noteq> {}\<close> obtain c where "c \<in> S" "b < c" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2856 |
using less_cSupD[of S b] by auto |
60758 | 2857 |
with \<open>Sup S \<notin> S\<close> S have "c < Sup S" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2858 |
unfolding less_le by (blast intro: cSup_upper) |
60758 | 2859 |
from *[OF \<open>b < c\<close> \<open>c < Sup S\<close>] cINF_lower[OF bdd_below_image_antimono, of f S c] \<open>c \<in> S\<close> |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2860 |
show False |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2861 |
by (auto simp: assms) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2862 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2863 |
qed |
60758 | 2864 |
qed (intro cINF_greatest \<open>antimono f\<close>[THEN antimonoD] cSup_upper S) |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2865 |
|
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2866 |
lemma continuous_at_Inf_mono: |
63494 | 2867 |
fixes f :: "'a::{linorder_topology,conditionally_complete_linorder} \<Rightarrow> |
2868 |
'b::{linorder_topology,conditionally_complete_linorder}" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2869 |
assumes "mono f" |
63494 | 2870 |
and cont: "continuous (at_right (Inf S)) f" |
2871 |
and S: "S \<noteq> {}" "bdd_below S" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2872 |
shows "f (Inf S) = (INF s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2873 |
proof (rule antisym) |
61973 | 2874 |
have f: "(f \<longlongrightarrow> f (Inf S)) (at_right (Inf S))" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2875 |
using cont unfolding continuous_within . |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2876 |
show "(INF s:S. f s) \<le> f (Inf S)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2877 |
proof cases |
63494 | 2878 |
assume "Inf S \<in> S" |
2879 |
then show ?thesis |
|
60758 | 2880 |
by (rule cINF_lower[rotated]) (auto intro: bdd_below_image_mono S \<open>mono f\<close>) |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2881 |
next |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2882 |
assume "Inf S \<notin> S" |
60758 | 2883 |
from \<open>S \<noteq> {}\<close> obtain s where "s \<in> S" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2884 |
by auto |
60758 | 2885 |
with \<open>Inf S \<notin> S\<close> S have "Inf S < s" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2886 |
unfolding less_le by (blast intro: cInf_lower) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2887 |
show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2888 |
proof (rule ccontr) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2889 |
assume "\<not> ?thesis" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2890 |
with order_tendstoD(2)[OF f, of "INF s:S. f s"] obtain b where "Inf S < b" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2891 |
and *: "\<And>y. Inf S < y \<Longrightarrow> y < b \<Longrightarrow> f y < (INF s:S. f s)" |
60758 | 2892 |
by (auto simp: not_le eventually_at_right[OF \<open>Inf S < s\<close>]) |
2893 |
with \<open>S \<noteq> {}\<close> obtain c where "c \<in> S" "c < b" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2894 |
using cInf_lessD[of S b] by auto |
60758 | 2895 |
with \<open>Inf S \<notin> S\<close> S have "Inf S < c" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2896 |
unfolding less_le by (blast intro: cInf_lower) |
60758 | 2897 |
from *[OF \<open>Inf S < c\<close> \<open>c < b\<close>] cINF_lower[OF bdd_below_image_mono[of f] \<open>c \<in> S\<close>] |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2898 |
show False |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2899 |
by (auto simp: assms) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2900 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2901 |
qed |
60758 | 2902 |
qed (intro cINF_greatest \<open>mono f\<close>[THEN monoD] cInf_lower \<open>bdd_below S\<close> \<open>S \<noteq> {}\<close>) |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2903 |
|
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2904 |
lemma continuous_at_Inf_antimono: |
63494 | 2905 |
fixes f :: "'a::{linorder_topology,conditionally_complete_linorder} \<Rightarrow> |
2906 |
'b::{linorder_topology,conditionally_complete_linorder}" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2907 |
assumes "antimono f" |
63494 | 2908 |
and cont: "continuous (at_right (Inf S)) f" |
2909 |
and S: "S \<noteq> {}" "bdd_below S" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2910 |
shows "f (Inf S) = (SUP s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2911 |
proof (rule antisym) |
61973 | 2912 |
have f: "(f \<longlongrightarrow> f (Inf S)) (at_right (Inf S))" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2913 |
using cont unfolding continuous_within . |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2914 |
show "f (Inf S) \<le> (SUP s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2915 |
proof cases |
63494 | 2916 |
assume "Inf S \<in> S" |
2917 |
then show ?thesis |
|
60758 | 2918 |
by (rule cSUP_upper) (auto intro: bdd_above_image_antimono S \<open>antimono f\<close>) |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2919 |
next |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2920 |
assume "Inf S \<notin> S" |
60758 | 2921 |
from \<open>S \<noteq> {}\<close> obtain s where "s \<in> S" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2922 |
by auto |
60758 | 2923 |
with \<open>Inf S \<notin> S\<close> S have "Inf S < s" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2924 |
unfolding less_le by (blast intro: cInf_lower) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2925 |
show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2926 |
proof (rule ccontr) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2927 |
assume "\<not> ?thesis" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2928 |
with order_tendstoD(1)[OF f, of "SUP s:S. f s"] obtain b where "Inf S < b" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2929 |
and *: "\<And>y. Inf S < y \<Longrightarrow> y < b \<Longrightarrow> (SUP s:S. f s) < f y" |
60758 | 2930 |
by (auto simp: not_le eventually_at_right[OF \<open>Inf S < s\<close>]) |
2931 |
with \<open>S \<noteq> {}\<close> obtain c where "c \<in> S" "c < b" |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2932 |
using cInf_lessD[of S b] by auto |
60758 | 2933 |
with \<open>Inf S \<notin> S\<close> S have "Inf S < c" |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2934 |
unfolding less_le by (blast intro: cInf_lower) |
60758 | 2935 |
from *[OF \<open>Inf S < c\<close> \<open>c < b\<close>] cSUP_upper[OF \<open>c \<in> S\<close> bdd_above_image_antimono[of f]] |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2936 |
show False |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2937 |
by (auto simp: assms) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2938 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2939 |
qed |
60758 | 2940 |
qed (intro cSUP_least \<open>antimono f\<close>[THEN antimonoD] cInf_lower S) |
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2941 |
|
63494 | 2942 |
|
62101 | 2943 |
subsection \<open>Uniform spaces\<close> |
2944 |
||
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
2945 |
class uniformity = |
62101 | 2946 |
fixes uniformity :: "('a \<times> 'a) filter" |
2947 |
begin |
|
2948 |
||
63494 | 2949 |
abbreviation uniformity_on :: "'a set \<Rightarrow> ('a \<times> 'a) filter" |
2950 |
where "uniformity_on s \<equiv> inf uniformity (principal (s\<times>s))" |
|
62101 | 2951 |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2952 |
end |
62101 | 2953 |
|
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
2954 |
lemma uniformity_Abort: |
62123
df65f5c27c15
setup code generation for filters as suggested by Florian
hoelzl
parents:
62102
diff
changeset
|
2955 |
"uniformity = |
df65f5c27c15
setup code generation for filters as suggested by Florian
hoelzl
parents:
62102
diff
changeset
|
2956 |
Filter.abstract_filter (\<lambda>u. Code.abort (STR ''uniformity is not executable'') (\<lambda>u. uniformity))" |
df65f5c27c15
setup code generation for filters as suggested by Florian
hoelzl
parents:
62102
diff
changeset
|
2957 |
by simp |
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
2958 |
|
62101 | 2959 |
class open_uniformity = "open" + uniformity + |
63494 | 2960 |
assumes open_uniformity: |
2961 |
"\<And>U. open U \<longleftrightarrow> (\<forall>x\<in>U. eventually (\<lambda>(x', y). x' = x \<longrightarrow> y \<in> U) uniformity)" |
|
62101 | 2962 |
|
2963 |
class uniform_space = open_uniformity + |
|
2964 |
assumes uniformity_refl: "eventually E uniformity \<Longrightarrow> E (x, x)" |
|
63494 | 2965 |
and uniformity_sym: "eventually E uniformity \<Longrightarrow> eventually (\<lambda>(x, y). E (y, x)) uniformity" |
2966 |
and uniformity_trans: |
|
2967 |
"eventually E uniformity \<Longrightarrow> |
|
2968 |
\<exists>D. eventually D uniformity \<and> (\<forall>x y z. D (x, y) \<longrightarrow> D (y, z) \<longrightarrow> E (x, z))" |
|
62101 | 2969 |
begin |
2970 |
||
2971 |
subclass topological_space |
|
63494 | 2972 |
by standard (force elim: eventually_mono eventually_elim2 simp: split_beta' open_uniformity)+ |
62101 | 2973 |
|
2974 |
lemma uniformity_bot: "uniformity \<noteq> bot" |
|
2975 |
using uniformity_refl by auto |
|
2976 |
||
2977 |
lemma uniformity_trans': |
|
63494 | 2978 |
"eventually E uniformity \<Longrightarrow> |
2979 |
eventually (\<lambda>((x, y), (y', z)). y = y' \<longrightarrow> E (x, z)) (uniformity \<times>\<^sub>F uniformity)" |
|
62101 | 2980 |
by (drule uniformity_trans) (auto simp add: eventually_prod_same) |
2981 |
||
2982 |
lemma uniformity_transE: |
|
63494 | 2983 |
assumes "eventually E uniformity" |
62101 | 2984 |
obtains D where "eventually D uniformity" "\<And>x y z. D (x, y) \<Longrightarrow> D (y, z) \<Longrightarrow> E (x, z)" |
63494 | 2985 |
using uniformity_trans [OF assms] by auto |
62101 | 2986 |
|
2987 |
lemma eventually_nhds_uniformity: |
|
63494 | 2988 |
"eventually P (nhds x) \<longleftrightarrow> eventually (\<lambda>(x', y). x' = x \<longrightarrow> P y) uniformity" |
2989 |
(is "_ \<longleftrightarrow> ?N P x") |
|
62101 | 2990 |
unfolding eventually_nhds |
2991 |
proof safe |
|
2992 |
assume *: "?N P x" |
|
63494 | 2993 |
have "?N (?N P) x" if "?N P x" for x |
2994 |
proof - |
|
2995 |
from that obtain D where ev: "eventually D uniformity" |
|
2996 |
and D: "D (a, b) \<Longrightarrow> D (b, c) \<Longrightarrow> case (a, c) of (x', y) \<Rightarrow> x' = x \<longrightarrow> P y" for a b c |
|
2997 |
by (rule uniformity_transE) simp |
|
2998 |
from ev show ?thesis |
|
2999 |
by eventually_elim (insert ev D, force elim: eventually_mono split: prod.split) |
|
3000 |
qed |
|
62101 | 3001 |
then have "open {x. ?N P x}" |
3002 |
by (simp add: open_uniformity) |
|
3003 |
then show "\<exists>S. open S \<and> x \<in> S \<and> (\<forall>x\<in>S. P x)" |
|
3004 |
by (intro exI[of _ "{x. ?N P x}"]) (auto dest: uniformity_refl simp: *) |
|
3005 |
qed (force simp add: open_uniformity elim: eventually_mono) |
|
3006 |
||
63494 | 3007 |
|
62101 | 3008 |
subsubsection \<open>Totally bounded sets\<close> |
3009 |
||
63494 | 3010 |
definition totally_bounded :: "'a set \<Rightarrow> bool" |
3011 |
where "totally_bounded S \<longleftrightarrow> |
|
62101 | 3012 |
(\<forall>E. eventually E uniformity \<longrightarrow> (\<exists>X. finite X \<and> (\<forall>s\<in>S. \<exists>x\<in>X. E (x, s))))" |
3013 |
||
3014 |
lemma totally_bounded_empty[iff]: "totally_bounded {}" |
|
3015 |
by (auto simp add: totally_bounded_def) |
|
3016 |
||
3017 |
lemma totally_bounded_subset: "totally_bounded S \<Longrightarrow> T \<subseteq> S \<Longrightarrow> totally_bounded T" |
|
63171 | 3018 |
by (fastforce simp add: totally_bounded_def) |
62101 | 3019 |
|
62102
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents:
62101
diff
changeset
|
3020 |
lemma totally_bounded_Union[intro]: |
63494 | 3021 |
assumes M: "finite M" "\<And>S. S \<in> M \<Longrightarrow> totally_bounded S" |
3022 |
shows "totally_bounded (\<Union>M)" |
|
62101 | 3023 |
unfolding totally_bounded_def |
3024 |
proof safe |
|
63494 | 3025 |
fix E |
3026 |
assume "eventually E uniformity" |
|
62101 | 3027 |
with M obtain X where "\<forall>S\<in>M. finite (X S) \<and> (\<forall>s\<in>S. \<exists>x\<in>X S. E (x, s))" |
3028 |
by (metis totally_bounded_def) |
|
62175 | 3029 |
with \<open>finite M\<close> show "\<exists>X. finite X \<and> (\<forall>s\<in>\<Union>M. \<exists>x\<in>X. E (x, s))" |
62101 | 3030 |
by (intro exI[of _ "\<Union>S\<in>M. X S"]) force |
3031 |
qed |
|
3032 |
||
63494 | 3033 |
|
62101 | 3034 |
subsubsection \<open>Cauchy filter\<close> |
3035 |
||
63494 | 3036 |
definition cauchy_filter :: "'a filter \<Rightarrow> bool" |
3037 |
where "cauchy_filter F \<longleftrightarrow> F \<times>\<^sub>F F \<le> uniformity" |
|
3038 |
||
3039 |
definition Cauchy :: "(nat \<Rightarrow> 'a) \<Rightarrow> bool" |
|
3040 |
where Cauchy_uniform: "Cauchy X = cauchy_filter (filtermap X sequentially)" |
|
62101 | 3041 |
|
3042 |
lemma Cauchy_uniform_iff: |
|
3043 |
"Cauchy X \<longleftrightarrow> (\<forall>P. eventually P uniformity \<longrightarrow> (\<exists>N. \<forall>n\<ge>N. \<forall>m\<ge>N. P (X n, X m)))" |
|
3044 |
unfolding Cauchy_uniform cauchy_filter_def le_filter_def eventually_prod_same |
|
3045 |
eventually_filtermap eventually_sequentially |
|
3046 |
proof safe |
|
3047 |
let ?U = "\<lambda>P. eventually P uniformity" |
|
63494 | 3048 |
{ |
3049 |
fix P |
|
3050 |
assume "?U P" "\<forall>P. ?U P \<longrightarrow> (\<exists>Q. (\<exists>N. \<forall>n\<ge>N. Q (X n)) \<and> (\<forall>x y. Q x \<longrightarrow> Q y \<longrightarrow> P (x, y)))" |
|
62101 | 3051 |
then obtain Q N where "\<And>n. n \<ge> N \<Longrightarrow> Q (X n)" "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> P (x, y)" |
3052 |
by metis |
|
3053 |
then show "\<exists>N. \<forall>n\<ge>N. \<forall>m\<ge>N. P (X n, X m)" |
|
63494 | 3054 |
by blast |
3055 |
next |
|
3056 |
fix P |
|
3057 |
assume "?U P" and P: "\<forall>P. ?U P \<longrightarrow> (\<exists>N. \<forall>n\<ge>N. \<forall>m\<ge>N. P (X n, X m))" |
|
62101 | 3058 |
then obtain Q where "?U Q" and Q: "\<And>x y z. Q (x, y) \<Longrightarrow> Q (y, z) \<Longrightarrow> P (x, z)" |
3059 |
by (auto elim: uniformity_transE) |
|
3060 |
then have "?U (\<lambda>x. Q x \<and> (\<lambda>(x, y). Q (y, x)) x)" |
|
3061 |
unfolding eventually_conj_iff by (simp add: uniformity_sym) |
|
3062 |
from P[rule_format, OF this] |
|
3063 |
obtain N where N: "\<And>n m. n \<ge> N \<Longrightarrow> m \<ge> N \<Longrightarrow> Q (X n, X m) \<and> Q (X m, X n)" |
|
3064 |
by auto |
|
3065 |
show "\<exists>Q. (\<exists>N. \<forall>n\<ge>N. Q (X n)) \<and> (\<forall>x y. Q x \<longrightarrow> Q y \<longrightarrow> P (x, y))" |
|
3066 |
proof (safe intro!: exI[of _ "\<lambda>x. \<forall>n\<ge>N. Q (x, X n) \<and> Q (X n, x)"] exI[of _ N] N) |
|
63494 | 3067 |
fix x y |
3068 |
assume "\<forall>n\<ge>N. Q (x, X n) \<and> Q (X n, x)" "\<forall>n\<ge>N. Q (y, X n) \<and> Q (X n, y)" |
|
62101 | 3069 |
then have "Q (x, X N)" "Q (X N, y)" by auto |
3070 |
then show "P (x, y)" |
|
3071 |
by (rule Q) |
|
63494 | 3072 |
qed |
3073 |
} |
|
62101 | 3074 |
qed |
3075 |
||
3076 |
lemma nhds_imp_cauchy_filter: |
|
63494 | 3077 |
assumes *: "F \<le> nhds x" |
3078 |
shows "cauchy_filter F" |
|
62101 | 3079 |
proof - |
3080 |
have "F \<times>\<^sub>F F \<le> nhds x \<times>\<^sub>F nhds x" |
|
3081 |
by (intro prod_filter_mono *) |
|
3082 |
also have "\<dots> \<le> uniformity" |
|
3083 |
unfolding le_filter_def eventually_nhds_uniformity eventually_prod_same |
|
3084 |
proof safe |
|
63494 | 3085 |
fix P |
3086 |
assume "eventually P uniformity" |
|
3087 |
then obtain Ql where ev: "eventually Ql uniformity" |
|
3088 |
and "Ql (x, y) \<Longrightarrow> Ql (y, z) \<Longrightarrow> P (x, z)" for x y z |
|
3089 |
by (rule uniformity_transE) simp |
|
3090 |
with ev[THEN uniformity_sym] |
|
3091 |
show "\<exists>Q. eventually (\<lambda>(x', y). x' = x \<longrightarrow> Q y) uniformity \<and> |
|
3092 |
(\<forall>x y. Q x \<longrightarrow> Q y \<longrightarrow> P (x, y))" |
|
62101 | 3093 |
by (rule_tac exI[of _ "\<lambda>y. Ql (y, x) \<and> Ql (x, y)"]) (fastforce elim: eventually_elim2) |
3094 |
qed |
|
3095 |
finally show ?thesis |
|
3096 |
by (simp add: cauchy_filter_def) |
|
3097 |
qed |
|
3098 |
||
3099 |
lemma LIMSEQ_imp_Cauchy: "X \<longlonglongrightarrow> x \<Longrightarrow> Cauchy X" |
|
3100 |
unfolding Cauchy_uniform filterlim_def by (intro nhds_imp_cauchy_filter) |
|
3101 |
||
63494 | 3102 |
lemma Cauchy_subseq_Cauchy: |
3103 |
assumes "Cauchy X" "subseq f" |
|
3104 |
shows "Cauchy (X \<circ> f)" |
|
62101 | 3105 |
unfolding Cauchy_uniform comp_def filtermap_filtermap[symmetric] cauchy_filter_def |
3106 |
by (rule order_trans[OF _ \<open>Cauchy X\<close>[unfolded Cauchy_uniform cauchy_filter_def]]) |
|
3107 |
(intro prod_filter_mono filtermap_mono filterlim_subseq[OF \<open>subseq f\<close>, unfolded filterlim_def]) |
|
3108 |
||
3109 |
lemma convergent_Cauchy: "convergent X \<Longrightarrow> Cauchy X" |
|
3110 |
unfolding convergent_def by (erule exE, erule LIMSEQ_imp_Cauchy) |
|
3111 |
||
63494 | 3112 |
definition complete :: "'a set \<Rightarrow> bool" |
3113 |
where complete_uniform: "complete S \<longleftrightarrow> |
|
3114 |
(\<forall>F \<le> principal S. F \<noteq> bot \<longrightarrow> cauchy_filter F \<longrightarrow> (\<exists>x\<in>S. F \<le> nhds x))" |
|
62101 | 3115 |
|
3116 |
end |
|
3117 |
||
63494 | 3118 |
|
62101 | 3119 |
subsubsection \<open>Uniformly continuous functions\<close> |
3120 |
||
63494 | 3121 |
definition uniformly_continuous_on :: "'a set \<Rightarrow> ('a::uniform_space \<Rightarrow> 'b::uniform_space) \<Rightarrow> bool" |
3122 |
where uniformly_continuous_on_uniformity: "uniformly_continuous_on s f \<longleftrightarrow> |
|
62101 | 3123 |
(LIM (x, y) (uniformity_on s). (f x, f y) :> uniformity)" |
3124 |
||
3125 |
lemma uniformly_continuous_onD: |
|
63494 | 3126 |
"uniformly_continuous_on s f \<Longrightarrow> eventually E uniformity \<Longrightarrow> |
3127 |
eventually (\<lambda>(x, y). x \<in> s \<longrightarrow> y \<in> s \<longrightarrow> E (f x, f y)) uniformity" |
|
3128 |
by (simp add: uniformly_continuous_on_uniformity filterlim_iff |
|
3129 |
eventually_inf_principal split_beta' mem_Times_iff imp_conjL) |
|
62101 | 3130 |
|
3131 |
lemma uniformly_continuous_on_const[continuous_intros]: "uniformly_continuous_on s (\<lambda>x. c)" |
|
3132 |
by (auto simp: uniformly_continuous_on_uniformity filterlim_iff uniformity_refl) |
|
3133 |
||
3134 |
lemma uniformly_continuous_on_id[continuous_intros]: "uniformly_continuous_on s (\<lambda>x. x)" |
|
3135 |
by (auto simp: uniformly_continuous_on_uniformity filterlim_def) |
|
3136 |
||
3137 |
lemma uniformly_continuous_on_compose[continuous_intros]: |
|
63494 | 3138 |
"uniformly_continuous_on s g \<Longrightarrow> uniformly_continuous_on (g`s) f \<Longrightarrow> |
3139 |
uniformly_continuous_on s (\<lambda>x. f (g x))" |
|
3140 |
using filterlim_compose[of "\<lambda>(x, y). (f x, f y)" uniformity |
|
3141 |
"uniformity_on (g`s)" "\<lambda>(x, y). (g x, g y)" "uniformity_on s"] |
|
3142 |
by (simp add: split_beta' uniformly_continuous_on_uniformity |
|
3143 |
filterlim_inf filterlim_principal eventually_inf_principal mem_Times_iff) |
|
3144 |
||
3145 |
lemma uniformly_continuous_imp_continuous: |
|
3146 |
assumes f: "uniformly_continuous_on s f" |
|
3147 |
shows "continuous_on s f" |
|
62101 | 3148 |
by (auto simp: filterlim_iff eventually_at_filter eventually_nhds_uniformity continuous_on_def |
3149 |
elim: eventually_mono dest!: uniformly_continuous_onD[OF f]) |
|
3150 |
||
63494 | 3151 |
|
62367 | 3152 |
section \<open>Product Topology\<close> |
3153 |
||
3154 |
subsection \<open>Product is a topological space\<close> |
|
3155 |
||
3156 |
instantiation prod :: (topological_space, topological_space) topological_space |
|
3157 |
begin |
|
3158 |
||
3159 |
definition open_prod_def[code del]: |
|
3160 |
"open (S :: ('a \<times> 'b) set) \<longleftrightarrow> |
|
3161 |
(\<forall>x\<in>S. \<exists>A B. open A \<and> open B \<and> x \<in> A \<times> B \<and> A \<times> B \<subseteq> S)" |
|
3162 |
||
3163 |
lemma open_prod_elim: |
|
3164 |
assumes "open S" and "x \<in> S" |
|
3165 |
obtains A B where "open A" and "open B" and "x \<in> A \<times> B" and "A \<times> B \<subseteq> S" |
|
63494 | 3166 |
using assms unfolding open_prod_def by fast |
62367 | 3167 |
|
3168 |
lemma open_prod_intro: |
|
3169 |
assumes "\<And>x. x \<in> S \<Longrightarrow> \<exists>A B. open A \<and> open B \<and> x \<in> A \<times> B \<and> A \<times> B \<subseteq> S" |
|
3170 |
shows "open S" |
|
63494 | 3171 |
using assms unfolding open_prod_def by fast |
62367 | 3172 |
|
3173 |
instance |
|
3174 |
proof |
|
3175 |
show "open (UNIV :: ('a \<times> 'b) set)" |
|
3176 |
unfolding open_prod_def by auto |
|
3177 |
next |
|
3178 |
fix S T :: "('a \<times> 'b) set" |
|
3179 |
assume "open S" "open T" |
|
3180 |
show "open (S \<inter> T)" |
|
3181 |
proof (rule open_prod_intro) |
|
63494 | 3182 |
fix x |
3183 |
assume x: "x \<in> S \<inter> T" |
|
62367 | 3184 |
from x have "x \<in> S" by simp |
3185 |
obtain Sa Sb where A: "open Sa" "open Sb" "x \<in> Sa \<times> Sb" "Sa \<times> Sb \<subseteq> S" |
|
3186 |
using \<open>open S\<close> and \<open>x \<in> S\<close> by (rule open_prod_elim) |
|
3187 |
from x have "x \<in> T" by simp |
|
3188 |
obtain Ta Tb where B: "open Ta" "open Tb" "x \<in> Ta \<times> Tb" "Ta \<times> Tb \<subseteq> T" |
|
3189 |
using \<open>open T\<close> and \<open>x \<in> T\<close> by (rule open_prod_elim) |
|
3190 |
let ?A = "Sa \<inter> Ta" and ?B = "Sb \<inter> Tb" |
|
3191 |
have "open ?A \<and> open ?B \<and> x \<in> ?A \<times> ?B \<and> ?A \<times> ?B \<subseteq> S \<inter> T" |
|
3192 |
using A B by (auto simp add: open_Int) |
|
63494 | 3193 |
then show "\<exists>A B. open A \<and> open B \<and> x \<in> A \<times> B \<and> A \<times> B \<subseteq> S \<inter> T" |
62367 | 3194 |
by fast |
3195 |
qed |
|
3196 |
next |
|
3197 |
fix K :: "('a \<times> 'b) set set" |
|
63494 | 3198 |
assume "\<forall>S\<in>K. open S" |
3199 |
then show "open (\<Union>K)" |
|
62367 | 3200 |
unfolding open_prod_def by fast |
3201 |
qed |
|
3202 |
||
62101 | 3203 |
end |
62367 | 3204 |
|
63494 | 3205 |
declare [[code abort: "open :: ('a::topological_space \<times> 'b::topological_space) set \<Rightarrow> bool"]] |
62367 | 3206 |
|
3207 |
lemma open_Times: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<times> T)" |
|
63494 | 3208 |
unfolding open_prod_def by auto |
62367 | 3209 |
|
3210 |
lemma fst_vimage_eq_Times: "fst -` S = S \<times> UNIV" |
|
63494 | 3211 |
by auto |
62367 | 3212 |
|
3213 |
lemma snd_vimage_eq_Times: "snd -` S = UNIV \<times> S" |
|
63494 | 3214 |
by auto |
62367 | 3215 |
|
3216 |
lemma open_vimage_fst: "open S \<Longrightarrow> open (fst -` S)" |
|
63494 | 3217 |
by (simp add: fst_vimage_eq_Times open_Times) |
62367 | 3218 |
|
3219 |
lemma open_vimage_snd: "open S \<Longrightarrow> open (snd -` S)" |
|
63494 | 3220 |
by (simp add: snd_vimage_eq_Times open_Times) |
62367 | 3221 |
|
3222 |
lemma closed_vimage_fst: "closed S \<Longrightarrow> closed (fst -` S)" |
|
63494 | 3223 |
unfolding closed_open vimage_Compl [symmetric] |
3224 |
by (rule open_vimage_fst) |
|
62367 | 3225 |
|
3226 |
lemma closed_vimage_snd: "closed S \<Longrightarrow> closed (snd -` S)" |
|
63494 | 3227 |
unfolding closed_open vimage_Compl [symmetric] |
3228 |
by (rule open_vimage_snd) |
|
62367 | 3229 |
|
3230 |
lemma closed_Times: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<times> T)" |
|
3231 |
proof - |
|
63494 | 3232 |
have "S \<times> T = (fst -` S) \<inter> (snd -` T)" |
3233 |
by auto |
|
3234 |
then show "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<times> T)" |
|
62367 | 3235 |
by (simp add: closed_vimage_fst closed_vimage_snd closed_Int) |
3236 |
qed |
|
3237 |
||
3238 |
lemma subset_fst_imageI: "A \<times> B \<subseteq> S \<Longrightarrow> y \<in> B \<Longrightarrow> A \<subseteq> fst ` S" |
|
3239 |
unfolding image_def subset_eq by force |
|
3240 |
||
3241 |
lemma subset_snd_imageI: "A \<times> B \<subseteq> S \<Longrightarrow> x \<in> A \<Longrightarrow> B \<subseteq> snd ` S" |
|
3242 |
unfolding image_def subset_eq by force |
|
3243 |
||
63494 | 3244 |
lemma open_image_fst: |
3245 |
assumes "open S" |
|
3246 |
shows "open (fst ` S)" |
|
62367 | 3247 |
proof (rule openI) |
63494 | 3248 |
fix x |
3249 |
assume "x \<in> fst ` S" |
|
3250 |
then obtain y where "(x, y) \<in> S" |
|
3251 |
by auto |
|
62367 | 3252 |
then obtain A B where "open A" "open B" "x \<in> A" "y \<in> B" "A \<times> B \<subseteq> S" |
3253 |
using \<open>open S\<close> unfolding open_prod_def by auto |
|
63494 | 3254 |
from \<open>A \<times> B \<subseteq> S\<close> \<open>y \<in> B\<close> have "A \<subseteq> fst ` S" |
3255 |
by (rule subset_fst_imageI) |
|
3256 |
with \<open>open A\<close> \<open>x \<in> A\<close> have "open A \<and> x \<in> A \<and> A \<subseteq> fst ` S" |
|
3257 |
by simp |
|
3258 |
then show "\<exists>T. open T \<and> x \<in> T \<and> T \<subseteq> fst ` S" .. |
|
62367 | 3259 |
qed |
3260 |
||
63494 | 3261 |
lemma open_image_snd: |
3262 |
assumes "open S" |
|
3263 |
shows "open (snd ` S)" |
|
62367 | 3264 |
proof (rule openI) |
63494 | 3265 |
fix y |
3266 |
assume "y \<in> snd ` S" |
|
3267 |
then obtain x where "(x, y) \<in> S" |
|
3268 |
by auto |
|
62367 | 3269 |
then obtain A B where "open A" "open B" "x \<in> A" "y \<in> B" "A \<times> B \<subseteq> S" |
3270 |
using \<open>open S\<close> unfolding open_prod_def by auto |
|
63494 | 3271 |
from \<open>A \<times> B \<subseteq> S\<close> \<open>x \<in> A\<close> have "B \<subseteq> snd ` S" |
3272 |
by (rule subset_snd_imageI) |
|
3273 |
with \<open>open B\<close> \<open>y \<in> B\<close> have "open B \<and> y \<in> B \<and> B \<subseteq> snd ` S" |
|
3274 |
by simp |
|
3275 |
then show "\<exists>T. open T \<and> y \<in> T \<and> T \<subseteq> snd ` S" .. |
|
62367 | 3276 |
qed |
3277 |
||
3278 |
lemma nhds_prod: "nhds (a, b) = nhds a \<times>\<^sub>F nhds b" |
|
3279 |
unfolding nhds_def |
|
3280 |
proof (subst prod_filter_INF, auto intro!: antisym INF_greatest simp: principal_prod_principal) |
|
63494 | 3281 |
fix S T |
3282 |
assume "open S" "a \<in> S" "open T" "b \<in> T" |
|
62367 | 3283 |
then show "(INF x : {S. open S \<and> (a, b) \<in> S}. principal x) \<le> principal (S \<times> T)" |
3284 |
by (intro INF_lower) (auto intro!: open_Times) |
|
3285 |
next |
|
63494 | 3286 |
fix S' |
3287 |
assume "open S'" "(a, b) \<in> S'" |
|
62367 | 3288 |
then obtain S T where "open S" "a \<in> S" "open T" "b \<in> T" "S \<times> T \<subseteq> S'" |
3289 |
by (auto elim: open_prod_elim) |
|
63494 | 3290 |
then show "(INF x : {S. open S \<and> a \<in> S}. INF y : {S. open S \<and> b \<in> S}. |
3291 |
principal (x \<times> y)) \<le> principal S'" |
|
62367 | 3292 |
by (auto intro!: INF_lower2) |
3293 |
qed |
|
3294 |
||
63494 | 3295 |
|
62367 | 3296 |
subsubsection \<open>Continuity of operations\<close> |
3297 |
||
3298 |
lemma tendsto_fst [tendsto_intros]: |
|
3299 |
assumes "(f \<longlongrightarrow> a) F" |
|
3300 |
shows "((\<lambda>x. fst (f x)) \<longlongrightarrow> fst a) F" |
|
3301 |
proof (rule topological_tendstoI) |
|
63494 | 3302 |
fix S |
3303 |
assume "open S" and "fst a \<in> S" |
|
62367 | 3304 |
then have "open (fst -` S)" and "a \<in> fst -` S" |
3305 |
by (simp_all add: open_vimage_fst) |
|
3306 |
with assms have "eventually (\<lambda>x. f x \<in> fst -` S) F" |
|
3307 |
by (rule topological_tendstoD) |
|
3308 |
then show "eventually (\<lambda>x. fst (f x) \<in> S) F" |
|
3309 |
by simp |
|
3310 |
qed |
|
3311 |
||
3312 |
lemma tendsto_snd [tendsto_intros]: |
|
3313 |
assumes "(f \<longlongrightarrow> a) F" |
|
3314 |
shows "((\<lambda>x. snd (f x)) \<longlongrightarrow> snd a) F" |
|
3315 |
proof (rule topological_tendstoI) |
|
63494 | 3316 |
fix S |
3317 |
assume "open S" and "snd a \<in> S" |
|
62367 | 3318 |
then have "open (snd -` S)" and "a \<in> snd -` S" |
3319 |
by (simp_all add: open_vimage_snd) |
|
3320 |
with assms have "eventually (\<lambda>x. f x \<in> snd -` S) F" |
|
3321 |
by (rule topological_tendstoD) |
|
3322 |
then show "eventually (\<lambda>x. snd (f x) \<in> S) F" |
|
3323 |
by simp |
|
3324 |
qed |
|
3325 |
||
3326 |
lemma tendsto_Pair [tendsto_intros]: |
|
3327 |
assumes "(f \<longlongrightarrow> a) F" and "(g \<longlongrightarrow> b) F" |
|
3328 |
shows "((\<lambda>x. (f x, g x)) \<longlongrightarrow> (a, b)) F" |
|
3329 |
proof (rule topological_tendstoI) |
|
63494 | 3330 |
fix S |
3331 |
assume "open S" and "(a, b) \<in> S" |
|
62367 | 3332 |
then obtain A B where "open A" "open B" "a \<in> A" "b \<in> B" "A \<times> B \<subseteq> S" |
3333 |
unfolding open_prod_def by fast |
|
3334 |
have "eventually (\<lambda>x. f x \<in> A) F" |
|
3335 |
using \<open>(f \<longlongrightarrow> a) F\<close> \<open>open A\<close> \<open>a \<in> A\<close> |
|
3336 |
by (rule topological_tendstoD) |
|
3337 |
moreover |
|
3338 |
have "eventually (\<lambda>x. g x \<in> B) F" |
|
3339 |
using \<open>(g \<longlongrightarrow> b) F\<close> \<open>open B\<close> \<open>b \<in> B\<close> |
|
3340 |
by (rule topological_tendstoD) |
|
3341 |
ultimately |
|
3342 |
show "eventually (\<lambda>x. (f x, g x) \<in> S) F" |
|
3343 |
by (rule eventually_elim2) |
|
3344 |
(simp add: subsetD [OF \<open>A \<times> B \<subseteq> S\<close>]) |
|
3345 |
qed |
|
3346 |
||
3347 |
lemma continuous_fst[continuous_intros]: "continuous F f \<Longrightarrow> continuous F (\<lambda>x. fst (f x))" |
|
3348 |
unfolding continuous_def by (rule tendsto_fst) |
|
3349 |
||
3350 |
lemma continuous_snd[continuous_intros]: "continuous F f \<Longrightarrow> continuous F (\<lambda>x. snd (f x))" |
|
3351 |
unfolding continuous_def by (rule tendsto_snd) |
|
3352 |
||
63494 | 3353 |
lemma continuous_Pair[continuous_intros]: |
3354 |
"continuous F f \<Longrightarrow> continuous F g \<Longrightarrow> continuous F (\<lambda>x. (f x, g x))" |
|
62367 | 3355 |
unfolding continuous_def by (rule tendsto_Pair) |
3356 |
||
63494 | 3357 |
lemma continuous_on_fst[continuous_intros]: |
3358 |
"continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. fst (f x))" |
|
62367 | 3359 |
unfolding continuous_on_def by (auto intro: tendsto_fst) |
3360 |
||
63494 | 3361 |
lemma continuous_on_snd[continuous_intros]: |
3362 |
"continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. snd (f x))" |
|
62367 | 3363 |
unfolding continuous_on_def by (auto intro: tendsto_snd) |
3364 |
||
63494 | 3365 |
lemma continuous_on_Pair[continuous_intros]: |
3366 |
"continuous_on s f \<Longrightarrow> continuous_on s g \<Longrightarrow> continuous_on s (\<lambda>x. (f x, g x))" |
|
62367 | 3367 |
unfolding continuous_on_def by (auto intro: tendsto_Pair) |
3368 |
||
3369 |
lemma continuous_on_swap[continuous_intros]: "continuous_on A prod.swap" |
|
63494 | 3370 |
by (simp add: prod.swap_def continuous_on_fst continuous_on_snd |
3371 |
continuous_on_Pair continuous_on_id) |
|
62367 | 3372 |
|
3373 |
lemma continuous_on_swap_args: |
|
3374 |
assumes "continuous_on (A\<times>B) (\<lambda>(x,y). d x y)" |
|
3375 |
shows "continuous_on (B\<times>A) (\<lambda>(x,y). d y x)" |
|
3376 |
proof - |
|
63494 | 3377 |
have "(\<lambda>(x,y). d y x) = (\<lambda>(x,y). d x y) \<circ> prod.swap" |
62367 | 3378 |
by force |
3379 |
then show ?thesis |
|
3380 |
apply (rule ssubst) |
|
3381 |
apply (rule continuous_on_compose) |
|
3382 |
apply (force intro: continuous_on_subset [OF continuous_on_swap]) |
|
3383 |
apply (force intro: continuous_on_subset [OF assms]) |
|
3384 |
done |
|
3385 |
qed |
|
3386 |
||
3387 |
lemma isCont_fst [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. fst (f x)) a" |
|
3388 |
by (fact continuous_fst) |
|
3389 |
||
3390 |
lemma isCont_snd [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. snd (f x)) a" |
|
3391 |
by (fact continuous_snd) |
|
3392 |
||
3393 |
lemma isCont_Pair [simp]: "\<lbrakk>isCont f a; isCont g a\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. (f x, g x)) a" |
|
3394 |
by (fact continuous_Pair) |
|
3395 |
||
63494 | 3396 |
|
62367 | 3397 |
subsubsection \<open>Separation axioms\<close> |
3398 |
||
3399 |
instance prod :: (t0_space, t0_space) t0_space |
|
3400 |
proof |
|
63494 | 3401 |
fix x y :: "'a \<times> 'b" |
3402 |
assume "x \<noteq> y" |
|
3403 |
then have "fst x \<noteq> fst y \<or> snd x \<noteq> snd y" |
|
62367 | 3404 |
by (simp add: prod_eq_iff) |
63494 | 3405 |
then show "\<exists>U. open U \<and> (x \<in> U) \<noteq> (y \<in> U)" |
62367 | 3406 |
by (fast dest: t0_space elim: open_vimage_fst open_vimage_snd) |
3407 |
qed |
|
3408 |
||
3409 |
instance prod :: (t1_space, t1_space) t1_space |
|
3410 |
proof |
|
63494 | 3411 |
fix x y :: "'a \<times> 'b" |
3412 |
assume "x \<noteq> y" |
|
3413 |
then have "fst x \<noteq> fst y \<or> snd x \<noteq> snd y" |
|
62367 | 3414 |
by (simp add: prod_eq_iff) |
63494 | 3415 |
then show "\<exists>U. open U \<and> x \<in> U \<and> y \<notin> U" |
62367 | 3416 |
by (fast dest: t1_space elim: open_vimage_fst open_vimage_snd) |
3417 |
qed |
|
3418 |
||
3419 |
instance prod :: (t2_space, t2_space) t2_space |
|
3420 |
proof |
|
63494 | 3421 |
fix x y :: "'a \<times> 'b" |
3422 |
assume "x \<noteq> y" |
|
3423 |
then have "fst x \<noteq> fst y \<or> snd x \<noteq> snd y" |
|
62367 | 3424 |
by (simp add: prod_eq_iff) |
63494 | 3425 |
then show "\<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {}" |
62367 | 3426 |
by (fast dest: hausdorff elim: open_vimage_fst open_vimage_snd) |
3427 |
qed |
|
3428 |
||
3429 |
lemma isCont_swap[continuous_intros]: "isCont prod.swap a" |
|
3430 |
using continuous_on_eq_continuous_within continuous_on_swap by blast |
|
3431 |
||
64284
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3432 |
lemma open_diagonal_complement: |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3433 |
"open {(x,y) | x y. x \<noteq> (y::('a::t2_space))}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3434 |
proof (rule topological_space_class.openI) |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3435 |
fix t assume "t \<in> {(x, y) | x y. x \<noteq> (y::'a)}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3436 |
then obtain x y where "t = (x,y)" "x \<noteq> y" by blast |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3437 |
then obtain U V where *: "open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3438 |
by (auto simp add: separation_t2) |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3439 |
define T where "T = U \<times> V" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3440 |
have "open T" using * open_Times T_def by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3441 |
moreover have "t \<in> T" unfolding T_def using `t = (x,y)` * by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3442 |
moreover have "T \<subseteq> {(x, y) | x y. x \<noteq> y}" unfolding T_def using * by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3443 |
ultimately show "\<exists>T. open T \<and> t \<in> T \<and> T \<subseteq> {(x, y) | x y. x \<noteq> y}" by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3444 |
qed |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3445 |
|
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3446 |
lemma closed_diagonal: |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3447 |
"closed {y. \<exists> x::('a::t2_space). y = (x,x)}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3448 |
proof - |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3449 |
have "{y. \<exists> x::'a. y = (x,x)} = UNIV - {(x,y) | x y. x \<noteq> y}" by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3450 |
then show ?thesis using open_diagonal_complement closed_Diff by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3451 |
qed |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3452 |
|
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3453 |
lemma open_superdiagonal: |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3454 |
"open {(x,y) | x y. x > (y::'a::{linorder_topology})}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3455 |
proof (rule topological_space_class.openI) |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3456 |
fix t assume "t \<in> {(x, y) | x y. y < (x::'a)}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3457 |
then obtain x y where "t = (x, y)" "x > y" by blast |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3458 |
show "\<exists>T. open T \<and> t \<in> T \<and> T \<subseteq> {(x, y) | x y. y < x}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3459 |
proof (cases) |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3460 |
assume "\<exists>z. y < z \<and> z < x" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3461 |
then obtain z where z: "y < z \<and> z < x" by blast |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3462 |
define T where "T = {z<..} \<times> {..<z}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3463 |
have "open T" unfolding T_def by (simp add: open_Times) |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3464 |
moreover have "t \<in> T" using T_def z `t = (x,y)` by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3465 |
moreover have "T \<subseteq> {(x, y) | x y. y < x}" unfolding T_def by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3466 |
ultimately show ?thesis by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3467 |
next |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3468 |
assume "\<not>(\<exists>z. y < z \<and> z < x)" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3469 |
then have *: "{x ..} = {y<..}" "{..< x} = {..y}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3470 |
using `x > y` apply auto using leI by blast |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3471 |
define T where "T = {x ..} \<times> {.. y}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3472 |
then have "T = {y<..} \<times> {..< x}" using * by simp |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3473 |
then have "open T" unfolding T_def by (simp add: open_Times) |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3474 |
moreover have "t \<in> T" using T_def `t = (x,y)` by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3475 |
moreover have "T \<subseteq> {(x, y) | x y. y < x}" unfolding T_def using `x > y` by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3476 |
ultimately show ?thesis by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3477 |
qed |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3478 |
qed |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3479 |
|
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3480 |
lemma closed_subdiagonal: |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3481 |
"closed {(x,y) | x y. x \<le> (y::'a::{linorder_topology})}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3482 |
proof - |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3483 |
have "{(x,y) | x y. x \<le> (y::'a)} = UNIV - {(x,y) | x y. x > (y::'a)}" by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3484 |
then show ?thesis using open_superdiagonal closed_Diff by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3485 |
qed |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3486 |
|
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3487 |
lemma open_subdiagonal: |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3488 |
"open {(x,y) | x y. x < (y::'a::{linorder_topology})}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3489 |
proof (rule topological_space_class.openI) |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3490 |
fix t assume "t \<in> {(x, y) | x y. y > (x::'a)}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3491 |
then obtain x y where "t = (x, y)" "x < y" by blast |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3492 |
show "\<exists>T. open T \<and> t \<in> T \<and> T \<subseteq> {(x, y) | x y. y > x}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3493 |
proof (cases) |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3494 |
assume "\<exists>z. y > z \<and> z > x" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3495 |
then obtain z where z: "y > z \<and> z > x" by blast |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3496 |
define T where "T = {..<z} \<times> {z<..}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3497 |
have "open T" unfolding T_def by (simp add: open_Times) |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3498 |
moreover have "t \<in> T" using T_def z `t = (x,y)` by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3499 |
moreover have "T \<subseteq> {(x, y) |x y. y > x}" unfolding T_def by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3500 |
ultimately show ?thesis by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3501 |
next |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3502 |
assume "\<not>(\<exists>z. y > z \<and> z > x)" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3503 |
then have *: "{..x} = {..<y}" "{x<..} = {y..}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3504 |
using `x < y` apply auto using leI by blast |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3505 |
define T where "T = {..x} \<times> {y..}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3506 |
then have "T = {..<y} \<times> {x<..}" using * by simp |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3507 |
then have "open T" unfolding T_def by (simp add: open_Times) |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3508 |
moreover have "t \<in> T" using T_def `t = (x,y)` by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3509 |
moreover have "T \<subseteq> {(x, y) |x y. y > x}" unfolding T_def using `x < y` by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3510 |
ultimately show ?thesis by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3511 |
qed |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3512 |
qed |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3513 |
|
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3514 |
lemma closed_superdiagonal: |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3515 |
"closed {(x,y) | x y. x \<ge> (y::('a::{linorder_topology}))}" |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3516 |
proof - |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3517 |
have "{(x,y) | x y. x \<ge> (y::'a)} = UNIV - {(x,y) | x y. x < y}" by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3518 |
then show ?thesis using open_subdiagonal closed_Diff by auto |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3519 |
qed |
f3b905b2eee2
HOL-Analysis: more theorems from Sébastien Gouëzel's Ergodic_Theory
hoelzl
parents:
64283
diff
changeset
|
3520 |
|
62367 | 3521 |
end |