| author | haftmann | 
| Thu, 04 Jun 2009 15:28:59 +0200 | |
| changeset 31456 | 55edadbd43d5 | 
| parent 31404 | 05d2eddc5d41 | 
| child 31487 | 93938cafc0e6 | 
| permissions | -rw-r--r-- | 
| 10751 | 1 | (* Title : SEQ.thy | 
| 2 | Author : Jacques D. Fleuriot | |
| 3 | Copyright : 1998 University of Cambridge | |
| 4 | Description : Convergence of sequences and series | |
| 15082 | 5 | Conversion to Isar and new proofs by Lawrence C Paulson, 2004 | 
| 22608 | 6 | Additional contributions by Jeremy Avigad and Brian Huffman | 
| 15082 | 7 | *) | 
| 10751 | 8 | |
| 22631 
7ae5a6ab7bd6
moved nonstandard stuff from SEQ.thy into new file HSEQ.thy
 huffman parents: 
22629diff
changeset | 9 | header {* Sequences and Convergence *}
 | 
| 17439 | 10 | |
| 15131 | 11 | theory SEQ | 
| 31349 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 12 | imports Limits | 
| 15131 | 13 | begin | 
| 10751 | 14 | |
| 19765 | 15 | definition | 
| 22608 | 16 | Zseq :: "[nat \<Rightarrow> 'a::real_normed_vector] \<Rightarrow> bool" where | 
| 17 |     --{*Standard definition of sequence converging to zero*}
 | |
| 28562 | 18 | [code del]: "Zseq X = (\<forall>r>0. \<exists>no. \<forall>n\<ge>no. norm (X n) < r)" | 
| 22608 | 19 | |
| 20 | definition | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 21 | LIMSEQ :: "[nat \<Rightarrow> 'a::metric_space, 'a] \<Rightarrow> bool" | 
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21139diff
changeset | 22 |     ("((_)/ ----> (_))" [60, 60] 60) where
 | 
| 15082 | 23 |     --{*Standard definition of convergence of sequence*}
 | 
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 24 | [code del]: "X ----> L = (\<forall>r>0. \<exists>no. \<forall>n\<ge>no. dist (X n) L < r)" | 
| 10751 | 25 | |
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21139diff
changeset | 26 | definition | 
| 31404 | 27 | lim :: "(nat \<Rightarrow> 'a::metric_space) \<Rightarrow> 'a" where | 
| 15082 | 28 |     --{*Standard definition of limit using choice operator*}
 | 
| 20682 | 29 | "lim X = (THE L. X ----> L)" | 
| 10751 | 30 | |
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21139diff
changeset | 31 | definition | 
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 32 | convergent :: "(nat \<Rightarrow> 'a::metric_space) \<Rightarrow> bool" where | 
| 15082 | 33 |     --{*Standard definition of convergence*}
 | 
| 20682 | 34 | "convergent X = (\<exists>L. X ----> L)" | 
| 10751 | 35 | |
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21139diff
changeset | 36 | definition | 
| 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21139diff
changeset | 37 | Bseq :: "(nat => 'a::real_normed_vector) => bool" where | 
| 15082 | 38 |     --{*Standard definition for bounded sequence*}
 | 
| 28562 | 39 | [code del]: "Bseq X = (\<exists>K>0.\<forall>n. norm (X n) \<le> K)" | 
| 10751 | 40 | |
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21139diff
changeset | 41 | definition | 
| 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21139diff
changeset | 42 | monoseq :: "(nat=>real)=>bool" where | 
| 30730 | 43 |     --{*Definition of monotonicity. 
 | 
| 44 | The use of disjunction here complicates proofs considerably. | |
| 45 | One alternative is to add a Boolean argument to indicate the direction. | |
| 46 | Another is to develop the notions of increasing and decreasing first.*} | |
| 28562 | 47 | [code del]: "monoseq X = ((\<forall>m. \<forall>n\<ge>m. X m \<le> X n) | (\<forall>m. \<forall>n\<ge>m. X n \<le> X m))" | 
| 10751 | 48 | |
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21139diff
changeset | 49 | definition | 
| 30730 | 50 | incseq :: "(nat=>real)=>bool" where | 
| 51 |     --{*Increasing sequence*}
 | |
| 52 | [code del]: "incseq X = (\<forall>m. \<forall>n\<ge>m. X m \<le> X n)" | |
| 53 | ||
| 54 | definition | |
| 55 | decseq :: "(nat=>real)=>bool" where | |
| 56 |     --{*Increasing sequence*}
 | |
| 57 | [code del]: "decseq X = (\<forall>m. \<forall>n\<ge>m. X n \<le> X m)" | |
| 58 | ||
| 59 | definition | |
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21139diff
changeset | 60 | subseq :: "(nat => nat) => bool" where | 
| 15082 | 61 |     --{*Definition of subsequence*}
 | 
| 28562 | 62 | [code del]: "subseq f = (\<forall>m. \<forall>n>m. (f m) < (f n))" | 
| 10751 | 63 | |
| 21404 
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
 wenzelm parents: 
21139diff
changeset | 64 | definition | 
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 65 | Cauchy :: "(nat \<Rightarrow> 'a::metric_space) \<Rightarrow> bool" where | 
| 15082 | 66 |     --{*Standard definition of the Cauchy condition*}
 | 
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 67 | [code del]: "Cauchy X = (\<forall>e>0. \<exists>M. \<forall>m \<ge> M. \<forall>n \<ge> M. dist (X m) (X n) < e)" | 
| 10751 | 68 | |
| 15082 | 69 | |
| 22608 | 70 | subsection {* Bounded Sequences *}
 | 
