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