author | wenzelm |
Wed, 06 May 2015 23:39:30 +0200 | |
changeset 60271 | a6c6a3fb7882 |
parent 60040 | 1fa1023b13b9 |
child 60150 | bd773c47ad0b |
permissions | -rw-r--r-- |
52265 | 1 |
(* Title: HOL/Topological_Spaces.thy |
51471 | 2 |
Author: Brian Huffman |
3 |
Author: Johannes Hölzl |
|
4 |
*) |
|
5 |
||
58889 | 6 |
section {* Topological Spaces *} |
51471 | 7 |
|
8 |
theory Topological_Spaces |
|
51773 | 9 |
imports Main Conditionally_Complete_Lattices |
51471 | 10 |
begin |
11 |
||
57953 | 12 |
named_theorems continuous_intros "structural introduction rules for continuity" |
13 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
14 |
|
51471 | 15 |
subsection {* Topological space *} |
16 |
||
17 |
class "open" = |
|
18 |
fixes "open" :: "'a set \<Rightarrow> bool" |
|
19 |
||
20 |
class topological_space = "open" + |
|
21 |
assumes open_UNIV [simp, intro]: "open UNIV" |
|
22 |
assumes open_Int [intro]: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<inter> T)" |
|
23 |
assumes open_Union [intro]: "\<forall>S\<in>K. open S \<Longrightarrow> open (\<Union> K)" |
|
24 |
begin |
|
25 |
||
26 |
definition |
|
27 |
closed :: "'a set \<Rightarrow> bool" where |
|
28 |
"closed S \<longleftrightarrow> open (- S)" |
|
29 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
30 |
lemma open_empty [continuous_intros, intro, simp]: "open {}" |
51471 | 31 |
using open_Union [of "{}"] by simp |
32 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
33 |
lemma open_Un [continuous_intros, intro]: "open S \<Longrightarrow> open T \<Longrightarrow> open (S \<union> T)" |
51471 | 34 |
using open_Union [of "{S, T}"] by simp |
35 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
36 |
lemma open_UN [continuous_intros, intro]: "\<forall>x\<in>A. open (B x) \<Longrightarrow> open (\<Union>x\<in>A. B x)" |
56166 | 37 |
using open_Union [of "B ` A"] by simp |
51471 | 38 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
39 |
lemma open_Inter [continuous_intros, intro]: "finite S \<Longrightarrow> \<forall>T\<in>S. open T \<Longrightarrow> open (\<Inter>S)" |
51471 | 40 |
by (induct set: finite) auto |
41 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
42 |
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 | 43 |
using open_Inter [of "B ` A"] by simp |
51471 | 44 |
|
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
|
45 |
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
|
46 |
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
|
47 |
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
|
48 |
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
|
49 |
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
|
50 |
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
|
51 |
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
|
52 |
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
|
53 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
54 |
lemma closed_empty [continuous_intros, intro, simp]: "closed {}" |
51471 | 55 |
unfolding closed_def by simp |
56 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
57 |
lemma closed_Un [continuous_intros, intro]: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<union> T)" |
51471 | 58 |
unfolding closed_def by auto |
59 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
60 |
lemma closed_UNIV [continuous_intros, intro, simp]: "closed UNIV" |
51471 | 61 |
unfolding closed_def by simp |
62 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
63 |
lemma closed_Int [continuous_intros, intro]: "closed S \<Longrightarrow> closed T \<Longrightarrow> closed (S \<inter> T)" |
51471 | 64 |
unfolding closed_def by auto |
65 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
66 |
lemma closed_INT [continuous_intros, intro]: "\<forall>x\<in>A. closed (B x) \<Longrightarrow> closed (\<Inter>x\<in>A. B x)" |
51471 | 67 |
unfolding closed_def by auto |
68 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
69 |
lemma closed_Inter [continuous_intros, intro]: "\<forall>S\<in>K. closed S \<Longrightarrow> closed (\<Inter> K)" |
51471 | 70 |
unfolding closed_def uminus_Inf by auto |
71 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
72 |
lemma closed_Union [continuous_intros, intro]: "finite S \<Longrightarrow> \<forall>T\<in>S. closed T \<Longrightarrow> closed (\<Union>S)" |
51471 | 73 |
by (induct set: finite) auto |
74 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
75 |
lemma closed_UN [continuous_intros, intro]: "finite A \<Longrightarrow> \<forall>x\<in>A. closed (B x) \<Longrightarrow> closed (\<Union>x\<in>A. B x)" |
56166 | 76 |
using closed_Union [of "B ` A"] by simp |
51471 | 77 |
|
78 |
lemma open_closed: "open S \<longleftrightarrow> closed (- S)" |
|
79 |
unfolding closed_def by simp |
|
80 |
||
81 |
lemma closed_open: "closed S \<longleftrightarrow> open (- S)" |
|
82 |
unfolding closed_def by simp |
|
83 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
84 |
lemma open_Diff [continuous_intros, intro]: "open S \<Longrightarrow> closed T \<Longrightarrow> open (S - T)" |
51471 | 85 |
unfolding closed_open Diff_eq by (rule open_Int) |
86 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
87 |
lemma closed_Diff [continuous_intros, intro]: "closed S \<Longrightarrow> open T \<Longrightarrow> closed (S - T)" |
51471 | 88 |
unfolding open_closed Diff_eq by (rule closed_Int) |
89 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
90 |
lemma open_Compl [continuous_intros, intro]: "closed S \<Longrightarrow> open (- S)" |
51471 | 91 |
unfolding closed_open . |
92 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
93 |
lemma closed_Compl [continuous_intros, intro]: "open S \<Longrightarrow> closed (- S)" |
51471 | 94 |
unfolding open_closed . |
95 |
||
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
96 |
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
|
97 |
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
|
98 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
99 |
lemma open_Collect_conj: assumes "open {x. P x}" "open {x. Q x}" shows "open {x. P x \<and> 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
|
100 |
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
|
101 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
102 |
lemma open_Collect_disj: assumes "open {x. P x}" "open {x. Q x}" shows "open {x. P x \<or> 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
|
103 |
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
|
104 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
105 |
lemma open_Collect_ex: "(\<And>i. open {x. P i x}) \<Longrightarrow> open {x. \<exists>i. P i x}" |
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 UNIV "\<lambda>i. {x. P i x}"] unfolding Collect_ex_eq by simp |
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_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
|
109 |
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
|
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_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
|
112 |
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
|
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 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
|
115 |
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
|
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_conj: assumes "closed {x. P x}" "closed {x. Q x}" shows "closed {x. P x \<and> 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
|
118 |
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
|
119 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
120 |
lemma closed_Collect_disj: assumes "closed {x. P x}" "closed {x. Q x}" shows "closed {x. P x \<or> 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
|
121 |
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
|
122 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
123 |
lemma closed_Collect_all: "(\<And>i. closed {x. P i x}) \<Longrightarrow> closed {x. \<forall>i. P i x}" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
124 |
using closed_INT[of UNIV "\<lambda>i. {x. P i x}"] unfolding Collect_all_eq by simp |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
125 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
126 |
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
|
127 |
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
|
128 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
129 |
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
|
130 |
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
|
131 |
|
51471 | 132 |
end |
133 |
||
134 |
subsection{* Hausdorff and other separation properties *} |
|
135 |
||
136 |
class t0_space = topological_space + |
|
137 |
assumes t0_space: "x \<noteq> y \<Longrightarrow> \<exists>U. open U \<and> \<not> (x \<in> U \<longleftrightarrow> y \<in> U)" |
|
138 |
||
139 |
class t1_space = topological_space + |
|
140 |
assumes t1_space: "x \<noteq> y \<Longrightarrow> \<exists>U. open U \<and> x \<in> U \<and> y \<notin> U" |
|
141 |
||
142 |
instance t1_space \<subseteq> t0_space |
|
143 |
proof qed (fast dest: t1_space) |
|
144 |
||
145 |
lemma separation_t1: |
|
146 |
fixes x y :: "'a::t1_space" |
|
147 |
shows "x \<noteq> y \<longleftrightarrow> (\<exists>U. open U \<and> x \<in> U \<and> y \<notin> U)" |
|
148 |
using t1_space[of x y] by blast |
|
149 |
||
150 |
lemma closed_singleton: |
|
151 |
fixes a :: "'a::t1_space" |
|
152 |
shows "closed {a}" |
|
153 |
proof - |
|
154 |
let ?T = "\<Union>{S. open S \<and> a \<notin> S}" |
|
155 |
have "open ?T" by (simp add: open_Union) |
|
156 |
also have "?T = - {a}" |
|
157 |
by (simp add: set_eq_iff separation_t1, auto) |
|
158 |
finally show "closed {a}" unfolding closed_def . |
|
159 |
qed |
|
160 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
161 |
lemma closed_insert [continuous_intros, simp]: |
51471 | 162 |
fixes a :: "'a::t1_space" |
163 |
assumes "closed S" shows "closed (insert a S)" |
|
164 |
proof - |
|
165 |
from closed_singleton assms |
|
166 |
have "closed ({a} \<union> S)" by (rule closed_Un) |
|
167 |
thus "closed (insert a S)" by simp |
|
168 |
qed |
|
169 |
||
170 |
lemma finite_imp_closed: |
|
171 |
fixes S :: "'a::t1_space set" |
|
172 |
shows "finite S \<Longrightarrow> closed S" |
|
173 |
by (induct set: finite, simp_all) |
|
174 |
||
175 |
text {* T2 spaces are also known as Hausdorff spaces. *} |
|
176 |
||
177 |
class t2_space = topological_space + |
|
178 |
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 = {}" |
|
179 |
||
180 |
instance t2_space \<subseteq> t1_space |
|
181 |
proof qed (fast dest: hausdorff) |
|
182 |
||
183 |
lemma separation_t2: |
|
184 |
fixes x y :: "'a::t2_space" |
|
185 |
shows "x \<noteq> y \<longleftrightarrow> (\<exists>U V. open U \<and> open V \<and> x \<in> U \<and> y \<in> V \<and> U \<inter> V = {})" |
|
186 |
using hausdorff[of x y] by blast |
|
187 |
||
188 |
lemma separation_t0: |
|
189 |
fixes x y :: "'a::t0_space" |
|
190 |
shows "x \<noteq> y \<longleftrightarrow> (\<exists>U. open U \<and> ~(x\<in>U \<longleftrightarrow> y\<in>U))" |
|
191 |
using t0_space[of x y] by blast |
|
192 |
||
193 |
text {* A perfect space is a topological space with no isolated points. *} |
|
194 |
||
195 |
class perfect_space = topological_space + |
|
196 |
assumes not_open_singleton: "\<not> open {x}" |
|
197 |
||
198 |
||
199 |
subsection {* Generators for toplogies *} |
|
200 |
||
201 |
inductive generate_topology for S where |
|
202 |
UNIV: "generate_topology S UNIV" |
|
203 |
| Int: "generate_topology S a \<Longrightarrow> generate_topology S b \<Longrightarrow> generate_topology S (a \<inter> b)" |
|
204 |
| UN: "(\<And>k. k \<in> K \<Longrightarrow> generate_topology S k) \<Longrightarrow> generate_topology S (\<Union>K)" |
|
205 |
| Basis: "s \<in> S \<Longrightarrow> generate_topology S s" |
|
206 |
||
207 |
hide_fact (open) UNIV Int UN Basis |
|
208 |
||
209 |
lemma generate_topology_Union: |
|
210 |
"(\<And>k. k \<in> I \<Longrightarrow> generate_topology S (K k)) \<Longrightarrow> generate_topology S (\<Union>k\<in>I. K k)" |
|
56166 | 211 |
using generate_topology.UN [of "K ` I"] by auto |
51471 | 212 |
|
213 |
lemma topological_space_generate_topology: |
|
214 |
"class.topological_space (generate_topology S)" |
|
215 |
by default (auto intro: generate_topology.intros) |
|
216 |
||
217 |
subsection {* Order topologies *} |
|
218 |
||
219 |
class order_topology = order + "open" + |
|
220 |
assumes open_generated_order: "open = generate_topology (range (\<lambda>a. {..< a}) \<union> range (\<lambda>a. {a <..}))" |
|
221 |
begin |
|
222 |
||
223 |
subclass topological_space |
|
224 |
unfolding open_generated_order |
|
225 |
by (rule topological_space_generate_topology) |
|
226 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
227 |
lemma open_greaterThan [continuous_intros, simp]: "open {a <..}" |
51471 | 228 |
unfolding open_generated_order by (auto intro: generate_topology.Basis) |
229 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
230 |
lemma open_lessThan [continuous_intros, simp]: "open {..< a}" |
51471 | 231 |
unfolding open_generated_order by (auto intro: generate_topology.Basis) |
232 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
233 |
lemma open_greaterThanLessThan [continuous_intros, simp]: "open {a <..< b}" |
51471 | 234 |
unfolding greaterThanLessThan_eq by (simp add: open_Int) |
235 |
||
236 |
end |
|
237 |
||
238 |
class linorder_topology = linorder + order_topology |
|
239 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
240 |
lemma closed_atMost [continuous_intros, simp]: "closed {.. a::'a::linorder_topology}" |
51471 | 241 |
by (simp add: closed_open) |
242 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
243 |
lemma closed_atLeast [continuous_intros, simp]: "closed {a::'a::linorder_topology ..}" |
51471 | 244 |
by (simp add: closed_open) |
245 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
246 |
lemma closed_atLeastAtMost [continuous_intros, simp]: "closed {a::'a::linorder_topology .. b}" |
51471 | 247 |
proof - |
248 |
have "{a .. b} = {a ..} \<inter> {.. b}" |
|
249 |
by auto |
|
250 |
then show ?thesis |
|
251 |
by (simp add: closed_Int) |
|
252 |
qed |
|
253 |
||
254 |
lemma (in linorder) less_separate: |
|
255 |
assumes "x < y" |
|
256 |
shows "\<exists>a b. x \<in> {..< a} \<and> y \<in> {b <..} \<and> {..< a} \<inter> {b <..} = {}" |
|
53381 | 257 |
proof (cases "\<exists>z. x < z \<and> z < y") |
258 |
case True |
|
259 |
then obtain z where "x < z \<and> z < y" .. |
|
51471 | 260 |
then have "x \<in> {..< z} \<and> y \<in> {z <..} \<and> {z <..} \<inter> {..< z} = {}" |
261 |
by auto |
|
262 |
then show ?thesis by blast |
|
263 |
next |
|
53381 | 264 |
case False |
51471 | 265 |
with `x < y` have "x \<in> {..< y} \<and> y \<in> {x <..} \<and> {x <..} \<inter> {..< y} = {}" |
266 |
by auto |
|
267 |
then show ?thesis by blast |
|
268 |
qed |
|
269 |
||
270 |
instance linorder_topology \<subseteq> t2_space |
|
271 |
proof |
|
272 |
fix x y :: 'a |
|
273 |
from less_separate[of x y] less_separate[of y x] |
|
274 |
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 = {}" |
|
275 |
by (elim neqE) (metis open_lessThan open_greaterThan Int_commute)+ |
|
276 |
qed |
|
277 |
||
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
278 |
lemma (in linorder_topology) open_right: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
279 |
assumes "open S" "x \<in> S" and gt_ex: "x < y" shows "\<exists>b>x. {x ..< b} \<subseteq> S" |
51471 | 280 |
using assms unfolding open_generated_order |
281 |
proof induction |
|
282 |
case (Int A B) |
|
283 |
then obtain a b where "a > x" "{x ..< a} \<subseteq> A" "b > x" "{x ..< b} \<subseteq> B" by auto |
|
284 |
then show ?case by (auto intro!: exI[of _ "min a b"]) |
|
285 |
next |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
286 |
case (Basis S) then show ?case by (fastforce intro: exI[of _ y] gt_ex) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
287 |
qed blast+ |
51471 | 288 |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
289 |
lemma (in linorder_topology) open_left: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
290 |
assumes "open S" "x \<in> S" and lt_ex: "y < x" shows "\<exists>b<x. {b <.. x} \<subseteq> S" |
51471 | 291 |
using assms unfolding open_generated_order |
292 |
proof induction |
|
293 |
case (Int A B) |
|
294 |
then obtain a b where "a < x" "{a <.. x} \<subseteq> A" "b < x" "{b <.. x} \<subseteq> B" by auto |
|
295 |
then show ?case by (auto intro!: exI[of _ "max a b"]) |
|
296 |
next |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
297 |
case (Basis S) then show ?case by (fastforce intro: exI[of _ y] lt_ex) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
298 |
qed blast+ |
51471 | 299 |
|
59106 | 300 |
subsubsection {* Boolean is an order topology *} |
301 |
||
302 |
text {* It also is a discrete topology, but don't have a type class for it (yet). *} |
|
303 |
||
304 |
instantiation bool :: order_topology |
|
305 |
begin |
|
306 |
||
307 |
definition open_bool :: "bool set \<Rightarrow> bool" where |
|
308 |
"open_bool = generate_topology (range (\<lambda>a. {..< a}) \<union> range (\<lambda>a. {a <..}))" |
|
309 |
||
310 |
instance |
|
311 |
proof qed (rule open_bool_def) |
|
312 |
||
313 |
end |
|
314 |
||
315 |
lemma open_bool[simp, intro!]: "open (A::bool set)" |
|
316 |
proof - |
|
317 |
have *: "{False <..} = {True}" "{..< True} = {False}" |
|
318 |
by auto |
|
319 |
have "A = UNIV \<or> A = {} \<or> A = {False <..} \<or> A = {..< True}" |
|
320 |
using subset_UNIV[of A] unfolding UNIV_bool * by auto |
|
321 |
then show "open A" |
|
322 |
by auto |
|
323 |
qed |
|
324 |
||
51471 | 325 |
subsubsection {* Topological filters *} |
326 |
||
327 |
definition (in topological_space) nhds :: "'a \<Rightarrow> 'a filter" |
|
57276 | 328 |
where "nhds a = (INF S:{S. open S \<and> a \<in> S}. principal S)" |
51471 | 329 |
|
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
|
330 |
definition (in topological_space) at_within :: "'a \<Rightarrow> 'a set \<Rightarrow> 'a filter" ("at (_) within (_)" [1000, 60] 60) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
331 |
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
|
332 |
|
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
|
333 |
abbreviation (in topological_space) at :: "'a \<Rightarrow> 'a filter" ("at") where |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
334 |
"at x \<equiv> at x within (CONST UNIV)" |
51471 | 335 |
|
51473 | 336 |
abbreviation (in order_topology) at_right :: "'a \<Rightarrow> 'a filter" where |
51471 | 337 |
"at_right x \<equiv> at x within {x <..}" |
338 |
||
51473 | 339 |
abbreviation (in order_topology) at_left :: "'a \<Rightarrow> 'a filter" where |
51471 | 340 |
"at_left x \<equiv> at x within {..< x}" |
341 |
||
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
342 |
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
|
343 |
"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
|
344 |
unfolding nhds_def |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
345 |
proof (safe intro!: antisym INF_greatest) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
346 |
fix S assume "generate_topology T S" "x \<in> S" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
347 |
then show "(INF S:{S \<in> T. x \<in> S}. principal S) \<le> principal S" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
348 |
by induction |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
349 |
(auto intro: INF_lower order_trans simp add: inf_principal[symmetric] simp del: inf_principal) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
350 |
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
|
351 |
|
51473 | 352 |
lemma (in topological_space) eventually_nhds: |
51471 | 353 |
"eventually P (nhds a) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))" |
57276 | 354 |
unfolding nhds_def by (subst eventually_INF_base) (auto simp: eventually_principal) |
51471 | 355 |
|
356 |
lemma nhds_neq_bot [simp]: "nhds a \<noteq> bot" |
|
357 |
unfolding trivial_limit_def eventually_nhds by simp |
|
358 |
||
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
359 |
lemma at_within_eq: "at x within s = (INF S:{S. open S \<and> x \<in> S}. principal (S \<inter> s - {x}))" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
360 |
unfolding nhds_def at_within_def by (subst INF_inf_const2[symmetric]) (auto simp add: Diff_Int_distrib) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
361 |
|
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
|
362 |
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
|
363 |
"eventually P (at a within s) \<longleftrightarrow> eventually (\<lambda>x. x \<noteq> a \<longrightarrow> x \<in> s \<longrightarrow> P x) (nhds a)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
364 |
unfolding at_within_def eventually_inf_principal by (simp add: imp_conjL[symmetric] conj_commute) |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
365 |
|
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
|
366 |
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
|
367 |
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
|
368 |
|
51471 | 369 |
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
|
370 |
"eventually P (at a within s) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. x \<noteq> a \<longrightarrow> x \<in> s \<longrightarrow> P x))" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
371 |
unfolding eventually_nhds eventually_at_filter by simp |
51471 | 372 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
373 |
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
|
374 |
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
|
375 |
|
53859 | 376 |
lemma at_within_empty [simp]: "at a within {} = bot" |
377 |
unfolding at_within_def by simp |
|
378 |
||
53860 | 379 |
lemma at_within_union: "at x within (S \<union> T) = sup (at x within S) (at x within T)" |
380 |
unfolding filter_eq_iff eventually_sup eventually_at_filter |
|
381 |
by (auto elim!: eventually_rev_mp) |
|
382 |
||
51471 | 383 |
lemma at_eq_bot_iff: "at a = bot \<longleftrightarrow> open {a}" |
384 |
unfolding trivial_limit_def eventually_at_topological |
|
385 |
by (safe, case_tac "S = {a}", simp, fast, fast) |
|
386 |
||
387 |
lemma at_neq_bot [simp]: "at (a::'a::perfect_space) \<noteq> bot" |
|
388 |
by (simp add: at_eq_bot_iff not_open_singleton) |
|
389 |
||
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
390 |
lemma (in order_topology) nhds_order: "nhds x = |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
391 |
inf (INF a:{x <..}. principal {..< a}) (INF a:{..< x}. principal {a <..})" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
392 |
proof - |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
393 |
have 1: "{S \<in> range lessThan \<union> range greaterThan. x \<in> S} = |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
394 |
(\<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
|
395 |
by auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
396 |
show ?thesis |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
397 |
unfolding nhds_generated_topology[OF open_generated_order] INF_union 1 INF_image comp_def .. |
51471 | 398 |
qed |
399 |
||
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
400 |
lemma (in linorder_topology) at_within_order: "UNIV \<noteq> {x} \<Longrightarrow> |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
401 |
at x within s = inf (INF a:{x <..}. principal ({..< a} \<inter> s - {x})) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
402 |
(INF a:{..< x}. principal ({a <..} \<inter> s - {x}))" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
403 |
proof (cases "{x <..} = {}" "{..< x} = {}" rule: case_split[case_product case_split]) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
404 |
assume "UNIV \<noteq> {x}" "{x<..} = {}" "{..< x} = {}" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
405 |
moreover have "UNIV = {..< x} \<union> {x} \<union> {x <..}" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
406 |
by auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
407 |
ultimately show ?thesis |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
408 |
by auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
409 |
qed (auto simp: at_within_def nhds_order Int_Diff inf_principal[symmetric] INF_inf_const2 |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
410 |
inf_sup_aci[where 'a="'a filter"] |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
411 |
simp del: inf_principal) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
412 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
413 |
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
|
414 |
"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
|
415 |
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
|
416 |
(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
|
417 |
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
|
418 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
419 |
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
|
420 |
"y < x \<Longrightarrow> eventually P (at_left x) \<longleftrightarrow> (\<exists>b<x. \<forall>y>b. y < x \<longrightarrow> P y)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
421 |
unfolding at_left_eq by (subst eventually_INF_base) (auto simp: eventually_principal Ball_def) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
422 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
423 |
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
|
424 |
"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
|
425 |
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
|
426 |
(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
|
427 |
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
|
428 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
429 |
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
|
430 |
"x < y \<Longrightarrow> eventually P (at_right x) \<longleftrightarrow> (\<exists>b>x. \<forall>y>x. y < b \<longrightarrow> P y)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
431 |
unfolding at_right_eq by (subst eventually_INF_base) (auto simp: eventually_principal Ball_def) |
51471 | 432 |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
433 |
lemma trivial_limit_at_right_top: "at_right (top::_::{order_top, linorder_topology}) = bot" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
434 |
unfolding filter_eq_iff eventually_at_topological by auto |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
435 |
|
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
436 |
lemma trivial_limit_at_left_bot: "at_left (bot::_::{order_bot, linorder_topology}) = bot" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
437 |
unfolding filter_eq_iff eventually_at_topological by auto |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
438 |
|
51471 | 439 |
lemma trivial_limit_at_left_real [simp]: |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
440 |
"\<not> trivial_limit (at_left (x::'a::{no_bot, dense_order, linorder_topology}))" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
441 |
using lt_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
|
442 |
by safe (auto simp add: trivial_limit_def eventually_at_left dest: dense) |
51471 | 443 |
|
444 |
lemma trivial_limit_at_right_real [simp]: |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
445 |
"\<not> trivial_limit (at_right (x::'a::{no_top, dense_order, linorder_topology}))" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
446 |
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
|
447 |
by safe (auto simp add: trivial_limit_def eventually_at_right dest: dense) |
51471 | 448 |
|
449 |
lemma at_eq_sup_left_right: "at (x::'a::linorder_topology) = sup (at_left x) (at_right x)" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
450 |
by (auto simp: eventually_at_filter filter_eq_iff eventually_sup |
51471 | 451 |
elim: eventually_elim2 eventually_elim1) |
452 |
||
453 |
lemma eventually_at_split: |
|
454 |
"eventually P (at (x::'a::linorder_topology)) \<longleftrightarrow> eventually P (at_left x) \<and> eventually P (at_right x)" |
|
455 |
by (subst at_eq_sup_left_right) (simp add: eventually_sup) |
|
456 |
||
457 |
subsubsection {* Tendsto *} |
|
458 |
||
459 |
abbreviation (in topological_space) |
|
460 |
tendsto :: "('b \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'b filter \<Rightarrow> bool" (infixr "--->" 55) where |
|
461 |
"(f ---> l) F \<equiv> filterlim f (nhds l) F" |
|
462 |
||
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
|
463 |
definition (in t2_space) Lim :: "'f filter \<Rightarrow> ('f \<Rightarrow> 'a) \<Rightarrow> 'a" where |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
464 |
"Lim A f = (THE l. (f ---> l) A)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
465 |
|
51471 | 466 |
lemma tendsto_eq_rhs: "(f ---> x) F \<Longrightarrow> x = y \<Longrightarrow> (f ---> y) F" |
467 |
by simp |
|
468 |
||
57953 | 469 |
named_theorems tendsto_intros "introduction rules for tendsto" |
51471 | 470 |
setup {* |
471 |
Global_Theory.add_thms_dynamic (@{binding tendsto_eq_intros}, |
|
57953 | 472 |
fn context => |
473 |
Named_Theorems.get (Context.proof_of context) @{named_theorems tendsto_intros} |
|
474 |
|> map_filter (try (fn thm => @{thm tendsto_eq_rhs} OF [thm]))) |
|
51471 | 475 |
*} |
476 |
||
51473 | 477 |
lemma (in topological_space) tendsto_def: |
478 |
"(f ---> l) F \<longleftrightarrow> (\<forall>S. open S \<longrightarrow> l \<in> S \<longrightarrow> eventually (\<lambda>x. f x \<in> S) F)" |
|
57276 | 479 |
unfolding nhds_def filterlim_INF filterlim_principal by auto |
51471 | 480 |
|
481 |
lemma tendsto_mono: "F \<le> F' \<Longrightarrow> (f ---> l) F' \<Longrightarrow> (f ---> l) F" |
|
482 |
unfolding tendsto_def le_filter_def by fast |
|
483 |
||
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
|
484 |
lemma tendsto_within_subset: "(f ---> l) (at x within S) \<Longrightarrow> T \<subseteq> S \<Longrightarrow> (f ---> l) (at x within T)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
485 |
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
|
486 |
|
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
|
487 |
lemma filterlim_at: |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
488 |
"(LIM x F. f x :> at b within s) \<longleftrightarrow> (eventually (\<lambda>x. f x \<in> s \<and> f x \<noteq> b) F \<and> (f ---> b) F)" |
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
489 |
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
|
490 |
|
51473 | 491 |
lemma (in topological_space) topological_tendstoI: |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
492 |
"(\<And>S. open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F) \<Longrightarrow> (f ---> l) F" |
51471 | 493 |
unfolding tendsto_def by auto |
494 |
||
51473 | 495 |
lemma (in topological_space) topological_tendstoD: |
51471 | 496 |
"(f ---> l) F \<Longrightarrow> open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F" |
497 |
unfolding tendsto_def by auto |
|
498 |
||
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
499 |
lemma (in order_topology) order_tendsto_iff: |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
500 |
"(f ---> x) F \<longleftrightarrow> (\<forall>l<x. eventually (\<lambda>x. l < f x) F) \<and> (\<forall>u>x. eventually (\<lambda>x. f x < u) F)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
501 |
unfolding nhds_order filterlim_inf filterlim_INF filterlim_principal by auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
502 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
503 |
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
|
504 |
"(\<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> |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
505 |
(f ---> y) F" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
506 |
unfolding order_tendsto_iff by auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
507 |
|
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
508 |
lemma (in order_topology) order_tendstoD: |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
509 |
assumes "(f ---> y) F" |
51471 | 510 |
shows "a < y \<Longrightarrow> eventually (\<lambda>x. a < f x) F" |
511 |
and "y < a \<Longrightarrow> eventually (\<lambda>x. f x < a) F" |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
512 |
using assms unfolding order_tendsto_iff by auto |
51471 | 513 |
|
514 |
lemma tendsto_bot [simp]: "(f ---> a) bot" |
|
515 |
unfolding tendsto_def by simp |
|
516 |
||
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
517 |
lemma (in linorder_topology) tendsto_max: |
56949 | 518 |
assumes X: "(X ---> x) net" |
519 |
assumes Y: "(Y ---> y) net" |
|
520 |
shows "((\<lambda>x. max (X x) (Y x)) ---> max x y) net" |
|
521 |
proof (rule order_tendstoI) |
|
522 |
fix a assume "a < max x y" |
|
523 |
then show "eventually (\<lambda>x. a < max (X x) (Y x)) net" |
|
524 |
using order_tendstoD(1)[OF X, of a] order_tendstoD(1)[OF Y, of a] |
|
525 |
by (auto simp: less_max_iff_disj elim: eventually_elim1) |
|
526 |
next |
|
527 |
fix a assume "max x y < a" |
|
528 |
then show "eventually (\<lambda>x. max (X x) (Y x) < a) net" |
|
529 |
using order_tendstoD(2)[OF X, of a] order_tendstoD(2)[OF Y, of a] |
|
530 |
by (auto simp: eventually_conj_iff) |
|
531 |
qed |
|
532 |
||
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
533 |
lemma (in linorder_topology) tendsto_min: |
56949 | 534 |
assumes X: "(X ---> x) net" |
535 |
assumes Y: "(Y ---> y) net" |
|
536 |
shows "((\<lambda>x. min (X x) (Y x)) ---> min x y) net" |
|
537 |
proof (rule order_tendstoI) |
|
538 |
fix a assume "a < min x y" |
|
539 |
then show "eventually (\<lambda>x. a < min (X x) (Y x)) net" |
|
540 |
using order_tendstoD(1)[OF X, of a] order_tendstoD(1)[OF Y, of a] |
|
541 |
by (auto simp: eventually_conj_iff) |
|
542 |
next |
|
543 |
fix a assume "min x y < a" |
|
544 |
then show "eventually (\<lambda>x. min (X x) (Y x) < a) net" |
|
545 |
using order_tendstoD(2)[OF X, of a] order_tendstoD(2)[OF Y, of a] |
|
546 |
by (auto simp: min_less_iff_disj elim: eventually_elim1) |
|
547 |
qed |
|
548 |
||
58729
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents:
57953
diff
changeset
|
549 |
lemma tendsto_ident_at [tendsto_intros, simp, intro]: "((\<lambda>x. x) ---> a) (at a within s)" |
51471 | 550 |
unfolding tendsto_def eventually_at_topological by auto |
551 |
||
58729
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents:
57953
diff
changeset
|
552 |
lemma (in topological_space) tendsto_const [tendsto_intros, simp, intro]: "((\<lambda>x. k) ---> k) F" |
51471 | 553 |
by (simp add: tendsto_def) |
554 |
||
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
|
555 |
lemma (in t2_space) tendsto_unique: |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
556 |
assumes "F \<noteq> bot" and "(f ---> a) F" and "(f ---> b) F" |
51471 | 557 |
shows "a = b" |
558 |
proof (rule ccontr) |
|
559 |
assume "a \<noteq> b" |
|
560 |
obtain U V where "open U" "open V" "a \<in> U" "b \<in> V" "U \<inter> V = {}" |
|
561 |
using hausdorff [OF `a \<noteq> b`] by fast |
|
562 |
have "eventually (\<lambda>x. f x \<in> U) F" |
|
563 |
using `(f ---> a) F` `open U` `a \<in> U` by (rule topological_tendstoD) |
|
564 |
moreover |
|
565 |
have "eventually (\<lambda>x. f x \<in> V) F" |
|
566 |
using `(f ---> b) F` `open V` `b \<in> V` by (rule topological_tendstoD) |
|
567 |
ultimately |
|
568 |
have "eventually (\<lambda>x. False) F" |
|
569 |
proof eventually_elim |
|
570 |
case (elim x) |
|
571 |
hence "f x \<in> U \<inter> V" by simp |
|
572 |
with `U \<inter> V = {}` show ?case by simp |
|
573 |
qed |
|
574 |
with `\<not> trivial_limit F` show "False" |
|
575 |
by (simp add: trivial_limit_def) |
|
576 |
qed |
|
577 |
||
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
|
578 |
lemma (in t2_space) tendsto_const_iff: |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
579 |
assumes "\<not> trivial_limit F" shows "((\<lambda>x. a :: 'a) ---> b) F \<longleftrightarrow> a = b" |
58729
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents:
57953
diff
changeset
|
580 |
by (auto intro!: tendsto_unique [OF assms tendsto_const]) |
51471 | 581 |
|
582 |
lemma increasing_tendsto: |
|
583 |
fixes f :: "_ \<Rightarrow> 'a::order_topology" |
|
584 |
assumes bdd: "eventually (\<lambda>n. f n \<le> l) F" |
|
585 |
and en: "\<And>x. x < l \<Longrightarrow> eventually (\<lambda>n. x < f n) F" |
|
586 |
shows "(f ---> l) F" |
|
587 |
using assms by (intro order_tendstoI) (auto elim!: eventually_elim1) |
|
588 |
||
589 |
lemma decreasing_tendsto: |
|
590 |
fixes f :: "_ \<Rightarrow> 'a::order_topology" |
|
591 |
assumes bdd: "eventually (\<lambda>n. l \<le> f n) F" |
|
592 |
and en: "\<And>x. l < x \<Longrightarrow> eventually (\<lambda>n. f n < x) F" |
|
593 |
shows "(f ---> l) F" |
|
594 |
using assms by (intro order_tendstoI) (auto elim!: eventually_elim1) |
|
595 |
||
596 |
lemma tendsto_sandwich: |
|
597 |
fixes f g h :: "'a \<Rightarrow> 'b::order_topology" |
|
598 |
assumes ev: "eventually (\<lambda>n. f n \<le> g n) net" "eventually (\<lambda>n. g n \<le> h n) net" |
|
599 |
assumes lim: "(f ---> c) net" "(h ---> c) net" |
|
600 |
shows "(g ---> c) net" |
|
601 |
proof (rule order_tendstoI) |
|
602 |
fix a show "a < c \<Longrightarrow> eventually (\<lambda>x. a < g x) net" |
|
603 |
using order_tendstoD[OF lim(1), of a] ev by (auto elim: eventually_elim2) |
|
604 |
next |
|
605 |
fix a show "c < a \<Longrightarrow> eventually (\<lambda>x. g x < a) net" |
|
606 |
using order_tendstoD[OF lim(2), of a] ev by (auto elim: eventually_elim2) |
|
607 |
qed |
|
608 |
||
609 |
lemma tendsto_le: |
|
610 |
fixes f g :: "'a \<Rightarrow> 'b::linorder_topology" |
|
611 |
assumes F: "\<not> trivial_limit F" |
|
612 |
assumes x: "(f ---> x) F" and y: "(g ---> y) F" |
|
613 |
assumes ev: "eventually (\<lambda>x. g x \<le> f x) F" |
|
614 |
shows "y \<le> x" |
|
615 |
proof (rule ccontr) |
|
616 |
assume "\<not> y \<le> x" |
|
617 |
with less_separate[of x y] obtain a b where xy: "x < a" "b < y" "{..<a} \<inter> {b<..} = {}" |
|
618 |
by (auto simp: not_le) |
|
619 |
then have "eventually (\<lambda>x. f x < a) F" "eventually (\<lambda>x. b < g x) F" |
|
620 |
using x y by (auto intro: order_tendstoD) |
|
621 |
with ev have "eventually (\<lambda>x. False) F" |
|
622 |
by eventually_elim (insert xy, fastforce) |
|
623 |
with F show False |
|
624 |
by (simp add: eventually_False) |
|
625 |
qed |
|
626 |
||
627 |
lemma tendsto_le_const: |
|
628 |
fixes f :: "'a \<Rightarrow> 'b::linorder_topology" |
|
629 |
assumes F: "\<not> trivial_limit F" |
|
56289 | 630 |
assumes x: "(f ---> x) F" and a: "eventually (\<lambda>i. a \<le> f i) F" |
51471 | 631 |
shows "a \<le> x" |
632 |
using F x tendsto_const a by (rule tendsto_le) |
|
633 |
||
56289 | 634 |
lemma tendsto_ge_const: |
635 |
fixes f :: "'a \<Rightarrow> 'b::linorder_topology" |
|
636 |
assumes F: "\<not> trivial_limit F" |
|
637 |
assumes x: "(f ---> x) F" and a: "eventually (\<lambda>i. a \<ge> f i) F" |
|
638 |
shows "a \<ge> x" |
|
639 |
by (rule tendsto_le [OF F tendsto_const x a]) |
|
640 |
||
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
|
641 |
subsubsection {* Rules about @{const Lim} *} |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
642 |
|
57276 | 643 |
lemma tendsto_Lim: |
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
|
644 |
"\<not>(trivial_limit net) \<Longrightarrow> (f ---> l) net \<Longrightarrow> Lim net f = l" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
645 |
unfolding Lim_def using tendsto_unique[of net f] by auto |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
646 |
|
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
|
647 |
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
|
648 |
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
|
649 |
|
51471 | 650 |
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
|
651 |
fixes f :: "'a::linorder_topology \<Rightarrow> 'b::linorder" |
51471 | 652 |
assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
653 |
assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)" |
|
654 |
assumes Q: "eventually Q (at_right a)" and bound: "\<And>b. Q b \<Longrightarrow> a < b" |
|
655 |
assumes P: "eventually P at_bot" |
|
656 |
shows "filterlim f at_bot (at_right a)" |
|
657 |
proof - |
|
658 |
from P obtain x where x: "\<And>y. y \<le> x \<Longrightarrow> P y" |
|
659 |
unfolding eventually_at_bot_linorder by auto |
|
660 |
show ?thesis |
|
661 |
proof (intro filterlim_at_bot_le[THEN iffD2] allI impI) |
|
662 |
fix z assume "z \<le> x" |
|
663 |
with x have "P z" by auto |
|
664 |
have "eventually (\<lambda>x. x \<le> g z) (at_right a)" |
|
665 |
using bound[OF bij(2)[OF `P z`]] |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
666 |
unfolding eventually_at_right[OF bound[OF bij(2)[OF `P z`]]] by (auto intro!: exI[of _ "g z"]) |
51471 | 667 |
with Q show "eventually (\<lambda>x. f x \<le> z) (at_right a)" |
668 |
by eventually_elim (metis bij `P z` mono) |
|
669 |
qed |
|
670 |
qed |
|
671 |
||
672 |
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
|
673 |
fixes f :: "'a::linorder_topology \<Rightarrow> 'b::linorder" |
51471 | 674 |
assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
675 |
assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)" |
|
676 |
assumes Q: "eventually Q (at_left a)" and bound: "\<And>b. Q b \<Longrightarrow> b < a" |
|
677 |
assumes P: "eventually P at_top" |
|
678 |
shows "filterlim f at_top (at_left a)" |
|
679 |
proof - |
|
680 |
from P obtain x where x: "\<And>y. x \<le> y \<Longrightarrow> P y" |
|
681 |
unfolding eventually_at_top_linorder by auto |
|
682 |
show ?thesis |
|
683 |
proof (intro filterlim_at_top_ge[THEN iffD2] allI impI) |
|
684 |
fix z assume "x \<le> z" |
|
685 |
with x have "P z" by auto |
|
686 |
have "eventually (\<lambda>x. g z \<le> x) (at_left a)" |
|
687 |
using bound[OF bij(2)[OF `P z`]] |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57025
diff
changeset
|
688 |
unfolding eventually_at_left[OF bound[OF bij(2)[OF `P z`]]] by (auto intro!: exI[of _ "g z"]) |
51471 | 689 |
with Q show "eventually (\<lambda>x. z \<le> f x) (at_left a)" |
690 |
by eventually_elim (metis bij `P z` mono) |
|
691 |
qed |
|
692 |
qed |
|
693 |
||
694 |
lemma filterlim_split_at: |
|
695 |
"filterlim f F (at_left x) \<Longrightarrow> filterlim f F (at_right x) \<Longrightarrow> filterlim f F (at (x::'a::linorder_topology))" |
|
696 |
by (subst at_eq_sup_left_right) (rule filterlim_sup) |
|
697 |
||
698 |
lemma filterlim_at_split: |
|
699 |
"filterlim f F (at (x::'a::linorder_topology)) \<longleftrightarrow> filterlim f F (at_left x) \<and> filterlim f F (at_right x)" |
|
700 |
by (subst at_eq_sup_left_right) (simp add: filterlim_def filtermap_sup) |
|
701 |
||
57025 | 702 |
lemma eventually_nhds_top: |
703 |
fixes P :: "'a :: {order_top, linorder_topology} \<Rightarrow> bool" |
|
704 |
assumes "(b::'a) < top" |
|
705 |
shows "eventually P (nhds top) \<longleftrightarrow> (\<exists>b<top. (\<forall>z. b < z \<longrightarrow> P z))" |
|
706 |
unfolding eventually_nhds |
|
707 |
proof safe |
|
708 |
fix S :: "'a set" assume "open S" "top \<in> S" |
|
709 |
note open_left[OF this `b < top`] |
|
710 |
moreover assume "\<forall>s\<in>S. P s" |
|
711 |
ultimately show "\<exists>b<top. \<forall>z>b. P z" |
|
712 |
by (auto simp: subset_eq Ball_def) |
|
713 |
next |
|
714 |
fix b assume "b < top" "\<forall>z>b. P z" |
|
715 |
then show "\<exists>S. open S \<and> top \<in> S \<and> (\<forall>xa\<in>S. P xa)" |
|
716 |
by (intro exI[of _ "{b <..}"]) auto |
|
717 |
qed |
|
51471 | 718 |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
719 |
lemma tendsto_at_within_iff_tendsto_nhds: |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
720 |
"(g ---> g l) (at l within S) \<longleftrightarrow> (g ---> g l) (inf (nhds l) (principal S))" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
721 |
unfolding tendsto_def eventually_at_filter eventually_inf_principal |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
722 |
by (intro ext all_cong imp_cong) (auto elim!: eventually_elim1) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
723 |
|
51471 | 724 |
subsection {* Limits on sequences *} |
725 |
||
726 |
abbreviation (in topological_space) |
|
727 |
LIMSEQ :: "[nat \<Rightarrow> 'a, 'a] \<Rightarrow> bool" |
|
728 |
("((_)/ ----> (_))" [60, 60] 60) where |
|
729 |
"X ----> L \<equiv> (X ---> L) sequentially" |
|
730 |
||
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
|
731 |
abbreviation (in t2_space) lim :: "(nat \<Rightarrow> 'a) \<Rightarrow> 'a" where |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
732 |
"lim X \<equiv> Lim sequentially X" |
51471 | 733 |
|
734 |
definition (in topological_space) convergent :: "(nat \<Rightarrow> 'a) \<Rightarrow> bool" where |
|
735 |
"convergent X = (\<exists>L. X ----> L)" |
|
736 |
||
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
|
737 |
lemma lim_def: "lim X = (THE L. X ----> L)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
738 |
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
|
739 |
|
51471 | 740 |
subsubsection {* Monotone sequences and subsequences *} |
741 |
||
742 |
definition |
|
743 |
monoseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" where |
|
744 |
--{*Definition of monotonicity. |
|
745 |
The use of disjunction here complicates proofs considerably. |
|
746 |
One alternative is to add a Boolean argument to indicate the direction. |
|
747 |
Another is to develop the notions of increasing and decreasing first.*} |
|
56020
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
748 |
"monoseq X = ((\<forall>m. \<forall>n\<ge>m. X m \<le> X n) \<or> (\<forall>m. \<forall>n\<ge>m. X n \<le> X m))" |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
749 |
|
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
|
750 |
abbreviation incseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" where |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
751 |
"incseq X \<equiv> mono X" |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
752 |
|
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
|
753 |
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
|
754 |
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
|
755 |
|
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
|
756 |
abbreviation decseq :: "(nat \<Rightarrow> 'a::order) \<Rightarrow> bool" where |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
757 |
"decseq X \<equiv> antimono X" |
f92479477c52
introduced antimono; incseq, decseq are now abbreviations for mono and antimono; renamed Library/Continuity to Library/Order_Continuity; removed up_cont; renamed down_cont to down_continuity and generalized to complete_lattices
hoelzl
parents:
55945
diff
changeset
|
758 |
|
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
|
759 |
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
|
760 |
unfolding antimono_def .. |
51471 | 761 |
|
762 |
definition |
|
763 |
subseq :: "(nat \<Rightarrow> nat) \<Rightarrow> bool" where |
|
764 |
--{*Definition of subsequence*} |
|
765 |
"subseq f \<longleftrightarrow> (\<forall>m. \<forall>n>m. f m < f n)" |
|
766 |
||
767 |
lemma incseq_SucI: |
|
768 |
"(\<And>n. X n \<le> X (Suc n)) \<Longrightarrow> incseq X" |
|
769 |
using lift_Suc_mono_le[of X] |
|
770 |
by (auto simp: incseq_def) |
|
771 |
||
772 |
lemma incseqD: "\<And>i j. incseq f \<Longrightarrow> i \<le> j \<Longrightarrow> f i \<le> f j" |
|
773 |
by (auto simp: incseq_def) |
|
774 |
||
775 |
lemma incseq_SucD: "incseq A \<Longrightarrow> A i \<le> A (Suc i)" |
|
776 |
using incseqD[of A i "Suc i"] by auto |
|
777 |
||
778 |
lemma incseq_Suc_iff: "incseq f \<longleftrightarrow> (\<forall>n. f n \<le> f (Suc n))" |
|
779 |
by (auto intro: incseq_SucI dest: incseq_SucD) |
|
780 |
||
781 |
lemma incseq_const[simp, intro]: "incseq (\<lambda>x. k)" |
|
782 |
unfolding incseq_def by auto |
|
783 |
||
784 |
lemma decseq_SucI: |
|
785 |
"(\<And>n. X (Suc n) \<le> X n) \<Longrightarrow> decseq X" |
|
786 |
using order.lift_Suc_mono_le[OF dual_order, of X] |
|
787 |
by (auto simp: decseq_def) |
|
788 |
||
789 |
lemma decseqD: "\<And>i j. decseq f \<Longrightarrow> i \<le> j \<Longrightarrow> f j \<le> f i" |
|
790 |
by (auto simp: decseq_def) |
|
791 |
||
792 |
lemma decseq_SucD: "decseq A \<Longrightarrow> A (Suc i) \<le> A i" |
|
793 |
using decseqD[of A i "Suc i"] by auto |
|
794 |
||
795 |
lemma decseq_Suc_iff: "decseq f \<longleftrightarrow> (\<forall>n. f (Suc n) \<le> f n)" |
|
796 |
by (auto intro: decseq_SucI dest: decseq_SucD) |
|
797 |
||
798 |
lemma decseq_const[simp, intro]: "decseq (\<lambda>x. k)" |
|
799 |
unfolding decseq_def by auto |
|
800 |
||
801 |
lemma monoseq_iff: "monoseq X \<longleftrightarrow> incseq X \<or> decseq X" |
|
802 |
unfolding monoseq_def incseq_def decseq_def .. |
|
803 |
||
804 |
lemma monoseq_Suc: |
|
805 |
"monoseq X \<longleftrightarrow> (\<forall>n. X n \<le> X (Suc n)) \<or> (\<forall>n. X (Suc n) \<le> X n)" |
|
806 |
unfolding monoseq_iff incseq_Suc_iff decseq_Suc_iff .. |
|
807 |
||
808 |
lemma monoI1: "\<forall>m. \<forall> n \<ge> m. X m \<le> X n ==> monoseq X" |
|
809 |
by (simp add: monoseq_def) |
|
810 |
||
811 |
lemma monoI2: "\<forall>m. \<forall> n \<ge> m. X n \<le> X m ==> monoseq X" |
|
812 |
by (simp add: monoseq_def) |
|
813 |
||
814 |
lemma mono_SucI1: "\<forall>n. X n \<le> X (Suc n) ==> monoseq X" |
|
815 |
by (simp add: monoseq_Suc) |
|
816 |
||
817 |
lemma mono_SucI2: "\<forall>n. X (Suc n) \<le> X n ==> monoseq X" |
|
818 |
by (simp add: monoseq_Suc) |
|
819 |
||
820 |
lemma monoseq_minus: |
|
821 |
fixes a :: "nat \<Rightarrow> 'a::ordered_ab_group_add" |
|
822 |
assumes "monoseq a" |
|
823 |
shows "monoseq (\<lambda> n. - a n)" |
|
824 |
proof (cases "\<forall> m. \<forall> n \<ge> m. a m \<le> a n") |
|
825 |
case True |
|
826 |
hence "\<forall> m. \<forall> n \<ge> m. - a n \<le> - a m" by auto |
|
827 |
thus ?thesis by (rule monoI2) |
|
828 |
next |
|
829 |
case False |
|
830 |
hence "\<forall> m. \<forall> n \<ge> m. - a m \<le> - a n" using `monoseq a`[unfolded monoseq_def] by auto |
|
831 |
thus ?thesis by (rule monoI1) |
|
832 |
qed |
|
833 |
||
834 |
text{*Subsequence (alternative definition, (e.g. Hoskins)*} |
|
835 |
||
836 |
lemma subseq_Suc_iff: "subseq f = (\<forall>n. (f n) < (f (Suc n)))" |
|
837 |
apply (simp add: subseq_def) |
|
838 |
apply (auto dest!: less_imp_Suc_add) |
|
839 |
apply (induct_tac k) |
|
840 |
apply (auto intro: less_trans) |
|
841 |
done |
|
842 |
||
843 |
text{* for any sequence, there is a monotonic subsequence *} |
|
844 |
lemma seq_monosub: |
|
845 |
fixes s :: "nat => 'a::linorder" |
|
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
846 |
shows "\<exists>f. subseq f \<and> monoseq (\<lambda>n. (s (f n)))" |
51471 | 847 |
proof cases |
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
848 |
assume "\<forall>n. \<exists>p>n. \<forall>m\<ge>p. s m \<le> s p" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
849 |
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
|
850 |
by (intro dependent_nat_choice) (auto simp: conj_commute) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
851 |
then obtain f where "subseq f" and mono: "\<And>n m. f n \<le> m \<Longrightarrow> s m \<le> s (f n)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
852 |
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
|
853 |
moreover |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
854 |
then have "incseq f" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
855 |
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
|
856 |
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
|
857 |
by (auto simp add: incseq_def intro!: mono monoI2) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
858 |
ultimately show ?thesis |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
859 |
by auto |
51471 | 860 |
next |
861 |
assume "\<not> (\<forall>n. \<exists>p>n. (\<forall>m\<ge>p. s m \<le> s p))" |
|
862 |
then obtain N where N: "\<And>p. p > N \<Longrightarrow> \<exists>m>p. s p < s m" 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
|
863 |
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
|
864 |
proof (intro dependent_nat_choice) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
865 |
fix x assume "N < x" with N[of x] show "\<exists>y>N. x < y \<and> s x \<le> s y" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
866 |
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
|
867 |
qed auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
868 |
then show ?thesis |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
869 |
by (auto simp: monoseq_iff incseq_Suc_iff subseq_Suc_iff) |
51471 | 870 |
qed |
871 |
||
872 |
lemma seq_suble: assumes sf: "subseq f" shows "n \<le> f n" |
|
873 |
proof(induct n) |
|
874 |
case 0 thus ?case by simp |
|
875 |
next |
|
876 |
case (Suc n) |
|
877 |
from sf[unfolded subseq_Suc_iff, rule_format, of n] Suc.hyps |
|
878 |
have "n < f (Suc n)" by arith |
|
879 |
thus ?case by arith |
|
880 |
qed |
|
881 |
||
882 |
lemma eventually_subseq: |
|
883 |
"subseq r \<Longrightarrow> eventually P sequentially \<Longrightarrow> eventually (\<lambda>n. P (r n)) sequentially" |
|
884 |
unfolding eventually_sequentially by (metis seq_suble le_trans) |
|
885 |
||
51473 | 886 |
lemma not_eventually_sequentiallyD: |
887 |
assumes P: "\<not> eventually P sequentially" |
|
888 |
shows "\<exists>r. subseq r \<and> (\<forall>n. \<not> P (r n))" |
|
889 |
proof - |
|
890 |
from P have "\<forall>n. \<exists>m\<ge>n. \<not> P m" |
|
891 |
unfolding eventually_sequentially by (simp add: not_less) |
|
892 |
then obtain r where "\<And>n. r n \<ge> n" "\<And>n. \<not> P (r n)" |
|
893 |
by (auto simp: choice_iff) |
|
894 |
then show ?thesis |
|
895 |
by (auto intro!: exI[of _ "\<lambda>n. r (((Suc \<circ> r) ^^ Suc n) 0)"] |
|
896 |
simp: less_eq_Suc_le subseq_Suc_iff) |
|
897 |
qed |
|
898 |
||
51471 | 899 |
lemma filterlim_subseq: "subseq f \<Longrightarrow> filterlim f sequentially sequentially" |
900 |
unfolding filterlim_iff by (metis eventually_subseq) |
|
901 |
||
902 |
lemma subseq_o: "subseq r \<Longrightarrow> subseq s \<Longrightarrow> subseq (r \<circ> s)" |
|
903 |
unfolding subseq_def by simp |
|
904 |
||
905 |
lemma subseq_mono: assumes "subseq r" "m < n" shows "r m < r n" |
|
906 |
using assms by (auto simp: subseq_def) |
|
907 |
||
908 |
lemma incseq_imp_monoseq: "incseq X \<Longrightarrow> monoseq X" |
|
909 |
by (simp add: incseq_def monoseq_def) |
|
910 |
||
911 |
lemma decseq_imp_monoseq: "decseq X \<Longrightarrow> monoseq X" |
|
912 |
by (simp add: decseq_def monoseq_def) |
|
913 |
||
914 |
lemma decseq_eq_incseq: |
|
915 |
fixes X :: "nat \<Rightarrow> 'a::ordered_ab_group_add" shows "decseq X = incseq (\<lambda>n. - X n)" |
|
916 |
by (simp add: decseq_def incseq_def) |
|
917 |
||
918 |
lemma INT_decseq_offset: |
|
919 |
assumes "decseq F" |
|
920 |
shows "(\<Inter>i. F i) = (\<Inter>i\<in>{n..}. F i)" |
|
921 |
proof safe |
|
922 |
fix x i assume x: "x \<in> (\<Inter>i\<in>{n..}. F i)" |
|
923 |
show "x \<in> F i" |
|
924 |
proof cases |
|
925 |
from x have "x \<in> F n" by auto |
|
926 |
also assume "i \<le> n" with `decseq F` have "F n \<subseteq> F i" |
|
927 |
unfolding decseq_def by simp |
|
928 |
finally show ?thesis . |
|
929 |
qed (insert x, simp) |
|
930 |
qed auto |
|
931 |
||
932 |
lemma LIMSEQ_const_iff: |
|
933 |
fixes k l :: "'a::t2_space" |
|
934 |
shows "(\<lambda>n. k) ----> l \<longleftrightarrow> k = l" |
|
935 |
using trivial_limit_sequentially by (rule tendsto_const_iff) |
|
936 |
||
937 |
lemma LIMSEQ_SUP: |
|
938 |
"incseq X \<Longrightarrow> X ----> (SUP i. X i :: 'a :: {complete_linorder, linorder_topology})" |
|
939 |
by (intro increasing_tendsto) |
|
940 |
(auto simp: SUP_upper less_SUP_iff incseq_def eventually_sequentially intro: less_le_trans) |
|
941 |
||
942 |
lemma LIMSEQ_INF: |
|
943 |
"decseq X \<Longrightarrow> X ----> (INF i. X i :: 'a :: {complete_linorder, linorder_topology})" |
|
944 |
by (intro decreasing_tendsto) |
|
945 |
(auto simp: INF_lower INF_less_iff decseq_def eventually_sequentially intro: le_less_trans) |
|
946 |
||
947 |
lemma LIMSEQ_ignore_initial_segment: |
|
948 |
"f ----> a \<Longrightarrow> (\<lambda>n. f (n + k)) ----> a" |
|
51474
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
949 |
unfolding tendsto_def |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
950 |
by (subst eventually_sequentially_seg[where k=k]) |
51471 | 951 |
|
952 |
lemma LIMSEQ_offset: |
|
953 |
"(\<lambda>n. f (n + k)) ----> a \<Longrightarrow> f ----> a" |
|
51474
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
954 |
unfolding tendsto_def |
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
hoelzl
parents:
51473
diff
changeset
|
955 |
by (subst (asm) eventually_sequentially_seg[where k=k]) |
51471 | 956 |
|
957 |
lemma LIMSEQ_Suc: "f ----> l \<Longrightarrow> (\<lambda>n. f (Suc n)) ----> l" |
|
958 |
by (drule_tac k="Suc 0" in LIMSEQ_ignore_initial_segment, simp) |
|
959 |
||
960 |
lemma LIMSEQ_imp_Suc: "(\<lambda>n. f (Suc n)) ----> l \<Longrightarrow> f ----> l" |
|
961 |
by (rule_tac k="Suc 0" in LIMSEQ_offset, simp) |
|
962 |
||
963 |
lemma LIMSEQ_Suc_iff: "(\<lambda>n. f (Suc n)) ----> l = f ----> l" |
|
964 |
by (blast intro: LIMSEQ_imp_Suc LIMSEQ_Suc) |
|
965 |
||
966 |
lemma LIMSEQ_unique: |
|
967 |
fixes a b :: "'a::t2_space" |
|
968 |
shows "\<lbrakk>X ----> a; X ----> b\<rbrakk> \<Longrightarrow> a = b" |
|
969 |
using trivial_limit_sequentially by (rule tendsto_unique) |
|
970 |
||
971 |
lemma LIMSEQ_le_const: |
|
972 |
"\<lbrakk>X ----> (x::'a::linorder_topology); \<exists>N. \<forall>n\<ge>N. a \<le> X n\<rbrakk> \<Longrightarrow> a \<le> x" |
|
973 |
using tendsto_le_const[of sequentially X x a] by (simp add: eventually_sequentially) |
|
974 |
||
975 |
lemma LIMSEQ_le: |
|
976 |
"\<lbrakk>X ----> x; Y ----> y; \<exists>N. \<forall>n\<ge>N. X n \<le> Y n\<rbrakk> \<Longrightarrow> x \<le> (y::'a::linorder_topology)" |
|
977 |
using tendsto_le[of sequentially Y y X x] by (simp add: eventually_sequentially) |
|
978 |
||
979 |
lemma LIMSEQ_le_const2: |
|
980 |
"\<lbrakk>X ----> (x::'a::linorder_topology); \<exists>N. \<forall>n\<ge>N. X n \<le> a\<rbrakk> \<Longrightarrow> x \<le> a" |
|
58729
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
hoelzl
parents:
57953
diff
changeset
|
981 |
by (rule LIMSEQ_le[of X x "\<lambda>n. a"]) auto |
51471 | 982 |
|
983 |
lemma convergentD: "convergent X ==> \<exists>L. (X ----> L)" |
|
984 |
by (simp add: convergent_def) |
|
985 |
||
986 |
lemma convergentI: "(X ----> L) ==> convergent X" |
|
987 |
by (auto simp add: convergent_def) |
|
988 |
||
989 |
lemma convergent_LIMSEQ_iff: "convergent X = (X ----> lim X)" |
|
990 |
by (auto intro: theI LIMSEQ_unique simp add: convergent_def lim_def) |
|
991 |
||
992 |
lemma convergent_const: "convergent (\<lambda>n. c)" |
|
993 |
by (rule convergentI, rule tendsto_const) |
|
994 |
||
995 |
lemma monoseq_le: |
|
996 |
"monoseq a \<Longrightarrow> a ----> (x::'a::linorder_topology) \<Longrightarrow> |
|
997 |
((\<forall> n. a n \<le> x) \<and> (\<forall>m. \<forall>n\<ge>m. a m \<le> a n)) \<or> ((\<forall> n. x \<le> a n) \<and> (\<forall>m. \<forall>n\<ge>m. a n \<le> a m))" |
|
998 |
by (metis LIMSEQ_le_const LIMSEQ_le_const2 decseq_def incseq_def monoseq_iff) |
|
999 |
||
1000 |
lemma LIMSEQ_subseq_LIMSEQ: |
|
1001 |
"\<lbrakk> X ----> L; subseq f \<rbrakk> \<Longrightarrow> (X o f) ----> L" |
|
1002 |
unfolding comp_def by (rule filterlim_compose[of X, OF _ filterlim_subseq]) |
|
1003 |
||
1004 |
lemma convergent_subseq_convergent: |
|
1005 |
"\<lbrakk>convergent X; subseq f\<rbrakk> \<Longrightarrow> convergent (X o f)" |
|
1006 |
unfolding convergent_def by (auto intro: LIMSEQ_subseq_LIMSEQ) |
|
1007 |
||
1008 |
lemma limI: "X ----> L ==> lim X = L" |
|
57276 | 1009 |
by (rule tendsto_Lim) (rule trivial_limit_sequentially) |
51471 | 1010 |
|
1011 |
lemma lim_le: "convergent f \<Longrightarrow> (\<And>n. f n \<le> (x::'a::linorder_topology)) \<Longrightarrow> lim f \<le> x" |
|
1012 |
using LIMSEQ_le_const2[of f "lim f" x] by (simp add: convergent_LIMSEQ_iff) |
|
1013 |
||
1014 |
subsubsection{*Increasing and Decreasing Series*} |
|
1015 |
||
1016 |
lemma incseq_le: "incseq X \<Longrightarrow> X ----> L \<Longrightarrow> X n \<le> (L::'a::linorder_topology)" |
|
1017 |
by (metis incseq_def LIMSEQ_le_const) |
|
1018 |
||
1019 |
lemma decseq_le: "decseq X \<Longrightarrow> X ----> L \<Longrightarrow> (L::'a::linorder_topology) \<le> X n" |
|
1020 |
by (metis decseq_def LIMSEQ_le_const2) |
|
1021 |
||
51473 | 1022 |
subsection {* First countable topologies *} |
1023 |
||
1024 |
class first_countable_topology = topological_space + |
|
1025 |
assumes first_countable_basis: |
|
1026 |
"\<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))" |
|
1027 |
||
1028 |
lemma (in first_countable_topology) countable_basis_at_decseq: |
|
1029 |
obtains A :: "nat \<Rightarrow> 'a set" where |
|
1030 |
"\<And>i. open (A i)" "\<And>i. x \<in> (A i)" |
|
1031 |
"\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially" |
|
1032 |
proof atomize_elim |
|
1033 |
from first_countable_basis[of x] obtain A :: "nat \<Rightarrow> 'a set" where |
|
1034 |
nhds: "\<And>i. open (A i)" "\<And>i. x \<in> A i" |
|
1035 |
and incl: "\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> \<exists>i. A i \<subseteq> S" by auto |
|
1036 |
def F \<equiv> "\<lambda>n. \<Inter>i\<le>n. A i" |
|
1037 |
show "\<exists>A. (\<forall>i. open (A i)) \<and> (\<forall>i. x \<in> A i) \<and> |
|
1038 |
(\<forall>S. open S \<longrightarrow> x \<in> S \<longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially)" |
|
1039 |
proof (safe intro!: exI[of _ F]) |
|
1040 |
fix i |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1041 |
show "open (F i)" using nhds(1) by (auto simp: F_def) |
51473 | 1042 |
show "x \<in> F i" using nhds(2) by (auto simp: F_def) |
1043 |
next |
|
1044 |
fix S assume "open S" "x \<in> S" |
|
1045 |
from incl[OF this] obtain i where "F i \<subseteq> S" unfolding F_def by auto |
|
1046 |
moreover have "\<And>j. i \<le> j \<Longrightarrow> F j \<subseteq> F i" |
|
1047 |
by (auto simp: F_def) |
|
1048 |
ultimately show "eventually (\<lambda>i. F i \<subseteq> S) sequentially" |
|
1049 |
by (auto simp: eventually_sequentially) |
|
1050 |
qed |
|
1051 |
qed |
|
1052 |
||
57448
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1053 |
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
|
1054 |
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
|
1055 |
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
|
1056 |
proof - |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1057 |
from first_countable_basis obtain A :: "nat \<Rightarrow> 'a set" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1058 |
where A: "\<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" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1059 |
by metis |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1060 |
show thesis |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1061 |
proof |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1062 |
show "decseq (\<lambda>n. \<Inter>i\<le>n. A i)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1063 |
by (auto simp: decseq_def) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1064 |
show "\<And>n. x \<in> (\<Inter>i\<le>n. A i)" "\<And>n. open (\<Inter>i\<le>n. A i)" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1065 |
using A by auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1066 |
show "nhds x = (INF n. principal (\<Inter> i\<le>n. A i))" |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1067 |
using A unfolding nhds_def |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1068 |
apply (intro INF_eq) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1069 |
apply simp_all |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1070 |
apply force |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1071 |
apply (intro exI[of _ "\<Inter> i\<le>n. A i" for n] conjI open_INT) |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1072 |
apply auto |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1073 |
done |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1074 |
qed |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1075 |
qed |
159e45728ceb
more equalities of topological filters; strengthen dependent_nat_choice; tuned a couple of proofs
hoelzl
parents:
57447
diff
changeset
|
1076 |
|
51473 | 1077 |
lemma (in first_countable_topology) countable_basis: |
1078 |
obtains A :: "nat \<Rightarrow> 'a set" where |
|
1079 |
"\<And>i. open (A i)" "\<And>i. x \<in> A i" |
|
1080 |
"\<And>F. (\<forall>n. F n \<in> A n) \<Longrightarrow> F ----> x" |
|
1081 |
proof atomize_elim |
|
53381 | 1082 |
obtain A :: "nat \<Rightarrow> 'a set" where A: |
1083 |
"\<And>i. open (A i)" |
|
1084 |
"\<And>i. x \<in> A i" |
|
1085 |
"\<And>S. open S \<Longrightarrow> x \<in> S \<Longrightarrow> eventually (\<lambda>i. A i \<subseteq> S) sequentially" |
|
1086 |
by (rule countable_basis_at_decseq) blast |
|
1087 |
{ |
|
1088 |
fix F S assume "\<forall>n. F n \<in> A n" "open S" "x \<in> S" |
|
51473 | 1089 |
with A(3)[of S] have "eventually (\<lambda>n. F n \<in> S) sequentially" |
53381 | 1090 |
by (auto elim: eventually_elim1 simp: subset_eq) |
1091 |
} |
|
51473 | 1092 |
with A show "\<exists>A. (\<forall>i. open (A i)) \<and> (\<forall>i. x \<in> A i) \<and> (\<forall>F. (\<forall>n. F n \<in> A n) \<longrightarrow> F ----> x)" |
1093 |
by (intro exI[of _ A]) (auto simp: tendsto_def) |
|
1094 |
qed |
|
1095 |
||
1096 |
lemma (in first_countable_topology) sequentially_imp_eventually_nhds_within: |
|
1097 |
assumes "\<forall>f. (\<forall>n. f n \<in> s) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1098 |
shows "eventually P (inf (nhds a) (principal s))" |
51473 | 1099 |
proof (rule ccontr) |
53381 | 1100 |
obtain A :: "nat \<Rightarrow> 'a set" where A: |
1101 |
"\<And>i. open (A i)" |
|
1102 |
"\<And>i. a \<in> A i" |
|
1103 |
"\<And>F. \<forall>n. F n \<in> A n \<Longrightarrow> F ----> a" |
|
1104 |
by (rule countable_basis) blast |
|
1105 |
assume "\<not> ?thesis" |
|
51473 | 1106 |
with A have P: "\<exists>F. \<forall>n. F n \<in> s \<and> F n \<in> A n \<and> \<not> P (F n)" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1107 |
unfolding eventually_inf_principal eventually_nhds by (intro choice) fastforce |
53381 | 1108 |
then obtain F where F0: "\<forall>n. F n \<in> s" and F2: "\<forall>n. F n \<in> A n" and F3: "\<forall>n. \<not> P (F n)" |
1109 |
by blast |
|
51473 | 1110 |
with A have "F ----> a" by auto |
1111 |
hence "eventually (\<lambda>n. P (F n)) sequentially" |
|
1112 |
using assms F0 by simp |
|
1113 |
thus "False" by (simp add: F3) |
|
1114 |
qed |
|
1115 |
||
1116 |
lemma (in first_countable_topology) eventually_nhds_within_iff_sequentially: |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1117 |
"eventually P (inf (nhds a) (principal s)) \<longleftrightarrow> |
51473 | 1118 |
(\<forall>f. (\<forall>n. f n \<in> s) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially)" |
1119 |
proof (safe intro!: sequentially_imp_eventually_nhds_within) |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1120 |
assume "eventually P (inf (nhds a) (principal s))" |
51473 | 1121 |
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
|
1122 |
by (auto simp: eventually_inf_principal eventually_nhds) |
51473 | 1123 |
moreover fix f assume "\<forall>n. f n \<in> s" "f ----> a" |
1124 |
ultimately show "eventually (\<lambda>n. P (f n)) sequentially" |
|
1125 |
by (auto dest!: topological_tendstoD elim: eventually_elim1) |
|
1126 |
qed |
|
1127 |
||
1128 |
lemma (in first_countable_topology) eventually_nhds_iff_sequentially: |
|
1129 |
"eventually P (nhds a) \<longleftrightarrow> (\<forall>f. f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially)" |
|
1130 |
using eventually_nhds_within_iff_sequentially[of P a UNIV] by simp |
|
1131 |
||
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1132 |
lemma tendsto_at_iff_sequentially: |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1133 |
fixes f :: "'a :: first_countable_topology \<Rightarrow> _" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1134 |
shows "(f ---> a) (at x within s) \<longleftrightarrow> (\<forall>X. (\<forall>i. X i \<in> s - {x}) \<longrightarrow> X ----> x \<longrightarrow> ((f \<circ> X) ----> a))" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1135 |
unfolding filterlim_def[of _ "nhds a"] le_filter_def eventually_filtermap at_within_def eventually_nhds_within_iff_sequentially 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
|
1136 |
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
|
1137 |
|
51471 | 1138 |
subsection {* Function limit at a point *} |
1139 |
||
1140 |
abbreviation |
|
1141 |
LIM :: "('a::topological_space \<Rightarrow> 'b::topological_space) \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> bool" |
|
1142 |
("((_)/ -- (_)/ --> (_))" [60, 0, 60] 60) where |
|
1143 |
"f -- a --> L \<equiv> (f ---> L) (at a)" |
|
1144 |
||
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1145 |
lemma tendsto_within_open: "a \<in> S \<Longrightarrow> open S \<Longrightarrow> (f ---> l) (at a within S) \<longleftrightarrow> (f -- a --> l)" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1146 |
unfolding tendsto_def by (simp add: at_within_open[where S=S]) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1147 |
|
51471 | 1148 |
lemma LIM_const_not_eq[tendsto_intros]: |
1149 |
fixes a :: "'a::perfect_space" |
|
1150 |
fixes k L :: "'b::t2_space" |
|
1151 |
shows "k \<noteq> L \<Longrightarrow> \<not> (\<lambda>x. k) -- a --> L" |
|
1152 |
by (simp add: tendsto_const_iff) |
|
1153 |
||
1154 |
lemmas LIM_not_zero = LIM_const_not_eq [where L = 0] |
|
1155 |
||
1156 |
lemma LIM_const_eq: |
|
1157 |
fixes a :: "'a::perfect_space" |
|
1158 |
fixes k L :: "'b::t2_space" |
|
1159 |
shows "(\<lambda>x. k) -- a --> L \<Longrightarrow> k = L" |
|
1160 |
by (simp add: tendsto_const_iff) |
|
1161 |
||
1162 |
lemma LIM_unique: |
|
1163 |
fixes a :: "'a::perfect_space" and L M :: "'b::t2_space" |
|
1164 |
shows "f -- a --> L \<Longrightarrow> f -- a --> M \<Longrightarrow> L = M" |
|
1165 |
using at_neq_bot by (rule tendsto_unique) |
|
1166 |
||
1167 |
text {* Limits are equal for functions equal except at limit point *} |
|
1168 |
||
1169 |
lemma LIM_equal: "\<forall>x. x \<noteq> a --> (f x = g x) \<Longrightarrow> (f -- a --> l) \<longleftrightarrow> (g -- a --> l)" |
|
1170 |
unfolding tendsto_def eventually_at_topological by simp |
|
1171 |
||
1172 |
lemma LIM_cong: "a = b \<Longrightarrow> (\<And>x. x \<noteq> b \<Longrightarrow> f x = g x) \<Longrightarrow> l = m \<Longrightarrow> (f -- a --> l) \<longleftrightarrow> (g -- b --> m)" |
|
1173 |
by (simp add: LIM_equal) |
|
1174 |
||
1175 |
lemma LIM_cong_limit: "f -- x --> L \<Longrightarrow> K = L \<Longrightarrow> f -- x --> K" |
|
1176 |
by simp |
|
1177 |
||
1178 |
lemma tendsto_at_iff_tendsto_nhds: |
|
1179 |
"g -- l --> g l \<longleftrightarrow> (g ---> g l) (nhds l)" |
|
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1180 |
unfolding tendsto_def eventually_at_filter |
51471 | 1181 |
by (intro ext all_cong imp_cong) (auto elim!: eventually_elim1) |
1182 |
||
1183 |
lemma tendsto_compose: |
|
1184 |
"g -- l --> g l \<Longrightarrow> (f ---> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> g l) F" |
|
1185 |
unfolding tendsto_at_iff_tendsto_nhds by (rule filterlim_compose[of g]) |
|
1186 |
||
1187 |
lemma LIM_o: "\<lbrakk>g -- l --> g l; f -- a --> l\<rbrakk> \<Longrightarrow> (g \<circ> f) -- a --> g l" |
|
1188 |
unfolding o_def by (rule tendsto_compose) |
|
1189 |
||
1190 |
lemma tendsto_compose_eventually: |
|
1191 |
"g -- l --> m \<Longrightarrow> (f ---> l) F \<Longrightarrow> eventually (\<lambda>x. f x \<noteq> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> m) F" |
|
1192 |
by (rule filterlim_compose[of g _ "at l"]) (auto simp add: filterlim_at) |
|
1193 |
||
1194 |
lemma LIM_compose_eventually: |
|
1195 |
assumes f: "f -- a --> b" |
|
1196 |
assumes g: "g -- b --> c" |
|
1197 |
assumes inj: "eventually (\<lambda>x. f x \<noteq> b) (at a)" |
|
1198 |
shows "(\<lambda>x. g (f x)) -- a --> c" |
|
1199 |
using g f inj by (rule tendsto_compose_eventually) |
|
1200 |
||
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1201 |
lemma tendsto_compose_filtermap: "((g \<circ> f) ---> T) F \<longleftrightarrow> (g ---> T) (filtermap f F)" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1202 |
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
|
1203 |
|
51473 | 1204 |
subsubsection {* Relation of LIM and LIMSEQ *} |
1205 |
||
1206 |
lemma (in first_countable_topology) sequentially_imp_eventually_within: |
|
1207 |
"(\<forall>f. (\<forall>n. f n \<in> s \<and> f n \<noteq> a) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially) \<Longrightarrow> |
|
1208 |
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
|
1209 |
unfolding at_within_def |
51473 | 1210 |
by (intro sequentially_imp_eventually_nhds_within) auto |
1211 |
||
1212 |
lemma (in first_countable_topology) sequentially_imp_eventually_at: |
|
1213 |
"(\<forall>f. (\<forall>n. f n \<noteq> a) \<and> f ----> a \<longrightarrow> eventually (\<lambda>n. P (f n)) sequentially) \<Longrightarrow> eventually P (at a)" |
|
1214 |
using assms sequentially_imp_eventually_within [where s=UNIV] by simp |
|
1215 |
||
1216 |
lemma LIMSEQ_SEQ_conv1: |
|
1217 |
fixes f :: "'a::topological_space \<Rightarrow> 'b::topological_space" |
|
1218 |
assumes f: "f -- a --> l" |
|
1219 |
shows "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> a \<longrightarrow> (\<lambda>n. f (S n)) ----> l" |
|
1220 |
using tendsto_compose_eventually [OF f, where F=sequentially] by simp |
|
1221 |
||
1222 |
lemma LIMSEQ_SEQ_conv2: |
|
1223 |
fixes f :: "'a::first_countable_topology \<Rightarrow> 'b::topological_space" |
|
1224 |
assumes "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> a \<longrightarrow> (\<lambda>n. f (S n)) ----> l" |
|
1225 |
shows "f -- a --> l" |
|
1226 |
using assms unfolding tendsto_def [where l=l] by (simp add: sequentially_imp_eventually_at) |
|
1227 |
||
1228 |
lemma LIMSEQ_SEQ_conv: |
|
1229 |
"(\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> (a::'a::first_countable_topology) \<longrightarrow> (\<lambda>n. X (S n)) ----> L) = |
|
1230 |
(X -- a --> (L::'b::topological_space))" |
|
1231 |
using LIMSEQ_SEQ_conv2 LIMSEQ_SEQ_conv1 .. |
|
1232 |
||
57025 | 1233 |
lemma sequentially_imp_eventually_at_left: |
1234 |
fixes a :: "'a :: {dense_linorder, linorder_topology, first_countable_topology}" |
|
1235 |
assumes b[simp]: "b < a" |
|
1236 |
assumes *: "\<And>f. (\<And>n. b < f n) \<Longrightarrow> (\<And>n. f n < a) \<Longrightarrow> incseq f \<Longrightarrow> f ----> a \<Longrightarrow> eventually (\<lambda>n. P (f n)) sequentially" |
|
1237 |
shows "eventually P (at_left a)" |
|
1238 |
proof (safe intro!: sequentially_imp_eventually_within) |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1239 |
fix X assume X: "\<forall>n. X n \<in> {..< a} \<and> X n \<noteq> a" "X ----> a" |
57025 | 1240 |
show "eventually (\<lambda>n. P (X n)) sequentially" |
1241 |
proof (rule ccontr) |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1242 |
assume neg: "\<not> 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
|
1243 |
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))" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1244 |
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
|
1245 |
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
|
1246 |
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
|
1247 |
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
|
1248 |
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
|
1249 |
next |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1250 |
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
|
1251 |
have "\<not> eventually (\<lambda>n. Suc x \<le> n \<longrightarrow> b < X n \<longrightarrow> X x < 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
|
1252 |
using X by (intro not_eventually_impI order_tendstoD(1)[OF X(2)] eventually_ge_at_top neg) auto |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1253 |
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
|
1254 |
by (auto dest!: not_eventuallyD) |
57025 | 1255 |
qed |
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1256 |
then guess s .. |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1257 |
then have "\<And>n. b < X (s n)" "\<And>n. X (s n) < a" "incseq (\<lambda>n. X (s n))" "(\<lambda>n. X (s n)) ----> a" "\<And>n. \<not> P (X (s n))" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1258 |
using X by (auto simp: subseq_Suc_iff Suc_le_eq incseq_Suc_iff intro!: LIMSEQ_subseq_LIMSEQ[OF `X ----> a`, unfolded 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
|
1259 |
from *[OF this(1,2,3,4)] this(5) show False by auto |
57025 | 1260 |
qed |
1261 |
qed |
|
1262 |
||
1263 |
lemma tendsto_at_left_sequentially: |
|
1264 |
fixes a :: "_ :: {dense_linorder, linorder_topology, first_countable_topology}" |
|
1265 |
assumes "b < a" |
|
1266 |
assumes *: "\<And>S. (\<And>n. S n < a) \<Longrightarrow> (\<And>n. b < S n) \<Longrightarrow> incseq S \<Longrightarrow> S ----> a \<Longrightarrow> (\<lambda>n. X (S n)) ----> L" |
|
1267 |
shows "(X ---> L) (at_left a)" |
|
1268 |
using assms unfolding tendsto_def [where l=L] |
|
1269 |
by (simp add: sequentially_imp_eventually_at_left) |
|
1270 |
||
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1271 |
lemma sequentially_imp_eventually_at_right: |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1272 |
fixes a :: "'a :: {dense_linorder, linorder_topology, first_countable_topology}" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1273 |
assumes b[simp]: "a < b" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1274 |
assumes *: "\<And>f. (\<And>n. a < f n) \<Longrightarrow> (\<And>n. f n < b) \<Longrightarrow> decseq f \<Longrightarrow> f ----> a \<Longrightarrow> eventually (\<lambda>n. P (f 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
|
1275 |
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
|
1276 |
proof (safe intro!: sequentially_imp_eventually_within) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1277 |
fix X assume X: "\<forall>n. X n \<in> {a <..} \<and> X n \<noteq> a" "X ----> a" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1278 |
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
|
1279 |
proof (rule ccontr) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1280 |
assume neg: "\<not> 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
|
1281 |
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))" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1282 |
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
|
1283 |
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
|
1284 |
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
|
1285 |
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
|
1286 |
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
|
1287 |
next |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1288 |
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
|
1289 |
have "\<not> eventually (\<lambda>n. Suc x \<le> n \<longrightarrow> X n < b \<longrightarrow> X n < X x \<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
|
1290 |
using X by (intro not_eventually_impI order_tendstoD(2)[OF X(2)] eventually_ge_at_top neg) auto |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1291 |
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
|
1292 |
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
|
1293 |
qed |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1294 |
then guess s .. |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1295 |
then have "\<And>n. a < X (s n)" "\<And>n. X (s n) < b" "decseq (\<lambda>n. X (s n))" "(\<lambda>n. X (s n)) ----> a" "\<And>n. \<not> P (X (s n))" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1296 |
using X by (auto simp: subseq_Suc_iff Suc_le_eq decseq_Suc_iff intro!: LIMSEQ_subseq_LIMSEQ[OF `X ----> a`, unfolded 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
|
1297 |
from *[OF this(1,2,3,4)] this(5) show False by auto |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1298 |
qed |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1299 |
qed |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1300 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1301 |
lemma tendsto_at_right_sequentially: |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1302 |
fixes a :: "_ :: {dense_linorder, linorder_topology, first_countable_topology}" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1303 |
assumes "a < b" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1304 |
assumes *: "\<And>S. (\<And>n. a < S n) \<Longrightarrow> (\<And>n. S n < b) \<Longrightarrow> decseq S \<Longrightarrow> S ----> a \<Longrightarrow> (\<lambda>n. X (S n)) ----> L" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1305 |
shows "(X ---> L) (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
|
1306 |
using assms unfolding tendsto_def [where l=L] |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1307 |
by (simp add: sequentially_imp_eventually_at_right) |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1308 |
|
51471 | 1309 |
subsection {* Continuity *} |
1310 |
||
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
|
1311 |
subsubsection {* Continuity on a set *} |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1312 |
|
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
|
1313 |
definition continuous_on :: "'a set \<Rightarrow> ('a :: topological_space \<Rightarrow> 'b :: topological_space) \<Rightarrow> bool" where |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1314 |
"continuous_on s f \<longleftrightarrow> (\<forall>x\<in>s. (f ---> f x) (at x within s))" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1315 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1316 |
lemma continuous_on_cong [cong]: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1317 |
"s = t \<Longrightarrow> (\<And>x. x \<in> t \<Longrightarrow> f x = g x) \<Longrightarrow> continuous_on s f \<longleftrightarrow> continuous_on t g" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1318 |
unfolding continuous_on_def by (intro ball_cong filterlim_cong) (auto simp: eventually_at_filter) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1319 |
|
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
|
1320 |
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
|
1321 |
"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
|
1322 |
(\<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
|
1323 |
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
|
1324 |
|
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
|
1325 |
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
|
1326 |
"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
|
1327 |
proof safe |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1328 |
fix B :: "'b set" assume "continuous_on s f" "open B" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1329 |
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
|
1330 |
by (auto simp: continuous_on_topological subset_eq Ball_def imp_conjL) |
53381 | 1331 |
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" |
1332 |
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
|
1333 |
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
|
1334 |
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
|
1335 |
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
|
1336 |
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
|
1337 |
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
|
1338 |
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
|
1339 |
proof safe |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1340 |
fix x B assume "x \<in> s" "open B" "f x \<in> B" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1341 |
with B obtain A where A: "open A" "A \<inter> s = f -` B \<inter> s" by auto |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1342 |
with `x \<in> s` `f x \<in> B` show "\<exists>A. open A \<and> x \<in> A \<and> (\<forall>y\<in>s. y \<in> A \<longrightarrow> f y \<in> B)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1343 |
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
|
1344 |
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
|
1345 |
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
|
1346 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1347 |
lemma continuous_on_open_vimage: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1348 |
"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
|
1349 |
unfolding continuous_on_open_invariant |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1350 |
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
|
1351 |
|
55734 | 1352 |
corollary continuous_imp_open_vimage: |
1353 |
assumes "continuous_on s f" "open s" "open B" "f -` B \<subseteq> s" |
|
1354 |
shows "open (f -` B)" |
|
1355 |
by (metis assms continuous_on_open_vimage le_iff_inf) |
|
1356 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1357 |
corollary open_vimage[continuous_intros]: |
55775 | 1358 |
assumes "open s" and "continuous_on UNIV f" |
1359 |
shows "open (f -` s)" |
|
1360 |
using assms unfolding continuous_on_open_vimage [OF open_UNIV] |
|
1361 |
by simp |
|
1362 |
||
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
|
1363 |
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
|
1364 |
"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
|
1365 |
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
|
1366 |
have *: "\<And>P Q::'b set\<Rightarrow>bool. (\<And>A. P A \<longleftrightarrow> Q (- A)) \<Longrightarrow> (\<forall>A. P A) \<longleftrightarrow> (\<forall>A. Q A)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1367 |
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
|
1368 |
show ?thesis |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1369 |
unfolding continuous_on_open_invariant by (intro *) (auto simp: open_closed[symmetric]) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1370 |
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
|
1371 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1372 |
lemma continuous_on_closed_vimage: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1373 |
"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
|
1374 |
unfolding continuous_on_closed_invariant |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1375 |
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
|
1376 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1377 |
corollary closed_vimage[continuous_intros]: |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1378 |
assumes "closed s" and "continuous_on UNIV f" |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1379 |
shows "closed (f -` s)" |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1380 |
using assms unfolding continuous_on_closed_vimage [OF closed_UNIV] |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1381 |
by simp |
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1382 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1383 |
lemma continuous_on_open_Union: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1384 |
"(\<And>s. s \<in> S \<Longrightarrow> open s) \<Longrightarrow> (\<And>s. s \<in> S \<Longrightarrow> continuous_on s f) \<Longrightarrow> continuous_on (\<Union>S) f" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1385 |
unfolding continuous_on_def by safe (metis open_Union at_within_open UnionI) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1386 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1387 |
lemma continuous_on_open_UN: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1388 |
"(\<And>s. s \<in> S \<Longrightarrow> open (A s)) \<Longrightarrow> (\<And>s. s \<in> S \<Longrightarrow> continuous_on (A s) f) \<Longrightarrow> continuous_on (\<Union>s\<in>S. A s) f" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1389 |
unfolding Union_image_eq[symmetric] by (rule continuous_on_open_Union) auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1390 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1391 |
lemma continuous_on_closed_Un: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1392 |
"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
|
1393 |
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
|
1394 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1395 |
lemma continuous_on_If: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1396 |
assumes closed: "closed s" "closed t" and cont: "continuous_on s f" "continuous_on t g" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1397 |
and P: "\<And>x. x \<in> s \<Longrightarrow> \<not> P x \<Longrightarrow> f x = g x" "\<And>x. x \<in> t \<Longrightarrow> P x \<Longrightarrow> f x = g x" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1398 |
shows "continuous_on (s \<union> t) (\<lambda>x. if P x then f x else g x)" (is "continuous_on _ ?h") |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1399 |
proof- |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1400 |
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
|
1401 |
by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1402 |
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
|
1403 |
by simp_all |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1404 |
with closed show ?thesis |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1405 |
by (rule continuous_on_closed_Un) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1406 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1407 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1408 |
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
|
1409 |
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
|
1410 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1411 |
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
|
1412 |
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
|
1413 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56329
diff
changeset
|
1414 |
lemma continuous_on_compose[continuous_intros]: |
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1415 |
"continuous_on s f \<Longrightarrow> continuous_on (f ` s) g \<Longrightarrow> continuous_on s (g o f)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1416 |
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
|
1417 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1418 |
lemma continuous_on_compose2: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1419 |
"continuous_on t g \<Longrightarrow> continuous_on s f \<Longrightarrow> t = f ` s \<Longrightarrow> continuous_on s (\<lambda>x. g (f x))" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1420 |
using continuous_on_compose[of s f g] by (simp add: comp_def) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1421 |
|
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
|
1422 |
subsubsection {* Continuity at a point *} |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1423 |
|
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
|
1424 |
definition continuous :: "'a::t2_space filter \<Rightarrow> ('a \<Rightarrow> 'b::topological_space) \<Rightarrow> bool" where |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1425 |
"continuous F f \<longleftrightarrow> (f ---> f (Lim F (\<lambda>x. x))) F" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1426 |
|
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
|
1427 |
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
|
1428 |
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
|
1429 |
|
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
|
1430 |
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
|
1431 |
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
|
1432 |
|
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
|
1433 |
lemma continuous_within: "continuous (at x within s) f \<longleftrightarrow> (f ---> f x) (at x within s)" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1434 |
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
|
1435 |
|
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
|
1436 |
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
|
1437 |
"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
|
1438 |
(\<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
|
1439 |
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
|
1440 |
|
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
|
1441 |
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
|
1442 |
"continuous (at x within s) f \<Longrightarrow> continuous (at (f x) within f ` s) g \<Longrightarrow> |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1443 |
continuous (at x within s) (g o f)" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1444 |
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
|
1445 |
|
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
|
1446 |
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
|
1447 |
"continuous (at x within s) f \<Longrightarrow> continuous (at (f x) within f ` s) g \<Longrightarrow> |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1448 |
continuous (at x within s) (\<lambda>x. g (f x))" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1449 |
using continuous_within_compose[of x s f g] by (simp add: comp_def) |
51471 | 1450 |
|
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
|
1451 |
lemma continuous_at: "continuous (at x) f \<longleftrightarrow> f -- x --> f x" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1452 |
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
|
1453 |
|
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
|
1454 |
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
|
1455 |
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
|
1456 |
|
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
|
1457 |
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
|
1458 |
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
|
1459 |
|
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
|
1460 |
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
|
1461 |
"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
|
1462 |
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
|
1463 |
|
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
|
1464 |
abbreviation isCont :: "('a::t2_space \<Rightarrow> 'b::topological_space) \<Rightarrow> 'a \<Rightarrow> bool" where |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1465 |
"isCont f a \<equiv> continuous (at a) f" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1466 |
|
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
|
1467 |
lemma isCont_def: "isCont f a \<longleftrightarrow> f -- a --> f a" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1468 |
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
|
1469 |
|
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
|
1470 |
lemma continuous_at_within: "isCont f x \<Longrightarrow> continuous (at x within s) f" |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51518
diff
changeset
|
1471 |
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
|
1472 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1473 |
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
|
1474 |
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
|
1475 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1476 |
lemma continuous_on_subset: "continuous_on s f \<Longrightarrow> t \<subseteq> s \<Longrightarrow> continuous_on t f" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1477 |
unfolding continuous_on_def by (metis subset_eq tendsto_within_subset) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1478 |
|
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
|
1479 |
lemma continuous_at_imp_continuous_on: "\<forall>x\<in>s. isCont f x \<Longrightarrow> continuous_on s f" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1480 |
by (auto intro: continuous_at_within simp: continuous_on_eq_continuous_within) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1481 |
|
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
|
1482 |
lemma isContI_continuous: "continuous (at x within UNIV) f \<Longrightarrow> isCont f x" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1483 |
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
|
1484 |
|
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
|
1485 |
lemma isCont_ident[continuous_intros, simp]: "isCont (\<lambda>x. x) a" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1486 |
using continuous_ident by (rule isContI_continuous) |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1487 |
|
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
|
1488 |
lemmas isCont_const = continuous_const |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1489 |
|
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
|
1490 |
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
|
1491 |
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
|
1492 |
|
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
|
1493 |
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
|
1494 |
unfolding o_def by (rule isCont_o2) |
51471 | 1495 |
|
1496 |
lemma isCont_tendsto_compose: "isCont g l \<Longrightarrow> (f ---> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> g l) F" |
|
1497 |
unfolding isCont_def by (rule tendsto_compose) |
|
1498 |
||
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
|
1499 |
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
|
1500 |
"isCont g (f x) \<Longrightarrow> continuous (at x within s) f \<Longrightarrow> continuous (at x within s) (\<lambda>x. g (f x))" |
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51474
diff
changeset
|
1501 |
using continuous_within_compose2[of x s f g] by (simp add: continuous_at_within) |
51471 | 1502 |
|
57447
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1503 |
lemma filtermap_nhds_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
|
1504 |
assumes cont: "isCont f a" and open_map: "\<And>S. open S \<Longrightarrow> open (f`S)" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1505 |
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
|
1506 |
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
|
1507 |
proof safe |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1508 |
fix P assume "eventually P (filtermap f (nhds a))" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1509 |
then guess S unfolding eventually_filtermap eventually_nhds .. |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1510 |
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
|
1511 |
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
|
1512 |
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
|
1513 |
|
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1514 |
lemma continuous_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
|
1515 |
"continuous (at (x::'a::linorder_topology)) f = (continuous (at_left x) f \<and> continuous (at_right x) f)" |
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents:
57276
diff
changeset
|
1516 |
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
|
1517 |
|
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
|
1518 |
subsubsection{* Open-cover compactness *} |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1519 |
|
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
|
1520 |
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
|
1521 |
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
|
1522 |
|
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
|
1523 |
definition compact :: "'a set \<Rightarrow> bool" where |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1524 |
compact_eq_heine_borel: -- "This name is used for backwards compatibility" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1525 |
"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
|
1526 |
|
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
|
1527 |
lemma compactI: |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1528 |
assumes "\<And>C. \<forall>t\<in>C. open t \<Longrightarrow> s \<subseteq> \<Union> C \<Longrightarrow> \<exists>C'. C' \<subseteq> C \<and> finite C' \<and> s \<subseteq> \<Union> C'" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1529 |
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
|
1530 |
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
|
1531 |
|
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
|
1532 |
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
|
1533 |
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
|
1534 |
|
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
|
1535 |
lemma compactE: |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1536 |
assumes "compact s" and "\<forall>t\<in>C. open t" and "s \<subseteq> \<Union>C" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1537 |
obtains C' where "C' \<subseteq> C" and "finite C'" and "s \<subseteq> \<Union>C'" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1538 |
using assms unfolding compact_eq_heine_borel by metis |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1539 |
|
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
|
1540 |
lemma compactE_image: |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1541 |
assumes "compact s" and "\<forall>t\<in>C. open (f t)" and "s \<subseteq> (\<Union>c\<in>C. f c)" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1542 |
obtains C' where "C' \<subseteq> C" and "finite C'" and "s \<subseteq> (\<Union>c\<in>C'. f c)" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1543 |
using assms unfolding ball_simps[symmetric] SUP_def |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1544 |
by (metis (lifting) finite_subset_image compact_eq_heine_borel[of s]) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1545 |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1546 |
lemma compact_inter_closed [intro]: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1547 |
assumes "compact s" and "closed t" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1548 |
shows "compact (s \<inter> t)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1549 |
proof (rule compactI) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1550 |
fix C assume C: "\<forall>c\<in>C. open c" and cover: "s \<inter> t \<subseteq> \<Union>C" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1551 |
from C `closed t` have "\<forall>c\<in>C \<union> {-t}. open c" by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1552 |
moreover from cover have "s \<subseteq> \<Union>(C \<union> {-t})" by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1553 |
ultimately have "\<exists>D\<subseteq>C \<union> {-t}. finite D \<and> s \<subseteq> \<Union>D" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1554 |
using `compact s` unfolding compact_eq_heine_borel by auto |
53381 | 1555 |
then obtain D where "D \<subseteq> C \<union> {- t} \<and> finite D \<and> s \<subseteq> \<Union>D" .. |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1556 |
then show "\<exists>D\<subseteq>C. finite D \<and> s \<inter> t \<subseteq> \<Union>D" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1557 |
by (intro exI[of _ "D - {-t}"]) auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1558 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1559 |
|
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1560 |
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
|
1561 |
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
|
1562 |
|
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1563 |
lemma compact_fip: |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1564 |
"compact U \<longleftrightarrow> |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1565 |
(\<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
|
1566 |
(is "_ \<longleftrightarrow> ?R") |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1567 |
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
|
1568 |
fix A |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1569 |
assume "compact U" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1570 |
and A: "\<forall>a\<in>A. closed a" "U \<inter> \<Inter>A = {}" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1571 |
and fi: "\<forall>B \<subseteq> A. finite B \<longrightarrow> U \<inter> \<Inter>B \<noteq> {}" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1572 |
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
|
1573 |
by auto |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1574 |
with `compact U` obtain B where "B \<subseteq> A" "finite (uminus`B)" "U \<subseteq> \<Union>(uminus`B)" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1575 |
unfolding compact_eq_heine_borel by (metis subset_image_iff) |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1576 |
with fi[THEN spec, of B] show False |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1577 |
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
|
1578 |
next |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1579 |
fix A |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1580 |
assume ?R |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1581 |
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
|
1582 |
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
|
1583 |
by auto |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1584 |
with `?R` obtain B where "B \<subseteq> A" "finite (uminus`B)" "U \<inter> \<Inter>(uminus`B) = {}" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1585 |
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
|
1586 |
then show "\<exists>T\<subseteq>A. finite T \<and> U \<subseteq> \<Union>T" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1587 |
by (auto intro!: exI[of _ B] inj_setminus dest: finite_imageD) |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1588 |
qed |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1589 |
|
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1590 |
lemma compact_imp_fip: |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1591 |
"compact s \<Longrightarrow> \<forall>t \<in> f. closed t \<Longrightarrow> \<forall>f'. finite f' \<and> f' \<subseteq> f \<longrightarrow> (s \<inter> (\<Inter> f') \<noteq> {}) \<Longrightarrow> |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1592 |
s \<inter> (\<Inter> f) \<noteq> {}" |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1593 |
unfolding compact_fip by auto |
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1594 |
|
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1595 |
lemma compact_imp_fip_image: |
56166 | 1596 |
assumes "compact s" |
1597 |
and P: "\<And>i. i \<in> I \<Longrightarrow> closed (f i)" |
|
1598 |
and Q: "\<And>I'. finite I' \<Longrightarrow> I' \<subseteq> I \<Longrightarrow> (s \<inter> (\<Inter>i\<in>I'. f i) \<noteq> {})" |
|
1599 |
shows "s \<inter> (\<Inter>i\<in>I. f i) \<noteq> {}" |
|
1600 |
proof - |
|
1601 |
note `compact s` |
|
1602 |
moreover from P have "\<forall>i \<in> f ` I. closed i" by blast |
|
1603 |
moreover have "\<forall>A. finite A \<and> A \<subseteq> f ` I \<longrightarrow> (s \<inter> (\<Inter>A) \<noteq> {})" |
|
1604 |
proof (rule, rule, erule conjE) |
|
1605 |
fix A :: "'a set set" |
|
1606 |
assume "finite A" |
|
1607 |
moreover assume "A \<subseteq> f ` I" |
|
1608 |
ultimately obtain B where "B \<subseteq> I" and "finite B" and "A = f ` B" |
|
1609 |
using finite_subset_image [of A f I] by blast |
|
1610 |
with Q [of B] show "s \<inter> \<Inter>A \<noteq> {}" by simp |
|
1611 |
qed |
|
1612 |
ultimately have "s \<inter> (\<Inter>(f ` I)) \<noteq> {}" by (rule compact_imp_fip) |
|
1613 |
then show ?thesis by simp |
|
1614 |
qed |
|
54797
be020ec8560c
modernized ContNotDenum: use Set_Interval, and finite intersection property to show the nested interval property
hoelzl
parents:
54258
diff
changeset
|
1615 |
|
51471 | 1616 |
end |
1617 |
||
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1618 |
lemma (in t2_space) compact_imp_closed: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1619 |
assumes "compact s" shows "closed s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1620 |
unfolding closed_def |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1621 |
proof (rule openI) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1622 |
fix y assume "y \<in> - s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1623 |
let ?C = "\<Union>x\<in>s. {u. open u \<and> x \<in> u \<and> eventually (\<lambda>y. y \<notin> u) (nhds y)}" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1624 |
note `compact s` |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1625 |
moreover have "\<forall>u\<in>?C. open u" by simp |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1626 |
moreover have "s \<subseteq> \<Union>?C" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1627 |
proof |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1628 |
fix x assume "x \<in> s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1629 |
with `y \<in> - s` have "x \<noteq> y" by clarsimp |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1630 |
hence "\<exists>u v. open u \<and> open v \<and> x \<in> u \<and> y \<in> v \<and> u \<inter> v = {}" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1631 |
by (rule hausdorff) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1632 |
with `x \<in> s` show "x \<in> \<Union>?C" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1633 |
unfolding eventually_nhds by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1634 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1635 |
ultimately obtain D where "D \<subseteq> ?C" and "finite D" and "s \<subseteq> \<Union>D" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1636 |
by (rule compactE) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1637 |
from `D \<subseteq> ?C` have "\<forall>x\<in>D. eventually (\<lambda>y. y \<notin> x) (nhds y)" by auto |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1638 |
with `finite D` 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
|
1639 |
by (simp add: eventually_ball_finite) |
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1640 |
with `s \<subseteq> \<Union>D` have "eventually (\<lambda>y. y \<notin> s) (nhds y)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1641 |
by (auto elim!: eventually_mono [rotated]) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1642 |
thus "\<exists>t. open t \<and> y \<in> t \<and> t \<subseteq> - s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1643 |
by (simp add: eventually_nhds subset_eq) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1644 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1645 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1646 |
lemma compact_continuous_image: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1647 |
assumes f: "continuous_on s f" and s: "compact s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1648 |
shows "compact (f ` s)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1649 |
proof (rule compactI) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1650 |
fix C assume "\<forall>c\<in>C. open c" and cover: "f`s \<subseteq> \<Union>C" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1651 |
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
|
1652 |
unfolding continuous_on_open_invariant by blast |
53381 | 1653 |
then obtain A where A: "\<forall>c\<in>C. open (A c) \<and> A c \<inter> s = f -` c \<inter> s" |
1654 |
unfolding bchoice_iff .. |
|
51481
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1655 |
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
|
1656 |
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
|
1657 |
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
|
1658 |
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
|
1659 |
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
|
1660 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1661 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1662 |
lemma continuous_on_inv: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1663 |
fixes f :: "'a::topological_space \<Rightarrow> 'b::t2_space" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1664 |
assumes "continuous_on s f" "compact s" "\<forall>x\<in>s. g (f x) = x" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1665 |
shows "continuous_on (f ` s) g" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1666 |
unfolding continuous_on_topological |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1667 |
proof (clarsimp simp add: assms(3)) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1668 |
fix x :: 'a and B :: "'a set" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1669 |
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
|
1670 |
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
|
1671 |
using assms(3) by (auto, metis) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1672 |
have "continuous_on (s - B) f" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1673 |
using `continuous_on s f` Diff_subset |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1674 |
by (rule continuous_on_subset) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1675 |
moreover have "compact (s - B)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1676 |
using `open B` and `compact s` |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1677 |
unfolding Diff_eq by (intro compact_inter_closed closed_Compl) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1678 |
ultimately have "compact (f ` (s - B))" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1679 |
by (rule compact_continuous_image) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1680 |
hence "closed (f ` (s - B))" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1681 |
by (rule compact_imp_closed) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1682 |
hence "open (- f ` (s - B))" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1683 |
by (rule open_Compl) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1684 |
moreover have "f x \<in> - f ` (s - B)" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1685 |
using `x \<in> s` and `x \<in> B` by (simp add: 1) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1686 |
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
|
1687 |
by (simp add: 1) |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1688 |
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
|
1689 |
by fast |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1690 |
qed |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1691 |
|
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1692 |
lemma continuous_on_inv_into: |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1693 |
fixes f :: "'a::topological_space \<Rightarrow> 'b::t2_space" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1694 |
assumes s: "continuous_on s f" "compact s" and f: "inj_on f s" |
ef949192e5d6
move continuous_on_inv to HOL image (simplifies isCont_inverse_function)
hoelzl
parents:
51480
diff
changeset
|
1695 |
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
|
1696 |
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
|
1697 |
|
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
|
1698 |
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
|
1699 |
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
|
1700 |
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
|
1701 |
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
|
1702 |
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
|
1703 |
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
|
1704 |
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
|
1705 |
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
|
1706 |
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
|
1707 |
with `compact S` obtain C where "C \<subseteq> S" "finite C" and C: "S \<subseteq> (\<Union>s\<in>C. {..< t s})" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1708 |
by (erule compactE_image) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1709 |
with `S \<noteq> {}` have Max: "Max (t`C) \<in> t`C" and "\<forall>s\<in>t`C. s \<le> Max (t`C)" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1710 |
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
|
1711 |
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
|
1712 |
by (auto intro: less_le_trans simp: subset_eq) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1713 |
with t Max `C \<subseteq> S` show ?thesis |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1714 |
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
|
1715 |
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
|
1716 |
|
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
|
1717 |
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
|
1718 |
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
|
1719 |
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
|
1720 |
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
|
1721 |
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
|
1722 |
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
|
1723 |
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
|
1724 |
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
|
1725 |
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
|
1726 |
with `compact S` obtain C where "C \<subseteq> S" "finite C" and C: "S \<subseteq> (\<Union>s\<in>C. {t s <..})" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1727 |
by (erule compactE_image) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1728 |
with `S \<noteq> {}` have Min: "Min (t`C) \<in> t`C" and "\<forall>s\<in>t`C. Min (t`C) \<le> s" |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1729 |
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
|
1730 |
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
|
1731 |
by (auto intro: le_less_trans simp: subset_eq) |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1732 |
with t Min `C \<subseteq> S` show ?thesis |
33db4b7189af
move compact to the HOL image; prove compactness of real closed intervals; show that continuous functions attain supremum and infimum on compact sets
hoelzl
parents:
51478
diff
changeset
|
1733 |
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
|
1734 |
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
|
1735 |
|
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
|
1736 |
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
|
1737 |
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
|
1738 |
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
|
1739 |
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
|
1740 |
|
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
|
1741 |
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
|
1742 |
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
|
1743 |
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
|
1744 |
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
|
1745 |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1746 |
subsection {* Connectedness *} |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1747 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1748 |
context topological_space |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1749 |
begin |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1750 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1751 |
definition "connected S \<longleftrightarrow> |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1752 |
\<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
|
1753 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1754 |
lemma connectedI: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1755 |
"(\<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
|
1756 |
\<Longrightarrow> connected U" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1757 |
by (auto simp: connected_def) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1758 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1759 |
lemma connected_empty[simp]: "connected {}" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1760 |
by (auto intro!: connectedI) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1761 |
|
56329 | 1762 |
lemma connectedD: |
1763 |
"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 = {}" |
|
1764 |
by (auto simp: connected_def) |
|
1765 |
||
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
|
1766 |
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
|
1767 |
|
59106 | 1768 |
lemma connected_iff_const: |
1769 |
fixes S :: "'a::topological_space set" |
|
1770 |
shows "connected S \<longleftrightarrow> (\<forall>P::'a \<Rightarrow> bool. continuous_on S P \<longrightarrow> (\<exists>c. \<forall>s\<in>S. P s = c))" |
|
1771 |
proof safe |
|
1772 |
fix P :: "'a \<Rightarrow> bool" assume "connected S" "continuous_on S P" |
|
1773 |
then have "\<And>b. \<exists>A. open A \<and> A \<inter> S = P -` {b} \<inter> S" |
|
1774 |
unfolding continuous_on_open_invariant by simp |
|
1775 |
from this[of True] this[of False] |
|
1776 |
obtain t f where "open t" "open f" and *: "f \<inter> S = P -` {False} \<inter> S" "t \<inter> S = P -` {True} \<inter> S" |
|
1777 |
by auto |
|
1778 |
then have "t \<inter> S = {} \<or> f \<inter> S = {}" |
|
1779 |
by (intro connectedD[OF `connected S`]) auto |
|
1780 |
then show "\<exists>c. \<forall>s\<in>S. P s = c" |
|
1781 |
proof (rule disjE) |
|
1782 |
assume "t \<inter> S = {}" then show ?thesis |
|
1783 |
unfolding * by (intro exI[of _ False]) auto |
|
1784 |
next |
|
1785 |
assume "f \<inter> S = {}" then show ?thesis |
|
1786 |
unfolding * by (intro exI[of _ True]) auto |
|
1787 |
qed |
|
1788 |
next |
|
1789 |
assume P: "\<forall>P::'a \<Rightarrow> bool. continuous_on S P \<longrightarrow> (\<exists>c. \<forall>s\<in>S. P s = c)" |
|
1790 |
show "connected S" |
|
1791 |
proof (rule connectedI) |
|
1792 |
fix A B assume *: "open A" "open B" "A \<inter> S \<noteq> {}" "B \<inter> S \<noteq> {}" "A \<inter> B \<inter> S = {}" "S \<subseteq> A \<union> B" |
|
1793 |
have "continuous_on S (\<lambda>x. x \<in> A)" |
|
1794 |
unfolding continuous_on_open_invariant |
|
1795 |
proof safe |
|
1796 |
fix C :: "bool set" |
|
1797 |
have "C = UNIV \<or> C = {True} \<or> C = {False} \<or> C = {}" |
|
1798 |
using subset_UNIV[of C] unfolding UNIV_bool by auto |
|
1799 |
with * show "\<exists>T. open T \<and> T \<inter> S = (\<lambda>x. x \<in> A) -` C \<inter> S" |
|
1800 |
by (intro exI[of _ "(if True \<in> C then A else {}) \<union> (if False \<in> C then B else {})"]) auto |
|
1801 |
qed |
|
1802 |
from P[rule_format, OF this] obtain c where "\<And>s. s \<in> S \<Longrightarrow> (s \<in> A) = c" by blast |
|
1803 |
with * show False |
|
1804 |
by (cases c) auto |
|
1805 |
qed |
|
1806 |
qed |
|
1807 |
||
1808 |
lemma connectedD_const: |
|
1809 |
fixes P :: "'a::topological_space \<Rightarrow> bool" |
|
1810 |
shows "connected S \<Longrightarrow> continuous_on S P \<Longrightarrow> \<exists>c. \<forall>s\<in>S. P s = c" |
|
1811 |
unfolding connected_iff_const by auto |
|
1812 |
||
1813 |
lemma connectedI_const: |
|
1814 |
"(\<And>P::'a::topological_space \<Rightarrow> bool. continuous_on S P \<Longrightarrow> \<exists>c. \<forall>s\<in>S. P s = c) \<Longrightarrow> connected S" |
|
1815 |
unfolding connected_iff_const by auto |
|
1816 |
||
56329 | 1817 |
lemma connected_local_const: |
1818 |
assumes "connected A" "a \<in> A" "b \<in> A" |
|
1819 |
assumes *: "\<forall>a\<in>A. eventually (\<lambda>b. f a = f b) (at a within A)" |
|
1820 |
shows "f a = f b" |
|
1821 |
proof - |
|
1822 |
obtain S where S: "\<And>a. a \<in> A \<Longrightarrow> a \<in> S a" "\<And>a. a \<in> A \<Longrightarrow> open (S a)" |
|
1823 |
"\<And>a x. a \<in> A \<Longrightarrow> x \<in> S a \<Longrightarrow> x \<in> A \<Longrightarrow> f a = f x" |
|
1824 |
using * unfolding eventually_at_topological by metis |
|
1825 |
||
1826 |
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" |
|
1827 |
have "?P \<inter> A = {} \<or> ?N \<inter> A = {}" |
|
1828 |
using `connected A` S `a\<in>A` |
|
1829 |
by (intro connectedD) (auto, metis) |
|
1830 |
then show "f a = f b" |
|
1831 |
proof |
|
1832 |
assume "?N \<inter> A = {}" |
|
1833 |
then have "\<forall>x\<in>A. f a = f x" |
|
1834 |
using S(1) by auto |
|
1835 |
with `b\<in>A` show ?thesis by auto |
|
1836 |
next |
|
1837 |
assume "?P \<inter> A = {}" then show ?thesis |
|
1838 |
using `a \<in> A` S(1)[of a] by auto |
|
1839 |
qed |
|
1840 |
qed |
|
1841 |
||
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1842 |
lemma (in linorder_topology) connectedD_interval: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1843 |
assumes "connected U" and xy: "x \<in> U" "y \<in> U" and "x \<le> z" "z \<le> y" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1844 |
shows "z \<in> U" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1845 |
proof - |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1846 |
have eq: "{..<z} \<union> {z<..} = - {z}" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1847 |
by auto |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1848 |
{ assume "z \<notin> U" "x < z" "z < y" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1849 |
with xy have "\<not> connected U" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1850 |
unfolding connected_def simp_thms |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1851 |
apply (rule_tac exI[of _ "{..< z}"]) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1852 |
apply (rule_tac exI[of _ "{z <..}"]) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1853 |
apply (auto simp add: eq) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1854 |
done } |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1855 |
with assms show "z \<in> U" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1856 |
by (metis less_le) |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1857 |
qed |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1858 |
|
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1859 |
lemma connected_continuous_image: |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1860 |
assumes *: "continuous_on s f" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1861 |
assumes "connected s" |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1862 |
shows "connected (f ` s)" |
59106 | 1863 |
proof (rule connectedI_const) |
1864 |
fix P :: "'b \<Rightarrow> bool" assume "continuous_on (f ` s) P" |
|
1865 |
then have "continuous_on s (P \<circ> f)" |
|
1866 |
by (rule continuous_on_compose[OF *]) |
|
1867 |
from connectedD_const[OF `connected s` this] show "\<exists>c. \<forall>s\<in>f ` s. P s = c" |
|
1868 |
by auto |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1869 |
qed |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1870 |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1871 |
section {* Connectedness *} |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1872 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1873 |
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
|
1874 |
begin |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1875 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1876 |
lemma Inf_notin_open: |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1877 |
assumes A: "open A" and bnd: "\<forall>a\<in>A. x < a" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1878 |
shows "Inf A \<notin> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1879 |
proof |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1880 |
assume "Inf A \<in> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1881 |
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
|
1882 |
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
|
1883 |
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
|
1884 |
by (auto simp: subset_eq) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1885 |
then show False |
54258
adfc759263ab
use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents:
53946
diff
changeset
|
1886 |
using cInf_lower[OF `c \<in> A`] bnd by (metis not_le less_imp_le bdd_belowI) |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1887 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1888 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1889 |
lemma Sup_notin_open: |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1890 |
assumes A: "open A" and bnd: "\<forall>a\<in>A. a < x" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1891 |
shows "Sup A \<notin> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1892 |
proof |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1893 |
assume "Sup A \<in> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1894 |
then obtain b where "Sup A < b" "{Sup A ..< b} \<subseteq> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1895 |
using open_right[of A "Sup A" x] assms by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1896 |
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
|
1897 |
by (auto simp: subset_eq) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1898 |
then show False |
54258
adfc759263ab
use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents:
53946
diff
changeset
|
1899 |
using cSup_upper[OF `c \<in> A`] bnd by (metis less_imp_le not_le bdd_aboveI) |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1900 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1901 |
|
51480
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1902 |
end |
3793c3a11378
move connected to HOL image; used to show intermediate value theorem
hoelzl
parents:
51479
diff
changeset
|
1903 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1904 |
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
|
1905 |
proof |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1906 |
fix x :: 'a |
53381 | 1907 |
obtain y where "x < y \<or> y < x" |
1908 |
using ex_gt_or_lt [of x] .. |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1909 |
with Inf_notin_open[of "{x}" y] Sup_notin_open[of "{x}" y] |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1910 |
show "\<not> open {x}" |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1911 |
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
|
1912 |
qed |
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1913 |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1914 |
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
|
1915 |
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
|
1916 |
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
|
1917 |
shows "connected U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1918 |
proof (rule connectedI) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1919 |
{ fix A B assume "open A" "open B" "A \<inter> B \<inter> U = {}" "U \<subseteq> A \<union> B" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1920 |
fix x y assume "x < y" "x \<in> A" "y \<in> B" "x \<in> U" "y \<in> U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1921 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1922 |
let ?z = "Inf (B \<inter> {x <..})" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1923 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1924 |
have "x \<le> ?z" "?z \<le> y" |
54258
adfc759263ab
use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents:
53946
diff
changeset
|
1925 |
using `y \<in> B` `x < y` by (auto intro: cInf_lower cInf_greatest) |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1926 |
with `x \<in> U` `y \<in> U` have "?z \<in> U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1927 |
by (rule *) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1928 |
moreover have "?z \<notin> B \<inter> {x <..}" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1929 |
using `open B` by (intro Inf_notin_open) auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1930 |
ultimately have "?z \<in> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1931 |
using `x \<le> ?z` `A \<inter> B \<inter> U = {}` `x \<in> A` `U \<subseteq> A \<union> B` by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1932 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1933 |
{ assume "?z < y" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1934 |
obtain a where "?z < a" "{?z ..< a} \<subseteq> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1935 |
using open_right[OF `open A` `?z \<in> A` `?z < y`] by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1936 |
moreover obtain b where "b \<in> B" "x < b" "b < min a y" |
54258
adfc759263ab
use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents:
53946
diff
changeset
|
1937 |
using cInf_less_iff[of "B \<inter> {x <..}" "min a y"] `?z < a` `?z < y` `x < y` `y \<in> B` |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1938 |
by (auto intro: less_imp_le) |
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53215
diff
changeset
|
1939 |
moreover have "?z \<le> b" |
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53215
diff
changeset
|
1940 |
using `b \<in> B` `x < b` |
54258
adfc759263ab
use bdd_above and bdd_below for conditionally complete lattices
hoelzl
parents:
53946
diff
changeset
|
1941 |
by (intro cInf_lower) auto |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1942 |
moreover have "b \<in> U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1943 |
using `x \<le> ?z` `?z \<le> b` `b < min a y` |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1944 |
by (intro *[OF `x \<in> U` `y \<in> U`]) (auto simp: less_imp_le) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1945 |
ultimately have "\<exists>b\<in>B. b \<in> A \<and> b \<in> U" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1946 |
by (intro bexI[of _ b]) auto } |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1947 |
then have False |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1948 |
using `?z \<le> y` `?z \<in> A` `y \<in> B` `y \<in> U` `A \<inter> B \<inter> U = {}` unfolding le_less by blast } |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1949 |
note not_disjoint = this |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1950 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1951 |
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
|
1952 |
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
|
1953 |
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
|
1954 |
moreover note not_disjoint[of B A y x] not_disjoint[of A B x y] |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1955 |
ultimately show False by (cases x y rule: linorder_cases) auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1956 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1957 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1958 |
lemma connected_iff_interval: |
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1959 |
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
|
1960 |
shows "connected U \<longleftrightarrow> (\<forall>x\<in>U. \<forall>y\<in>U. \<forall>z. x \<le> z \<longrightarrow> z \<le> y \<longrightarrow> z \<in> U)" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1961 |
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
|
1962 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1963 |
lemma connected_UNIV[simp]: "connected (UNIV::'a::linear_continuum_topology set)" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1964 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1965 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1966 |
lemma connected_Ioi[simp]: "connected {a::'a::linear_continuum_topology <..}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1967 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1968 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1969 |
lemma connected_Ici[simp]: "connected {a::'a::linear_continuum_topology ..}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1970 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1971 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1972 |
lemma connected_Iio[simp]: "connected {..< a::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1973 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1974 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1975 |
lemma connected_Iic[simp]: "connected {.. a::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1976 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1977 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1978 |
lemma connected_Ioo[simp]: "connected {a <..< b::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1979 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1980 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1981 |
lemma connected_Ioc[simp]: "connected {a <.. b::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1982 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1983 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1984 |
lemma connected_Ico[simp]: "connected {a ..< b::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1985 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1986 |
|
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1987 |
lemma connected_Icc[simp]: "connected {a .. b::'a::linear_continuum_topology}" |
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1988 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1989 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1990 |
lemma connected_contains_Ioo: |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1991 |
fixes A :: "'a :: linorder_topology set" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1992 |
assumes A: "connected A" "a \<in> A" "b \<in> A" shows "{a <..< b} \<subseteq> A" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1993 |
using connectedD_interval[OF A] by (simp add: subset_eq Ball_def less_imp_le) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1994 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1995 |
subsection {* Intermediate Value Theorem *} |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1996 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
1997 |
lemma IVT': |
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
1998 |
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
|
1999 |
assumes y: "f a \<le> y" "y \<le> f b" "a \<le> b" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2000 |
assumes *: "continuous_on {a .. b} f" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2001 |
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
|
2002 |
proof - |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2003 |
have "connected {a..b}" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2004 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2005 |
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
|
2006 |
show ?thesis |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2007 |
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
|
2008 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2009 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2010 |
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
|
2011 |
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
|
2012 |
assumes y: "f b \<le> y" "y \<le> f a" "a \<le> b" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2013 |
assumes *: "continuous_on {a .. b} f" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2014 |
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
|
2015 |
proof - |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2016 |
have "connected {a..b}" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2017 |
unfolding connected_iff_interval by auto |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2018 |
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
|
2019 |
show ?thesis |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2020 |
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
|
2021 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2022 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2023 |
lemma IVT: |
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2024 |
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
|
2025 |
shows "f a \<le> y \<Longrightarrow> y \<le> f b \<Longrightarrow> a \<le> b \<Longrightarrow> (\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x) \<Longrightarrow> \<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2026 |
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
|
2027 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2028 |
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
|
2029 |
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
|
2030 |
shows "f b \<le> y \<Longrightarrow> y \<le> f a \<Longrightarrow> a \<le> b \<Longrightarrow> (\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x) \<Longrightarrow> \<exists>x. a \<le> x \<and> x \<le> b \<and> f x = y" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2031 |
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
|
2032 |
|
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2033 |
lemma continuous_inj_imp_mono: |
51775
408d937c9486
revert #916271d52466; add non-topological linear_continuum type class; show linear_continuum_topology is a perfect_space
hoelzl
parents:
51774
diff
changeset
|
2034 |
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
|
2035 |
assumes x: "a < x" "x < b" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2036 |
assumes cont: "continuous_on {a..b} f" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2037 |
assumes inj: "inj_on f {a..b}" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2038 |
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
|
2039 |
proof - |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2040 |
note I = inj_on_iff[OF inj] |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2041 |
{ assume "f x < f a" "f x < f b" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2042 |
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
|
2043 |
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
|
2044 |
by (auto simp: continuous_on_subset[OF cont] less_imp_le) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2045 |
with x I have False by auto } |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2046 |
moreover |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2047 |
{ assume "f a < f x" "f b < f x" |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2048 |
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
|
2049 |
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
|
2050 |
by (auto simp: continuous_on_subset[OF cont] less_imp_le) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2051 |
with x I have False by auto } |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2052 |
ultimately show ?thesis |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2053 |
using I[of a x] I[of x b] x less_trans[OF x] by (auto simp add: le_less less_imp_neq neq_iff) |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2054 |
qed |
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2055 |
|
59452
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2056 |
lemma continuous_at_Sup_mono: |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2057 |
fixes f :: "'a :: {linorder_topology, conditionally_complete_linorder} \<Rightarrow> 'b :: {linorder_topology, conditionally_complete_linorder}" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2058 |
assumes "mono f" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2059 |
assumes cont: "continuous (at_left (Sup S)) f" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2060 |
assumes S: "S \<noteq> {}" "bdd_above S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2061 |
shows "f (Sup S) = (SUP s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2062 |
proof (rule antisym) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2063 |
have f: "(f ---> f (Sup S)) (at_left (Sup S))" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2064 |
using cont unfolding continuous_within . |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2065 |
|
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2066 |
show "f (Sup S) \<le> (SUP s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2067 |
proof cases |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2068 |
assume "Sup S \<in> S" then show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2069 |
by (rule cSUP_upper) (auto intro: bdd_above_image_mono S `mono f`) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2070 |
next |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2071 |
assume "Sup S \<notin> S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2072 |
from `S \<noteq> {}` obtain s where "s \<in> S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2073 |
by auto |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2074 |
with `Sup S \<notin> S` S have "s < Sup S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2075 |
unfolding less_le by (blast intro: cSup_upper) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2076 |
show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2077 |
proof (rule ccontr) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2078 |
assume "\<not> ?thesis" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2079 |
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
|
2080 |
and *: "\<And>y. b < y \<Longrightarrow> y < Sup S \<Longrightarrow> (SUP s:S. f s) < f y" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2081 |
by (auto simp: not_le eventually_at_left[OF `s < Sup S`]) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2082 |
with `S \<noteq> {}` obtain c where "c \<in> S" "b < c" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2083 |
using less_cSupD[of S b] by auto |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2084 |
with `Sup S \<notin> S` S have "c < Sup S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2085 |
unfolding less_le by (blast intro: cSup_upper) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2086 |
from *[OF `b < c` `c < Sup S`] cSUP_upper[OF `c \<in> S` bdd_above_image_mono[of f]] |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2087 |
show False |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2088 |
by (auto simp: assms) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2089 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2090 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2091 |
qed (intro cSUP_least `mono f`[THEN monoD] cSup_upper S) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2092 |
|
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2093 |
lemma continuous_at_Sup_antimono: |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2094 |
fixes f :: "'a :: {linorder_topology, conditionally_complete_linorder} \<Rightarrow> 'b :: {linorder_topology, conditionally_complete_linorder}" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2095 |
assumes "antimono f" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2096 |
assumes cont: "continuous (at_left (Sup S)) f" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2097 |
assumes S: "S \<noteq> {}" "bdd_above S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2098 |
shows "f (Sup S) = (INF s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2099 |
proof (rule antisym) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2100 |
have f: "(f ---> f (Sup S)) (at_left (Sup S))" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2101 |
using cont unfolding continuous_within . |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2102 |
|
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2103 |
show "(INF s:S. f s) \<le> f (Sup S)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2104 |
proof cases |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2105 |
assume "Sup S \<in> S" then show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2106 |
by (intro cINF_lower) (auto intro: bdd_below_image_antimono S `antimono f`) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2107 |
next |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2108 |
assume "Sup S \<notin> S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2109 |
from `S \<noteq> {}` obtain s where "s \<in> S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2110 |
by auto |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2111 |
with `Sup S \<notin> S` S have "s < Sup S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2112 |
unfolding less_le by (blast intro: cSup_upper) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2113 |
show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2114 |
proof (rule ccontr) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2115 |
assume "\<not> ?thesis" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2116 |
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
|
2117 |
and *: "\<And>y. b < y \<Longrightarrow> y < Sup S \<Longrightarrow> f y < (INF s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2118 |
by (auto simp: not_le eventually_at_left[OF `s < Sup S`]) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2119 |
with `S \<noteq> {}` obtain c where "c \<in> S" "b < c" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2120 |
using less_cSupD[of S b] by auto |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2121 |
with `Sup S \<notin> S` S have "c < Sup S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2122 |
unfolding less_le by (blast intro: cSup_upper) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2123 |
from *[OF `b < c` `c < Sup S`] cINF_lower[OF bdd_below_image_antimono, of f S c] `c \<in> S` |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2124 |
show False |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2125 |
by (auto simp: assms) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2126 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2127 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2128 |
qed (intro cINF_greatest `antimono f`[THEN antimonoD] cSup_upper S) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2129 |
|
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2130 |
lemma continuous_at_Inf_mono: |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2131 |
fixes f :: "'a :: {linorder_topology, conditionally_complete_linorder} \<Rightarrow> 'b :: {linorder_topology, conditionally_complete_linorder}" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2132 |
assumes "mono f" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2133 |
assumes cont: "continuous (at_right (Inf S)) f" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2134 |
assumes S: "S \<noteq> {}" "bdd_below S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2135 |
shows "f (Inf S) = (INF s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2136 |
proof (rule antisym) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2137 |
have f: "(f ---> f (Inf S)) (at_right (Inf S))" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2138 |
using cont unfolding continuous_within . |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2139 |
|
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2140 |
show "(INF s:S. f s) \<le> f (Inf S)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2141 |
proof cases |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2142 |
assume "Inf S \<in> S" then show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2143 |
by (rule cINF_lower[rotated]) (auto intro: bdd_below_image_mono S `mono f`) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2144 |
next |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2145 |
assume "Inf S \<notin> S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2146 |
from `S \<noteq> {}` obtain s where "s \<in> S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2147 |
by auto |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2148 |
with `Inf S \<notin> S` S have "Inf S < s" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2149 |
unfolding less_le by (blast intro: cInf_lower) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2150 |
show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2151 |
proof (rule ccontr) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2152 |
assume "\<not> ?thesis" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2153 |
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
|
2154 |
and *: "\<And>y. Inf S < y \<Longrightarrow> y < b \<Longrightarrow> f y < (INF s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2155 |
by (auto simp: not_le eventually_at_right[OF `Inf S < s`]) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2156 |
with `S \<noteq> {}` obtain c where "c \<in> S" "c < b" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2157 |
using cInf_lessD[of S b] by auto |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2158 |
with `Inf S \<notin> S` S have "Inf S < c" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2159 |
unfolding less_le by (blast intro: cInf_lower) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2160 |
from *[OF `Inf S < c` `c < b`] cINF_lower[OF bdd_below_image_mono[of f] `c \<in> S`] |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2161 |
show False |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2162 |
by (auto simp: assms) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2163 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2164 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2165 |
qed (intro cINF_greatest `mono f`[THEN monoD] cInf_lower `bdd_below S` `S \<noteq> {}`) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2166 |
|
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2167 |
lemma continuous_at_Inf_antimono: |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2168 |
fixes f :: "'a :: {linorder_topology, conditionally_complete_linorder} \<Rightarrow> 'b :: {linorder_topology, conditionally_complete_linorder}" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2169 |
assumes "antimono f" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2170 |
assumes cont: "continuous (at_right (Inf S)) f" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2171 |
assumes S: "S \<noteq> {}" "bdd_below S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2172 |
shows "f (Inf S) = (SUP s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2173 |
proof (rule antisym) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2174 |
have f: "(f ---> f (Inf S)) (at_right (Inf S))" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2175 |
using cont unfolding continuous_within . |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2176 |
|
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2177 |
show "f (Inf S) \<le> (SUP s:S. f s)" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2178 |
proof cases |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2179 |
assume "Inf S \<in> S" then show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2180 |
by (rule cSUP_upper) (auto intro: bdd_above_image_antimono S `antimono f`) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2181 |
next |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2182 |
assume "Inf S \<notin> S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2183 |
from `S \<noteq> {}` obtain s where "s \<in> S" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2184 |
by auto |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2185 |
with `Inf S \<notin> S` S have "Inf S < s" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2186 |
unfolding less_le by (blast intro: cInf_lower) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2187 |
show ?thesis |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2188 |
proof (rule ccontr) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2189 |
assume "\<not> ?thesis" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2190 |
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
|
2191 |
and *: "\<And>y. Inf S < y \<Longrightarrow> y < b \<Longrightarrow> (SUP s:S. f s) < f y" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2192 |
by (auto simp: not_le eventually_at_right[OF `Inf S < s`]) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2193 |
with `S \<noteq> {}` obtain c where "c \<in> S" "c < b" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2194 |
using cInf_lessD[of S b] by auto |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2195 |
with `Inf S \<notin> S` S have "Inf S < c" |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2196 |
unfolding less_le by (blast intro: cInf_lower) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2197 |
from *[OF `Inf S < c` `c < b`] cSUP_upper[OF `c \<in> S` bdd_above_image_antimono[of f]] |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2198 |
show False |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2199 |
by (auto simp: assms) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2200 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2201 |
qed |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2202 |
qed (intro cSUP_least `antimono f`[THEN antimonoD] cInf_lower S) |
2538b2c51769
ereal: tuned proofs concerning continuity and suprema
hoelzl
parents:
59106
diff
changeset
|
2203 |
|
51518
6a56b7088a6a
separate SupInf into Conditional_Complete_Lattice, move instantiation of real to RealDef
hoelzl
parents:
51481
diff
changeset
|
2204 |
end |