| 71 | ||
| 26312 | 72 | lemma BseqI': assumes K: "\<And>n. norm (X n) \<le> K" shows "Bseq X" | 
| 22608 | 73 | unfolding Bseq_def | 
| 74 | proof (intro exI conjI allI) | |
| 75 | show "0 < max K 1" by simp | |
| 76 | next | |
| 77 | fix n::nat | |
| 78 | have "norm (X n) \<le> K" by (rule K) | |
| 79 | thus "norm (X n) \<le> max K 1" by simp | |
| 80 | qed | |
| 81 | ||
| 82 | lemma BseqE: "\<lbrakk>Bseq X; \<And>K. \<lbrakk>0 < K; \<forall>n. norm (X n) \<le> K\<rbrakk> \<Longrightarrow> Q\<rbrakk> \<Longrightarrow> Q" | |
| 83 | unfolding Bseq_def by auto | |
| 84 | ||
| 26312 | 85 | lemma BseqI2': assumes K: "\<forall>n\<ge>N. norm (X n) \<le> K" shows "Bseq X" | 
| 86 | proof (rule BseqI') | |
| 22608 | 87 |   let ?A = "norm ` X ` {..N}"
 | 
| 88 | have 1: "finite ?A" by simp | |
| 89 | fix n::nat | |
| 90 | show "norm (X n) \<le> max K (Max ?A)" | |
| 91 | proof (cases rule: linorder_le_cases) | |
| 92 | assume "n \<ge> N" | |
| 93 | hence "norm (X n) \<le> K" using K by simp | |
| 94 | thus "norm (X n) \<le> max K (Max ?A)" by simp | |
| 95 | next | |
| 96 | assume "n \<le> N" | |
| 97 | hence "norm (X n) \<in> ?A" by simp | |
| 26757 
e775accff967
thms Max_ge, Min_le: dropped superfluous premise
 haftmann parents: 
26312diff
changeset | 98 | with 1 have "norm (X n) \<le> Max ?A" by (rule Max_ge) | 
| 22608 | 99 | thus "norm (X n) \<le> max K (Max ?A)" by simp | 
| 100 | qed | |
| 101 | qed | |
| 102 | ||
| 103 | lemma Bseq_ignore_initial_segment: "Bseq X \<Longrightarrow> Bseq (\<lambda>n. X (n + k))" | |
| 104 | unfolding Bseq_def by auto | |
| 105 | ||
| 106 | lemma Bseq_offset: "Bseq (\<lambda>n. X (n + k)) \<Longrightarrow> Bseq X" | |
| 107 | apply (erule BseqE) | |
| 26312 | 108 | apply (rule_tac N="k" and K="K" in BseqI2') | 
| 22608 | 109 | apply clarify | 
| 110 | apply (drule_tac x="n - k" in spec, simp) | |
| 111 | done | |
| 112 | ||
| 31355 | 113 | lemma Bseq_conv_Bfun: "Bseq X \<longleftrightarrow> Bfun X sequentially" | 
| 114 | unfolding Bfun_def eventually_sequentially | |
| 115 | apply (rule iffI) | |
| 116 | apply (simp add: Bseq_def, fast) | |
| 117 | apply (fast intro: BseqI2') | |
| 118 | done | |
| 119 | ||
| 22608 | 120 | |
| 121 | subsection {* Sequences That Converge to Zero *}
 | |
| 122 | ||
| 123 | lemma ZseqI: | |
| 124 | "(\<And>r. 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n) < r) \<Longrightarrow> Zseq X" | |
| 125 | unfolding Zseq_def by simp | |
| 126 | ||
| 127 | lemma ZseqD: | |
| 128 | "\<lbrakk>Zseq X; 0 < r\<rbrakk> \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n) < r" | |
| 129 | unfolding Zseq_def by simp | |
| 130 | ||
| 31392 | 131 | lemma Zseq_conv_Zfun: "Zseq X \<longleftrightarrow> Zfun X sequentially" | 
| 132 | unfolding Zseq_def Zfun_def eventually_sequentially .. | |
| 133 | ||
| 22608 | 134 | lemma Zseq_zero: "Zseq (\<lambda>n. 0)" | 
| 135 | unfolding Zseq_def by simp | |
| 136 | ||
| 137 | lemma Zseq_const_iff: "Zseq (\<lambda>n. k) = (k = 0)" | |
| 138 | unfolding Zseq_def by force | |
| 139 | ||
| 140 | lemma Zseq_norm_iff: "Zseq (\<lambda>n. norm (X n)) = Zseq (\<lambda>n. X n)" | |
| 141 | unfolding Zseq_def by simp | |
| 142 | ||
| 143 | lemma Zseq_imp_Zseq: | |
| 144 | assumes X: "Zseq X" | |
| 145 | assumes Y: "\<And>n. norm (Y n) \<le> norm (X n) * K" | |
| 146 | shows "Zseq (\<lambda>n. Y n)" | |
| 31355 | 147 | using X Y Zfun_imp_Zfun [of X sequentially Y K] | 
| 148 | unfolding Zseq_conv_Zfun by simp | |
| 22608 | 149 | |
| 150 | lemma Zseq_le: "\<lbrakk>Zseq Y; \<forall>n. norm (X n) \<le> norm (Y n)\<rbrakk> \<Longrightarrow> Zseq X" | |
| 151 | by (erule_tac K="1" in Zseq_imp_Zseq, simp) | |
| 152 | ||
| 153 | lemma Zseq_add: | |
| 31349 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 154 | "Zseq X \<Longrightarrow> Zseq Y \<Longrightarrow> Zseq (\<lambda>n. X n + Y n)" | 
| 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 155 | unfolding Zseq_conv_Zfun by (rule Zfun_add) | 
| 22608 | 156 | |
| 157 | lemma Zseq_minus: "Zseq X \<Longrightarrow> Zseq (\<lambda>n. - X n)" | |
| 158 | unfolding Zseq_def by simp | |
| 159 | ||
| 160 | lemma Zseq_diff: "\<lbrakk>Zseq X; Zseq Y\<rbrakk> \<Longrightarrow> Zseq (\<lambda>n. X n - Y n)" | |
| 161 | by (simp only: diff_minus Zseq_add Zseq_minus) | |
| 162 | ||
| 163 | lemma (in bounded_linear) Zseq: | |
| 31349 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 164 | "Zseq X \<Longrightarrow> Zseq (\<lambda>n. f (X n))" | 
| 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 165 | unfolding Zseq_conv_Zfun by (rule Zfun) | 
| 22608 | 166 | |
| 23127 | 167 | lemma (in bounded_bilinear) Zseq: | 
| 31349 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 168 | "Zseq X \<Longrightarrow> Zseq Y \<Longrightarrow> Zseq (\<lambda>n. X n ** Y n)" | 
| 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 169 | unfolding Zseq_conv_Zfun by (rule Zfun) | 
| 22608 | 170 | |
| 171 | lemma (in bounded_bilinear) Zseq_prod_Bseq: | |
| 31355 | 172 | "Zseq X \<Longrightarrow> Bseq Y \<Longrightarrow> Zseq (\<lambda>n. X n ** Y n)" | 
| 173 | unfolding Zseq_conv_Zfun Bseq_conv_Bfun | |
| 174 | by (rule Zfun_prod_Bfun) | |
| 22608 | 175 | |
| 176 | lemma (in bounded_bilinear) Bseq_prod_Zseq: | |
| 31355 | 177 | "Bseq X \<Longrightarrow> Zseq Y \<Longrightarrow> Zseq (\<lambda>n. X n ** Y n)" | 
| 178 | unfolding Zseq_conv_Zfun Bseq_conv_Bfun | |
| 179 | by (rule Bfun_prod_Zfun) | |
| 22608 | 180 | |
| 23127 | 181 | lemma (in bounded_bilinear) Zseq_left: | 
| 22608 | 182 | "Zseq X \<Longrightarrow> Zseq (\<lambda>n. X n ** a)" | 
| 183 | by (rule bounded_linear_left [THEN bounded_linear.Zseq]) | |
| 184 | ||
| 23127 | 185 | lemma (in bounded_bilinear) Zseq_right: | 
| 22608 | 186 | "Zseq X \<Longrightarrow> Zseq (\<lambda>n. a ** X n)" | 
| 187 | by (rule bounded_linear_right [THEN bounded_linear.Zseq]) | |
| 188 | ||
| 23127 | 189 | lemmas Zseq_mult = mult.Zseq | 
| 190 | lemmas Zseq_mult_right = mult.Zseq_right | |
| 191 | lemmas Zseq_mult_left = mult.Zseq_left | |
| 22608 | 192 | |
| 193 | ||
| 20696 | 194 | subsection {* Limits of Sequences *}
 | 
| 195 | ||
| 31392 | 196 | lemma LIMSEQ_conv_tendsto: "(X ----> L) \<longleftrightarrow> tendsto X L sequentially" | 
| 197 | unfolding LIMSEQ_def tendsto_def eventually_sequentially .. | |
| 198 | ||
| 15082 | 199 | lemma LIMSEQ_iff: | 
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 200 | fixes L :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 201 | shows "(X ----> L) = (\<forall>r>0. \<exists>no. \<forall>n \<ge> no. norm (X n - L) < r)" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 202 | unfolding LIMSEQ_def dist_norm .. | 
| 22608 | 203 | |
| 204 | lemma LIMSEQ_Zseq_iff: "((\<lambda>n. X n) ----> L) = Zseq (\<lambda>n. X n - L)" | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 205 | by (simp only: LIMSEQ_iff Zseq_def) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 206 | |
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 207 | lemma metric_LIMSEQ_I: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 208 | "(\<And>r. 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. dist (X n) L < r) \<Longrightarrow> X ----> L" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 209 | by (simp add: LIMSEQ_def) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 210 | |
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 211 | lemma metric_LIMSEQ_D: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 212 | "\<lbrakk>X ----> L; 0 < r\<rbrakk> \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. dist (X n) L < r" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 213 | by (simp add: LIMSEQ_def) | 
| 15082 | 214 | |
| 20751 
93271c59d211
add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
 huffman parents: 
20740diff
changeset | 215 | lemma LIMSEQ_I: | 
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 216 | fixes L :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 217 | shows "(\<And>r. 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n - L) < r) \<Longrightarrow> X ----> L" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 218 | by (simp add: LIMSEQ_iff) | 
| 20751 
93271c59d211
add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
 huffman parents: 
20740diff
changeset | 219 | |
| 
93271c59d211
add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
 huffman parents: 
20740diff
changeset | 220 | lemma LIMSEQ_D: | 
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 221 | fixes L :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 222 | shows "\<lbrakk>X ----> L; 0 < r\<rbrakk> \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n - L) < r" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 223 | by (simp add: LIMSEQ_iff) | 
| 20751 
93271c59d211
add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
 huffman parents: 
20740diff
changeset | 224 | |
| 22608 | 225 | lemma LIMSEQ_const: "(\<lambda>n. k) ----> k" | 
| 20696 | 226 | by (simp add: LIMSEQ_def) | 
| 227 | ||
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 228 | lemma LIMSEQ_const_iff: "(\<lambda>n. k) ----> l \<longleftrightarrow> k = l" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 229 | apply (safe intro!: LIMSEQ_const) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 230 | apply (rule ccontr) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 231 | apply (drule_tac r="dist k l" in metric_LIMSEQ_D) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 232 | apply (simp add: zero_less_dist_iff) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 233 | apply auto | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 234 | done | 
| 22608 | 235 | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 236 | lemma LIMSEQ_norm: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 237 | fixes a :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 238 | shows "X ----> a \<Longrightarrow> (\<lambda>n. norm (X n)) ----> norm a" | 
| 31349 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 239 | unfolding LIMSEQ_conv_tendsto by (rule tendsto_norm) | 
| 20696 | 240 | |
| 22615 | 241 | lemma LIMSEQ_ignore_initial_segment: | 
| 242 | "f ----> a \<Longrightarrow> (\<lambda>n. f (n + k)) ----> a" | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 243 | apply (rule metric_LIMSEQ_I) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 244 | apply (drule (1) metric_LIMSEQ_D) | 
| 22615 | 245 | apply (erule exE, rename_tac N) | 
| 246 | apply (rule_tac x=N in exI) | |
| 247 | apply simp | |
| 248 | done | |
| 20696 | 249 | |
| 22615 | 250 | lemma LIMSEQ_offset: | 
| 251 | "(\<lambda>n. f (n + k)) ----> a \<Longrightarrow> f ----> a" | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 252 | apply (rule metric_LIMSEQ_I) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 253 | apply (drule (1) metric_LIMSEQ_D) | 
| 22615 | 254 | apply (erule exE, rename_tac N) | 
| 255 | apply (rule_tac x="N + k" in exI) | |
| 256 | apply clarify | |
| 257 | apply (drule_tac x="n - k" in spec) | |
| 258 | apply (simp add: le_diff_conv2) | |
| 20696 | 259 | done | 
| 260 | ||
| 22615 | 261 | lemma LIMSEQ_Suc: "f ----> l \<Longrightarrow> (\<lambda>n. f (Suc n)) ----> l" | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 262 | by (drule_tac k="Suc 0" in LIMSEQ_ignore_initial_segment, simp) | 
| 22615 | 263 | |
| 264 | lemma LIMSEQ_imp_Suc: "(\<lambda>n. f (Suc n)) ----> l \<Longrightarrow> f ----> l" | |
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 265 | by (rule_tac k="Suc 0" in LIMSEQ_offset, simp) | 
| 22615 | 266 | |
| 267 | lemma LIMSEQ_Suc_iff: "(\<lambda>n. f (Suc n)) ----> l = f ----> l" | |
| 268 | by (blast intro: LIMSEQ_imp_Suc LIMSEQ_Suc) | |
| 269 | ||
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 270 | lemma LIMSEQ_linear: "\<lbrakk> X ----> x ; l > 0 \<rbrakk> \<Longrightarrow> (\<lambda> n. X (n * l)) ----> x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 271 | unfolding LIMSEQ_def | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 272 | by (metis div_le_dividend div_mult_self1_is_m le_trans nat_mult_commute) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 273 | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 274 | lemma LIMSEQ_add: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 275 | fixes a b :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 276 | shows "\<lbrakk>X ----> a; Y ----> b\<rbrakk> \<Longrightarrow> (\<lambda>n. X n + Y n) ----> a + b" | 
| 31349 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 277 | unfolding LIMSEQ_conv_tendsto by (rule tendsto_add) | 
| 22608 | 278 | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 279 | lemma LIMSEQ_minus: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 280 | fixes a :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 281 | shows "X ----> a \<Longrightarrow> (\<lambda>n. - X n) ----> - a" | 
| 31349 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 282 | unfolding LIMSEQ_conv_tendsto by (rule tendsto_minus) | 
| 22608 | 283 | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 284 | lemma LIMSEQ_minus_cancel: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 285 | fixes a :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 286 | shows "(\<lambda>n. - X n) ----> - a \<Longrightarrow> X ----> a" | 
| 22608 | 287 | by (drule LIMSEQ_minus, simp) | 
| 288 | ||
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 289 | lemma LIMSEQ_diff: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 290 | fixes a b :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 291 | shows "\<lbrakk>X ----> a; Y ----> b\<rbrakk> \<Longrightarrow> (\<lambda>n. X n - Y n) ----> a - b" | 
| 31349 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 292 | unfolding LIMSEQ_conv_tendsto by (rule tendsto_diff) | 
| 22608 | 293 | |
| 294 | lemma LIMSEQ_unique: "\<lbrakk>X ----> a; X ----> b\<rbrakk> \<Longrightarrow> a = b" | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 295 | apply (rule ccontr) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 296 | apply (drule_tac r="dist a b / 2" in metric_LIMSEQ_D, simp add: zero_less_dist_iff) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 297 | apply (drule_tac r="dist a b / 2" in metric_LIMSEQ_D, simp add: zero_less_dist_iff) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 298 | apply (clarify, rename_tac M N) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 299 | apply (subgoal_tac "dist a b < dist a b / 2 + dist a b / 2", simp) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 300 | apply (subgoal_tac "dist a b \<le> dist (X (max M N)) a + dist (X (max M N)) b") | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 301 | apply (erule le_less_trans, rule add_strict_mono, simp, simp) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 302 | apply (subst dist_commute, rule dist_triangle) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 303 | done | 
| 22608 | 304 | |
| 305 | lemma (in bounded_linear) LIMSEQ: | |
| 306 | "X ----> a \<Longrightarrow> (\<lambda>n. f (X n)) ----> f a" | |
| 31349 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 307 | unfolding LIMSEQ_conv_tendsto by (rule tendsto) | 
| 22608 | 308 | |
| 309 | lemma (in bounded_bilinear) LIMSEQ: | |
| 310 | "\<lbrakk>X ----> a; Y ----> b\<rbrakk> \<Longrightarrow> (\<lambda>n. X n ** Y n) ----> a ** b" | |
| 31349 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 huffman parents: 
31336diff
changeset | 311 | unfolding LIMSEQ_conv_tendsto by (rule tendsto) | 
| 22608 | 312 | |
| 313 | lemma LIMSEQ_mult: | |
| 314 | fixes a b :: "'a::real_normed_algebra" | |
| 315 | shows "[| X ----> a; Y ----> b |] ==> (%n. X n * Y n) ----> a * b" | |
| 23127 | 316 | by (rule mult.LIMSEQ) | 
| 22608 | 317 | |
| 318 | lemma Bseq_inverse_lemma: | |
| 319 | fixes x :: "'a::real_normed_div_algebra" | |
| 320 | shows "\<lbrakk>r \<le> norm x; 0 < r\<rbrakk> \<Longrightarrow> norm (inverse x) \<le> inverse r" | |
| 321 | apply (subst nonzero_norm_inverse, clarsimp) | |
| 322 | apply (erule (1) le_imp_inverse_le) | |
| 323 | done | |
| 324 | ||
| 325 | lemma Bseq_inverse: | |
| 326 | fixes a :: "'a::real_normed_div_algebra" | |
| 31355 | 327 | shows "\<lbrakk>X ----> a; a \<noteq> 0\<rbrakk> \<Longrightarrow> Bseq (\<lambda>n. inverse (X n))" | 
| 328 | unfolding LIMSEQ_conv_tendsto Bseq_conv_Bfun | |
| 329 | by (rule Bfun_inverse) | |
| 22608 | 330 | |
| 331 | lemma LIMSEQ_inverse: | |
| 332 | fixes a :: "'a::real_normed_div_algebra" | |
| 31355 | 333 | shows "\<lbrakk>X ----> a; a \<noteq> 0\<rbrakk> \<Longrightarrow> (\<lambda>n. inverse (X n)) ----> inverse a" | 
| 334 | unfolding LIMSEQ_conv_tendsto | |
| 335 | by (rule tendsto_inverse) | |
| 22608 | 336 | |
| 337 | lemma LIMSEQ_divide: | |
| 338 | fixes a b :: "'a::real_normed_field" | |
| 339 | shows "\<lbrakk>X ----> a; Y ----> b; b \<noteq> 0\<rbrakk> \<Longrightarrow> (\<lambda>n. X n / Y n) ----> a / b" | |
| 340 | by (simp add: LIMSEQ_mult LIMSEQ_inverse divide_inverse) | |
| 341 | ||
| 342 | lemma LIMSEQ_pow: | |
| 31017 | 343 |   fixes a :: "'a::{power, real_normed_algebra}"
 | 
| 22608 | 344 | shows "X ----> a \<Longrightarrow> (\<lambda>n. (X n) ^ m) ----> a ^ m" | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30242diff
changeset | 345 | by (induct m) (simp_all add: LIMSEQ_const LIMSEQ_mult) | 
| 22608 | 346 | |
| 347 | lemma LIMSEQ_setsum: | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 348 | fixes L :: "'a \<Rightarrow> 'b::real_normed_vector" | 
| 22608 | 349 | assumes n: "\<And>n. n \<in> S \<Longrightarrow> X n ----> L n" | 
| 350 | shows "(\<lambda>m. \<Sum>n\<in>S. X n m) ----> (\<Sum>n\<in>S. L n)" | |
| 351 | proof (cases "finite S") | |
| 352 | case True | |
| 353 | thus ?thesis using n | |
| 354 | proof (induct) | |
| 355 | case empty | |
| 356 | show ?case | |
| 357 | by (simp add: LIMSEQ_const) | |
| 358 | next | |
| 359 | case insert | |
| 360 | thus ?case | |
| 361 | by (simp add: LIMSEQ_add) | |
| 362 | qed | |
| 363 | next | |
| 364 | case False | |
| 365 | thus ?thesis | |
| 366 | by (simp add: LIMSEQ_const) | |
| 367 | qed | |
| 368 | ||
| 369 | lemma LIMSEQ_setprod: | |
| 370 |   fixes L :: "'a \<Rightarrow> 'b::{real_normed_algebra,comm_ring_1}"
 | |
| 371 | assumes n: "\<And>n. n \<in> S \<Longrightarrow> X n ----> L n" | |
| 372 | shows "(\<lambda>m. \<Prod>n\<in>S. X n m) ----> (\<Prod>n\<in>S. L n)" | |
| 373 | proof (cases "finite S") | |
| 374 | case True | |
| 375 | thus ?thesis using n | |
| 376 | proof (induct) | |
| 377 | case empty | |
| 378 | show ?case | |
| 379 | by (simp add: LIMSEQ_const) | |
| 380 | next | |
| 381 | case insert | |
| 382 | thus ?case | |
| 383 | by (simp add: LIMSEQ_mult) | |
| 384 | qed | |
| 385 | next | |
| 386 | case False | |
| 387 | thus ?thesis | |
| 388 | by (simp add: setprod_def LIMSEQ_const) | |
| 389 | qed | |
| 390 | ||
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 391 | lemma LIMSEQ_add_const: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 392 | fixes a :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 393 | shows "f ----> a ==> (%n.(f n + b)) ----> a + b" | 
| 22614 | 394 | by (simp add: LIMSEQ_add LIMSEQ_const) | 
| 395 | ||
| 396 | (* FIXME: delete *) | |
| 397 | lemma LIMSEQ_add_minus: | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 398 | fixes a b :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 399 | shows "[| X ----> a; Y ----> b |] ==> (%n. X n + -Y n) ----> a + -b" | 
| 22614 | 400 | by (simp only: LIMSEQ_add LIMSEQ_minus) | 
| 401 | ||
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 402 | lemma LIMSEQ_diff_const: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 403 | fixes a b :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 404 | shows "f ----> a ==> (%n.(f n - b)) ----> a - b" | 
| 22614 | 405 | by (simp add: LIMSEQ_diff LIMSEQ_const) | 
| 406 | ||
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 407 | lemma LIMSEQ_diff_approach_zero: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 408 | fixes L :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 409 | shows "g ----> L ==> (%x. f x - g x) ----> 0 ==> f ----> L" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 410 | by (drule (1) LIMSEQ_add, simp) | 
| 22614 | 411 | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 412 | lemma LIMSEQ_diff_approach_zero2: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 413 | fixes L :: "'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 414 | shows "f ----> L ==> (%x. f x - g x) ----> 0 ==> g ----> L"; | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 415 | by (drule (1) LIMSEQ_diff, simp) | 
| 22614 | 416 | |
| 417 | text{*A sequence tends to zero iff its abs does*}
 | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 418 | lemma LIMSEQ_norm_zero: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 419 | fixes X :: "nat \<Rightarrow> 'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 420 | shows "((\<lambda>n. norm (X n)) ----> 0) \<longleftrightarrow> (X ----> 0)" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 421 | by (simp add: LIMSEQ_iff) | 
| 22614 | 422 | |
| 423 | lemma LIMSEQ_rabs_zero: "((%n. \<bar>f n\<bar>) ----> 0) = (f ----> (0::real))" | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 424 | by (simp add: LIMSEQ_iff) | 
| 22614 | 425 | |
| 426 | lemma LIMSEQ_imp_rabs: "f ----> (l::real) ==> (%n. \<bar>f n\<bar>) ----> \<bar>l\<bar>" | |
| 427 | by (drule LIMSEQ_norm, simp) | |
| 428 | ||
| 429 | text{*An unbounded sequence's inverse tends to 0*}
 | |
| 430 | ||
| 431 | lemma LIMSEQ_inverse_zero: | |
| 22974 | 432 | "\<forall>r::real. \<exists>N. \<forall>n\<ge>N. r < X n \<Longrightarrow> (\<lambda>n. inverse (X n)) ----> 0" | 
| 433 | apply (rule LIMSEQ_I) | |
| 434 | apply (drule_tac x="inverse r" in spec, safe) | |
| 435 | apply (rule_tac x="N" in exI, safe) | |
| 436 | apply (drule_tac x="n" in spec, safe) | |
| 22614 | 437 | apply (frule positive_imp_inverse_positive) | 
| 22974 | 438 | apply (frule (1) less_imp_inverse_less) | 
| 439 | apply (subgoal_tac "0 < X n", simp) | |
| 440 | apply (erule (1) order_less_trans) | |
| 22614 | 441 | done | 
| 442 | ||
| 443 | text{*The sequence @{term "1/n"} tends to 0 as @{term n} tends to infinity*}
 | |
| 444 | ||
| 445 | lemma LIMSEQ_inverse_real_of_nat: "(%n. inverse(real(Suc n))) ----> 0" | |
| 446 | apply (rule LIMSEQ_inverse_zero, safe) | |
| 22974 | 447 | apply (cut_tac x = r in reals_Archimedean2) | 
| 22614 | 448 | apply (safe, rule_tac x = n in exI) | 
| 449 | apply (auto simp add: real_of_nat_Suc) | |
| 450 | done | |
| 451 | ||
| 452 | text{*The sequence @{term "r + 1/n"} tends to @{term r} as @{term n} tends to
 | |
| 453 | infinity is now easily proved*} | |
| 454 | ||
| 455 | lemma LIMSEQ_inverse_real_of_nat_add: | |
| 456 | "(%n. r + inverse(real(Suc n))) ----> r" | |
| 457 | by (cut_tac LIMSEQ_add [OF LIMSEQ_const LIMSEQ_inverse_real_of_nat], auto) | |
| 458 | ||
| 459 | lemma LIMSEQ_inverse_real_of_nat_add_minus: | |
| 460 | "(%n. r + -inverse(real(Suc n))) ----> r" | |
| 461 | by (cut_tac LIMSEQ_add_minus [OF LIMSEQ_const LIMSEQ_inverse_real_of_nat], auto) | |
| 462 | ||
| 463 | lemma LIMSEQ_inverse_real_of_nat_add_minus_mult: | |
| 464 | "(%n. r*( 1 + -inverse(real(Suc n)))) ----> r" | |
| 465 | by (cut_tac b=1 in | |
| 466 | LIMSEQ_mult [OF LIMSEQ_const LIMSEQ_inverse_real_of_nat_add_minus], auto) | |
| 467 | ||
| 22615 | 468 | lemma LIMSEQ_le_const: | 
| 469 | "\<lbrakk>X ----> (x::real); \<exists>N. \<forall>n\<ge>N. a \<le> X n\<rbrakk> \<Longrightarrow> a \<le> x" | |
| 470 | apply (rule ccontr, simp only: linorder_not_le) | |
| 471 | apply (drule_tac r="a - x" in LIMSEQ_D, simp) | |
| 472 | apply clarsimp | |
| 473 | apply (drule_tac x="max N no" in spec, drule mp, rule le_maxI1) | |
| 474 | apply (drule_tac x="max N no" in spec, drule mp, rule le_maxI2) | |
| 475 | apply simp | |
| 476 | done | |
| 477 | ||
| 478 | lemma LIMSEQ_le_const2: | |
| 479 | "\<lbrakk>X ----> (x::real); \<exists>N. \<forall>n\<ge>N. X n \<le> a\<rbrakk> \<Longrightarrow> x \<le> a" | |
| 480 | apply (subgoal_tac "- a \<le> - x", simp) | |
| 481 | apply (rule LIMSEQ_le_const) | |
| 482 | apply (erule LIMSEQ_minus) | |
| 483 | apply simp | |
| 484 | done | |
| 485 | ||
| 486 | lemma LIMSEQ_le: | |
| 487 | "\<lbrakk>X ----> x; Y ----> y; \<exists>N. \<forall>n\<ge>N. X n \<le> Y n\<rbrakk> \<Longrightarrow> x \<le> (y::real)" | |
| 488 | apply (subgoal_tac "0 \<le> y - x", simp) | |
| 489 | apply (rule LIMSEQ_le_const) | |
| 490 | apply (erule (1) LIMSEQ_diff) | |
| 491 | apply (simp add: le_diff_eq) | |
| 492 | done | |
| 493 | ||
| 15082 | 494 | |
| 20696 | 495 | subsection {* Convergence *}
 | 
| 15082 | 496 | |
| 497 | lemma limI: "X ----> L ==> lim X = L" | |
| 498 | apply (simp add: lim_def) | |
| 499 | apply (blast intro: LIMSEQ_unique) | |
| 500 | done | |
| 501 | ||
| 502 | lemma convergentD: "convergent X ==> \<exists>L. (X ----> L)" | |
| 503 | by (simp add: convergent_def) | |
| 504 | ||
| 505 | lemma convergentI: "(X ----> L) ==> convergent X" | |
| 506 | by (auto simp add: convergent_def) | |
| 507 | ||
| 508 | lemma convergent_LIMSEQ_iff: "convergent X = (X ----> lim X)" | |
| 20682 | 509 | by (auto intro: theI LIMSEQ_unique simp add: convergent_def lim_def) | 
| 15082 | 510 | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 511 | lemma convergent_minus_iff: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 512 | fixes X :: "nat \<Rightarrow> 'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 513 | shows "convergent X \<longleftrightarrow> convergent (\<lambda>n. - X n)" | 
| 20696 | 514 | apply (simp add: convergent_def) | 
| 515 | apply (auto dest: LIMSEQ_minus) | |
| 516 | apply (drule LIMSEQ_minus, auto) | |
| 517 | done | |
| 518 | ||
| 30196 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 519 | text{* Given a binary function @{text "f:: nat \<Rightarrow> 'a \<Rightarrow> 'a"}, its values are uniquely determined by a function g *}
 | 
| 20696 | 520 | |
| 30196 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 521 | lemma nat_function_unique: "EX! g. g 0 = e \<and> (\<forall>n. g (Suc n) = f n (g n))" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 522 | unfolding Ex1_def | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 523 | apply (rule_tac x="nat_rec e f" in exI) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 524 | apply (rule conjI)+ | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 525 | apply (rule def_nat_rec_0, simp) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 526 | apply (rule allI, rule def_nat_rec_Suc, simp) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 527 | apply (rule allI, rule impI, rule ext) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 528 | apply (erule conjE) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 529 | apply (induct_tac x) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 530 | apply (simp add: nat_rec_0) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 531 | apply (erule_tac x="n" in allE) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 532 | apply (simp) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 533 | done | 
| 20696 | 534 | |
| 15082 | 535 | text{*Subsequence (alternative definition, (e.g. Hoskins)*}
 | 
| 536 | ||
| 537 | lemma subseq_Suc_iff: "subseq f = (\<forall>n. (f n) < (f (Suc n)))" | |
| 538 | apply (simp add: subseq_def) | |
| 539 | apply (auto dest!: less_imp_Suc_add) | |
| 540 | apply (induct_tac k) | |
| 541 | apply (auto intro: less_trans) | |
| 542 | done | |
| 543 | ||
| 544 | lemma monoseq_Suc: | |
| 545 | "monoseq X = ((\<forall>n. X n \<le> X (Suc n)) | |
| 546 | | (\<forall>n. X (Suc n) \<le> X n))" | |
| 547 | apply (simp add: monoseq_def) | |
| 548 | apply (auto dest!: le_imp_less_or_eq) | |
| 549 | apply (auto intro!: lessI [THEN less_imp_le] dest!: less_imp_Suc_add) | |
| 550 | apply (induct_tac "ka") | |
| 551 | apply (auto intro: order_trans) | |
| 18585 | 552 | apply (erule contrapos_np) | 
| 15082 | 553 | apply (induct_tac "k") | 
| 554 | apply (auto intro: order_trans) | |
| 555 | done | |
| 556 | ||
| 15360 | 557 | lemma monoI1: "\<forall>m. \<forall> n \<ge> m. X m \<le> X n ==> monoseq X" | 
| 15082 | 558 | by (simp add: monoseq_def) | 
| 559 | ||
| 15360 | 560 | lemma monoI2: "\<forall>m. \<forall> n \<ge> m. X n \<le> X m ==> monoseq X" | 
| 15082 | 561 | by (simp add: monoseq_def) | 
| 562 | ||
| 563 | lemma mono_SucI1: "\<forall>n. X n \<le> X (Suc n) ==> monoseq X" | |
| 564 | by (simp add: monoseq_Suc) | |
| 565 | ||
| 566 | lemma mono_SucI2: "\<forall>n. X (Suc n) \<le> X n ==> monoseq X" | |
| 567 | by (simp add: monoseq_Suc) | |
| 568 | ||
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 569 | lemma monoseq_minus: assumes "monoseq a" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 570 | shows "monoseq (\<lambda> n. - a n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 571 | proof (cases "\<forall> m. \<forall> n \<ge> m. a m \<le> a n") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 572 | case True | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 573 | hence "\<forall> m. \<forall> n \<ge> m. - a n \<le> - a m" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 574 | thus ?thesis by (rule monoI2) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 575 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 576 | case False | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 577 | hence "\<forall> m. \<forall> n \<ge> m. - a m \<le> - a n" using `monoseq a`[unfolded monoseq_def] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 578 | thus ?thesis by (rule monoI1) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 579 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 580 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 581 | lemma monoseq_le: assumes "monoseq a" and "a ----> x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 582 | shows "((\<forall> n. a n \<le> x) \<and> (\<forall>m. \<forall>n\<ge>m. a m \<le> a n)) \<or> | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 583 | ((\<forall> n. x \<le> a n) \<and> (\<forall>m. \<forall>n\<ge>m. a n \<le> a m))" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 584 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 585 |   { fix x n fix a :: "nat \<Rightarrow> real"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 586 | assume "a ----> x" and "\<forall> m. \<forall> n \<ge> m. a m \<le> a n" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 587 | hence monotone: "\<And> m n. m \<le> n \<Longrightarrow> a m \<le> a n" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 588 | have "a n \<le> x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 589 | proof (rule ccontr) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 590 | assume "\<not> a n \<le> x" hence "x < a n" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 591 | hence "0 < a n - x" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 592 | from `a ----> x`[THEN LIMSEQ_D, OF this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 593 | obtain no where "\<And>n'. no \<le> n' \<Longrightarrow> norm (a n' - x) < a n - x" by blast | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 594 | hence "norm (a (max no n) - x) < a n - x" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 595 | moreover | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 596 |       { fix n' have "n \<le> n' \<Longrightarrow> x < a n'" using monotone[where m=n and n=n'] and `x < a n` by auto }
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 597 | hence "x < a (max no n)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 598 | ultimately | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 599 | have "a (max no n) < a n" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 600 | with monotone[where m=n and n="max no n"] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 601 | show False by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 602 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 603 | } note top_down = this | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 604 |   { fix x n m fix a :: "nat \<Rightarrow> real"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 605 | assume "a ----> x" and "monoseq a" and "a m < x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 606 | have "a n \<le> x \<and> (\<forall> m. \<forall> n \<ge> m. a m \<le> a n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 607 | proof (cases "\<forall> m. \<forall> n \<ge> m. a m \<le> a n") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 608 | case True with top_down and `a ----> x` show ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 609 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 610 | case False with `monoseq a`[unfolded monoseq_def] have "\<forall> m. \<forall> n \<ge> m. - a m \<le> - a n" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 611 | hence "- a m \<le> - x" using top_down[OF LIMSEQ_minus[OF `a ----> x`]] by blast | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 612 | hence False using `a m < x` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 613 | thus ?thesis .. | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 614 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 615 | } note when_decided = this | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 616 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 617 | show ?thesis | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 618 | proof (cases "\<exists> m. a m \<noteq> x") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 619 | case True then obtain m where "a m \<noteq> x" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 620 | show ?thesis | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 621 | proof (cases "a m < x") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 622 | case True with when_decided[OF `a ----> x` `monoseq a`, where m2=m] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 623 | show ?thesis by blast | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 624 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 625 | case False hence "- a m < - x" using `a m \<noteq> x` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 626 | with when_decided[OF LIMSEQ_minus[OF `a ----> x`] monoseq_minus[OF `monoseq a`], where m2=m] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 627 | show ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 628 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 629 | qed auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 630 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 631 | |
| 30196 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 632 | text{* for any sequence, there is a mootonic subsequence *}
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 633 | lemma seq_monosub: "\<exists>f. subseq f \<and> monoseq (\<lambda> n. (s (f n)))" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 634 | proof- | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 635 |   {assume H: "\<forall>n. \<exists>p >n. \<forall> m\<ge>p. s m \<le> s p"
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 636 | let ?P = "\<lambda> p n. p > n \<and> (\<forall>m \<ge> p. s m \<le> s p)" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 637 | from nat_function_unique[of "SOME p. ?P p 0" "\<lambda>p n. SOME p. ?P p n"] | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 638 | obtain f where f: "f 0 = (SOME p. ?P p 0)" "\<forall>n. f (Suc n) = (SOME p. ?P p (f n))" by blast | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 639 | have "?P (f 0) 0" unfolding f(1) some_eq_ex[of "\<lambda>p. ?P p 0"] | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 640 | using H apply - | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 641 | apply (erule allE[where x=0], erule exE, rule_tac x="p" in exI) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 642 | unfolding order_le_less by blast | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 643 | hence f0: "f 0 > 0" "\<forall>m \<ge> f 0. s m \<le> s (f 0)" by blast+ | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 644 |     {fix n
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 645 | have "?P (f (Suc n)) (f n)" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 646 | unfolding f(2)[rule_format, of n] some_eq_ex[of "\<lambda>p. ?P p (f n)"] | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 647 | using H apply - | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 648 | apply (erule allE[where x="f n"], erule exE, rule_tac x="p" in exI) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 649 | unfolding order_le_less by blast | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 650 | hence "f (Suc n) > f n" "\<forall>m \<ge> f (Suc n). s m \<le> s (f (Suc n))" by blast+} | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 651 | note fSuc = this | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 652 |     {fix p q assume pq: "p \<ge> f q"
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 653 | have "s p \<le> s(f(q))" using f0(2)[rule_format, of p] pq fSuc | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 654 | by (cases q, simp_all) } | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 655 | note pqth = this | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 656 |     {fix q
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 657 | have "f (Suc q) > f q" apply (induct q) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 658 | using f0(1) fSuc(1)[of 0] apply simp by (rule fSuc(1))} | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 659 | note fss = this | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 660 | from fss have th1: "subseq f" unfolding subseq_Suc_iff .. | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 661 |     {fix a b 
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 662 | have "f a \<le> f (a + b)" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 663 | proof(induct b) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 664 | case 0 thus ?case by simp | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 665 | next | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 666 | case (Suc b) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 667 | from fSuc(1)[of "a + b"] Suc.hyps show ?case by simp | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 668 | qed} | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 669 | note fmon0 = this | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 670 | have "monoseq (\<lambda>n. s (f n))" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 671 | proof- | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 672 |       {fix n
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 673 | have "s (f n) \<ge> s (f (Suc n))" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 674 | proof(cases n) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 675 | case 0 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 676 | assume n0: "n = 0" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 677 | from fSuc(1)[of 0] have th0: "f 0 \<le> f (Suc 0)" by simp | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 678 | from f0(2)[rule_format, OF th0] show ?thesis using n0 by simp | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 679 | next | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 680 | case (Suc m) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 681 | assume m: "n = Suc m" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 682 | from fSuc(1)[of n] m have th0: "f (Suc m) \<le> f (Suc (Suc m))" by simp | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 683 | from m fSuc(2)[rule_format, OF th0] show ?thesis by simp | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 684 | qed} | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 685 | thus "monoseq (\<lambda>n. s (f n))" unfolding monoseq_Suc by blast | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 686 | qed | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 687 | with th1 have ?thesis by blast} | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 688 | moreover | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 689 |   {fix N assume N: "\<forall>p >N. \<exists> m\<ge>p. s m > s p"
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 690 |     {fix p assume p: "p \<ge> Suc N" 
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 691 | hence pN: "p > N" by arith with N obtain m where m: "m \<ge> p" "s m > s p" by blast | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 692 | have "m \<noteq> p" using m(2) by auto | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 693 | with m have "\<exists>m>p. s p < s m" by - (rule exI[where x=m], auto)} | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 694 | note th0 = this | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 695 | let ?P = "\<lambda>m x. m > x \<and> s x < s m" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 696 | from nat_function_unique[of "SOME x. ?P x (Suc N)" "\<lambda>m x. SOME y. ?P y x"] | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 697 | obtain f where f: "f 0 = (SOME x. ?P x (Suc N))" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 698 | "\<forall>n. f (Suc n) = (SOME m. ?P m (f n))" by blast | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 699 | have "?P (f 0) (Suc N)" unfolding f(1) some_eq_ex[of "\<lambda>p. ?P p (Suc N)"] | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 700 | using N apply - | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 701 | apply (erule allE[where x="Suc N"], clarsimp) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 702 | apply (rule_tac x="m" in exI) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 703 | apply auto | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 704 | apply (subgoal_tac "Suc N \<noteq> m") | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 705 | apply simp | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 706 | apply (rule ccontr, simp) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 707 | done | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 708 | hence f0: "f 0 > Suc N" "s (Suc N) < s (f 0)" by blast+ | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 709 |     {fix n
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 710 | have "f n > N \<and> ?P (f (Suc n)) (f n)" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 711 | unfolding f(2)[rule_format, of n] some_eq_ex[of "\<lambda>p. ?P p (f n)"] | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 712 | proof (induct n) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 713 | case 0 thus ?case | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 714 | using f0 N apply auto | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 715 | apply (erule allE[where x="f 0"], clarsimp) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 716 | apply (rule_tac x="m" in exI, simp) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 717 | by (subgoal_tac "f 0 \<noteq> m", auto) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 718 | next | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 719 | case (Suc n) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 720 | from Suc.hyps have Nfn: "N < f n" by blast | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 721 | from Suc.hyps obtain m where m: "m > f n" "s (f n) < s m" by blast | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 722 | with Nfn have mN: "m > N" by arith | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 723 | note key = Suc.hyps[unfolded some_eq_ex[of "\<lambda>p. ?P p (f n)", symmetric] f(2)[rule_format, of n, symmetric]] | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 724 | |
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 725 | from key have th0: "f (Suc n) > N" by simp | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 726 | from N[rule_format, OF th0] | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 727 | obtain m' where m': "m' \<ge> f (Suc n)" "s (f (Suc n)) < s m'" by blast | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 728 | have "m' \<noteq> f (Suc (n))" apply (rule ccontr) using m'(2) by auto | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 729 | hence "m' > f (Suc n)" using m'(1) by simp | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 730 | with key m'(2) show ?case by auto | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 731 | qed} | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 732 | note fSuc = this | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 733 |     {fix n
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 734 | have "f n \<ge> Suc N \<and> f(Suc n) > f n \<and> s(f n) < s(f(Suc n))" using fSuc[of n] by auto | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 735 | hence "f n \<ge> Suc N" "f(Suc n) > f n" "s(f n) < s(f(Suc n))" by blast+} | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 736 | note thf = this | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 737 | have sqf: "subseq f" unfolding subseq_Suc_iff using thf by simp | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 738 | have "monoseq (\<lambda>n. s (f n))" unfolding monoseq_Suc using thf | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 739 | apply - | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 740 | apply (rule disjI1) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 741 | apply auto | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 742 | apply (rule order_less_imp_le) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 743 | apply blast | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 744 | done | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 745 | then have ?thesis using sqf by blast} | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 746 | ultimately show ?thesis unfolding linorder_not_less[symmetric] by blast | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 747 | qed | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 748 | |
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 749 | lemma seq_suble: assumes sf: "subseq f" shows "n \<le> f n" | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 750 | proof(induct n) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 751 | case 0 thus ?case by simp | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 752 | next | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 753 | case (Suc n) | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 754 | from sf[unfolded subseq_Suc_iff, rule_format, of n] Suc.hyps | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 755 | have "n < f (Suc n)" by arith | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 756 | thus ?case by arith | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 757 | qed | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 758 | |
| 30730 | 759 | lemma LIMSEQ_subseq_LIMSEQ: | 
| 760 | "\<lbrakk> X ----> L; subseq f \<rbrakk> \<Longrightarrow> (X o f) ----> L" | |
| 761 | apply (auto simp add: LIMSEQ_def) | |
| 762 | apply (drule_tac x=r in spec, clarify) | |
| 763 | apply (rule_tac x=no in exI, clarify) | |
| 764 | apply (blast intro: seq_suble le_trans dest!: spec) | |
| 765 | done | |
| 766 | ||
| 30196 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 767 | subsection {* Bounded Monotonic Sequences *}
 | 
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 768 | |
| 
6ffaa79c352c
Moved a few theorems about monotonic sequences from Fundamental_Theorem_Algebra to SEQ.thy
 chaieb parents: 
30082diff
changeset | 769 | |
| 20696 | 770 | text{*Bounded Sequence*}
 | 
| 15082 | 771 | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 772 | lemma BseqD: "Bseq X ==> \<exists>K. 0 < K & (\<forall>n. norm (X n) \<le> K)" | 
| 15082 | 773 | by (simp add: Bseq_def) | 
| 774 | ||
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 775 | lemma BseqI: "[| 0 < K; \<forall>n. norm (X n) \<le> K |] ==> Bseq X" | 
| 15082 | 776 | by (auto simp add: Bseq_def) | 
| 777 | ||
| 778 | lemma lemma_NBseq_def: | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 779 | "(\<exists>K > 0. \<forall>n. norm (X n) \<le> K) = | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 780 | (\<exists>N. \<forall>n. norm (X n) \<le> real(Suc N))" | 
| 15082 | 781 | apply auto | 
| 782 | prefer 2 apply force | |
| 783 | apply (cut_tac x = K in reals_Archimedean2, clarify) | |
| 784 | apply (rule_tac x = n in exI, clarify) | |
| 785 | apply (drule_tac x = na in spec) | |
| 786 | apply (auto simp add: real_of_nat_Suc) | |
| 787 | done | |
| 788 | ||
| 789 | text{* alternative definition for Bseq *}
 | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 790 | lemma Bseq_iff: "Bseq X = (\<exists>N. \<forall>n. norm (X n) \<le> real(Suc N))" | 
| 15082 | 791 | apply (simp add: Bseq_def) | 
| 792 | apply (simp (no_asm) add: lemma_NBseq_def) | |
| 793 | done | |
| 794 | ||
| 795 | lemma lemma_NBseq_def2: | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 796 | "(\<exists>K > 0. \<forall>n. norm (X n) \<le> K) = (\<exists>N. \<forall>n. norm (X n) < real(Suc N))" | 
| 15082 | 797 | apply (subst lemma_NBseq_def, auto) | 
| 798 | apply (rule_tac x = "Suc N" in exI) | |
| 799 | apply (rule_tac [2] x = N in exI) | |
| 800 | apply (auto simp add: real_of_nat_Suc) | |
| 801 | prefer 2 apply (blast intro: order_less_imp_le) | |
| 802 | apply (drule_tac x = n in spec, simp) | |
| 803 | done | |
| 804 | ||
| 805 | (* yet another definition for Bseq *) | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 806 | lemma Bseq_iff1a: "Bseq X = (\<exists>N. \<forall>n. norm (X n) < real(Suc N))" | 
| 15082 | 807 | by (simp add: Bseq_def lemma_NBseq_def2) | 
| 808 | ||
| 20696 | 809 | subsubsection{*Upper Bounds and Lubs of Bounded Sequences*}
 | 
| 15082 | 810 | |
| 811 | lemma Bseq_isUb: | |
| 812 |   "!!(X::nat=>real). Bseq X ==> \<exists>U. isUb (UNIV::real set) {x. \<exists>n. X n = x} U"
 | |
| 22998 | 813 | by (auto intro: isUbI setleI simp add: Bseq_def abs_le_iff) | 
| 15082 | 814 | |
| 815 | ||
| 816 | text{* Use completeness of reals (supremum property)
 | |
| 817 | to show that any bounded sequence has a least upper bound*} | |
| 818 | ||
| 819 | lemma Bseq_isLub: | |
| 820 | "!!(X::nat=>real). Bseq X ==> | |
| 821 |    \<exists>U. isLub (UNIV::real set) {x. \<exists>n. X n = x} U"
 | |
| 822 | by (blast intro: reals_complete Bseq_isUb) | |
| 823 | ||
| 20696 | 824 | subsubsection{*A Bounded and Monotonic Sequence Converges*}
 | 
| 15082 | 825 | |
| 826 | lemma lemma_converg1: | |
| 15360 | 827 | "!!(X::nat=>real). [| \<forall>m. \<forall> n \<ge> m. X m \<le> X n; | 
| 15082 | 828 |                   isLub (UNIV::real set) {x. \<exists>n. X n = x} (X ma)
 | 
| 15360 | 829 | |] ==> \<forall>n \<ge> ma. X n = X ma" | 
| 15082 | 830 | apply safe | 
| 831 | apply (drule_tac y = "X n" in isLubD2) | |
| 832 | apply (blast dest: order_antisym)+ | |
| 833 | done | |
| 834 | ||
| 835 | text{* The best of both worlds: Easier to prove this result as a standard
 | |
| 836 | theorem and then use equivalence to "transfer" it into the | |
| 837 | equivalent nonstandard form if needed!*} | |
| 838 | ||
| 839 | lemma Bmonoseq_LIMSEQ: "\<forall>n. m \<le> n --> X n = X m ==> \<exists>L. (X ----> L)" | |
| 840 | apply (simp add: LIMSEQ_def) | |
| 841 | apply (rule_tac x = "X m" in exI, safe) | |
| 842 | apply (rule_tac x = m in exI, safe) | |
| 843 | apply (drule spec, erule impE, auto) | |
| 844 | done | |
| 845 | ||
| 846 | lemma lemma_converg2: | |
| 847 | "!!(X::nat=>real). | |
| 848 |     [| \<forall>m. X m ~= U;  isLub UNIV {x. \<exists>n. X n = x} U |] ==> \<forall>m. X m < U"
 | |
| 849 | apply safe | |
| 850 | apply (drule_tac y = "X m" in isLubD2) | |
| 851 | apply (auto dest!: order_le_imp_less_or_eq) | |
| 852 | done | |
| 853 | ||
| 854 | lemma lemma_converg3: "!!(X ::nat=>real). \<forall>m. X m \<le> U ==> isUb UNIV {x. \<exists>n. X n = x} U"
 | |
| 855 | by (rule setleI [THEN isUbI], auto) | |
| 856 | ||
| 857 | text{* FIXME: @{term "U - T < U"} is redundant *}
 | |
| 858 | lemma lemma_converg4: "!!(X::nat=> real). | |
| 859 | [| \<forall>m. X m ~= U; | |
| 860 |                   isLub UNIV {x. \<exists>n. X n = x} U;
 | |
| 861 | 0 < T; | |
| 862 | U + - T < U | |
| 863 | |] ==> \<exists>m. U + -T < X m & X m < U" | |
| 864 | apply (drule lemma_converg2, assumption) | |
| 865 | apply (rule ccontr, simp) | |
| 866 | apply (simp add: linorder_not_less) | |
| 867 | apply (drule lemma_converg3) | |
| 868 | apply (drule isLub_le_isUb, assumption) | |
| 869 | apply (auto dest: order_less_le_trans) | |
| 870 | done | |
| 871 | ||
| 872 | text{*A standard proof of the theorem for monotone increasing sequence*}
 | |
| 873 | ||
| 874 | lemma Bseq_mono_convergent: | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 875 | "[| Bseq X; \<forall>m. \<forall>n \<ge> m. X m \<le> X n |] ==> convergent (X::nat=>real)" | 
| 15082 | 876 | apply (simp add: convergent_def) | 
| 877 | apply (frule Bseq_isLub, safe) | |
| 878 | apply (case_tac "\<exists>m. X m = U", auto) | |
| 879 | apply (blast dest: lemma_converg1 Bmonoseq_LIMSEQ) | |
| 880 | (* second case *) | |
| 881 | apply (rule_tac x = U in exI) | |
| 882 | apply (subst LIMSEQ_iff, safe) | |
| 883 | apply (frule lemma_converg2, assumption) | |
| 884 | apply (drule lemma_converg4, auto) | |
| 885 | apply (rule_tac x = m in exI, safe) | |
| 886 | apply (subgoal_tac "X m \<le> X n") | |
| 887 | prefer 2 apply blast | |
| 888 | apply (drule_tac x=n and P="%m. X m < U" in spec, arith) | |
| 889 | done | |
| 890 | ||
| 891 | lemma Bseq_minus_iff: "Bseq (%n. -(X n)) = Bseq X" | |
| 892 | by (simp add: Bseq_def) | |
| 893 | ||
| 894 | text{*Main monotonicity theorem*}
 | |
| 895 | lemma Bseq_monoseq_convergent: "[| Bseq X; monoseq X |] ==> convergent X" | |
| 896 | apply (simp add: monoseq_def, safe) | |
| 897 | apply (rule_tac [2] convergent_minus_iff [THEN ssubst]) | |
| 898 | apply (drule_tac [2] Bseq_minus_iff [THEN ssubst]) | |
| 899 | apply (auto intro!: Bseq_mono_convergent) | |
| 900 | done | |
| 901 | ||
| 30730 | 902 | subsubsection{*Increasing and Decreasing Series*}
 | 
| 903 | ||
| 904 | lemma incseq_imp_monoseq: "incseq X \<Longrightarrow> monoseq X" | |
| 905 | by (simp add: incseq_def monoseq_def) | |
| 906 | ||
| 907 | lemma incseq_le: assumes inc: "incseq X" and lim: "X ----> L" shows "X n \<le> L" | |
| 908 | using monoseq_le [OF incseq_imp_monoseq [OF inc] lim] | |
| 909 | proof | |
| 910 | assume "(\<forall>n. X n \<le> L) \<and> (\<forall>m n. m \<le> n \<longrightarrow> X m \<le> X n)" | |
| 911 | thus ?thesis by simp | |
| 912 | next | |
| 913 | assume "(\<forall>n. L \<le> X n) \<and> (\<forall>m n. m \<le> n \<longrightarrow> X n \<le> X m)" | |
| 914 | hence const: "(!!m n. m \<le> n \<Longrightarrow> X n = X m)" using inc | |
| 915 | by (auto simp add: incseq_def intro: order_antisym) | |
| 916 | have X: "!!n. X n = X 0" | |
| 917 | by (blast intro: const [of 0]) | |
| 918 | have "X = (\<lambda>n. X 0)" | |
| 919 | by (blast intro: ext X) | |
| 920 | hence "L = X 0" using LIMSEQ_const [of "X 0"] | |
| 921 | by (auto intro: LIMSEQ_unique lim) | |
| 922 | thus ?thesis | |
| 923 | by (blast intro: eq_refl X) | |
| 924 | qed | |
| 925 | ||
| 926 | lemma decseq_imp_monoseq: "decseq X \<Longrightarrow> monoseq X" | |
| 927 | by (simp add: decseq_def monoseq_def) | |
| 928 | ||
| 929 | lemma decseq_eq_incseq: "decseq X = incseq (\<lambda>n. - X n)" | |
| 930 | by (simp add: decseq_def incseq_def) | |
| 931 | ||
| 932 | ||
| 933 | lemma decseq_le: assumes dec: "decseq X" and lim: "X ----> L" shows "L \<le> X n" | |
| 934 | proof - | |
| 935 | have inc: "incseq (\<lambda>n. - X n)" using dec | |
| 936 | by (simp add: decseq_eq_incseq) | |
| 937 | have "- X n \<le> - L" | |
| 938 | by (blast intro: incseq_le [OF inc] LIMSEQ_minus lim) | |
| 939 | thus ?thesis | |
| 940 | by simp | |
| 941 | qed | |
| 942 | ||
| 20696 | 943 | subsubsection{*A Few More Equivalence Theorems for Boundedness*}
 | 
| 15082 | 944 | |
| 945 | text{*alternative formulation for boundedness*}
 | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 946 | lemma Bseq_iff2: "Bseq X = (\<exists>k > 0. \<exists>x. \<forall>n. norm (X(n) + -x) \<le> k)" | 
| 15082 | 947 | apply (unfold Bseq_def, safe) | 
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 948 | apply (rule_tac [2] x = "k + norm x" in exI) | 
| 15360 | 949 | apply (rule_tac x = K in exI, simp) | 
| 15221 | 950 | apply (rule exI [where x = 0], auto) | 
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 951 | apply (erule order_less_le_trans, simp) | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 952 | apply (drule_tac x=n in spec, fold diff_def) | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 953 | apply (drule order_trans [OF norm_triangle_ineq2]) | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 954 | apply simp | 
| 15082 | 955 | done | 
| 956 | ||
| 957 | text{*alternative formulation for boundedness*}
 | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 958 | lemma Bseq_iff3: "Bseq X = (\<exists>k > 0. \<exists>N. \<forall>n. norm(X(n) + -X(N)) \<le> k)" | 
| 15082 | 959 | apply safe | 
| 960 | apply (simp add: Bseq_def, safe) | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 961 | apply (rule_tac x = "K + norm (X N)" in exI) | 
| 15082 | 962 | apply auto | 
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 963 | apply (erule order_less_le_trans, simp) | 
| 15082 | 964 | apply (rule_tac x = N in exI, safe) | 
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 965 | apply (drule_tac x = n in spec) | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 966 | apply (rule order_trans [OF norm_triangle_ineq], simp) | 
| 15082 | 967 | apply (auto simp add: Bseq_iff2) | 
| 968 | done | |
| 969 | ||
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 970 | lemma BseqI2: "(\<forall>n. k \<le> f n & f n \<le> (K::real)) ==> Bseq f" | 
| 15082 | 971 | apply (simp add: Bseq_def) | 
| 15221 | 972 | apply (rule_tac x = " (\<bar>k\<bar> + \<bar>K\<bar>) + 1" in exI, auto) | 
| 20217 
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
 webertj parents: 
19765diff
changeset | 973 | apply (drule_tac x = n in spec, arith) | 
| 15082 | 974 | done | 
| 975 | ||
| 976 | ||
| 20696 | 977 | subsection {* Cauchy Sequences *}
 | 
| 15082 | 978 | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 979 | lemma metric_CauchyI: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 980 | "(\<And>e. 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (X m) (X n) < e) \<Longrightarrow> Cauchy X" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 981 | by (simp add: Cauchy_def) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 982 | |
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 983 | lemma metric_CauchyD: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 984 | "\<lbrakk>Cauchy X; 0 < e\<rbrakk> \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (X m) (X n) < e" | 
| 20751 
93271c59d211
add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
 huffman parents: 
20740diff
changeset | 985 | by (simp add: Cauchy_def) | 
| 
93271c59d211
add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
 huffman parents: 
20740diff
changeset | 986 | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 987 | lemma Cauchy_iff: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 988 | fixes X :: "nat \<Rightarrow> 'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 989 | shows "Cauchy X \<longleftrightarrow> (\<forall>e>0. \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e)" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 990 | unfolding Cauchy_def dist_norm .. | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 991 | |
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 992 | lemma CauchyI: | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 993 | fixes X :: "nat \<Rightarrow> 'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 994 | shows "(\<And>e. 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e) \<Longrightarrow> Cauchy X" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 995 | by (simp add: Cauchy_iff) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 996 | |
| 20751 
93271c59d211
add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
 huffman parents: 
20740diff
changeset | 997 | lemma CauchyD: | 
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 998 | fixes X :: "nat \<Rightarrow> 'a::real_normed_vector" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 999 | shows "\<lbrakk>Cauchy X; 0 < e\<rbrakk> \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1000 | by (simp add: Cauchy_iff) | 
| 20751 
93271c59d211
add intro/dest rules for (NS)LIMSEQ and (NS)Cauchy; rewrite equivalence proofs using transfer
 huffman parents: 
20740diff
changeset | 1001 | |
| 30730 | 1002 | lemma Cauchy_subseq_Cauchy: | 
| 1003 | "\<lbrakk> Cauchy X; subseq f \<rbrakk> \<Longrightarrow> Cauchy (X o f)" | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1004 | apply (auto simp add: Cauchy_def) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1005 | apply (drule_tac x=e in spec, clarify) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1006 | apply (rule_tac x=M in exI, clarify) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1007 | apply (blast intro: le_trans [OF _ seq_suble] dest!: spec) | 
| 30730 | 1008 | done | 
| 1009 | ||
| 20696 | 1010 | subsubsection {* Cauchy Sequences are Bounded *}
 | 
| 1011 | ||
| 15082 | 1012 | text{*A Cauchy sequence is bounded -- this is the standard
 | 
| 1013 | proof mechanization rather than the nonstandard proof*} | |
| 1014 | ||
| 20563 | 1015 | lemma lemmaCauchy: "\<forall>n \<ge> M. norm (X M - X n) < (1::real) | 
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1016 | ==> \<forall>n \<ge> M. norm (X n :: 'a::real_normed_vector) < 1 + norm (X M)" | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1017 | apply (clarify, drule spec, drule (1) mp) | 
| 20563 | 1018 | apply (simp only: norm_minus_commute) | 
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1019 | apply (drule order_le_less_trans [OF norm_triangle_ineq2]) | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1020 | apply simp | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1021 | done | 
| 15082 | 1022 | |
| 1023 | lemma Cauchy_Bseq: "Cauchy X ==> Bseq X" | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1024 | apply (simp add: Cauchy_iff) | 
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1025 | apply (drule spec, drule mp, rule zero_less_one, safe) | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1026 | apply (drule_tac x="M" in spec, simp) | 
| 15082 | 1027 | apply (drule lemmaCauchy) | 
| 22608 | 1028 | apply (rule_tac k="M" in Bseq_offset) | 
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1029 | apply (simp add: Bseq_def) | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1030 | apply (rule_tac x="1 + norm (X M)" in exI) | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1031 | apply (rule conjI, rule order_less_le_trans [OF zero_less_one], simp) | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1032 | apply (simp add: order_less_imp_le) | 
| 15082 | 1033 | done | 
| 1034 | ||
| 20696 | 1035 | subsubsection {* Cauchy Sequences are Convergent *}
 | 
| 15082 | 1036 | |
| 31403 | 1037 | axclass complete_space \<subseteq> metric_space | 
| 20830 
65ba80cae6df
add axclass banach for complete normed vector spaces
 huffman parents: 
20829diff
changeset | 1038 | Cauchy_convergent: "Cauchy X \<Longrightarrow> convergent X" | 
| 
65ba80cae6df
add axclass banach for complete normed vector spaces
 huffman parents: 
20829diff
changeset | 1039 | |
| 31403 | 1040 | axclass banach \<subseteq> real_normed_vector, complete_space | 
| 1041 | ||
| 22629 | 1042 | theorem LIMSEQ_imp_Cauchy: | 
| 1043 | assumes X: "X ----> a" shows "Cauchy X" | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1044 | proof (rule metric_CauchyI) | 
| 22629 | 1045 | fix e::real assume "0 < e" | 
| 1046 | hence "0 < e/2" by simp | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1047 | with X have "\<exists>N. \<forall>n\<ge>N. dist (X n) a < e/2" by (rule metric_LIMSEQ_D) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1048 | then obtain N where N: "\<forall>n\<ge>N. dist (X n) a < e/2" .. | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1049 | show "\<exists>N. \<forall>m\<ge>N. \<forall>n\<ge>N. dist (X m) (X n) < e" | 
| 22629 | 1050 | proof (intro exI allI impI) | 
| 1051 | fix m assume "N \<le> m" | |
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1052 | hence m: "dist (X m) a < e/2" using N by fast | 
| 22629 | 1053 | fix n assume "N \<le> n" | 
| 31336 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1054 | hence n: "dist (X n) a < e/2" using N by fast | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1055 | have "dist (X m) (X n) \<le> dist (X m) a + dist (X n) a" | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1056 | by (rule dist_triangle2) | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1057 | also from m n have "\<dots> < e" by simp | 
| 
e17f13cd1280
generalize constants in SEQ.thy to class metric_space
 huffman parents: 
31017diff
changeset | 1058 | finally show "dist (X m) (X n) < e" . | 
| 22629 | 1059 | qed | 
| 1060 | qed | |
| 1061 | ||
| 20691 | 1062 | lemma convergent_Cauchy: "convergent X \<Longrightarrow> Cauchy X" | 
| 22629 | 1063 | unfolding convergent_def | 
| 1064 | by (erule exE, erule LIMSEQ_imp_Cauchy) | |
| 20691 | 1065 | |
| 31403 | 1066 | lemma Cauchy_convergent_iff: | 
| 1067 | fixes X :: "nat \<Rightarrow> 'a::complete_space" | |
| 1068 | shows "Cauchy X = convergent X" | |
| 1069 | by (fast intro: Cauchy_convergent convergent_Cauchy) | |
| 1070 | ||
| 1071 | lemma convergent_subseq_convergent: | |
| 1072 | fixes X :: "nat \<Rightarrow> 'a::complete_space" | |
| 1073 | shows "\<lbrakk> convergent X; subseq f \<rbrakk> \<Longrightarrow> convergent (X o f)" | |
| 1074 | by (simp add: Cauchy_subseq_Cauchy Cauchy_convergent_iff [symmetric]) | |
| 1075 | ||
| 22629 | 1076 | text {*
 | 
| 1077 | Proof that Cauchy sequences converge based on the one from | |
| 1078 | http://pirate.shu.edu/~wachsmut/ira/numseq/proofs/cauconv.html | |
| 1079 | *} | |
| 1080 | ||
| 1081 | text {*
 | |
| 1082 |   If sequence @{term "X"} is Cauchy, then its limit is the lub of
 | |
| 1083 |   @{term "{r::real. \<exists>N. \<forall>n\<ge>N. r < X n}"}
 | |
| 1084 | *} | |
| 1085 | ||
| 1086 | lemma isUb_UNIV_I: "(\<And>y. y \<in> S \<Longrightarrow> y \<le> u) \<Longrightarrow> isUb UNIV S u" | |
| 1087 | by (simp add: isUbI setleI) | |
| 1088 | ||
| 1089 | lemma real_abs_diff_less_iff: | |
| 1090 | "(\<bar>x - a\<bar> < (r::real)) = (a - r < x \<and> x < a + r)" | |
| 1091 | by auto | |
| 1092 | ||
| 27681 | 1093 | locale real_Cauchy = | 
| 22629 | 1094 | fixes X :: "nat \<Rightarrow> real" | 
| 1095 | assumes X: "Cauchy X" | |
| 1096 | fixes S :: "real set" | |
| 1097 |   defines S_def: "S \<equiv> {x::real. \<exists>N. \<forall>n\<ge>N. x < X n}"
 | |
| 1098 | ||
| 27681 | 1099 | lemma real_CauchyI: | 
| 1100 | assumes "Cauchy X" | |
| 1101 | shows "real_Cauchy X" | |
| 28823 | 1102 | proof qed (fact assms) | 
| 27681 | 1103 | |
| 22629 | 1104 | lemma (in real_Cauchy) mem_S: "\<forall>n\<ge>N. x < X n \<Longrightarrow> x \<in> S" | 
| 1105 | by (unfold S_def, auto) | |
| 1106 | ||
| 1107 | lemma (in real_Cauchy) bound_isUb: | |
| 1108 | assumes N: "\<forall>n\<ge>N. X n < x" | |
| 1109 | shows "isUb UNIV S x" | |
| 1110 | proof (rule isUb_UNIV_I) | |
| 1111 | fix y::real assume "y \<in> S" | |
| 1112 | hence "\<exists>M. \<forall>n\<ge>M. y < X n" | |
| 1113 | by (simp add: S_def) | |
| 1114 | then obtain M where "\<forall>n\<ge>M. y < X n" .. | |
| 1115 | hence "y < X (max M N)" by simp | |
| 1116 | also have "\<dots> < x" using N by simp | |
| 1117 | finally show "y \<le> x" | |
| 1118 | by (rule order_less_imp_le) | |
| 1119 | qed | |
| 1120 | ||
| 1121 | lemma (in real_Cauchy) isLub_ex: "\<exists>u. isLub UNIV S u" | |
| 1122 | proof (rule reals_complete) | |
| 1123 | obtain N where "\<forall>m\<ge>N. \<forall>n\<ge>N. norm (X m - X n) < 1" | |
| 1124 | using CauchyD [OF X zero_less_one] by fast | |
| 1125 | hence N: "\<forall>n\<ge>N. norm (X n - X N) < 1" by simp | |
| 1126 | show "\<exists>x. x \<in> S" | |
| 1127 | proof | |
| 1128 | from N have "\<forall>n\<ge>N. X N - 1 < X n" | |
| 1129 | by (simp add: real_abs_diff_less_iff) | |
| 1130 | thus "X N - 1 \<in> S" by (rule mem_S) | |
| 1131 | qed | |
| 1132 | show "\<exists>u. isUb UNIV S u" | |
| 1133 | proof | |
| 1134 | from N have "\<forall>n\<ge>N. X n < X N + 1" | |
| 1135 | by (simp add: real_abs_diff_less_iff) | |
| 1136 | thus "isUb UNIV S (X N + 1)" | |
| 1137 | by (rule bound_isUb) | |
| 1138 | qed | |
| 1139 | qed | |
| 1140 | ||
| 1141 | lemma (in real_Cauchy) isLub_imp_LIMSEQ: | |
| 1142 | assumes x: "isLub UNIV S x" | |
| 1143 | shows "X ----> x" | |
| 1144 | proof (rule LIMSEQ_I) | |
| 1145 | fix r::real assume "0 < r" | |
| 1146 | hence r: "0 < r/2" by simp | |
| 1147 | obtain N where "\<forall>n\<ge>N. \<forall>m\<ge>N. norm (X n - X m) < r/2" | |
| 1148 | using CauchyD [OF X r] by fast | |
| 1149 | hence "\<forall>n\<ge>N. norm (X n - X N) < r/2" by simp | |
| 1150 | hence N: "\<forall>n\<ge>N. X N - r/2 < X n \<and> X n < X N + r/2" | |
| 1151 | by (simp only: real_norm_def real_abs_diff_less_iff) | |
| 1152 | ||
| 1153 | from N have "\<forall>n\<ge>N. X N - r/2 < X n" by fast | |
| 1154 | hence "X N - r/2 \<in> S" by (rule mem_S) | |
| 23482 | 1155 | hence 1: "X N - r/2 \<le> x" using x isLub_isUb isUbD by fast | 
| 22629 | 1156 | |
| 1157 | from N have "\<forall>n\<ge>N. X n < X N + r/2" by fast | |
| 1158 | hence "isUb UNIV S (X N + r/2)" by (rule bound_isUb) | |
| 23482 | 1159 | hence 2: "x \<le> X N + r/2" using x isLub_le_isUb by fast | 
| 22629 | 1160 | |
| 1161 | show "\<exists>N. \<forall>n\<ge>N. norm (X n - x) < r" | |
| 1162 | proof (intro exI allI impI) | |
| 1163 | fix n assume n: "N \<le> n" | |
| 23482 | 1164 | from N n have "X n < X N + r/2" and "X N - r/2 < X n" by simp+ | 
| 1165 | thus "norm (X n - x) < r" using 1 2 | |
| 22629 | 1166 | by (simp add: real_abs_diff_less_iff) | 
| 1167 | qed | |
| 1168 | qed | |
| 1169 | ||
| 1170 | lemma (in real_Cauchy) LIMSEQ_ex: "\<exists>x. X ----> x" | |
| 1171 | proof - | |
| 1172 | obtain x where "isLub UNIV S x" | |
| 1173 | using isLub_ex by fast | |
| 1174 | hence "X ----> x" | |
| 1175 | by (rule isLub_imp_LIMSEQ) | |
| 1176 | thus ?thesis .. | |
| 1177 | qed | |
| 1178 | ||
| 20830 
65ba80cae6df
add axclass banach for complete normed vector spaces
 huffman parents: 
20829diff
changeset | 1179 | lemma real_Cauchy_convergent: | 
| 
65ba80cae6df
add axclass banach for complete normed vector spaces
 huffman parents: 
20829diff
changeset | 1180 | fixes X :: "nat \<Rightarrow> real" | 
| 
65ba80cae6df
add axclass banach for complete normed vector spaces
 huffman parents: 
20829diff
changeset | 1181 | shows "Cauchy X \<Longrightarrow> convergent X" | 
| 27681 | 1182 | unfolding convergent_def | 
| 1183 | by (rule real_Cauchy.LIMSEQ_ex) | |
| 1184 | (rule real_CauchyI) | |
| 20830 
65ba80cae6df
add axclass banach for complete normed vector spaces
 huffman parents: 
20829diff
changeset | 1185 | |
| 
65ba80cae6df
add axclass banach for complete normed vector spaces
 huffman parents: 
20829diff
changeset | 1186 | instance real :: banach | 
| 
65ba80cae6df
add axclass banach for complete normed vector spaces
 huffman parents: 
20829diff
changeset | 1187 | by intro_classes (rule real_Cauchy_convergent) | 
| 
65ba80cae6df
add axclass banach for complete normed vector spaces
 huffman parents: 
20829diff
changeset | 1188 | |
| 15082 | 1189 | |
| 20696 | 1190 | subsection {* Power Sequences *}
 | 
| 15082 | 1191 | |
| 1192 | text{*The sequence @{term "x^n"} tends to 0 if @{term "0\<le>x"} and @{term
 | |
| 1193 | "x<1"}. Proof will use (NS) Cauchy equivalence for convergence and | |
| 1194 | also fact that bounded and monotonic sequence converges.*} | |
| 1195 | ||
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1196 | lemma Bseq_realpow: "[| 0 \<le> (x::real); x \<le> 1 |] ==> Bseq (%n. x ^ n)" | 
| 15082 | 1197 | apply (simp add: Bseq_def) | 
| 1198 | apply (rule_tac x = 1 in exI) | |
| 1199 | apply (simp add: power_abs) | |
| 22974 | 1200 | apply (auto dest: power_mono) | 
| 15082 | 1201 | done | 
| 1202 | ||
| 1203 | lemma monoseq_realpow: "[| 0 \<le> x; x \<le> 1 |] ==> monoseq (%n. x ^ n)" | |
| 1204 | apply (clarify intro!: mono_SucI2) | |
| 1205 | apply (cut_tac n = n and N = "Suc n" and a = x in power_decreasing, auto) | |
| 1206 | done | |
| 1207 | ||
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1208 | lemma convergent_realpow: | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1209 | "[| 0 \<le> (x::real); x \<le> 1 |] ==> convergent (%n. x ^ n)" | 
| 15082 | 1210 | by (blast intro!: Bseq_monoseq_convergent Bseq_realpow monoseq_realpow) | 
| 1211 | ||
| 22628 | 1212 | lemma LIMSEQ_inverse_realpow_zero_lemma: | 
| 1213 | fixes x :: real | |
| 1214 | assumes x: "0 \<le> x" | |
| 1215 | shows "real n * x + 1 \<le> (x + 1) ^ n" | |
| 1216 | apply (induct n) | |
| 1217 | apply simp | |
| 1218 | apply simp | |
| 1219 | apply (rule order_trans) | |
| 1220 | prefer 2 | |
| 1221 | apply (erule mult_left_mono) | |
| 1222 | apply (rule add_increasing [OF x], simp) | |
| 1223 | apply (simp add: real_of_nat_Suc) | |
| 23477 
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
 nipkow parents: 
23127diff
changeset | 1224 | apply (simp add: ring_distribs) | 
| 22628 | 1225 | apply (simp add: mult_nonneg_nonneg x) | 
| 1226 | done | |
| 1227 | ||
| 1228 | lemma LIMSEQ_inverse_realpow_zero: | |
| 1229 | "1 < (x::real) \<Longrightarrow> (\<lambda>n. inverse (x ^ n)) ----> 0" | |
| 1230 | proof (rule LIMSEQ_inverse_zero [rule_format]) | |
| 1231 | fix y :: real | |
| 1232 | assume x: "1 < x" | |
| 1233 | hence "0 < x - 1" by simp | |
| 1234 | hence "\<forall>y. \<exists>N::nat. y < real N * (x - 1)" | |
| 1235 | by (rule reals_Archimedean3) | |
| 1236 | hence "\<exists>N::nat. y < real N * (x - 1)" .. | |
| 1237 | then obtain N::nat where "y < real N * (x - 1)" .. | |
| 1238 | also have "\<dots> \<le> real N * (x - 1) + 1" by simp | |
| 1239 | also have "\<dots> \<le> (x - 1 + 1) ^ N" | |
| 1240 | by (rule LIMSEQ_inverse_realpow_zero_lemma, cut_tac x, simp) | |
| 1241 | also have "\<dots> = x ^ N" by simp | |
| 1242 | finally have "y < x ^ N" . | |
| 1243 | hence "\<forall>n\<ge>N. y < x ^ n" | |
| 1244 | apply clarify | |
| 1245 | apply (erule order_less_le_trans) | |
| 1246 | apply (erule power_increasing) | |
| 1247 | apply (rule order_less_imp_le [OF x]) | |
| 1248 | done | |
| 1249 | thus "\<exists>N. \<forall>n\<ge>N. y < x ^ n" .. | |
| 1250 | qed | |
| 1251 | ||
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1252 | lemma LIMSEQ_realpow_zero: | 
| 22628 | 1253 | "\<lbrakk>0 \<le> (x::real); x < 1\<rbrakk> \<Longrightarrow> (\<lambda>n. x ^ n) ----> 0" | 
| 1254 | proof (cases) | |
| 1255 | assume "x = 0" | |
| 1256 | hence "(\<lambda>n. x ^ Suc n) ----> 0" by (simp add: LIMSEQ_const) | |
| 1257 | thus ?thesis by (rule LIMSEQ_imp_Suc) | |
| 1258 | next | |
| 1259 | assume "0 \<le> x" and "x \<noteq> 0" | |
| 1260 | hence x0: "0 < x" by simp | |
| 1261 | assume x1: "x < 1" | |
| 1262 | from x0 x1 have "1 < inverse x" | |
| 1263 | by (rule real_inverse_gt_one) | |
| 1264 | hence "(\<lambda>n. inverse (inverse x ^ n)) ----> 0" | |
| 1265 | by (rule LIMSEQ_inverse_realpow_zero) | |
| 1266 | thus ?thesis by (simp add: power_inverse) | |
| 1267 | qed | |
| 15082 | 1268 | |
| 20685 
fee8c75e3b5d
added lemmas about LIMSEQ and norm; simplified some proofs
 huffman parents: 
20682diff
changeset | 1269 | lemma LIMSEQ_power_zero: | 
| 31017 | 1270 |   fixes x :: "'a::{real_normed_algebra_1}"
 | 
| 20685 
fee8c75e3b5d
added lemmas about LIMSEQ and norm; simplified some proofs
 huffman parents: 
20682diff
changeset | 1271 | shows "norm x < 1 \<Longrightarrow> (\<lambda>n. x ^ n) ----> 0" | 
| 
fee8c75e3b5d
added lemmas about LIMSEQ and norm; simplified some proofs
 huffman parents: 
20682diff
changeset | 1272 | apply (drule LIMSEQ_realpow_zero [OF norm_ge_zero]) | 
| 22974 | 1273 | apply (simp only: LIMSEQ_Zseq_iff, erule Zseq_le) | 
| 1274 | apply (simp add: power_abs norm_power_ineq) | |
| 20685 
fee8c75e3b5d
added lemmas about LIMSEQ and norm; simplified some proofs
 huffman parents: 
20682diff
changeset | 1275 | done | 
| 
fee8c75e3b5d
added lemmas about LIMSEQ and norm; simplified some proofs
 huffman parents: 
20682diff
changeset | 1276 | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1277 | lemma LIMSEQ_divide_realpow_zero: | 
| 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1278 | "1 < (x::real) ==> (%n. a / (x ^ n)) ----> 0" | 
| 15082 | 1279 | apply (cut_tac a = a and x1 = "inverse x" in | 
| 1280 | LIMSEQ_mult [OF LIMSEQ_const LIMSEQ_realpow_zero]) | |
| 1281 | apply (auto simp add: divide_inverse power_inverse) | |
| 1282 | apply (simp add: inverse_eq_divide pos_divide_less_eq) | |
| 1283 | done | |
| 1284 | ||
| 15102 | 1285 | text{*Limit of @{term "c^n"} for @{term"\<bar>c\<bar> < 1"}*}
 | 
| 15082 | 1286 | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1287 | lemma LIMSEQ_rabs_realpow_zero: "\<bar>c\<bar> < (1::real) ==> (%n. \<bar>c\<bar> ^ n) ----> 0" | 
| 20685 
fee8c75e3b5d
added lemmas about LIMSEQ and norm; simplified some proofs
 huffman parents: 
20682diff
changeset | 1288 | by (rule LIMSEQ_realpow_zero [OF abs_ge_zero]) | 
| 15082 | 1289 | |
| 20552 
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
 huffman parents: 
20408diff
changeset | 1290 | lemma LIMSEQ_rabs_realpow_zero2: "\<bar>c\<bar> < (1::real) ==> (%n. c ^ n) ----> 0" | 
| 15082 | 1291 | apply (rule LIMSEQ_rabs_zero [THEN iffD1]) | 
| 1292 | apply (auto intro: LIMSEQ_rabs_realpow_zero simp add: power_abs) | |
| 1293 | done | |
| 1294 | ||
| 10751 | 1295 | end |