| author | paulson <lp15@cam.ac.uk> | 
| Sat, 31 Dec 2022 11:09:19 +0000 | |
| changeset 76835 | 8d8af7e92c5e | 
| parent 76724 | 7ff71bdcf731 | 
| child 77102 | 780161d4b55c | 
| permissions | -rw-r--r-- | 
| 52265 | 1  | 
(* Title: HOL/Limits.thy  | 
| 51526 | 2  | 
Author: Brian Huffman  | 
3  | 
Author: Jacques D. Fleuriot, University of Cambridge  | 
|
4  | 
Author: Lawrence C Paulson  | 
|
5  | 
Author: Jeremy Avigad  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
6  | 
*)  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
7  | 
|
| 60758 | 8  | 
section \<open>Limits on Real Vector Spaces\<close>  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
9  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
10  | 
theory Limits  | 
| 63546 | 11  | 
imports Real_Vector_Spaces  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
12  | 
begin  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
13  | 
|
| 73795 | 14  | 
text \<open>Lemmas related to shifting/scaling\<close>  | 
15  | 
lemma range_add [simp]:  | 
|
16  | 
fixes a::"'a::group_add" shows "range ((+) a) = UNIV"  | 
|
| 
76724
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
17  | 
by simp  | 
| 73795 | 18  | 
|
19  | 
lemma range_diff [simp]:  | 
|
20  | 
fixes a::"'a::group_add" shows "range ((-) a) = UNIV"  | 
|
21  | 
by (metis (full_types) add_minus_cancel diff_minus_eq_add surj_def)  | 
|
22  | 
||
23  | 
lemma range_mult [simp]:  | 
|
24  | 
  fixes a::"real" shows "range ((*) a) = (if a=0 then {0} else UNIV)"
 | 
|
25  | 
by (simp add: surj_def) (meson dvdE dvd_field_iff)  | 
|
26  | 
||
27  | 
||
| 60758 | 28  | 
subsection \<open>Filter going to infinity norm\<close>  | 
| 51526 | 29  | 
|
| 63546 | 30  | 
definition at_infinity :: "'a::real_normed_vector filter"  | 
31  | 
  where "at_infinity = (INF r. principal {x. r \<le> norm x})"
 | 
|
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
32  | 
|
| 57276 | 33  | 
lemma eventually_at_infinity: "eventually P at_infinity \<longleftrightarrow> (\<exists>b. \<forall>x. b \<le> norm x \<longrightarrow> P x)"  | 
34  | 
unfolding at_infinity_def  | 
|
35  | 
by (subst eventually_INF_base)  | 
|
36  | 
(auto simp: subset_eq eventually_principal intro!: exI[of _ "max a b" for a b])  | 
|
| 31392 | 37  | 
|
| 
62379
 
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
 
paulson <lp15@cam.ac.uk> 
parents: 
62369 
diff
changeset
 | 
38  | 
corollary eventually_at_infinity_pos:  | 
| 63546 | 39  | 
"eventually p at_infinity \<longleftrightarrow> (\<exists>b. 0 < b \<and> (\<forall>x. norm x \<ge> b \<longrightarrow> p x))"  | 
| 68614 | 40  | 
unfolding eventually_at_infinity  | 
41  | 
by (meson le_less_trans norm_ge_zero not_le zero_less_one)  | 
|
| 63546 | 42  | 
|
43  | 
lemma at_infinity_eq_at_top_bot: "(at_infinity :: real filter) = sup at_top at_bot"  | 
|
| 68614 | 44  | 
proof -  | 
45  | 
have 1: "\<lbrakk>\<forall>n\<ge>u. A n; \<forall>n\<le>v. A n\<rbrakk>  | 
|
46  | 
\<Longrightarrow> \<exists>b. \<forall>x. b \<le> \<bar>x\<bar> \<longrightarrow> A x" for A and u v::real  | 
|
47  | 
by (rule_tac x="max (- v) u" in exI) (auto simp: abs_real_def)  | 
|
48  | 
have 2: "\<forall>x. u \<le> \<bar>x\<bar> \<longrightarrow> A x \<Longrightarrow> \<exists>N. \<forall>n\<ge>N. A n" for A and u::real  | 
|
49  | 
by (meson abs_less_iff le_cases less_le_not_le)  | 
|
50  | 
have 3: "\<forall>x. u \<le> \<bar>x\<bar> \<longrightarrow> A x \<Longrightarrow> \<exists>N. \<forall>n\<le>N. A n" for A and u::real  | 
|
51  | 
by (metis (full_types) abs_ge_self abs_minus_cancel le_minus_iff order_trans)  | 
|
52  | 
show ?thesis  | 
|
| 68615 | 53  | 
by (auto simp: filter_eq_iff eventually_sup eventually_at_infinity  | 
| 68614 | 54  | 
eventually_at_top_linorder eventually_at_bot_linorder intro: 1 2 3)  | 
55  | 
qed  | 
|
| 50325 | 56  | 
|
| 57276 | 57  | 
lemma at_top_le_at_infinity: "at_top \<le> (at_infinity :: real filter)"  | 
| 50325 | 58  | 
unfolding at_infinity_eq_at_top_bot by simp  | 
59  | 
||
| 57276 | 60  | 
lemma at_bot_le_at_infinity: "at_bot \<le> (at_infinity :: real filter)"  | 
| 50325 | 61  | 
unfolding at_infinity_eq_at_top_bot by simp  | 
62  | 
||
| 63546 | 63  | 
lemma filterlim_at_top_imp_at_infinity: "filterlim f at_top F \<Longrightarrow> filterlim f at_infinity F"  | 
64  | 
for f :: "_ \<Rightarrow> real"  | 
|
| 
57275
 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 
hoelzl 
parents: 
56541 
diff
changeset
 | 
65  | 
by (rule filterlim_mono[OF _ at_top_le_at_infinity order_refl])  | 
| 
 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 
hoelzl 
parents: 
56541 
diff
changeset
 | 
66  | 
|
| 
67685
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
67  | 
lemma filterlim_real_at_infinity_sequentially: "filterlim real at_infinity sequentially"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
68  | 
by (simp add: filterlim_at_top_imp_at_infinity filterlim_real_sequentially)  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
69  | 
|
| 63546 | 70  | 
lemma lim_infinity_imp_sequentially: "(f \<longlongrightarrow> l) at_infinity \<Longrightarrow> ((\<lambda>n. f(n)) \<longlongrightarrow> l) sequentially"  | 
71  | 
by (simp add: filterlim_at_top_imp_at_infinity filterlim_compose filterlim_real_sequentially)  | 
|
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
72  | 
|
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
73  | 
|
| 60758 | 74  | 
subsubsection \<open>Boundedness\<close>  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
75  | 
|
| 63546 | 76  | 
definition Bfun :: "('a \<Rightarrow> 'b::metric_space) \<Rightarrow> 'a filter \<Rightarrow> bool"
 | 
77  | 
where Bfun_metric_def: "Bfun f F = (\<exists>y. \<exists>K>0. eventually (\<lambda>x. dist (f x) y \<le> K) F)"  | 
|
78  | 
||
79  | 
abbreviation Bseq :: "(nat \<Rightarrow> 'a::metric_space) \<Rightarrow> bool"  | 
|
80  | 
where "Bseq X \<equiv> Bfun X sequentially"  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
81  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
82  | 
lemma Bseq_conv_Bfun: "Bseq X \<longleftrightarrow> Bfun X sequentially" ..  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
83  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
84  | 
lemma Bseq_ignore_initial_segment: "Bseq X \<Longrightarrow> Bseq (\<lambda>n. X (n + k))"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
85  | 
unfolding Bfun_metric_def by (subst eventually_sequentially_seg)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
86  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
87  | 
lemma Bseq_offset: "Bseq (\<lambda>n. X (n + k)) \<Longrightarrow> Bseq X"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
88  | 
unfolding Bfun_metric_def by (subst (asm) eventually_sequentially_seg)  | 
| 31355 | 89  | 
|
| 63546 | 90  | 
lemma Bfun_def: "Bfun f F \<longleftrightarrow> (\<exists>K>0. eventually (\<lambda>x. norm (f x) \<le> K) F)"  | 
| 
51474
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
91  | 
unfolding Bfun_metric_def norm_conv_dist  | 
| 
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
92  | 
proof safe  | 
| 63546 | 93  | 
fix y K  | 
94  | 
assume K: "0 < K" and *: "eventually (\<lambda>x. dist (f x) y \<le> K) F"  | 
|
| 
51474
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
95  | 
moreover have "eventually (\<lambda>x. dist (f x) 0 \<le> dist (f x) y + dist 0 y) F"  | 
| 
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
96  | 
by (intro always_eventually) (metis dist_commute dist_triangle)  | 
| 
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
97  | 
with * have "eventually (\<lambda>x. dist (f x) 0 \<le> K + dist 0 y) F"  | 
| 
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
98  | 
by eventually_elim auto  | 
| 60758 | 99  | 
with \<open>0 < K\<close> show "\<exists>K>0. eventually (\<lambda>x. dist (f x) 0 \<le> K) F"  | 
| 
51474
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
100  | 
by (intro exI[of _ "K + dist 0 y"] add_pos_nonneg conjI zero_le_dist) auto  | 
| 
62379
 
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
 
paulson <lp15@cam.ac.uk> 
parents: 
62369 
diff
changeset
 | 
101  | 
qed (force simp del: norm_conv_dist [symmetric])  | 
| 31355 | 102  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
103  | 
lemma BfunI:  | 
| 63546 | 104  | 
assumes K: "eventually (\<lambda>x. norm (f x) \<le> K) F"  | 
105  | 
shows "Bfun f F"  | 
|
106  | 
unfolding Bfun_def  | 
|
| 31355 | 107  | 
proof (intro exI conjI allI)  | 
108  | 
show "0 < max K 1" by simp  | 
|
| 44195 | 109  | 
show "eventually (\<lambda>x. norm (f x) \<le> max K 1) F"  | 
| 63546 | 110  | 
using K by (rule eventually_mono) simp  | 
| 31355 | 111  | 
qed  | 
112  | 
||
113  | 
lemma BfunE:  | 
|
| 44195 | 114  | 
assumes "Bfun f F"  | 
115  | 
obtains B where "0 < B" and "eventually (\<lambda>x. norm (f x) \<le> B) F"  | 
|
| 63546 | 116  | 
using assms unfolding Bfun_def by blast  | 
| 31355 | 117  | 
|
| 68614 | 118  | 
lemma Cauchy_Bseq:  | 
119  | 
assumes "Cauchy X" shows "Bseq X"  | 
|
120  | 
proof -  | 
|
121  | 
have "\<exists>y K. 0 < K \<and> (\<exists>N. \<forall>n\<ge>N. dist (X n) y \<le> K)"  | 
|
122  | 
if "\<And>m n. \<lbrakk>m \<ge> M; n \<ge> M\<rbrakk> \<Longrightarrow> dist (X m) (X n) < 1" for M  | 
|
123  | 
by (meson order.order_iff_strict that zero_less_one)  | 
|
124  | 
with assms show ?thesis  | 
|
125  | 
by (force simp: Cauchy_def Bfun_metric_def eventually_sequentially)  | 
|
126  | 
qed  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
127  | 
|
| 60758 | 128  | 
subsubsection \<open>Bounded Sequences\<close>  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
129  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
130  | 
lemma BseqI': "(\<And>n. norm (X n) \<le> K) \<Longrightarrow> Bseq X"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
131  | 
by (intro BfunI) (auto simp: eventually_sequentially)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
132  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
133  | 
lemma Bseq_def: "Bseq X \<longleftrightarrow> (\<exists>K>0. \<forall>n. norm (X n) \<le> K)"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
134  | 
unfolding Bfun_def eventually_sequentially  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
135  | 
proof safe  | 
| 63546 | 136  | 
fix N K  | 
137  | 
assume "0 < K" "\<forall>n\<ge>N. norm (X n) \<le> K"  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
138  | 
then show "\<exists>K>0. \<forall>n. norm (X n) \<le> K"  | 
| 
54863
 
82acc20ded73
prefer more canonical names for lemmas on min/max
 
haftmann 
parents: 
54263 
diff
changeset
 | 
139  | 
    by (intro exI[of _ "max (Max (norm ` X ` {..N})) K"] max.strict_coboundedI2)
 | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
140  | 
(auto intro!: imageI not_less[where 'a=nat, THEN iffD1] Max_ge simp: le_max_iff_disj)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
141  | 
qed auto  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
142  | 
|
| 63546 | 143  | 
lemma BseqE: "Bseq X \<Longrightarrow> (\<And>K. 0 < K \<Longrightarrow> \<forall>n. norm (X n) \<le> K \<Longrightarrow> Q) \<Longrightarrow> Q"  | 
144  | 
unfolding Bseq_def by auto  | 
|
145  | 
||
146  | 
lemma BseqD: "Bseq X \<Longrightarrow> \<exists>K. 0 < K \<and> (\<forall>n. norm (X n) \<le> K)"  | 
|
147  | 
by (simp add: Bseq_def)  | 
|
148  | 
||
149  | 
lemma BseqI: "0 < K \<Longrightarrow> \<forall>n. norm (X n) \<le> K \<Longrightarrow> Bseq X"  | 
|
| 68615 | 150  | 
by (auto simp: Bseq_def)  | 
| 63546 | 151  | 
|
152  | 
lemma Bseq_bdd_above: "Bseq X \<Longrightarrow> bdd_above (range X)"  | 
|
153  | 
for X :: "nat \<Rightarrow> real"  | 
|
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
154  | 
proof (elim BseqE, intro bdd_aboveI2)  | 
| 63546 | 155  | 
fix K n  | 
156  | 
assume "0 < K" "\<forall>n. norm (X n) \<le> K"  | 
|
157  | 
then show "X n \<le> K"  | 
|
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
158  | 
by (auto elim!: allE[of _ n])  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
159  | 
qed  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
160  | 
|
| 63546 | 161  | 
lemma Bseq_bdd_above': "Bseq X \<Longrightarrow> bdd_above (range (\<lambda>n. norm (X n)))"  | 
162  | 
for X :: "nat \<Rightarrow> 'a :: real_normed_vector"  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
163  | 
proof (elim BseqE, intro bdd_aboveI2)  | 
| 63546 | 164  | 
fix K n  | 
165  | 
assume "0 < K" "\<forall>n. norm (X n) \<le> K"  | 
|
166  | 
then show "norm (X n) \<le> K"  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
167  | 
by (auto elim!: allE[of _ n])  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
168  | 
qed  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
169  | 
|
| 63546 | 170  | 
lemma Bseq_bdd_below: "Bseq X \<Longrightarrow> bdd_below (range X)"  | 
171  | 
for X :: "nat \<Rightarrow> real"  | 
|
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
172  | 
proof (elim BseqE, intro bdd_belowI2)  | 
| 63546 | 173  | 
fix K n  | 
174  | 
assume "0 < K" "\<forall>n. norm (X n) \<le> K"  | 
|
175  | 
then show "- K \<le> X n"  | 
|
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
176  | 
by (auto elim!: allE[of _ n])  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
177  | 
qed  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
178  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
179  | 
lemma Bseq_eventually_mono:  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
180  | 
assumes "eventually (\<lambda>n. norm (f n) \<le> norm (g n)) sequentially" "Bseq g"  | 
| 63546 | 181  | 
shows "Bseq f"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
182  | 
proof -  | 
| 
67958
 
732c0b059463
tuned proofs and generalized some lemmas about limits
 
huffman 
parents: 
67950 
diff
changeset
 | 
183  | 
from assms(2) obtain K where "0 < K" and "eventually (\<lambda>n. norm (g n) \<le> K) sequentially"  | 
| 
 
732c0b059463
tuned proofs and generalized some lemmas about limits
 
huffman 
parents: 
67950 
diff
changeset
 | 
184  | 
unfolding Bfun_def by fast  | 
| 
 
732c0b059463
tuned proofs and generalized some lemmas about limits
 
huffman 
parents: 
67950 
diff
changeset
 | 
185  | 
with assms(1) have "eventually (\<lambda>n. norm (f n) \<le> K) sequentially"  | 
| 
 
732c0b059463
tuned proofs and generalized some lemmas about limits
 
huffman 
parents: 
67950 
diff
changeset
 | 
186  | 
by (fast elim: eventually_elim2 order_trans)  | 
| 69272 | 187  | 
with \<open>0 < K\<close> show "Bseq f"  | 
| 
67958
 
732c0b059463
tuned proofs and generalized some lemmas about limits
 
huffman 
parents: 
67950 
diff
changeset
 | 
188  | 
unfolding Bfun_def by fast  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
189  | 
qed  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
190  | 
|
| 63546 | 191  | 
lemma lemma_NBseq_def: "(\<exists>K > 0. \<forall>n. norm (X n) \<le> K) \<longleftrightarrow> (\<exists>N. \<forall>n. norm (X n) \<le> real(Suc N))"  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
192  | 
proof safe  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
193  | 
fix K :: real  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
194  | 
from reals_Archimedean2 obtain n :: nat where "K < real n" ..  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
195  | 
then have "K \<le> real (Suc n)" by auto  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
196  | 
moreover assume "\<forall>m. norm (X m) \<le> K"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
197  | 
ultimately have "\<forall>m. norm (X m) \<le> real (Suc n)"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
198  | 
by (blast intro: order_trans)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
199  | 
then show "\<exists>N. \<forall>n. norm (X n) \<le> real (Suc N)" ..  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
200  | 
next  | 
| 
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
201  | 
show "\<And>N. \<forall>n. norm (X n) \<le> real (Suc N) \<Longrightarrow> \<exists>K>0. \<forall>n. norm (X n) \<le> K"  | 
| 
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
202  | 
using of_nat_0_less_iff by blast  | 
| 
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
203  | 
qed  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
204  | 
|
| 63546 | 205  | 
text \<open>Alternative definition for \<open>Bseq\<close>.\<close>  | 
206  | 
lemma Bseq_iff: "Bseq X \<longleftrightarrow> (\<exists>N. \<forall>n. norm (X n) \<le> real(Suc N))"  | 
|
207  | 
by (simp add: Bseq_def) (simp add: lemma_NBseq_def)  | 
|
208  | 
||
209  | 
lemma lemma_NBseq_def2: "(\<exists>K > 0. \<forall>n. norm (X n) \<le> K) = (\<exists>N. \<forall>n. norm (X n) < real(Suc N))"  | 
|
| 68614 | 210  | 
proof -  | 
211  | 
have *: "\<And>N. \<forall>n. norm (X n) \<le> 1 + real N \<Longrightarrow>  | 
|
212  | 
\<exists>N. \<forall>n. norm (X n) < 1 + real N"  | 
|
213  | 
by (metis add.commute le_less_trans less_add_one of_nat_Suc)  | 
|
214  | 
then show ?thesis  | 
|
215  | 
unfolding lemma_NBseq_def  | 
|
216  | 
by (metis less_le_not_le not_less_iff_gr_or_eq of_nat_Suc)  | 
|
217  | 
qed  | 
|
| 63546 | 218  | 
|
219  | 
text \<open>Yet another definition for Bseq.\<close>  | 
|
220  | 
lemma Bseq_iff1a: "Bseq X \<longleftrightarrow> (\<exists>N. \<forall>n. norm (X n) < real (Suc N))"  | 
|
221  | 
by (simp add: Bseq_def lemma_NBseq_def2)  | 
|
222  | 
||
223  | 
subsubsection \<open>A Few More Equivalence Theorems for Boundedness\<close>  | 
|
224  | 
||
225  | 
text \<open>Alternative formulation for boundedness.\<close>  | 
|
226  | 
lemma Bseq_iff2: "Bseq X \<longleftrightarrow> (\<exists>k > 0. \<exists>x. \<forall>n. norm (X n + - x) \<le> k)"  | 
|
| 68614 | 227  | 
by (metis BseqE BseqI' add.commute add_cancel_right_left add_uminus_conv_diff norm_add_leD  | 
228  | 
norm_minus_cancel norm_minus_commute)  | 
|
| 63546 | 229  | 
|
230  | 
text \<open>Alternative formulation for boundedness.\<close>  | 
|
231  | 
lemma Bseq_iff3: "Bseq X \<longleftrightarrow> (\<exists>k>0. \<exists>N. \<forall>n. norm (X n + - X N) \<le> k)"  | 
|
232  | 
(is "?P \<longleftrightarrow> ?Q")  | 
|
| 53602 | 233  | 
proof  | 
234  | 
assume ?P  | 
|
| 63546 | 235  | 
then obtain K where *: "0 < K" and **: "\<And>n. norm (X n) \<le> K"  | 
| 68615 | 236  | 
by (auto simp: Bseq_def)  | 
| 53602 | 237  | 
from * have "0 < K + norm (X 0)" by (rule order_less_le_trans) simp  | 
| 
54230
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
53602 
diff
changeset
 | 
238  | 
from ** have "\<forall>n. norm (X n - X 0) \<le> K + norm (X 0)"  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
53602 
diff
changeset
 | 
239  | 
by (auto intro: order_trans norm_triangle_ineq4)  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
53602 
diff
changeset
 | 
240  | 
then have "\<forall>n. norm (X n + - X 0) \<le> K + norm (X 0)"  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
53602 
diff
changeset
 | 
241  | 
by simp  | 
| 60758 | 242  | 
with \<open>0 < K + norm (X 0)\<close> show ?Q by blast  | 
| 53602 | 243  | 
next  | 
| 63546 | 244  | 
assume ?Q  | 
| 68615 | 245  | 
then show ?P by (auto simp: Bseq_iff2)  | 
| 53602 | 246  | 
qed  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
247  | 
|
| 63546 | 248  | 
|
249  | 
subsubsection \<open>Upper Bounds and Lubs of Bounded Sequences\<close>  | 
|
250  | 
||
251  | 
lemma Bseq_minus_iff: "Bseq (\<lambda>n. - (X n) :: 'a::real_normed_vector) \<longleftrightarrow> Bseq X"  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
252  | 
by (simp add: Bseq_def)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
253  | 
|
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
254  | 
lemma Bseq_add:  | 
| 63546 | 255  | 
fixes f :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
256  | 
assumes "Bseq f"  | 
|
257  | 
shows "Bseq (\<lambda>x. f x + c)"  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
258  | 
proof -  | 
| 63546 | 259  | 
from assms obtain K where K: "\<And>x. norm (f x) \<le> K"  | 
260  | 
unfolding Bseq_def by blast  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
261  | 
  {
 | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
262  | 
fix x :: nat  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
263  | 
have "norm (f x + c) \<le> norm (f x) + norm c" by (rule norm_triangle_ineq)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
264  | 
also have "norm (f x) \<le> K" by (rule K)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
265  | 
finally have "norm (f x + c) \<le> K + norm c" by simp  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
266  | 
}  | 
| 63546 | 267  | 
then show ?thesis by (rule BseqI')  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
268  | 
qed  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
269  | 
|
| 63546 | 270  | 
lemma Bseq_add_iff: "Bseq (\<lambda>x. f x + c) \<longleftrightarrow> Bseq f"  | 
271  | 
for f :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
272  | 
using Bseq_add[of f c] Bseq_add[of "\<lambda>x. f x + c" "-c"] by auto  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
273  | 
|
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
274  | 
lemma Bseq_mult:  | 
| 63546 | 275  | 
fixes f g :: "nat \<Rightarrow> 'a::real_normed_field"  | 
276  | 
assumes "Bseq f" and "Bseq g"  | 
|
277  | 
shows "Bseq (\<lambda>x. f x * g x)"  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
278  | 
proof -  | 
| 63546 | 279  | 
from assms obtain K1 K2 where K: "norm (f x) \<le> K1" "K1 > 0" "norm (g x) \<le> K2" "K2 > 0"  | 
280  | 
for x  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
281  | 
unfolding Bseq_def by blast  | 
| 63546 | 282  | 
then have "norm (f x * g x) \<le> K1 * K2" for x  | 
283  | 
by (auto simp: norm_mult intro!: mult_mono)  | 
|
284  | 
then show ?thesis by (rule BseqI')  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
285  | 
qed  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
286  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
287  | 
lemma Bfun_const [simp]: "Bfun (\<lambda>_. c) F"  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
288  | 
unfolding Bfun_metric_def by (auto intro!: exI[of _ c] exI[of _ "1::real"])  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
289  | 
|
| 63546 | 290  | 
lemma Bseq_cmult_iff:  | 
291  | 
fixes c :: "'a::real_normed_field"  | 
|
292  | 
assumes "c \<noteq> 0"  | 
|
293  | 
shows "Bseq (\<lambda>x. c * f x) \<longleftrightarrow> Bseq f"  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
294  | 
proof  | 
| 63546 | 295  | 
assume "Bseq (\<lambda>x. c * f x)"  | 
296  | 
with Bfun_const have "Bseq (\<lambda>x. inverse c * (c * f x))"  | 
|
297  | 
by (rule Bseq_mult)  | 
|
298  | 
with \<open>c \<noteq> 0\<close> show "Bseq f"  | 
|
| 
70817
 
dd675800469d
dedicated fact collections for algebraic simplification rules potentially splitting goals
 
haftmann 
parents: 
70804 
diff
changeset
 | 
299  | 
by (simp add: field_split_simps)  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
300  | 
qed (intro Bseq_mult Bfun_const)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
301  | 
|
| 63546 | 302  | 
lemma Bseq_subseq: "Bseq f \<Longrightarrow> Bseq (\<lambda>x. f (g x))"  | 
303  | 
for f :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
304  | 
unfolding Bseq_def by auto  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
305  | 
|
| 63546 | 306  | 
lemma Bseq_Suc_iff: "Bseq (\<lambda>n. f (Suc n)) \<longleftrightarrow> Bseq f"  | 
307  | 
for f :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
308  | 
using Bseq_offset[of f 1] by (auto intro: Bseq_subseq)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
309  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
310  | 
lemma increasing_Bseq_subseq_iff:  | 
| 
66447
 
a1f5c5c26fa6
Replaced subseq with strict_mono
 
eberlm <eberlm@in.tum.de> 
parents: 
65680 
diff
changeset
 | 
311  | 
assumes "\<And>x y. x \<le> y \<Longrightarrow> norm (f x :: 'a::real_normed_vector) \<le> norm (f y)" "strict_mono g"  | 
| 63546 | 312  | 
shows "Bseq (\<lambda>x. f (g x)) \<longleftrightarrow> Bseq f"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
313  | 
proof  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
314  | 
assume "Bseq (\<lambda>x. f (g x))"  | 
| 63546 | 315  | 
then obtain K where K: "\<And>x. norm (f (g x)) \<le> K"  | 
316  | 
unfolding Bseq_def by auto  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
317  | 
  {
 | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
318  | 
fix x :: nat  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
319  | 
from filterlim_subseq[OF assms(2)] obtain y where "g y \<ge> x"  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
320  | 
by (auto simp: filterlim_at_top eventually_at_top_linorder)  | 
| 63546 | 321  | 
then have "norm (f x) \<le> norm (f (g y))"  | 
322  | 
using assms(1) by blast  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
323  | 
also have "norm (f (g y)) \<le> K" by (rule K)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
324  | 
finally have "norm (f x) \<le> K" .  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
325  | 
}  | 
| 63546 | 326  | 
then show "Bseq f" by (rule BseqI')  | 
327  | 
qed (use Bseq_subseq[of f g] in simp_all)  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
328  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
329  | 
lemma nonneg_incseq_Bseq_subseq_iff:  | 
| 63546 | 330  | 
fixes f :: "nat \<Rightarrow> real"  | 
331  | 
and g :: "nat \<Rightarrow> nat"  | 
|
| 
66447
 
a1f5c5c26fa6
Replaced subseq with strict_mono
 
eberlm <eberlm@in.tum.de> 
parents: 
65680 
diff
changeset
 | 
332  | 
assumes "\<And>x. f x \<ge> 0" "incseq f" "strict_mono g"  | 
| 63546 | 333  | 
shows "Bseq (\<lambda>x. f (g x)) \<longleftrightarrow> Bseq f"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
334  | 
using assms by (intro increasing_Bseq_subseq_iff) (auto simp: incseq_def)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
335  | 
|
| 63546 | 336  | 
lemma Bseq_eq_bounded: "range f \<subseteq> {a..b} \<Longrightarrow> Bseq f"
 | 
337  | 
for a b :: real  | 
|
| 68614 | 338  | 
proof (rule BseqI'[where K="max (norm a) (norm b)"])  | 
339  | 
  fix n assume "range f \<subseteq> {a..b}"
 | 
|
340  | 
  then have "f n \<in> {a..b}"
 | 
|
341  | 
by blast  | 
|
342  | 
then show "norm (f n) \<le> max (norm a) (norm b)"  | 
|
343  | 
by auto  | 
|
344  | 
qed  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
345  | 
|
| 63546 | 346  | 
lemma incseq_bounded: "incseq X \<Longrightarrow> \<forall>i. X i \<le> B \<Longrightarrow> Bseq X"  | 
347  | 
for B :: real  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
348  | 
by (intro Bseq_eq_bounded[of X "X 0" B]) (auto simp: incseq_def)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
349  | 
|
| 63546 | 350  | 
lemma decseq_bounded: "decseq X \<Longrightarrow> \<forall>i. B \<le> X i \<Longrightarrow> Bseq X"  | 
351  | 
for B :: real  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
352  | 
by (intro Bseq_eq_bounded[of X B "X 0"]) (auto simp: decseq_def)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
353  | 
|
| 63546 | 354  | 
|
| 
71167
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
355  | 
subsubsection\<^marker>\<open>tag unimportant\<close> \<open>Polynomal function extremal theorem, from HOL Light\<close>  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
356  | 
|
| 
72219
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
357  | 
lemma polyfun_extremal_lemma:  | 
| 
71167
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
358  | 
fixes c :: "nat \<Rightarrow> 'a::real_normed_div_algebra"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
359  | 
assumes "0 < e"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
360  | 
shows "\<exists>M. \<forall>z. M \<le> norm(z) \<longrightarrow> norm (\<Sum>i\<le>n. c(i) * z^i) \<le> e * norm(z) ^ (Suc n)"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
361  | 
proof (induct n)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
362  | 
case 0 with assms  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
363  | 
show ?case  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
364  | 
apply (rule_tac x="norm (c 0) / e" in exI)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
365  | 
apply (auto simp: field_simps)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
366  | 
done  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
367  | 
next  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
368  | 
case (Suc n)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
369  | 
obtain M where M: "\<And>z. M \<le> norm z \<Longrightarrow> norm (\<Sum>i\<le>n. c i * z^i) \<le> e * norm z ^ Suc n"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
370  | 
using Suc assms by blast  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
371  | 
show ?case  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
372  | 
proof (rule exI [where x= "max M (1 + norm(c(Suc n)) / e)"], clarsimp simp del: power_Suc)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
373  | 
fix z::'a  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
374  | 
assume z1: "M \<le> norm z" and "1 + norm (c (Suc n)) / e \<le> norm z"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
375  | 
then have z2: "e + norm (c (Suc n)) \<le> e * norm z"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
376  | 
using assms by (simp add: field_simps)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
377  | 
have "norm (\<Sum>i\<le>n. c i * z^i) \<le> e * norm z ^ Suc n"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
378  | 
using M [OF z1] by simp  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
379  | 
then have "norm (\<Sum>i\<le>n. c i * z^i) + norm (c (Suc n) * z ^ Suc n) \<le> e * norm z ^ Suc n + norm (c (Suc n) * z ^ Suc n)"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
380  | 
by simp  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
381  | 
then have "norm ((\<Sum>i\<le>n. c i * z^i) + c (Suc n) * z ^ Suc n) \<le> e * norm z ^ Suc n + norm (c (Suc n) * z ^ Suc n)"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
382  | 
by (blast intro: norm_triangle_le elim: )  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
383  | 
also have "... \<le> (e + norm (c (Suc n))) * norm z ^ Suc n"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
384  | 
by (simp add: norm_power norm_mult algebra_simps)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
385  | 
also have "... \<le> (e * norm z) * norm z ^ Suc n"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
386  | 
by (metis z2 mult.commute mult_left_mono norm_ge_zero norm_power)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
387  | 
finally show "norm ((\<Sum>i\<le>n. c i * z^i) + c (Suc n) * z ^ Suc n) \<le> e * norm z ^ Suc (Suc n)"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
388  | 
by simp  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
389  | 
qed  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
390  | 
qed  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
391  | 
|
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
392  | 
lemma polyfun_extremal: (*COMPLEX_POLYFUN_EXTREMAL in HOL Light*)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
393  | 
fixes c :: "nat \<Rightarrow> 'a::real_normed_div_algebra"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
394  | 
assumes k: "c k \<noteq> 0" "1\<le>k" and kn: "k\<le>n"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
395  | 
shows "eventually (\<lambda>z. norm (\<Sum>i\<le>n. c(i) * z^i) \<ge> B) at_infinity"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
396  | 
using kn  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
397  | 
proof (induction n)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
398  | 
case 0  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
399  | 
then show ?case  | 
| 
72219
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
400  | 
using k by simp  | 
| 
71167
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
401  | 
next  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
402  | 
case (Suc m)  | 
| 
72219
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
403  | 
show ?case  | 
| 
71167
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
404  | 
proof (cases "c (Suc m) = 0")  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
405  | 
case True  | 
| 
72219
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
406  | 
then show ?thesis using Suc k  | 
| 
71167
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
407  | 
by auto (metis antisym_conv less_eq_Suc_le not_le)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
408  | 
next  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
409  | 
case False  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
410  | 
then obtain M where M:  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
411  | 
"\<And>z. M \<le> norm z \<Longrightarrow> norm (\<Sum>i\<le>m. c i * z^i) \<le> norm (c (Suc m)) / 2 * norm z ^ Suc m"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
412  | 
using polyfun_extremal_lemma [of "norm(c (Suc m)) / 2" c m] Suc  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
413  | 
by auto  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
414  | 
have "\<exists>b. \<forall>z. b \<le> norm z \<longrightarrow> B \<le> norm (\<Sum>i\<le>Suc m. c i * z^i)"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
415  | 
proof (rule exI [where x="max M (max 1 (\<bar>B\<bar> / (norm(c (Suc m)) / 2)))"], clarsimp simp del: power_Suc)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
416  | 
fix z::'a  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
417  | 
assume z1: "M \<le> norm z" "1 \<le> norm z"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
418  | 
and "\<bar>B\<bar> * 2 / norm (c (Suc m)) \<le> norm z"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
419  | 
then have z2: "\<bar>B\<bar> \<le> norm (c (Suc m)) * norm z / 2"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
420  | 
using False by (simp add: field_simps)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
421  | 
have nz: "norm z \<le> norm z ^ Suc m"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
422  | 
by (metis \<open>1 \<le> norm z\<close> One_nat_def less_eq_Suc_le power_increasing power_one_right zero_less_Suc)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
423  | 
have *: "\<And>y x. norm (c (Suc m)) * norm z / 2 \<le> norm y - norm x \<Longrightarrow> B \<le> norm (x + y)"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
424  | 
by (metis abs_le_iff add.commute norm_diff_ineq order_trans z2)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
425  | 
have "norm z * norm (c (Suc m)) + 2 * norm (\<Sum>i\<le>m. c i * z^i)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
426  | 
\<le> norm (c (Suc m)) * norm z + norm (c (Suc m)) * norm z ^ Suc m"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
427  | 
using M [of z] Suc z1 by auto  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
428  | 
also have "... \<le> 2 * (norm (c (Suc m)) * norm z ^ Suc m)"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
429  | 
using nz by (simp add: mult_mono del: power_Suc)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
430  | 
finally show "B \<le> norm ((\<Sum>i\<le>m. c i * z^i) + c (Suc m) * z ^ Suc m)"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
431  | 
using Suc.IH  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
432  | 
apply (auto simp: eventually_at_infinity)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
433  | 
apply (rule *)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
434  | 
apply (simp add: field_simps norm_mult norm_power)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
435  | 
done  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
436  | 
qed  | 
| 
72219
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
437  | 
then show ?thesis  | 
| 
71167
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
438  | 
by (simp add: eventually_at_infinity)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
439  | 
qed  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
440  | 
qed  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
441  | 
|
| 60758 | 442  | 
subsection \<open>Convergence to Zero\<close>  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
443  | 
|
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
444  | 
definition Zfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a filter \<Rightarrow> bool"
 | 
| 44195 | 445  | 
where "Zfun f F = (\<forall>r>0. eventually (\<lambda>x. norm (f x) < r) F)"  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
446  | 
|
| 63546 | 447  | 
lemma ZfunI: "(\<And>r. 0 < r \<Longrightarrow> eventually (\<lambda>x. norm (f x) < r) F) \<Longrightarrow> Zfun f F"  | 
448  | 
by (simp add: Zfun_def)  | 
|
449  | 
||
450  | 
lemma ZfunD: "Zfun f F \<Longrightarrow> 0 < r \<Longrightarrow> eventually (\<lambda>x. norm (f x) < r) F"  | 
|
451  | 
by (simp add: Zfun_def)  | 
|
452  | 
||
453  | 
lemma Zfun_ssubst: "eventually (\<lambda>x. f x = g x) F \<Longrightarrow> Zfun g F \<Longrightarrow> Zfun f F"  | 
|
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
454  | 
unfolding Zfun_def by (auto elim!: eventually_rev_mp)  | 
| 31355 | 455  | 
|
| 44195 | 456  | 
lemma Zfun_zero: "Zfun (\<lambda>x. 0) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
457  | 
unfolding Zfun_def by simp  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
458  | 
|
| 44195 | 459  | 
lemma Zfun_norm_iff: "Zfun (\<lambda>x. norm (f x)) F = Zfun (\<lambda>x. f x) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
460  | 
unfolding Zfun_def by simp  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
461  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
462  | 
lemma Zfun_imp_Zfun:  | 
| 44195 | 463  | 
assumes f: "Zfun f F"  | 
| 63546 | 464  | 
and g: "eventually (\<lambda>x. norm (g x) \<le> norm (f x) * K) F"  | 
| 44195 | 465  | 
shows "Zfun (\<lambda>x. g x) F"  | 
| 63546 | 466  | 
proof (cases "0 < K")  | 
467  | 
case K: True  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
468  | 
show ?thesis  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
469  | 
proof (rule ZfunI)  | 
| 63546 | 470  | 
fix r :: real  | 
471  | 
assume "0 < r"  | 
|
472  | 
then have "0 < r / K" using K by simp  | 
|
| 44195 | 473  | 
then have "eventually (\<lambda>x. norm (f x) < r / K) F"  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
474  | 
using ZfunD [OF f] by blast  | 
| 44195 | 475  | 
with g show "eventually (\<lambda>x. norm (g x) < r) F"  | 
| 46887 | 476  | 
proof eventually_elim  | 
477  | 
case (elim x)  | 
|
| 63546 | 478  | 
then have "norm (f x) * K < r"  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
479  | 
by (simp add: pos_less_divide_eq K)  | 
| 63546 | 480  | 
then show ?case  | 
| 46887 | 481  | 
by (simp add: order_le_less_trans [OF elim(1)])  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
482  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
483  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
484  | 
next  | 
| 63546 | 485  | 
case False  | 
486  | 
then have K: "K \<le> 0" by (simp only: not_less)  | 
|
| 31355 | 487  | 
show ?thesis  | 
488  | 
proof (rule ZfunI)  | 
|
489  | 
fix r :: real  | 
|
490  | 
assume "0 < r"  | 
|
| 44195 | 491  | 
from g show "eventually (\<lambda>x. norm (g x) < r) F"  | 
| 46887 | 492  | 
proof eventually_elim  | 
493  | 
case (elim x)  | 
|
494  | 
also have "norm (f x) * K \<le> norm (f x) * 0"  | 
|
| 31355 | 495  | 
using K norm_ge_zero by (rule mult_left_mono)  | 
| 46887 | 496  | 
finally show ?case  | 
| 60758 | 497  | 
using \<open>0 < r\<close> by simp  | 
| 31355 | 498  | 
qed  | 
499  | 
qed  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
500  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
501  | 
|
| 63546 | 502  | 
lemma Zfun_le: "Zfun g F \<Longrightarrow> \<forall>x. norm (f x) \<le> norm (g x) \<Longrightarrow> Zfun f F"  | 
503  | 
by (erule Zfun_imp_Zfun [where K = 1]) simp  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
504  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
505  | 
lemma Zfun_add:  | 
| 63546 | 506  | 
assumes f: "Zfun f F"  | 
507  | 
and g: "Zfun g F"  | 
|
| 44195 | 508  | 
shows "Zfun (\<lambda>x. f x + g x) F"  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
509  | 
proof (rule ZfunI)  | 
| 63546 | 510  | 
fix r :: real  | 
511  | 
assume "0 < r"  | 
|
512  | 
then have r: "0 < r / 2" by simp  | 
|
| 44195 | 513  | 
have "eventually (\<lambda>x. norm (f x) < r/2) F"  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
514  | 
using f r by (rule ZfunD)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
515  | 
moreover  | 
| 44195 | 516  | 
have "eventually (\<lambda>x. norm (g x) < r/2) F"  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
517  | 
using g r by (rule ZfunD)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
518  | 
ultimately  | 
| 44195 | 519  | 
show "eventually (\<lambda>x. norm (f x + g x) < r) F"  | 
| 46887 | 520  | 
proof eventually_elim  | 
521  | 
case (elim x)  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
522  | 
have "norm (f x + g x) \<le> norm (f x) + norm (g x)"  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
523  | 
by (rule norm_triangle_ineq)  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
524  | 
also have "\<dots> < r/2 + r/2"  | 
| 46887 | 525  | 
using elim by (rule add_strict_mono)  | 
526  | 
finally show ?case  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
527  | 
by simp  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
528  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
529  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
530  | 
|
| 44195 | 531  | 
lemma Zfun_minus: "Zfun f F \<Longrightarrow> Zfun (\<lambda>x. - f x) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
532  | 
unfolding Zfun_def by simp  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
533  | 
|
| 63546 | 534  | 
lemma Zfun_diff: "Zfun f F \<Longrightarrow> Zfun g F \<Longrightarrow> Zfun (\<lambda>x. f x - g x) F"  | 
| 
54230
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
53602 
diff
changeset
 | 
535  | 
using Zfun_add [of f F "\<lambda>x. - g x"] by (simp add: Zfun_minus)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
536  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
537  | 
lemma (in bounded_linear) Zfun:  | 
| 44195 | 538  | 
assumes g: "Zfun g F"  | 
539  | 
shows "Zfun (\<lambda>x. f (g x)) F"  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
540  | 
proof -  | 
| 63546 | 541  | 
obtain K where "norm (f x) \<le> norm x * K" for x  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
542  | 
using bounded by blast  | 
| 44195 | 543  | 
then have "eventually (\<lambda>x. norm (f (g x)) \<le> norm (g x) * K) F"  | 
| 31355 | 544  | 
by simp  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
545  | 
with g show ?thesis  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
546  | 
by (rule Zfun_imp_Zfun)  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
547  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
548  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
549  | 
lemma (in bounded_bilinear) Zfun:  | 
| 44195 | 550  | 
assumes f: "Zfun f F"  | 
| 63546 | 551  | 
and g: "Zfun g F"  | 
| 44195 | 552  | 
shows "Zfun (\<lambda>x. f x ** g x) F"  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
553  | 
proof (rule ZfunI)  | 
| 63546 | 554  | 
fix r :: real  | 
555  | 
assume r: "0 < r"  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
556  | 
obtain K where K: "0 < K"  | 
| 63546 | 557  | 
and norm_le: "norm (x ** y) \<le> norm x * norm y * K" for x y  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
558  | 
using pos_bounded by blast  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
559  | 
from K have K': "0 < inverse K"  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
560  | 
by (rule positive_imp_inverse_positive)  | 
| 44195 | 561  | 
have "eventually (\<lambda>x. norm (f x) < r) F"  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
562  | 
using f r by (rule ZfunD)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
563  | 
moreover  | 
| 44195 | 564  | 
have "eventually (\<lambda>x. norm (g x) < inverse K) F"  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
565  | 
using g K' by (rule ZfunD)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
566  | 
ultimately  | 
| 44195 | 567  | 
show "eventually (\<lambda>x. norm (f x ** g x) < r) F"  | 
| 46887 | 568  | 
proof eventually_elim  | 
569  | 
case (elim x)  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
570  | 
have "norm (f x ** g x) \<le> norm (f x) * norm (g x) * K"  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
571  | 
by (rule norm_le)  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
572  | 
also have "norm (f x) * norm (g x) * K < r * inverse K * K"  | 
| 46887 | 573  | 
by (intro mult_strict_right_mono mult_strict_mono' norm_ge_zero elim K)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
574  | 
also from K have "r * inverse K * K = r"  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
575  | 
by simp  | 
| 46887 | 576  | 
finally show ?case .  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
577  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
578  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
579  | 
|
| 63546 | 580  | 
lemma (in bounded_bilinear) Zfun_left: "Zfun f F \<Longrightarrow> Zfun (\<lambda>x. f x ** a) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
581  | 
by (rule bounded_linear_left [THEN bounded_linear.Zfun])  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
582  | 
|
| 63546 | 583  | 
lemma (in bounded_bilinear) Zfun_right: "Zfun f F \<Longrightarrow> Zfun (\<lambda>x. a ** f x) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
584  | 
by (rule bounded_linear_right [THEN bounded_linear.Zfun])  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
585  | 
|
| 
44282
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
586  | 
lemmas Zfun_mult = bounded_bilinear.Zfun [OF bounded_bilinear_mult]  | 
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
587  | 
lemmas Zfun_mult_right = bounded_bilinear.Zfun_right [OF bounded_bilinear_mult]  | 
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
588  | 
lemmas Zfun_mult_left = bounded_bilinear.Zfun_left [OF bounded_bilinear_mult]  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
589  | 
|
| 61973 | 590  | 
lemma tendsto_Zfun_iff: "(f \<longlongrightarrow> a) F = Zfun (\<lambda>x. f x - a) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
591  | 
by (simp only: tendsto_iff Zfun_def dist_norm)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
592  | 
|
| 63546 | 593  | 
lemma tendsto_0_le:  | 
594  | 
"(f \<longlongrightarrow> 0) F \<Longrightarrow> eventually (\<lambda>x. norm (g x) \<le> norm (f x) * K) F \<Longrightarrow> (g \<longlongrightarrow> 0) F"  | 
|
| 56366 | 595  | 
by (simp add: Zfun_imp_Zfun tendsto_Zfun_iff)  | 
596  | 
||
| 63546 | 597  | 
|
| 60758 | 598  | 
subsubsection \<open>Distance and norms\<close>  | 
| 
36662
 
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
 
huffman 
parents: 
36656 
diff
changeset
 | 
599  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
600  | 
lemma tendsto_dist [tendsto_intros]:  | 
| 63546 | 601  | 
fixes l m :: "'a::metric_space"  | 
602  | 
assumes f: "(f \<longlongrightarrow> l) F"  | 
|
603  | 
and g: "(g \<longlongrightarrow> m) F"  | 
|
| 61973 | 604  | 
shows "((\<lambda>x. dist (f x) (g x)) \<longlongrightarrow> dist l m) F"  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
605  | 
proof (rule tendstoI)  | 
| 63546 | 606  | 
fix e :: real  | 
607  | 
assume "0 < e"  | 
|
608  | 
then have e2: "0 < e/2" by simp  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
609  | 
from tendstoD [OF f e2] tendstoD [OF g e2]  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
610  | 
show "eventually (\<lambda>x. dist (dist (f x) (g x)) (dist l m) < e) F"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
611  | 
proof (eventually_elim)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
612  | 
case (elim x)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
613  | 
then show "dist (dist (f x) (g x)) (dist l m) < e"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
614  | 
unfolding dist_real_def  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
615  | 
using dist_triangle2 [of "f x" "g x" "l"]  | 
| 63546 | 616  | 
and dist_triangle2 [of "g x" "l" "m"]  | 
617  | 
and dist_triangle3 [of "l" "m" "f x"]  | 
|
618  | 
and dist_triangle [of "f x" "m" "g x"]  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
619  | 
by arith  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
620  | 
qed  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
621  | 
qed  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
622  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
623  | 
lemma continuous_dist[continuous_intros]:  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
624  | 
fixes f g :: "_ \<Rightarrow> 'a :: metric_space"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
625  | 
shows "continuous F f \<Longrightarrow> continuous F g \<Longrightarrow> continuous F (\<lambda>x. dist (f x) (g x))"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
626  | 
unfolding continuous_def by (rule tendsto_dist)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
627  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
628  | 
lemma continuous_on_dist[continuous_intros]:  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
629  | 
fixes f g :: "_ \<Rightarrow> 'a :: metric_space"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
630  | 
shows "continuous_on s f \<Longrightarrow> continuous_on s g \<Longrightarrow> continuous_on s (\<lambda>x. dist (f x) (g x))"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
631  | 
unfolding continuous_on_def by (auto intro: tendsto_dist)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
632  | 
|
| 
69918
 
eddcc7c726f3
new material;' strengthened material; moved proofs out of Function_Topology in order to lessen its dependencies
 
paulson <lp15@cam.ac.uk> 
parents: 
69593 
diff
changeset
 | 
633  | 
lemma continuous_at_dist: "isCont (dist a) b"  | 
| 
 
eddcc7c726f3
new material;' strengthened material; moved proofs out of Function_Topology in order to lessen its dependencies
 
paulson <lp15@cam.ac.uk> 
parents: 
69593 
diff
changeset
 | 
634  | 
using continuous_on_dist [OF continuous_on_const continuous_on_id] continuous_on_eq_continuous_within by blast  | 
| 
 
eddcc7c726f3
new material;' strengthened material; moved proofs out of Function_Topology in order to lessen its dependencies
 
paulson <lp15@cam.ac.uk> 
parents: 
69593 
diff
changeset
 | 
635  | 
|
| 63546 | 636  | 
lemma tendsto_norm [tendsto_intros]: "(f \<longlongrightarrow> a) F \<Longrightarrow> ((\<lambda>x. norm (f x)) \<longlongrightarrow> norm a) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
637  | 
unfolding norm_conv_dist by (intro tendsto_intros)  | 
| 
36662
 
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
 
huffman 
parents: 
36656 
diff
changeset
 | 
638  | 
|
| 63546 | 639  | 
lemma continuous_norm [continuous_intros]: "continuous F f \<Longrightarrow> continuous F (\<lambda>x. norm (f x))"  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
640  | 
unfolding continuous_def by (rule tendsto_norm)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
641  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
642  | 
lemma continuous_on_norm [continuous_intros]:  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
643  | 
"continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. norm (f x))"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
644  | 
unfolding continuous_on_def by (auto intro: tendsto_norm)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
645  | 
|
| 
71167
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
646  | 
lemma continuous_on_norm_id [continuous_intros]: "continuous_on S norm"  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
647  | 
by (intro continuous_on_id continuous_on_norm)  | 
| 
 
b4d409c65a76
Rearrangement of material in Complex_Analysis_Basics, which contained much that had nothing to do with complex analysis.
 
paulson <lp15@cam.ac.uk> 
parents: 
70999 
diff
changeset
 | 
648  | 
|
| 63546 | 649  | 
lemma tendsto_norm_zero: "(f \<longlongrightarrow> 0) F \<Longrightarrow> ((\<lambda>x. norm (f x)) \<longlongrightarrow> 0) F"  | 
650  | 
by (drule tendsto_norm) simp  | 
|
651  | 
||
652  | 
lemma tendsto_norm_zero_cancel: "((\<lambda>x. norm (f x)) \<longlongrightarrow> 0) F \<Longrightarrow> (f \<longlongrightarrow> 0) F"  | 
|
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
653  | 
unfolding tendsto_iff dist_norm by simp  | 
| 
36662
 
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
 
huffman 
parents: 
36656 
diff
changeset
 | 
654  | 
|
| 63546 | 655  | 
lemma tendsto_norm_zero_iff: "((\<lambda>x. norm (f x)) \<longlongrightarrow> 0) F \<longleftrightarrow> (f \<longlongrightarrow> 0) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
656  | 
unfolding tendsto_iff dist_norm by simp  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
657  | 
|
| 63546 | 658  | 
lemma tendsto_rabs [tendsto_intros]: "(f \<longlongrightarrow> l) F \<Longrightarrow> ((\<lambda>x. \<bar>f x\<bar>) \<longlongrightarrow> \<bar>l\<bar>) F"  | 
659  | 
for l :: real  | 
|
660  | 
by (fold real_norm_def) (rule tendsto_norm)  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
661  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
662  | 
lemma continuous_rabs [continuous_intros]:  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
663  | 
"continuous F f \<Longrightarrow> continuous F (\<lambda>x. \<bar>f x :: real\<bar>)"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
664  | 
unfolding real_norm_def[symmetric] by (rule continuous_norm)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
665  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
666  | 
lemma continuous_on_rabs [continuous_intros]:  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
667  | 
"continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. \<bar>f x :: real\<bar>)"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
668  | 
unfolding real_norm_def[symmetric] by (rule continuous_on_norm)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
669  | 
|
| 63546 | 670  | 
lemma tendsto_rabs_zero: "(f \<longlongrightarrow> (0::real)) F \<Longrightarrow> ((\<lambda>x. \<bar>f x\<bar>) \<longlongrightarrow> 0) F"  | 
671  | 
by (fold real_norm_def) (rule tendsto_norm_zero)  | 
|
672  | 
||
673  | 
lemma tendsto_rabs_zero_cancel: "((\<lambda>x. \<bar>f x\<bar>) \<longlongrightarrow> (0::real)) F \<Longrightarrow> (f \<longlongrightarrow> 0) F"  | 
|
674  | 
by (fold real_norm_def) (rule tendsto_norm_zero_cancel)  | 
|
675  | 
||
676  | 
lemma tendsto_rabs_zero_iff: "((\<lambda>x. \<bar>f x\<bar>) \<longlongrightarrow> (0::real)) F \<longleftrightarrow> (f \<longlongrightarrow> 0) F"  | 
|
677  | 
by (fold real_norm_def) (rule tendsto_norm_zero_iff)  | 
|
678  | 
||
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
679  | 
|
| 62368 | 680  | 
subsection \<open>Topological Monoid\<close>  | 
681  | 
||
682  | 
class topological_monoid_add = topological_space + monoid_add +  | 
|
683  | 
assumes tendsto_add_Pair: "LIM x (nhds a \<times>\<^sub>F nhds b). fst x + snd x :> nhds (a + b)"  | 
|
684  | 
||
685  | 
class topological_comm_monoid_add = topological_monoid_add + comm_monoid_add  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
686  | 
|
| 31565 | 687  | 
lemma tendsto_add [tendsto_intros]:  | 
| 62368 | 688  | 
fixes a b :: "'a::topological_monoid_add"  | 
689  | 
shows "(f \<longlongrightarrow> a) F \<Longrightarrow> (g \<longlongrightarrow> b) F \<Longrightarrow> ((\<lambda>x. f x + g x) \<longlongrightarrow> a + b) F"  | 
|
690  | 
using filterlim_compose[OF tendsto_add_Pair, of "\<lambda>x. (f x, g x)" a b F]  | 
|
691  | 
by (simp add: nhds_prod[symmetric] tendsto_Pair)  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
692  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
693  | 
lemma continuous_add [continuous_intros]:  | 
| 62368 | 694  | 
fixes f g :: "_ \<Rightarrow> 'b::topological_monoid_add"  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
695  | 
shows "continuous F f \<Longrightarrow> continuous F g \<Longrightarrow> continuous F (\<lambda>x. f x + g x)"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
696  | 
unfolding continuous_def by (rule tendsto_add)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
697  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
698  | 
lemma continuous_on_add [continuous_intros]:  | 
| 62368 | 699  | 
fixes f g :: "_ \<Rightarrow> 'b::topological_monoid_add"  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
700  | 
shows "continuous_on s f \<Longrightarrow> continuous_on s g \<Longrightarrow> continuous_on s (\<lambda>x. f x + g x)"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
701  | 
unfolding continuous_on_def by (auto intro: tendsto_add)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
702  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
703  | 
lemma tendsto_add_zero:  | 
| 62368 | 704  | 
fixes f g :: "_ \<Rightarrow> 'b::topological_monoid_add"  | 
| 63546 | 705  | 
shows "(f \<longlongrightarrow> 0) F \<Longrightarrow> (g \<longlongrightarrow> 0) F \<Longrightarrow> ((\<lambda>x. f x + g x) \<longlongrightarrow> 0) F"  | 
706  | 
by (drule (1) tendsto_add) simp  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
707  | 
|
| 64267 | 708  | 
lemma tendsto_sum [tendsto_intros]:  | 
| 62368 | 709  | 
fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::topological_comm_monoid_add"  | 
| 63915 | 710  | 
shows "(\<And>i. i \<in> I \<Longrightarrow> (f i \<longlongrightarrow> a i) F) \<Longrightarrow> ((\<lambda>x. \<Sum>i\<in>I. f i x) \<longlongrightarrow> (\<Sum>i\<in>I. a i)) F"  | 
711  | 
by (induct I rule: infinite_finite_induct) (simp_all add: tendsto_add)  | 
|
| 62368 | 712  | 
|
| 
67673
 
c8caefb20564
lots of new material, ultimately related to measure theory
 
paulson <lp15@cam.ac.uk> 
parents: 
67399 
diff
changeset
 | 
713  | 
lemma tendsto_null_sum:  | 
| 
 
c8caefb20564
lots of new material, ultimately related to measure theory
 
paulson <lp15@cam.ac.uk> 
parents: 
67399 
diff
changeset
 | 
714  | 
fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::topological_comm_monoid_add"  | 
| 
 
c8caefb20564
lots of new material, ultimately related to measure theory
 
paulson <lp15@cam.ac.uk> 
parents: 
67399 
diff
changeset
 | 
715  | 
assumes "\<And>i. i \<in> I \<Longrightarrow> ((\<lambda>x. f x i) \<longlongrightarrow> 0) F"  | 
| 
 
c8caefb20564
lots of new material, ultimately related to measure theory
 
paulson <lp15@cam.ac.uk> 
parents: 
67399 
diff
changeset
 | 
716  | 
shows "((\<lambda>i. sum (f i) I) \<longlongrightarrow> 0) F"  | 
| 
 
c8caefb20564
lots of new material, ultimately related to measure theory
 
paulson <lp15@cam.ac.uk> 
parents: 
67399 
diff
changeset
 | 
717  | 
using tendsto_sum [of I "\<lambda>x y. f y x" "\<lambda>x. 0"] assms by simp  | 
| 
 
c8caefb20564
lots of new material, ultimately related to measure theory
 
paulson <lp15@cam.ac.uk> 
parents: 
67399 
diff
changeset
 | 
718  | 
|
| 64267 | 719  | 
lemma continuous_sum [continuous_intros]:  | 
| 62368 | 720  | 
fixes f :: "'a \<Rightarrow> 'b::t2_space \<Rightarrow> 'c::topological_comm_monoid_add"  | 
| 63301 | 721  | 
shows "(\<And>i. i \<in> I \<Longrightarrow> continuous F (f i)) \<Longrightarrow> continuous F (\<lambda>x. \<Sum>i\<in>I. f i x)"  | 
| 64267 | 722  | 
unfolding continuous_def by (rule tendsto_sum)  | 
723  | 
||
724  | 
lemma continuous_on_sum [continuous_intros]:  | 
|
| 62368 | 725  | 
fixes f :: "'a \<Rightarrow> 'b::topological_space \<Rightarrow> 'c::topological_comm_monoid_add"  | 
| 63301 | 726  | 
shows "(\<And>i. i \<in> I \<Longrightarrow> continuous_on S (f i)) \<Longrightarrow> continuous_on S (\<lambda>x. \<Sum>i\<in>I. f i x)"  | 
| 64267 | 727  | 
unfolding continuous_on_def by (auto intro: tendsto_sum)  | 
| 62368 | 728  | 
|
| 62369 | 729  | 
instance nat :: topological_comm_monoid_add  | 
| 63546 | 730  | 
by standard  | 
731  | 
(simp add: nhds_discrete principal_prod_principal filterlim_principal eventually_principal)  | 
|
| 62369 | 732  | 
|
733  | 
instance int :: topological_comm_monoid_add  | 
|
| 63546 | 734  | 
by standard  | 
735  | 
(simp add: nhds_discrete principal_prod_principal filterlim_principal eventually_principal)  | 
|
736  | 
||
| 62369 | 737  | 
|
| 
63081
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
738  | 
subsubsection \<open>Topological group\<close>  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
739  | 
|
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
740  | 
class topological_group_add = topological_monoid_add + group_add +  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
741  | 
assumes tendsto_uminus_nhds: "(uminus \<longlongrightarrow> - a) (nhds a)"  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
742  | 
begin  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
743  | 
|
| 63546 | 744  | 
lemma tendsto_minus [tendsto_intros]: "(f \<longlongrightarrow> a) F \<Longrightarrow> ((\<lambda>x. - f x) \<longlongrightarrow> - a) F"  | 
| 
63081
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
745  | 
by (rule filterlim_compose[OF tendsto_uminus_nhds])  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
746  | 
|
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
747  | 
end  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
748  | 
|
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
749  | 
class topological_ab_group_add = topological_group_add + ab_group_add  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
750  | 
|
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
751  | 
instance topological_ab_group_add < topological_comm_monoid_add ..  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
752  | 
|
| 63546 | 753  | 
lemma continuous_minus [continuous_intros]: "continuous F f \<Longrightarrow> continuous F (\<lambda>x. - f x)"  | 
754  | 
for f :: "'a::t2_space \<Rightarrow> 'b::topological_group_add"  | 
|
| 
63081
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
755  | 
unfolding continuous_def by (rule tendsto_minus)  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
756  | 
|
| 63546 | 757  | 
lemma continuous_on_minus [continuous_intros]: "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. - f x)"  | 
758  | 
for f :: "_ \<Rightarrow> 'b::topological_group_add"  | 
|
| 
63081
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
759  | 
unfolding continuous_on_def by (auto intro: tendsto_minus)  | 
| 62368 | 760  | 
|
| 63546 | 761  | 
lemma tendsto_minus_cancel: "((\<lambda>x. - f x) \<longlongrightarrow> - a) F \<Longrightarrow> (f \<longlongrightarrow> a) F"  | 
762  | 
for a :: "'a::topological_group_add"  | 
|
763  | 
by (drule tendsto_minus) simp  | 
|
| 
63081
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
764  | 
|
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
765  | 
lemma tendsto_minus_cancel_left:  | 
| 63546 | 766  | 
"(f \<longlongrightarrow> - (y::_::topological_group_add)) F \<longleftrightarrow> ((\<lambda>x. - f x) \<longlongrightarrow> y) F"  | 
| 
63081
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
767  | 
using tendsto_minus_cancel[of f "- y" F] tendsto_minus[of f "- y" F]  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
768  | 
by auto  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
769  | 
|
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
770  | 
lemma tendsto_diff [tendsto_intros]:  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
771  | 
fixes a b :: "'a::topological_group_add"  | 
| 63546 | 772  | 
shows "(f \<longlongrightarrow> a) F \<Longrightarrow> (g \<longlongrightarrow> b) F \<Longrightarrow> ((\<lambda>x. f x - g x) \<longlongrightarrow> a - b) F"  | 
| 
63081
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
773  | 
using tendsto_add [of f a F "\<lambda>x. - g x" "- b"] by (simp add: tendsto_minus)  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
774  | 
|
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
775  | 
lemma continuous_diff [continuous_intros]:  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
776  | 
fixes f g :: "'a::t2_space \<Rightarrow> 'b::topological_group_add"  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
777  | 
shows "continuous F f \<Longrightarrow> continuous F g \<Longrightarrow> continuous F (\<lambda>x. f x - g x)"  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
778  | 
unfolding continuous_def by (rule tendsto_diff)  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
779  | 
|
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
780  | 
lemma continuous_on_diff [continuous_intros]:  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
781  | 
fixes f g :: "_ \<Rightarrow> 'b::topological_group_add"  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
782  | 
shows "continuous_on s f \<Longrightarrow> continuous_on s g \<Longrightarrow> continuous_on s (\<lambda>x. f x - g x)"  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
783  | 
unfolding continuous_on_def by (auto intro: tendsto_diff)  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
784  | 
|
| 67399 | 785  | 
lemma continuous_on_op_minus: "continuous_on (s::'a::topological_group_add set) ((-) x)"  | 
| 
63081
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
786  | 
by (rule continuous_intros | simp)+  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
787  | 
|
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
788  | 
instance real_normed_vector < topological_ab_group_add  | 
| 62368 | 789  | 
proof  | 
| 63546 | 790  | 
fix a b :: 'a  | 
791  | 
show "((\<lambda>x. fst x + snd x) \<longlongrightarrow> a + b) (nhds a \<times>\<^sub>F nhds b)"  | 
|
| 62368 | 792  | 
unfolding tendsto_Zfun_iff add_diff_add  | 
793  | 
using tendsto_fst[OF filterlim_ident, of "(a,b)"] tendsto_snd[OF filterlim_ident, of "(a,b)"]  | 
|
794  | 
by (intro Zfun_add)  | 
|
| 68615 | 795  | 
(auto simp: tendsto_Zfun_iff[symmetric] nhds_prod[symmetric] intro!: tendsto_fst)  | 
| 
63081
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
796  | 
show "(uminus \<longlongrightarrow> - a) (nhds a)"  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
797  | 
unfolding tendsto_Zfun_iff minus_diff_minus  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
798  | 
using filterlim_ident[of "nhds a"]  | 
| 
 
5a5beb3dbe7e
introduced class topological_group between topological_monoid and real_normed_vector
 
immler 
parents: 
63040 
diff
changeset
 | 
799  | 
by (intro Zfun_minus) (simp add: tendsto_Zfun_iff)  | 
| 62368 | 800  | 
qed  | 
801  | 
||
| 
65204
 
d23eded35a33
modernized construction of type bcontfun; base explicit theorems on Uniform_Limit.thy; added some lemmas
 
immler 
parents: 
65036 
diff
changeset
 | 
802  | 
lemmas real_tendsto_sandwich = tendsto_sandwich[where 'a=real]  | 
| 50999 | 803  | 
|
| 63546 | 804  | 
|
| 60758 | 805  | 
subsubsection \<open>Linear operators and multiplication\<close>  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
806  | 
|
| 
70999
 
5b753486c075
Inverse function theorem + lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
70817 
diff
changeset
 | 
807  | 
lemma linear_times [simp]: "linear (\<lambda>x. c * x)"  | 
| 63546 | 808  | 
for c :: "'a::real_algebra"  | 
| 
61806
 
d2e62ae01cd8
Cauchy's integral formula for circles.  Starting to fix eventually_mono.
 
paulson <lp15@cam.ac.uk> 
parents: 
61799 
diff
changeset
 | 
809  | 
by (auto simp: linearI distrib_left)  | 
| 
 
d2e62ae01cd8
Cauchy's integral formula for circles.  Starting to fix eventually_mono.
 
paulson <lp15@cam.ac.uk> 
parents: 
61799 
diff
changeset
 | 
810  | 
|
| 63546 | 811  | 
lemma (in bounded_linear) tendsto: "(g \<longlongrightarrow> a) F \<Longrightarrow> ((\<lambda>x. f (g x)) \<longlongrightarrow> f a) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
812  | 
by (simp only: tendsto_Zfun_iff diff [symmetric] Zfun)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
813  | 
|
| 63546 | 814  | 
lemma (in bounded_linear) continuous: "continuous F g \<Longrightarrow> continuous F (\<lambda>x. f (g x))"  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
815  | 
using tendsto[of g _ F] by (auto simp: continuous_def)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
816  | 
|
| 63546 | 817  | 
lemma (in bounded_linear) continuous_on: "continuous_on s g \<Longrightarrow> continuous_on s (\<lambda>x. f (g x))"  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
818  | 
using tendsto[of g] by (auto simp: continuous_on_def)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
819  | 
|
| 63546 | 820  | 
lemma (in bounded_linear) tendsto_zero: "(g \<longlongrightarrow> 0) F \<Longrightarrow> ((\<lambda>x. f (g x)) \<longlongrightarrow> 0) F"  | 
821  | 
by (drule tendsto) (simp only: zero)  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
822  | 
|
| 
44282
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
823  | 
lemma (in bounded_bilinear) tendsto:  | 
| 63546 | 824  | 
"(f \<longlongrightarrow> a) F \<Longrightarrow> (g \<longlongrightarrow> b) F \<Longrightarrow> ((\<lambda>x. f x ** g x) \<longlongrightarrow> a ** b) F"  | 
825  | 
by (simp only: tendsto_Zfun_iff prod_diff_prod Zfun_add Zfun Zfun_left Zfun_right)  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
826  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
827  | 
lemma (in bounded_bilinear) continuous:  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
828  | 
"continuous F f \<Longrightarrow> continuous F g \<Longrightarrow> continuous F (\<lambda>x. f x ** g x)"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
829  | 
using tendsto[of f _ F g] by (auto simp: continuous_def)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
830  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
831  | 
lemma (in bounded_bilinear) continuous_on:  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
832  | 
"continuous_on s f \<Longrightarrow> continuous_on s g \<Longrightarrow> continuous_on s (\<lambda>x. f x ** g x)"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
833  | 
using tendsto[of f _ _ g] by (auto simp: continuous_on_def)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
834  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
835  | 
lemma (in bounded_bilinear) tendsto_zero:  | 
| 61973 | 836  | 
assumes f: "(f \<longlongrightarrow> 0) F"  | 
| 63546 | 837  | 
and g: "(g \<longlongrightarrow> 0) F"  | 
| 61973 | 838  | 
shows "((\<lambda>x. f x ** g x) \<longlongrightarrow> 0) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
839  | 
using tendsto [OF f g] by (simp add: zero_left)  | 
| 31355 | 840  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
841  | 
lemma (in bounded_bilinear) tendsto_left_zero:  | 
| 61973 | 842  | 
"(f \<longlongrightarrow> 0) F \<Longrightarrow> ((\<lambda>x. f x ** c) \<longlongrightarrow> 0) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
843  | 
by (rule bounded_linear.tendsto_zero [OF bounded_linear_left])  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
844  | 
|
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
845  | 
lemma (in bounded_bilinear) tendsto_right_zero:  | 
| 61973 | 846  | 
"(f \<longlongrightarrow> 0) F \<Longrightarrow> ((\<lambda>x. c ** f x) \<longlongrightarrow> 0) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
847  | 
by (rule bounded_linear.tendsto_zero [OF bounded_linear_right])  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
848  | 
|
| 
44282
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
849  | 
lemmas tendsto_of_real [tendsto_intros] =  | 
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
850  | 
bounded_linear.tendsto [OF bounded_linear_of_real]  | 
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
851  | 
|
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
852  | 
lemmas tendsto_scaleR [tendsto_intros] =  | 
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
853  | 
bounded_bilinear.tendsto [OF bounded_bilinear_scaleR]  | 
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
854  | 
|
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
855  | 
|
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
856  | 
text\<open>Analogous type class for multiplication\<close>  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
857  | 
class topological_semigroup_mult = topological_space + semigroup_mult +  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
858  | 
assumes tendsto_mult_Pair: "LIM x (nhds a \<times>\<^sub>F nhds b). fst x * snd x :> nhds (a * b)"  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
859  | 
|
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
860  | 
instance real_normed_algebra < topological_semigroup_mult  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
861  | 
proof  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
862  | 
fix a b :: 'a  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
863  | 
show "((\<lambda>x. fst x * snd x) \<longlongrightarrow> a * b) (nhds a \<times>\<^sub>F nhds b)"  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
864  | 
unfolding nhds_prod[symmetric]  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
865  | 
using tendsto_fst[OF filterlim_ident, of "(a,b)"] tendsto_snd[OF filterlim_ident, of "(a,b)"]  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
866  | 
by (simp add: bounded_bilinear.tendsto [OF bounded_bilinear_mult])  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
867  | 
qed  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
868  | 
|
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
869  | 
lemma tendsto_mult [tendsto_intros]:  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
870  | 
fixes a b :: "'a::topological_semigroup_mult"  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
871  | 
shows "(f \<longlongrightarrow> a) F \<Longrightarrow> (g \<longlongrightarrow> b) F \<Longrightarrow> ((\<lambda>x. f x * g x) \<longlongrightarrow> a * b) F"  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
872  | 
using filterlim_compose[OF tendsto_mult_Pair, of "\<lambda>x. (f x, g x)" a b F]  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
873  | 
by (simp add: nhds_prod[symmetric] tendsto_Pair)  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
874  | 
|
| 63546 | 875  | 
lemma tendsto_mult_left: "(f \<longlongrightarrow> l) F \<Longrightarrow> ((\<lambda>x. c * (f x)) \<longlongrightarrow> c * l) F"  | 
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
876  | 
for c :: "'a::topological_semigroup_mult"  | 
| 63546 | 877  | 
by (rule tendsto_mult [OF tendsto_const])  | 
878  | 
||
879  | 
lemma tendsto_mult_right: "(f \<longlongrightarrow> l) F \<Longrightarrow> ((\<lambda>x. (f x) * c) \<longlongrightarrow> l * c) F"  | 
|
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
880  | 
for c :: "'a::topological_semigroup_mult"  | 
| 63546 | 881  | 
by (rule tendsto_mult [OF _ tendsto_const])  | 
| 
61806
 
d2e62ae01cd8
Cauchy's integral formula for circles.  Starting to fix eventually_mono.
 
paulson <lp15@cam.ac.uk> 
parents: 
61799 
diff
changeset
 | 
882  | 
|
| 
70804
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
883  | 
lemma tendsto_mult_left_iff [simp]:  | 
| 
70803
 
2d658afa1fc0
Generalised two results concerning limits from the real numbers to type classes
 
paulson <lp15@cam.ac.uk> 
parents: 
70723 
diff
changeset
 | 
884  | 
   "c \<noteq> 0 \<Longrightarrow> tendsto(\<lambda>x. c * f x) (c * l) F \<longleftrightarrow> tendsto f l F" for c :: "'a::{topological_semigroup_mult,field}"
 | 
| 
70688
 
3d894e1cfc75
new material on Analysis, plus some rearrangements
 
paulson <lp15@cam.ac.uk> 
parents: 
70532 
diff
changeset
 | 
885  | 
by (auto simp: tendsto_mult_left dest: tendsto_mult_left [where c = "1/c"])  | 
| 
 
3d894e1cfc75
new material on Analysis, plus some rearrangements
 
paulson <lp15@cam.ac.uk> 
parents: 
70532 
diff
changeset
 | 
886  | 
|
| 
70804
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
887  | 
lemma tendsto_mult_right_iff [simp]:  | 
| 
70803
 
2d658afa1fc0
Generalised two results concerning limits from the real numbers to type classes
 
paulson <lp15@cam.ac.uk> 
parents: 
70723 
diff
changeset
 | 
888  | 
   "c \<noteq> 0 \<Longrightarrow> tendsto(\<lambda>x. f x * c) (l * c) F \<longleftrightarrow> tendsto f l F" for c :: "'a::{topological_semigroup_mult,field}"
 | 
| 
 
2d658afa1fc0
Generalised two results concerning limits from the real numbers to type classes
 
paulson <lp15@cam.ac.uk> 
parents: 
70723 
diff
changeset
 | 
889  | 
by (auto simp: tendsto_mult_right dest: tendsto_mult_left [where c = "1/c"])  | 
| 
70688
 
3d894e1cfc75
new material on Analysis, plus some rearrangements
 
paulson <lp15@cam.ac.uk> 
parents: 
70532 
diff
changeset
 | 
890  | 
|
| 
70804
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
891  | 
lemma tendsto_zero_mult_left_iff [simp]:  | 
| 
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
892  | 
  fixes c::"'a::{topological_semigroup_mult,field}" assumes "c \<noteq> 0" shows "(\<lambda>n. c * a n)\<longlonglongrightarrow> 0 \<longleftrightarrow> a \<longlonglongrightarrow> 0"
 | 
| 
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
893  | 
using assms tendsto_mult_left tendsto_mult_left_iff by fastforce  | 
| 
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
894  | 
|
| 
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
895  | 
lemma tendsto_zero_mult_right_iff [simp]:  | 
| 
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
896  | 
  fixes c::"'a::{topological_semigroup_mult,field}" assumes "c \<noteq> 0" shows "(\<lambda>n. a n * c)\<longlonglongrightarrow> 0 \<longleftrightarrow> a \<longlonglongrightarrow> 0"
 | 
| 
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
897  | 
using assms tendsto_mult_right tendsto_mult_right_iff by fastforce  | 
| 
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
898  | 
|
| 
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
899  | 
lemma tendsto_zero_divide_iff [simp]:  | 
| 
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
900  | 
  fixes c::"'a::{topological_semigroup_mult,field}" assumes "c \<noteq> 0" shows "(\<lambda>n. a n / c)\<longlonglongrightarrow> 0 \<longleftrightarrow> a \<longlonglongrightarrow> 0"
 | 
| 
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
901  | 
using tendsto_zero_mult_right_iff [of "1/c" a] assms by (simp add: field_simps)  | 
| 
 
4eef7c6ef7bf
More theorems about limits, including cancellation simprules
 
paulson <lp15@cam.ac.uk> 
parents: 
70803 
diff
changeset
 | 
902  | 
|
| 
70365
 
4df0628e8545
a few new lemmas and a bit of tidying
 
paulson <lp15@cam.ac.uk> 
parents: 
69918 
diff
changeset
 | 
903  | 
lemma lim_const_over_n [tendsto_intros]:  | 
| 
 
4df0628e8545
a few new lemmas and a bit of tidying
 
paulson <lp15@cam.ac.uk> 
parents: 
69918 
diff
changeset
 | 
904  | 
fixes a :: "'a::real_normed_field"  | 
| 
 
4df0628e8545
a few new lemmas and a bit of tidying
 
paulson <lp15@cam.ac.uk> 
parents: 
69918 
diff
changeset
 | 
905  | 
shows "(\<lambda>n. a / of_nat n) \<longlonglongrightarrow> 0"  | 
| 
 
4df0628e8545
a few new lemmas and a bit of tidying
 
paulson <lp15@cam.ac.uk> 
parents: 
69918 
diff
changeset
 | 
906  | 
using tendsto_mult [OF tendsto_const [of a] lim_1_over_n] by simp  | 
| 
 
4df0628e8545
a few new lemmas and a bit of tidying
 
paulson <lp15@cam.ac.uk> 
parents: 
69918 
diff
changeset
 | 
907  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
908  | 
lemmas continuous_of_real [continuous_intros] =  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
909  | 
bounded_linear.continuous [OF bounded_linear_of_real]  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
910  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
911  | 
lemmas continuous_scaleR [continuous_intros] =  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
912  | 
bounded_bilinear.continuous [OF bounded_bilinear_scaleR]  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
913  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
914  | 
lemmas continuous_mult [continuous_intros] =  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
915  | 
bounded_bilinear.continuous [OF bounded_bilinear_mult]  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
916  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
917  | 
lemmas continuous_on_of_real [continuous_intros] =  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
918  | 
bounded_linear.continuous_on [OF bounded_linear_of_real]  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
919  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
920  | 
lemmas continuous_on_scaleR [continuous_intros] =  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
921  | 
bounded_bilinear.continuous_on [OF bounded_bilinear_scaleR]  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
922  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
923  | 
lemmas continuous_on_mult [continuous_intros] =  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
924  | 
bounded_bilinear.continuous_on [OF bounded_bilinear_mult]  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
925  | 
|
| 
44568
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
926  | 
lemmas tendsto_mult_zero =  | 
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
927  | 
bounded_bilinear.tendsto_zero [OF bounded_bilinear_mult]  | 
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
928  | 
|
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
929  | 
lemmas tendsto_mult_left_zero =  | 
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
930  | 
bounded_bilinear.tendsto_left_zero [OF bounded_bilinear_mult]  | 
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
931  | 
|
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
932  | 
lemmas tendsto_mult_right_zero =  | 
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
933  | 
bounded_bilinear.tendsto_right_zero [OF bounded_bilinear_mult]  | 
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
934  | 
|
| 
68296
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
935  | 
|
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
936  | 
lemma continuous_mult_left:  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
937  | 
fixes c::"'a::real_normed_algebra"  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
938  | 
shows "continuous F f \<Longrightarrow> continuous F (\<lambda>x. c * f x)"  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
939  | 
by (rule continuous_mult [OF continuous_const])  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
940  | 
|
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
941  | 
lemma continuous_mult_right:  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
942  | 
fixes c::"'a::real_normed_algebra"  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
943  | 
shows "continuous F f \<Longrightarrow> continuous F (\<lambda>x. f x * c)"  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
944  | 
by (rule continuous_mult [OF _ continuous_const])  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
945  | 
|
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
946  | 
lemma continuous_on_mult_left:  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
947  | 
fixes c::"'a::real_normed_algebra"  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
948  | 
shows "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. c * f x)"  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
949  | 
by (rule continuous_on_mult [OF continuous_on_const])  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
950  | 
|
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
951  | 
lemma continuous_on_mult_right:  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
952  | 
fixes c::"'a::real_normed_algebra"  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
953  | 
shows "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. f x * c)"  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
954  | 
by (rule continuous_on_mult [OF _ continuous_on_const])  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
955  | 
|
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
956  | 
lemma continuous_on_mult_const [simp]:  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
957  | 
fixes c::"'a::real_normed_algebra"  | 
| 
69064
 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 
nipkow 
parents: 
68860 
diff
changeset
 | 
958  | 
shows "continuous_on s ((*) c)"  | 
| 
68296
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
959  | 
by (intro continuous_on_mult_left continuous_on_id)  | 
| 
 
69d680e94961
tidying and reorganisation around Cauchy Integral Theorem
 
paulson <lp15@cam.ac.uk> 
parents: 
68064 
diff
changeset
 | 
960  | 
|
| 
66793
 
deabce3ccf1f
new material about connectedness, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
66456 
diff
changeset
 | 
961  | 
lemma tendsto_divide_zero:  | 
| 
 
deabce3ccf1f
new material about connectedness, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
66456 
diff
changeset
 | 
962  | 
fixes c :: "'a::real_normed_field"  | 
| 
 
deabce3ccf1f
new material about connectedness, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
66456 
diff
changeset
 | 
963  | 
shows "(f \<longlongrightarrow> 0) F \<Longrightarrow> ((\<lambda>x. f x / c) \<longlongrightarrow> 0) F"  | 
| 
 
deabce3ccf1f
new material about connectedness, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
66456 
diff
changeset
 | 
964  | 
by (cases "c=0") (simp_all add: divide_inverse tendsto_mult_left_zero)  | 
| 
 
deabce3ccf1f
new material about connectedness, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
66456 
diff
changeset
 | 
965  | 
|
| 63546 | 966  | 
lemma tendsto_power [tendsto_intros]: "(f \<longlongrightarrow> a) F \<Longrightarrow> ((\<lambda>x. f x ^ n) \<longlongrightarrow> a ^ n) F"  | 
967  | 
  for f :: "'a \<Rightarrow> 'b::{power,real_normed_algebra}"
 | 
|
| 
58729
 
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
 
hoelzl 
parents: 
57512 
diff
changeset
 | 
968  | 
by (induct n) (simp_all add: tendsto_mult)  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
969  | 
|
| 
65680
 
378a2f11bec9
Simplification of some proofs. Also key lemmas using !! rather than ! in premises
 
paulson <lp15@cam.ac.uk> 
parents: 
65578 
diff
changeset
 | 
970  | 
lemma tendsto_null_power: "\<lbrakk>(f \<longlongrightarrow> 0) F; 0 < n\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x ^ n) \<longlongrightarrow> 0) F"  | 
| 
 
378a2f11bec9
Simplification of some proofs. Also key lemmas using !! rather than ! in premises
 
paulson <lp15@cam.ac.uk> 
parents: 
65578 
diff
changeset
 | 
971  | 
    for f :: "'a \<Rightarrow> 'b::{power,real_normed_algebra_1}"
 | 
| 
 
378a2f11bec9
Simplification of some proofs. Also key lemmas using !! rather than ! in premises
 
paulson <lp15@cam.ac.uk> 
parents: 
65578 
diff
changeset
 | 
972  | 
using tendsto_power [of f 0 F n] by (simp add: power_0_left)  | 
| 
 
378a2f11bec9
Simplification of some proofs. Also key lemmas using !! rather than ! in premises
 
paulson <lp15@cam.ac.uk> 
parents: 
65578 
diff
changeset
 | 
973  | 
|
| 63546 | 974  | 
lemma continuous_power [continuous_intros]: "continuous F f \<Longrightarrow> continuous F (\<lambda>x. (f x)^n)"  | 
975  | 
  for f :: "'a::t2_space \<Rightarrow> 'b::{power,real_normed_algebra}"
 | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
976  | 
unfolding continuous_def by (rule tendsto_power)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
977  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
978  | 
lemma continuous_on_power [continuous_intros]:  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
979  | 
  fixes f :: "_ \<Rightarrow> 'b::{power,real_normed_algebra}"
 | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
980  | 
shows "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. (f x)^n)"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
981  | 
unfolding continuous_on_def by (auto intro: tendsto_power)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
982  | 
|
| 64272 | 983  | 
lemma tendsto_prod [tendsto_intros]:  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
984  | 
  fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::{real_normed_algebra,comm_ring_1}"
 | 
| 63915 | 985  | 
shows "(\<And>i. i \<in> S \<Longrightarrow> (f i \<longlongrightarrow> L i) F) \<Longrightarrow> ((\<lambda>x. \<Prod>i\<in>S. f i x) \<longlongrightarrow> (\<Prod>i\<in>S. L i)) F"  | 
986  | 
by (induct S rule: infinite_finite_induct) (simp_all add: tendsto_mult)  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
987  | 
|
| 64272 | 988  | 
lemma continuous_prod [continuous_intros]:  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
989  | 
  fixes f :: "'a \<Rightarrow> 'b::t2_space \<Rightarrow> 'c::{real_normed_algebra,comm_ring_1}"
 | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
990  | 
shows "(\<And>i. i \<in> S \<Longrightarrow> continuous F (f i)) \<Longrightarrow> continuous F (\<lambda>x. \<Prod>i\<in>S. f i x)"  | 
| 64272 | 991  | 
unfolding continuous_def by (rule tendsto_prod)  | 
992  | 
||
993  | 
lemma continuous_on_prod [continuous_intros]:  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
994  | 
  fixes f :: "'a \<Rightarrow> _ \<Rightarrow> 'c::{real_normed_algebra,comm_ring_1}"
 | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
995  | 
shows "(\<And>i. i \<in> S \<Longrightarrow> continuous_on s (f i)) \<Longrightarrow> continuous_on s (\<lambda>x. \<Prod>i\<in>S. f i x)"  | 
| 64272 | 996  | 
unfolding continuous_on_def by (auto intro: tendsto_prod)  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
997  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
998  | 
lemma tendsto_of_real_iff:  | 
| 63546 | 999  | 
"((\<lambda>x. of_real (f x) :: 'a::real_normed_div_algebra) \<longlongrightarrow> of_real c) F \<longleftrightarrow> (f \<longlongrightarrow> c) F"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1000  | 
unfolding tendsto_iff by simp  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1001  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1002  | 
lemma tendsto_add_const_iff:  | 
| 
74475
 
409ca22dee4c
new notion of infinite sums in HOL-Analysis, ordering on complex numbers
 
eberlm <eberlm@in.tum.de> 
parents: 
73885 
diff
changeset
 | 
1003  | 
"((\<lambda>x. c + f x :: 'a::topological_group_add) \<longlongrightarrow> c + d) F \<longleftrightarrow> (f \<longlongrightarrow> d) F"  | 
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
1004  | 
using tendsto_add[OF tendsto_const[of c], of f d]  | 
| 63546 | 1005  | 
and tendsto_add[OF tendsto_const[of "-c"], of "\<lambda>x. c + f x" "c + d"] by auto  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1006  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1007  | 
|
| 
68860
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1008  | 
class topological_monoid_mult = topological_semigroup_mult + monoid_mult  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1009  | 
class topological_comm_monoid_mult = topological_monoid_mult + comm_monoid_mult  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1010  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1011  | 
lemma tendsto_power_strong [tendsto_intros]:  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1012  | 
fixes f :: "_ \<Rightarrow> 'b :: topological_monoid_mult"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1013  | 
assumes "(f \<longlongrightarrow> a) F" "(g \<longlongrightarrow> b) F"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1014  | 
shows "((\<lambda>x. f x ^ g x) \<longlongrightarrow> a ^ b) F"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1015  | 
proof -  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1016  | 
have "((\<lambda>x. f x ^ b) \<longlongrightarrow> a ^ b) F"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1017  | 
by (induction b) (auto intro: tendsto_intros assms)  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1018  | 
also from assms(2) have "eventually (\<lambda>x. g x = b) F"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1019  | 
by (simp add: nhds_discrete filterlim_principal)  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1020  | 
hence "eventually (\<lambda>x. f x ^ b = f x ^ g x) F"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1021  | 
by eventually_elim simp  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1022  | 
hence "((\<lambda>x. f x ^ b) \<longlongrightarrow> a ^ b) F \<longleftrightarrow> ((\<lambda>x. f x ^ g x) \<longlongrightarrow> a ^ b) F"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1023  | 
by (intro filterlim_cong refl)  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1024  | 
finally show ?thesis .  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1025  | 
qed  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1026  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1027  | 
lemma continuous_mult' [continuous_intros]:  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1028  | 
fixes f g :: "_ \<Rightarrow> 'b::topological_semigroup_mult"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1029  | 
shows "continuous F f \<Longrightarrow> continuous F g \<Longrightarrow> continuous F (\<lambda>x. f x * g x)"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1030  | 
unfolding continuous_def by (rule tendsto_mult)  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1031  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1032  | 
lemma continuous_power' [continuous_intros]:  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1033  | 
fixes f :: "_ \<Rightarrow> 'b::topological_monoid_mult"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1034  | 
shows "continuous F f \<Longrightarrow> continuous F g \<Longrightarrow> continuous F (\<lambda>x. f x ^ g x)"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1035  | 
unfolding continuous_def by (rule tendsto_power_strong) auto  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1036  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1037  | 
lemma continuous_on_mult' [continuous_intros]:  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1038  | 
fixes f g :: "_ \<Rightarrow> 'b::topological_semigroup_mult"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1039  | 
shows "continuous_on A f \<Longrightarrow> continuous_on A g \<Longrightarrow> continuous_on A (\<lambda>x. f x * g x)"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1040  | 
unfolding continuous_on_def by (auto intro: tendsto_mult)  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1041  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1042  | 
lemma continuous_on_power' [continuous_intros]:  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1043  | 
fixes f :: "_ \<Rightarrow> 'b::topological_monoid_mult"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1044  | 
shows "continuous_on A f \<Longrightarrow> continuous_on A g \<Longrightarrow> continuous_on A (\<lambda>x. f x ^ g x)"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1045  | 
unfolding continuous_on_def by (auto intro: tendsto_power_strong)  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1046  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1047  | 
lemma tendsto_mult_one:  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1048  | 
fixes f g :: "_ \<Rightarrow> 'b::topological_monoid_mult"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1049  | 
shows "(f \<longlongrightarrow> 1) F \<Longrightarrow> (g \<longlongrightarrow> 1) F \<Longrightarrow> ((\<lambda>x. f x * g x) \<longlongrightarrow> 1) F"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1050  | 
by (drule (1) tendsto_mult) simp  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1051  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1052  | 
lemma tendsto_prod' [tendsto_intros]:  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1053  | 
fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::topological_comm_monoid_mult"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1054  | 
shows "(\<And>i. i \<in> I \<Longrightarrow> (f i \<longlongrightarrow> a i) F) \<Longrightarrow> ((\<lambda>x. \<Prod>i\<in>I. f i x) \<longlongrightarrow> (\<Prod>i\<in>I. a i)) F"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1055  | 
by (induct I rule: infinite_finite_induct) (simp_all add: tendsto_mult)  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1056  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1057  | 
lemma tendsto_one_prod':  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1058  | 
fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::topological_comm_monoid_mult"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1059  | 
assumes "\<And>i. i \<in> I \<Longrightarrow> ((\<lambda>x. f x i) \<longlongrightarrow> 1) F"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1060  | 
shows "((\<lambda>i. prod (f i) I) \<longlongrightarrow> 1) F"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1061  | 
using tendsto_prod' [of I "\<lambda>x y. f y x" "\<lambda>x. 1"] assms by simp  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1062  | 
|
| 
76724
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1063  | 
lemma LIMSEQ_prod_0:  | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1064  | 
  fixes f :: "nat \<Rightarrow> 'a::{semidom,topological_space}"
 | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1065  | 
assumes "f i = 0"  | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1066  | 
  shows "(\<lambda>n. prod f {..n}) \<longlonglongrightarrow> 0"
 | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1067  | 
proof (subst tendsto_cong)  | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1068  | 
  show "\<forall>\<^sub>F n in sequentially. prod f {..n} = 0"
 | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1069  | 
using assms eventually_at_top_linorder by auto  | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1070  | 
qed auto  | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1071  | 
|
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1072  | 
lemma LIMSEQ_prod_nonneg:  | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1073  | 
  fixes f :: "nat \<Rightarrow> 'a::{linordered_semidom,linorder_topology}"
 | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1074  | 
  assumes 0: "\<And>n. 0 \<le> f n" and a: "(\<lambda>n. prod f {..n}) \<longlonglongrightarrow> a"
 | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1075  | 
shows "a \<ge> 0"  | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1076  | 
by (simp add: "0" prod_nonneg LIMSEQ_le_const [OF a])  | 
| 
 
7ff71bdcf731
Additional new material about infinite products, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
74513 
diff
changeset
 | 
1077  | 
|
| 
68860
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1078  | 
lemma continuous_prod' [continuous_intros]:  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1079  | 
fixes f :: "'a \<Rightarrow> 'b::t2_space \<Rightarrow> 'c::topological_comm_monoid_mult"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1080  | 
shows "(\<And>i. i \<in> I \<Longrightarrow> continuous F (f i)) \<Longrightarrow> continuous F (\<lambda>x. \<Prod>i\<in>I. f i x)"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1081  | 
unfolding continuous_def by (rule tendsto_prod')  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1082  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1083  | 
lemma continuous_on_prod' [continuous_intros]:  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1084  | 
fixes f :: "'a \<Rightarrow> 'b::topological_space \<Rightarrow> 'c::topological_comm_monoid_mult"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1085  | 
shows "(\<And>i. i \<in> I \<Longrightarrow> continuous_on S (f i)) \<Longrightarrow> continuous_on S (\<lambda>x. \<Prod>i\<in>I. f i x)"  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1086  | 
unfolding continuous_on_def by (auto intro: tendsto_prod')  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1087  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1088  | 
instance nat :: topological_comm_monoid_mult  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1089  | 
by standard  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1090  | 
(simp add: nhds_discrete principal_prod_principal filterlim_principal eventually_principal)  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1091  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1092  | 
instance int :: topological_comm_monoid_mult  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1093  | 
by standard  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1094  | 
(simp add: nhds_discrete principal_prod_principal filterlim_principal eventually_principal)  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1095  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1096  | 
class comm_real_normed_algebra_1 = real_normed_algebra_1 + comm_monoid_mult  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1097  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1098  | 
context real_normed_field  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1099  | 
begin  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1100  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1101  | 
subclass comm_real_normed_algebra_1  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1102  | 
proof  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1103  | 
from norm_mult[of "1 :: 'a" 1] show "norm 1 = 1" by simp  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1104  | 
qed (simp_all add: norm_mult)  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1105  | 
|
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1106  | 
end  | 
| 
 
f443ec10447d
Some basic materials on filters and topology
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
68721 
diff
changeset
 | 
1107  | 
|
| 60758 | 1108  | 
subsubsection \<open>Inverse and division\<close>  | 
| 31355 | 1109  | 
|
1110  | 
lemma (in bounded_bilinear) Zfun_prod_Bfun:  | 
|
| 44195 | 1111  | 
assumes f: "Zfun f F"  | 
| 63546 | 1112  | 
and g: "Bfun g F"  | 
| 44195 | 1113  | 
shows "Zfun (\<lambda>x. f x ** g x) F"  | 
| 31355 | 1114  | 
proof -  | 
1115  | 
obtain K where K: "0 \<le> K"  | 
|
1116  | 
and norm_le: "\<And>x y. norm (x ** y) \<le> norm x * norm y * K"  | 
|
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
1117  | 
using nonneg_bounded by blast  | 
| 31355 | 1118  | 
obtain B where B: "0 < B"  | 
| 44195 | 1119  | 
and norm_g: "eventually (\<lambda>x. norm (g x) \<le> B) F"  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
1120  | 
using g by (rule BfunE)  | 
| 44195 | 1121  | 
have "eventually (\<lambda>x. norm (f x ** g x) \<le> norm (f x) * (B * K)) F"  | 
| 46887 | 1122  | 
using norm_g proof eventually_elim  | 
1123  | 
case (elim x)  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
1124  | 
have "norm (f x ** g x) \<le> norm (f x) * norm (g x) * K"  | 
| 31355 | 1125  | 
by (rule norm_le)  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
1126  | 
also have "\<dots> \<le> norm (f x) * B * K"  | 
| 63546 | 1127  | 
by (intro mult_mono' order_refl norm_g norm_ge_zero mult_nonneg_nonneg K elim)  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
1128  | 
also have "\<dots> = norm (f x) * (B * K)"  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57447 
diff
changeset
 | 
1129  | 
by (rule mult.assoc)  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
1130  | 
finally show "norm (f x ** g x) \<le> norm (f x) * (B * K)" .  | 
| 31355 | 1131  | 
qed  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
1132  | 
with f show ?thesis  | 
| 
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
1133  | 
by (rule Zfun_imp_Zfun)  | 
| 31355 | 1134  | 
qed  | 
1135  | 
||
1136  | 
lemma (in bounded_bilinear) Bfun_prod_Zfun:  | 
|
| 44195 | 1137  | 
assumes f: "Bfun f F"  | 
| 63546 | 1138  | 
and g: "Zfun g F"  | 
| 44195 | 1139  | 
shows "Zfun (\<lambda>x. f x ** g x) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
1140  | 
using flip g f by (rule bounded_bilinear.Zfun_prod_Bfun)  | 
| 31355 | 1141  | 
|
1142  | 
lemma Bfun_inverse:  | 
|
1143  | 
fixes a :: "'a::real_normed_div_algebra"  | 
|
| 61973 | 1144  | 
assumes f: "(f \<longlongrightarrow> a) F"  | 
| 31355 | 1145  | 
assumes a: "a \<noteq> 0"  | 
| 44195 | 1146  | 
shows "Bfun (\<lambda>x. inverse (f x)) F"  | 
| 31355 | 1147  | 
proof -  | 
1148  | 
from a have "0 < norm a" by simp  | 
|
| 63546 | 1149  | 
then have "\<exists>r>0. r < norm a" by (rule dense)  | 
1150  | 
then obtain r where r1: "0 < r" and r2: "r < norm a"  | 
|
1151  | 
by blast  | 
|
| 44195 | 1152  | 
have "eventually (\<lambda>x. dist (f x) a < r) F"  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
1153  | 
using tendstoD [OF f r1] by blast  | 
| 63546 | 1154  | 
then have "eventually (\<lambda>x. norm (inverse (f x)) \<le> inverse (norm a - r)) F"  | 
| 46887 | 1155  | 
proof eventually_elim  | 
1156  | 
case (elim x)  | 
|
| 63546 | 1157  | 
then have 1: "norm (f x - a) < r"  | 
| 31355 | 1158  | 
by (simp add: dist_norm)  | 
| 63546 | 1159  | 
then have 2: "f x \<noteq> 0" using r2 by auto  | 
1160  | 
then have "norm (inverse (f x)) = inverse (norm (f x))"  | 
|
| 31355 | 1161  | 
by (rule nonzero_norm_inverse)  | 
1162  | 
also have "\<dots> \<le> inverse (norm a - r)"  | 
|
1163  | 
proof (rule le_imp_inverse_le)  | 
|
| 63546 | 1164  | 
show "0 < norm a - r"  | 
1165  | 
using r2 by simp  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
1166  | 
have "norm a - norm (f x) \<le> norm (a - f x)"  | 
| 31355 | 1167  | 
by (rule norm_triangle_ineq2)  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
1168  | 
also have "\<dots> = norm (f x - a)"  | 
| 31355 | 1169  | 
by (rule norm_minus_commute)  | 
1170  | 
also have "\<dots> < r" using 1 .  | 
|
| 63546 | 1171  | 
finally show "norm a - r \<le> norm (f x)"  | 
1172  | 
by simp  | 
|
| 31355 | 1173  | 
qed  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
1174  | 
finally show "norm (inverse (f x)) \<le> inverse (norm a - r)" .  | 
| 31355 | 1175  | 
qed  | 
| 63546 | 1176  | 
then show ?thesis by (rule BfunI)  | 
| 31355 | 1177  | 
qed  | 
1178  | 
||
| 31565 | 1179  | 
lemma tendsto_inverse [tendsto_intros]:  | 
| 31355 | 1180  | 
fixes a :: "'a::real_normed_div_algebra"  | 
| 61973 | 1181  | 
assumes f: "(f \<longlongrightarrow> a) F"  | 
| 63546 | 1182  | 
and a: "a \<noteq> 0"  | 
| 61973 | 1183  | 
shows "((\<lambda>x. inverse (f x)) \<longlongrightarrow> inverse a) F"  | 
| 31355 | 1184  | 
proof -  | 
1185  | 
from a have "0 < norm a" by simp  | 
|
| 44195 | 1186  | 
with f have "eventually (\<lambda>x. dist (f x) a < norm a) F"  | 
| 31355 | 1187  | 
by (rule tendstoD)  | 
| 44195 | 1188  | 
then have "eventually (\<lambda>x. f x \<noteq> 0) F"  | 
| 61810 | 1189  | 
unfolding dist_norm by (auto elim!: eventually_mono)  | 
| 44627 | 1190  | 
with a have "eventually (\<lambda>x. inverse (f x) - inverse a =  | 
1191  | 
- (inverse (f x) * (f x - a) * inverse a)) F"  | 
|
| 61810 | 1192  | 
by (auto elim!: eventually_mono simp: inverse_diff_inverse)  | 
| 44627 | 1193  | 
moreover have "Zfun (\<lambda>x. - (inverse (f x) * (f x - a) * inverse a)) F"  | 
1194  | 
by (intro Zfun_minus Zfun_mult_left  | 
|
1195  | 
bounded_bilinear.Bfun_prod_Zfun [OF bounded_bilinear_mult]  | 
|
1196  | 
Bfun_inverse [OF f a] f [unfolded tendsto_Zfun_iff])  | 
|
1197  | 
ultimately show ?thesis  | 
|
1198  | 
unfolding tendsto_Zfun_iff by (rule Zfun_ssubst)  | 
|
| 31355 | 1199  | 
qed  | 
1200  | 
||
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1201  | 
lemma continuous_inverse:  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1202  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_div_algebra"  | 
| 63546 | 1203  | 
assumes "continuous F f"  | 
1204  | 
and "f (Lim F (\<lambda>x. x)) \<noteq> 0"  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1205  | 
shows "continuous F (\<lambda>x. inverse (f x))"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1206  | 
using assms unfolding continuous_def by (rule tendsto_inverse)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1207  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1208  | 
lemma continuous_at_within_inverse[continuous_intros]:  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1209  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_div_algebra"  | 
| 63546 | 1210  | 
assumes "continuous (at a within s) f"  | 
1211  | 
and "f a \<noteq> 0"  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1212  | 
shows "continuous (at a within s) (\<lambda>x. inverse (f x))"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1213  | 
using assms unfolding continuous_within by (rule tendsto_inverse)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1214  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
1215  | 
lemma continuous_on_inverse[continuous_intros]:  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1216  | 
fixes f :: "'a::topological_space \<Rightarrow> 'b::real_normed_div_algebra"  | 
| 63546 | 1217  | 
assumes "continuous_on s f"  | 
1218  | 
and "\<forall>x\<in>s. f x \<noteq> 0"  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1219  | 
shows "continuous_on s (\<lambda>x. inverse (f x))"  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
1220  | 
using assms unfolding continuous_on_def by (blast intro: tendsto_inverse)  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1221  | 
|
| 31565 | 1222  | 
lemma tendsto_divide [tendsto_intros]:  | 
| 31355 | 1223  | 
fixes a b :: "'a::real_normed_field"  | 
| 63546 | 1224  | 
shows "(f \<longlongrightarrow> a) F \<Longrightarrow> (g \<longlongrightarrow> b) F \<Longrightarrow> b \<noteq> 0 \<Longrightarrow> ((\<lambda>x. f x / g x) \<longlongrightarrow> a / b) F"  | 
| 
44282
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
1225  | 
by (simp add: tendsto_mult tendsto_inverse divide_inverse)  | 
| 31355 | 1226  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1227  | 
lemma continuous_divide:  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1228  | 
fixes f g :: "'a::t2_space \<Rightarrow> 'b::real_normed_field"  | 
| 63546 | 1229  | 
assumes "continuous F f"  | 
1230  | 
and "continuous F g"  | 
|
1231  | 
and "g (Lim F (\<lambda>x. x)) \<noteq> 0"  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1232  | 
shows "continuous F (\<lambda>x. (f x) / (g x))"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1233  | 
using assms unfolding continuous_def by (rule tendsto_divide)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1234  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1235  | 
lemma continuous_at_within_divide[continuous_intros]:  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1236  | 
fixes f g :: "'a::t2_space \<Rightarrow> 'b::real_normed_field"  | 
| 63546 | 1237  | 
assumes "continuous (at a within s) f" "continuous (at a within s) g"  | 
1238  | 
and "g a \<noteq> 0"  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1239  | 
shows "continuous (at a within s) (\<lambda>x. (f x) / (g x))"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1240  | 
using assms unfolding continuous_within by (rule tendsto_divide)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1241  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1242  | 
lemma isCont_divide[continuous_intros, simp]:  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1243  | 
fixes f g :: "'a::t2_space \<Rightarrow> 'b::real_normed_field"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1244  | 
assumes "isCont f a" "isCont g a" "g a \<noteq> 0"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1245  | 
shows "isCont (\<lambda>x. (f x) / g x) a"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1246  | 
using assms unfolding continuous_at by (rule tendsto_divide)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1247  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
1248  | 
lemma continuous_on_divide[continuous_intros]:  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1249  | 
fixes f :: "'a::topological_space \<Rightarrow> 'b::real_normed_field"  | 
| 63546 | 1250  | 
assumes "continuous_on s f" "continuous_on s g"  | 
1251  | 
and "\<forall>x\<in>s. g x \<noteq> 0"  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1252  | 
shows "continuous_on s (\<lambda>x. (f x) / (g x))"  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
1253  | 
using assms unfolding continuous_on_def by (blast intro: tendsto_divide)  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1254  | 
|
| 
71837
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1255  | 
lemma tendsto_power_int [tendsto_intros]:  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1256  | 
fixes a :: "'a::real_normed_div_algebra"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1257  | 
assumes f: "(f \<longlongrightarrow> a) F"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1258  | 
and a: "a \<noteq> 0"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1259  | 
shows "((\<lambda>x. power_int (f x) n) \<longlongrightarrow> power_int a n) F"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1260  | 
using assms by (cases n rule: int_cases4) (auto intro!: tendsto_intros simp: power_int_minus)  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1261  | 
|
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1262  | 
lemma continuous_power_int:  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1263  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_div_algebra"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1264  | 
assumes "continuous F f"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1265  | 
and "f (Lim F (\<lambda>x. x)) \<noteq> 0"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1266  | 
shows "continuous F (\<lambda>x. power_int (f x) n)"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1267  | 
using assms unfolding continuous_def by (rule tendsto_power_int)  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1268  | 
|
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1269  | 
lemma continuous_at_within_power_int[continuous_intros]:  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1270  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_div_algebra"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1271  | 
assumes "continuous (at a within s) f"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1272  | 
and "f a \<noteq> 0"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1273  | 
shows "continuous (at a within s) (\<lambda>x. power_int (f x) n)"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1274  | 
using assms unfolding continuous_within by (rule tendsto_power_int)  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1275  | 
|
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1276  | 
lemma continuous_on_power_int [continuous_intros]:  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1277  | 
fixes f :: "'a::topological_space \<Rightarrow> 'b::real_normed_div_algebra"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1278  | 
assumes "continuous_on s f" and "\<forall>x\<in>s. f x \<noteq> 0"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1279  | 
shows "continuous_on s (\<lambda>x. power_int (f x) n)"  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1280  | 
using assms unfolding continuous_on_def by (blast intro: tendsto_power_int)  | 
| 
 
dca11678c495
new constant power_int in HOL
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
71827 
diff
changeset
 | 
1281  | 
|
| 63546 | 1282  | 
lemma tendsto_sgn [tendsto_intros]: "(f \<longlongrightarrow> l) F \<Longrightarrow> l \<noteq> 0 \<Longrightarrow> ((\<lambda>x. sgn (f x)) \<longlongrightarrow> sgn l) F"  | 
1283  | 
for l :: "'a::real_normed_vector"  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
1284  | 
unfolding sgn_div_norm by (simp add: tendsto_intros)  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
1285  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1286  | 
lemma continuous_sgn:  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1287  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
| 63546 | 1288  | 
assumes "continuous F f"  | 
1289  | 
and "f (Lim F (\<lambda>x. x)) \<noteq> 0"  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1290  | 
shows "continuous F (\<lambda>x. sgn (f x))"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1291  | 
using assms unfolding continuous_def by (rule tendsto_sgn)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1292  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1293  | 
lemma continuous_at_within_sgn[continuous_intros]:  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1294  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
| 63546 | 1295  | 
assumes "continuous (at a within s) f"  | 
1296  | 
and "f a \<noteq> 0"  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1297  | 
shows "continuous (at a within s) (\<lambda>x. sgn (f x))"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1298  | 
using assms unfolding continuous_within by (rule tendsto_sgn)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1299  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1300  | 
lemma isCont_sgn[continuous_intros]:  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1301  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
| 63546 | 1302  | 
assumes "isCont f a"  | 
1303  | 
and "f a \<noteq> 0"  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1304  | 
shows "isCont (\<lambda>x. sgn (f x)) a"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1305  | 
using assms unfolding continuous_at by (rule tendsto_sgn)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1306  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
1307  | 
lemma continuous_on_sgn[continuous_intros]:  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1308  | 
fixes f :: "'a::topological_space \<Rightarrow> 'b::real_normed_vector"  | 
| 63546 | 1309  | 
assumes "continuous_on s f"  | 
1310  | 
and "\<forall>x\<in>s. f x \<noteq> 0"  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1311  | 
shows "continuous_on s (\<lambda>x. sgn (f x))"  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
1312  | 
using assms unfolding continuous_on_def by (blast intro: tendsto_sgn)  | 
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
1313  | 
|
| 50325 | 1314  | 
lemma filterlim_at_infinity:  | 
| 61076 | 1315  | 
fixes f :: "_ \<Rightarrow> 'a::real_normed_vector"  | 
| 50325 | 1316  | 
assumes "0 \<le> c"  | 
1317  | 
shows "(LIM x F. f x :> at_infinity) \<longleftrightarrow> (\<forall>r>c. eventually (\<lambda>x. r \<le> norm (f x)) F)"  | 
|
1318  | 
unfolding filterlim_iff eventually_at_infinity  | 
|
1319  | 
proof safe  | 
|
| 63546 | 1320  | 
fix P :: "'a \<Rightarrow> bool"  | 
1321  | 
fix b  | 
|
| 50325 | 1322  | 
assume *: "\<forall>r>c. eventually (\<lambda>x. r \<le> norm (f x)) F"  | 
| 63546 | 1323  | 
assume P: "\<forall>x. b \<le> norm x \<longrightarrow> P x"  | 
| 50325 | 1324  | 
have "max b (c + 1) > c" by auto  | 
1325  | 
with * have "eventually (\<lambda>x. max b (c + 1) \<le> norm (f x)) F"  | 
|
1326  | 
by auto  | 
|
1327  | 
then show "eventually (\<lambda>x. P (f x)) F"  | 
|
1328  | 
proof eventually_elim  | 
|
| 63546 | 1329  | 
case (elim x)  | 
| 50325 | 1330  | 
with P show "P (f x)" by auto  | 
1331  | 
qed  | 
|
1332  | 
qed force  | 
|
1333  | 
||
| 
67371
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1334  | 
lemma filterlim_at_infinity_imp_norm_at_top:  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1335  | 
fixes F  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1336  | 
assumes "filterlim f at_infinity F"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1337  | 
shows "filterlim (\<lambda>x. norm (f x)) at_top F"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1338  | 
proof -  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1339  | 
  {
 | 
| 68611 | 1340  | 
fix r :: real  | 
1341  | 
have "\<forall>\<^sub>F x in F. r \<le> norm (f x)" using filterlim_at_infinity[of 0 f F] assms  | 
|
1342  | 
by (cases "r > 0")  | 
|
| 
67371
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1343  | 
(auto simp: not_less intro: always_eventually order.trans[OF _ norm_ge_zero])  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1344  | 
}  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1345  | 
thus ?thesis by (auto simp: filterlim_at_top)  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1346  | 
qed  | 
| 68611 | 1347  | 
|
| 
67371
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1348  | 
lemma filterlim_norm_at_top_imp_at_infinity:  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1349  | 
fixes F  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1350  | 
assumes "filterlim (\<lambda>x. norm (f x)) at_top F"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1351  | 
shows "filterlim f at_infinity F"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1352  | 
using filterlim_at_infinity[of 0 f F] assms by (auto simp: filterlim_at_top)  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1353  | 
|
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1354  | 
lemma filterlim_norm_at_top: "filterlim norm at_top at_infinity"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1355  | 
by (rule filterlim_at_infinity_imp_norm_at_top) (rule filterlim_ident)  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1356  | 
|
| 
67950
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1357  | 
lemma filterlim_at_infinity_conv_norm_at_top:  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1358  | 
"filterlim f at_infinity G \<longleftrightarrow> filterlim (\<lambda>x. norm (f x)) at_top G"  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1359  | 
by (auto simp: filterlim_at_infinity[OF order.refl] filterlim_at_top_gt[of _ _ 0])  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1360  | 
|
| 
67371
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1361  | 
lemma eventually_not_equal_at_infinity:  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1362  | 
  "eventually (\<lambda>x. x \<noteq> (a :: 'a :: {real_normed_vector})) at_infinity"
 | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1363  | 
proof -  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1364  | 
from filterlim_norm_at_top[where 'a = 'a]  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1365  | 
have "\<forall>\<^sub>F x in at_infinity. norm a < norm (x::'a)" by (auto simp: filterlim_at_top_dense)  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1366  | 
thus ?thesis by eventually_elim auto  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1367  | 
qed  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1368  | 
|
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1369  | 
lemma filterlim_int_of_nat_at_topD:  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1370  | 
fixes F  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1371  | 
assumes "filterlim (\<lambda>x. f (int x)) F at_top"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1372  | 
shows "filterlim f F at_top"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1373  | 
proof -  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1374  | 
have "filterlim (\<lambda>x. f (int (nat x))) F at_top"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1375  | 
by (rule filterlim_compose[OF assms filterlim_nat_sequentially])  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1376  | 
also have "?this \<longleftrightarrow> filterlim f F at_top"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1377  | 
by (intro filterlim_cong refl eventually_mono [OF eventually_ge_at_top[of "0::int"]]) auto  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1378  | 
finally show ?thesis .  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1379  | 
qed  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1380  | 
|
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1381  | 
lemma filterlim_int_sequentially [tendsto_intros]:  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1382  | 
"filterlim int at_top sequentially"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1383  | 
unfolding filterlim_at_top  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1384  | 
proof  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1385  | 
fix C :: int  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1386  | 
show "eventually (\<lambda>n. int n \<ge> C) at_top"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1387  | 
using eventually_ge_at_top[of "nat \<lceil>C\<rceil>"] by eventually_elim linarith  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1388  | 
qed  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1389  | 
|
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1390  | 
lemma filterlim_real_of_int_at_top [tendsto_intros]:  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1391  | 
"filterlim real_of_int at_top at_top"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1392  | 
unfolding filterlim_at_top  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1393  | 
proof  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1394  | 
fix C :: real  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1395  | 
show "eventually (\<lambda>n. real_of_int n \<ge> C) at_top"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1396  | 
using eventually_ge_at_top[of "\<lceil>C\<rceil>"] by eventually_elim linarith  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1397  | 
qed  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1398  | 
|
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1399  | 
lemma filterlim_abs_real: "filterlim (abs::real \<Rightarrow> real) at_top at_top"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1400  | 
proof (subst filterlim_cong[OF refl refl])  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1401  | 
from eventually_ge_at_top[of "0::real"] show "eventually (\<lambda>x::real. \<bar>x\<bar> = x) at_top"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1402  | 
by eventually_elim simp  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1403  | 
qed (simp_all add: filterlim_ident)  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1404  | 
|
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1405  | 
lemma filterlim_of_real_at_infinity [tendsto_intros]:  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1406  | 
"filterlim (of_real :: real \<Rightarrow> 'a :: real_normed_algebra_1) at_infinity at_top"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1407  | 
by (intro filterlim_norm_at_top_imp_at_infinity) (auto simp: filterlim_abs_real)  | 
| 68611 | 1408  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1409  | 
lemma not_tendsto_and_filterlim_at_infinity:  | 
| 63546 | 1410  | 
fixes c :: "'a::real_normed_vector"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1411  | 
assumes "F \<noteq> bot"  | 
| 63546 | 1412  | 
and "(f \<longlongrightarrow> c) F"  | 
1413  | 
and "filterlim f at_infinity F"  | 
|
1414  | 
shows False  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1415  | 
proof -  | 
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
1416  | 
from tendstoD[OF assms(2), of "1/2"]  | 
| 63546 | 1417  | 
have "eventually (\<lambda>x. dist (f x) c < 1/2) F"  | 
1418  | 
by simp  | 
|
1419  | 
moreover  | 
|
1420  | 
from filterlim_at_infinity[of "norm c" f F] assms(3)  | 
|
1421  | 
have "eventually (\<lambda>x. norm (f x) \<ge> norm c + 1) F" by simp  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1422  | 
ultimately have "eventually (\<lambda>x. False) F"  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1423  | 
proof eventually_elim  | 
| 63546 | 1424  | 
fix x  | 
1425  | 
assume A: "dist (f x) c < 1/2"  | 
|
1426  | 
assume "norm (f x) \<ge> norm c + 1"  | 
|
| 
62379
 
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
 
paulson <lp15@cam.ac.uk> 
parents: 
62369 
diff
changeset
 | 
1427  | 
also have "norm (f x) = dist (f x) 0" by simp  | 
| 63546 | 1428  | 
also have "\<dots> \<le> dist (f x) c + dist c 0" by (rule dist_triangle)  | 
| 
62379
 
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
 
paulson <lp15@cam.ac.uk> 
parents: 
62369 
diff
changeset
 | 
1429  | 
finally show False using A by simp  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1430  | 
qed  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1431  | 
with assms show False by simp  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1432  | 
qed  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1433  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1434  | 
lemma filterlim_at_infinity_imp_not_convergent:  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1435  | 
assumes "filterlim f at_infinity sequentially"  | 
| 63546 | 1436  | 
shows "\<not> convergent f"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1437  | 
by (rule notI, rule not_tendsto_and_filterlim_at_infinity[OF _ _ assms])  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1438  | 
(simp_all add: convergent_LIMSEQ_iff)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1439  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1440  | 
lemma filterlim_at_infinity_imp_eventually_ne:  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1441  | 
assumes "filterlim f at_infinity F"  | 
| 63546 | 1442  | 
shows "eventually (\<lambda>z. f z \<noteq> c) F"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1443  | 
proof -  | 
| 63546 | 1444  | 
have "norm c + 1 > 0"  | 
1445  | 
by (intro add_nonneg_pos) simp_all  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1446  | 
with filterlim_at_infinity[OF order.refl, of f F] assms  | 
| 63546 | 1447  | 
have "eventually (\<lambda>z. norm (f z) \<ge> norm c + 1) F"  | 
1448  | 
by blast  | 
|
1449  | 
then show ?thesis  | 
|
1450  | 
by eventually_elim auto  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1451  | 
qed  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1452  | 
|
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
1453  | 
lemma tendsto_of_nat [tendsto_intros]:  | 
| 63546 | 1454  | 
"filterlim (of_nat :: nat \<Rightarrow> 'a::real_normed_algebra_1) at_infinity sequentially"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1455  | 
proof (subst filterlim_at_infinity[OF order.refl], intro allI impI)  | 
| 63040 | 1456  | 
fix r :: real  | 
1457  | 
assume r: "r > 0"  | 
|
1458  | 
define n where "n = nat \<lceil>r\<rceil>"  | 
|
| 63546 | 1459  | 
from r have n: "\<forall>m\<ge>n. of_nat m \<ge> r"  | 
1460  | 
unfolding n_def by linarith  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1461  | 
from eventually_ge_at_top[of n] show "eventually (\<lambda>m. norm (of_nat m :: 'a) \<ge> r) sequentially"  | 
| 63546 | 1462  | 
by eventually_elim (use n in simp_all)  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1463  | 
qed  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1464  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1465  | 
|
| 69593 | 1466  | 
subsection \<open>Relate \<^const>\<open>at\<close>, \<^const>\<open>at_left\<close> and \<^const>\<open>at_right\<close>\<close>  | 
| 50347 | 1467  | 
|
| 60758 | 1468  | 
text \<open>  | 
| 69593 | 1469  | 
This lemmas are useful for conversion between \<^term>\<open>at x\<close> to \<^term>\<open>at_left x\<close> and  | 
1470  | 
\<^term>\<open>at_right x\<close> and also \<^term>\<open>at_right 0\<close>.  | 
|
| 60758 | 1471  | 
\<close>  | 
| 50347 | 1472  | 
|
| 51471 | 1473  | 
lemmas filterlim_split_at_real = filterlim_split_at[where 'a=real]  | 
| 50323 | 1474  | 
|
| 63546 | 1475  | 
lemma filtermap_nhds_shift: "filtermap (\<lambda>x. x - d) (nhds a) = nhds (a - d)"  | 
1476  | 
for a d :: "'a::real_normed_vector"  | 
|
| 
60721
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1477  | 
by (rule filtermap_fun_inverse[where g="\<lambda>x. x + d"])  | 
| 63546 | 1478  | 
(auto intro!: tendsto_eq_intros filterlim_ident)  | 
1479  | 
||
1480  | 
lemma filtermap_nhds_minus: "filtermap (\<lambda>x. - x) (nhds a) = nhds (- a)"  | 
|
1481  | 
for a :: "'a::real_normed_vector"  | 
|
| 
60721
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1482  | 
by (rule filtermap_fun_inverse[where g=uminus])  | 
| 63546 | 1483  | 
(auto intro!: tendsto_eq_intros filterlim_ident)  | 
1484  | 
||
1485  | 
lemma filtermap_at_shift: "filtermap (\<lambda>x. x - d) (at a) = at (a - d)"  | 
|
1486  | 
for a d :: "'a::real_normed_vector"  | 
|
| 
51641
 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 
hoelzl 
parents: 
51531 
diff
changeset
 | 
1487  | 
by (simp add: filter_eq_iff eventually_filtermap eventually_at_filter filtermap_nhds_shift[symmetric])  | 
| 50347 | 1488  | 
|
| 63546 | 1489  | 
lemma filtermap_at_right_shift: "filtermap (\<lambda>x. x - d) (at_right a) = at_right (a - d)"  | 
1490  | 
for a d :: "real"  | 
|
| 
51641
 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 
hoelzl 
parents: 
51531 
diff
changeset
 | 
1491  | 
by (simp add: filter_eq_iff eventually_filtermap eventually_at_filter filtermap_nhds_shift[symmetric])  | 
| 50323 | 1492  | 
|
| 73795 | 1493  | 
lemma filterlim_shift:  | 
1494  | 
fixes d :: "'a::real_normed_vector"  | 
|
1495  | 
assumes "filterlim f F (at a)"  | 
|
1496  | 
shows "filterlim (f \<circ> (+) d) F (at (a - d))"  | 
|
1497  | 
unfolding filterlim_iff  | 
|
1498  | 
proof (intro strip)  | 
|
1499  | 
fix P  | 
|
1500  | 
assume "eventually P F"  | 
|
1501  | 
then have "\<forall>\<^sub>F x in filtermap (\<lambda>y. y - d) (at a). P (f (d + x))"  | 
|
1502  | 
using assms by (force simp add: filterlim_iff eventually_filtermap)  | 
|
1503  | 
then show "(\<forall>\<^sub>F x in at (a - d). P ((f \<circ> (+) d) x))"  | 
|
1504  | 
by (force simp add: filtermap_at_shift)  | 
|
1505  | 
qed  | 
|
1506  | 
||
1507  | 
lemma filterlim_shift_iff:  | 
|
1508  | 
fixes d :: "'a::real_normed_vector"  | 
|
1509  | 
shows "filterlim (f \<circ> (+) d) F (at (a - d)) = filterlim f F (at a)" (is "?lhs = ?rhs")  | 
|
1510  | 
proof  | 
|
1511  | 
assume L: ?lhs show ?rhs  | 
|
1512  | 
using filterlim_shift [OF L, of "-d"] by (simp add: filterlim_iff)  | 
|
1513  | 
qed (metis filterlim_shift)  | 
|
1514  | 
||
| 63546 | 1515  | 
lemma at_right_to_0: "at_right a = filtermap (\<lambda>x. x + a) (at_right 0)"  | 
1516  | 
for a :: real  | 
|
| 50347 | 1517  | 
using filtermap_at_right_shift[of "-a" 0] by simp  | 
1518  | 
||
1519  | 
lemma filterlim_at_right_to_0:  | 
|
| 63546 | 1520  | 
"filterlim f F (at_right a) \<longleftrightarrow> filterlim (\<lambda>x. f (x + a)) F (at_right 0)"  | 
1521  | 
for a :: real  | 
|
| 50347 | 1522  | 
unfolding filterlim_def filtermap_filtermap at_right_to_0[of a] ..  | 
1523  | 
||
1524  | 
lemma eventually_at_right_to_0:  | 
|
| 63546 | 1525  | 
"eventually P (at_right a) \<longleftrightarrow> eventually (\<lambda>x. P (x + a)) (at_right 0)"  | 
1526  | 
for a :: real  | 
|
| 50347 | 1527  | 
unfolding at_right_to_0[of a] by (simp add: eventually_filtermap)  | 
1528  | 
||
| 
67685
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1529  | 
lemma at_to_0: "at a = filtermap (\<lambda>x. x + a) (at 0)"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1530  | 
for a :: "'a::real_normed_vector"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1531  | 
using filtermap_at_shift[of "-a" 0] by simp  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1532  | 
|
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1533  | 
lemma filterlim_at_to_0:  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1534  | 
"filterlim f F (at a) \<longleftrightarrow> filterlim (\<lambda>x. f (x + a)) F (at 0)"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1535  | 
for a :: "'a::real_normed_vector"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1536  | 
unfolding filterlim_def filtermap_filtermap at_to_0[of a] ..  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1537  | 
|
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1538  | 
lemma eventually_at_to_0:  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1539  | 
"eventually P (at a) \<longleftrightarrow> eventually (\<lambda>x. P (x + a)) (at 0)"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1540  | 
for a :: "'a::real_normed_vector"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1541  | 
unfolding at_to_0[of a] by (simp add: eventually_filtermap)  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1542  | 
|
| 63546 | 1543  | 
lemma filtermap_at_minus: "filtermap (\<lambda>x. - x) (at a) = at (- a)"  | 
1544  | 
for a :: "'a::real_normed_vector"  | 
|
| 
51641
 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 
hoelzl 
parents: 
51531 
diff
changeset
 | 
1545  | 
by (simp add: filter_eq_iff eventually_filtermap eventually_at_filter filtermap_nhds_minus[symmetric])  | 
| 50347 | 1546  | 
|
| 63546 | 1547  | 
lemma at_left_minus: "at_left a = filtermap (\<lambda>x. - x) (at_right (- a))"  | 
1548  | 
for a :: real  | 
|
| 
51641
 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 
hoelzl 
parents: 
51531 
diff
changeset
 | 
1549  | 
by (simp add: filter_eq_iff eventually_filtermap eventually_at_filter filtermap_nhds_minus[symmetric])  | 
| 50323 | 1550  | 
|
| 63546 | 1551  | 
lemma at_right_minus: "at_right a = filtermap (\<lambda>x. - x) (at_left (- a))"  | 
1552  | 
for a :: real  | 
|
| 
51641
 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 
hoelzl 
parents: 
51531 
diff
changeset
 | 
1553  | 
by (simp add: filter_eq_iff eventually_filtermap eventually_at_filter filtermap_nhds_minus[symmetric])  | 
| 50347 | 1554  | 
|
| 
67685
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1555  | 
|
| 50347 | 1556  | 
lemma filterlim_at_left_to_right:  | 
| 63546 | 1557  | 
"filterlim f F (at_left a) \<longleftrightarrow> filterlim (\<lambda>x. f (- x)) F (at_right (-a))"  | 
1558  | 
for a :: real  | 
|
| 50347 | 1559  | 
unfolding filterlim_def filtermap_filtermap at_left_minus[of a] ..  | 
1560  | 
||
1561  | 
lemma eventually_at_left_to_right:  | 
|
| 63546 | 1562  | 
"eventually P (at_left a) \<longleftrightarrow> eventually (\<lambda>x. P (- x)) (at_right (-a))"  | 
1563  | 
for a :: real  | 
|
| 50347 | 1564  | 
unfolding at_left_minus[of a] by (simp add: eventually_filtermap)  | 
1565  | 
||
| 
60721
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1566  | 
lemma filterlim_uminus_at_top_at_bot: "LIM x at_bot. - x :: real :> at_top"  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1567  | 
unfolding filterlim_at_top eventually_at_bot_dense  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1568  | 
by (metis leI minus_less_iff order_less_asym)  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1569  | 
|
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1570  | 
lemma filterlim_uminus_at_bot_at_top: "LIM x at_top. - x :: real :> at_bot"  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1571  | 
unfolding filterlim_at_bot eventually_at_top_dense  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1572  | 
by (metis leI less_minus_iff order_less_asym)  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1573  | 
|
| 68611 | 1574  | 
lemma at_bot_mirror :  | 
1575  | 
  shows "(at_bot::('a::{ordered_ab_group_add,linorder} filter)) = filtermap uminus at_top"
 | 
|
| 
72219
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
1576  | 
proof (rule filtermap_fun_inverse[symmetric])  | 
| 
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
1577  | 
show "filterlim uminus at_top (at_bot::'a filter)"  | 
| 
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
1578  | 
using eventually_at_bot_linorder filterlim_at_top le_minus_iff by force  | 
| 
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
1579  | 
show "filterlim uminus (at_bot::'a filter) at_top"  | 
| 
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
1580  | 
by (simp add: filterlim_at_bot minus_le_iff)  | 
| 
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
1581  | 
qed auto  | 
| 
68532
 
f8b98d31ad45
Incorporating new/strengthened proofs from Library and AFP entries
 
paulson <lp15@cam.ac.uk> 
parents: 
68296 
diff
changeset
 | 
1582  | 
|
| 68611 | 1583  | 
lemma at_top_mirror :  | 
1584  | 
  shows "(at_top::('a::{ordered_ab_group_add,linorder} filter)) = filtermap uminus at_bot"
 | 
|
| 
68532
 
f8b98d31ad45
Incorporating new/strengthened proofs from Library and AFP entries
 
paulson <lp15@cam.ac.uk> 
parents: 
68296 
diff
changeset
 | 
1585  | 
apply (subst at_bot_mirror)  | 
| 68615 | 1586  | 
by (auto simp: filtermap_filtermap)  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1587  | 
|
| 
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1588  | 
lemma filterlim_at_top_mirror: "(LIM x at_top. f x :> F) \<longleftrightarrow> (LIM x at_bot. f (-x::real) :> F)"  | 
| 
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1589  | 
unfolding filterlim_def at_top_mirror filtermap_filtermap ..  | 
| 
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1590  | 
|
| 
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1591  | 
lemma filterlim_at_bot_mirror: "(LIM x at_bot. f x :> F) \<longleftrightarrow> (LIM x at_top. f (-x::real) :> F)"  | 
| 
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1592  | 
unfolding filterlim_def at_bot_mirror filtermap_filtermap ..  | 
| 
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1593  | 
|
| 
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1594  | 
lemma filterlim_uminus_at_top: "(LIM x F. f x :> at_top) \<longleftrightarrow> (LIM x F. - (f x) :: real :> at_bot)"  | 
| 
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1595  | 
using filterlim_compose[OF filterlim_uminus_at_bot_at_top, of f F]  | 
| 63546 | 1596  | 
and filterlim_compose[OF filterlim_uminus_at_top_at_bot, of "\<lambda>x. - f x" F]  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1597  | 
by auto  | 
| 
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1598  | 
|
| 68721 | 1599  | 
lemma tendsto_at_botI_sequentially:  | 
1600  | 
fixes f :: "real \<Rightarrow> 'b::first_countable_topology"  | 
|
1601  | 
assumes *: "\<And>X. filterlim X at_bot sequentially \<Longrightarrow> (\<lambda>n. f (X n)) \<longlonglongrightarrow> y"  | 
|
1602  | 
shows "(f \<longlongrightarrow> y) at_bot"  | 
|
1603  | 
unfolding filterlim_at_bot_mirror  | 
|
1604  | 
proof (rule tendsto_at_topI_sequentially)  | 
|
1605  | 
fix X :: "nat \<Rightarrow> real" assume "filterlim X at_top sequentially"  | 
|
1606  | 
thus "(\<lambda>n. f (-X n)) \<longlonglongrightarrow> y" by (intro *) (auto simp: filterlim_uminus_at_top)  | 
|
1607  | 
qed  | 
|
1608  | 
||
| 
67950
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1609  | 
lemma filterlim_at_infinity_imp_filterlim_at_top:  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1610  | 
assumes "filterlim (f :: 'a \<Rightarrow> real) at_infinity F"  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1611  | 
assumes "eventually (\<lambda>x. f x > 0) F"  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1612  | 
shows "filterlim f at_top F"  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1613  | 
proof -  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1614  | 
from assms(2) have *: "eventually (\<lambda>x. norm (f x) = f x) F" by eventually_elim simp  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1615  | 
from assms(1) show ?thesis unfolding filterlim_at_infinity_conv_norm_at_top  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1616  | 
by (subst (asm) filterlim_cong[OF refl refl *])  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1617  | 
qed  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1618  | 
|
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1619  | 
lemma filterlim_at_infinity_imp_filterlim_at_bot:  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1620  | 
assumes "filterlim (f :: 'a \<Rightarrow> real) at_infinity F"  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1621  | 
assumes "eventually (\<lambda>x. f x < 0) F"  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1622  | 
shows "filterlim f at_bot F"  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1623  | 
proof -  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1624  | 
from assms(2) have *: "eventually (\<lambda>x. norm (f x) = -f x) F" by eventually_elim simp  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1625  | 
from assms(1) have "filterlim (\<lambda>x. - f x) at_top F"  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1626  | 
unfolding filterlim_at_infinity_conv_norm_at_top  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1627  | 
by (subst (asm) filterlim_cong[OF refl refl *])  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1628  | 
thus ?thesis by (simp add: filterlim_uminus_at_top)  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1629  | 
qed  | 
| 
 
99eaa5cedbb7
Added some simple facts about limits
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
67707 
diff
changeset
 | 
1630  | 
|
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1631  | 
lemma filterlim_uminus_at_bot: "(LIM x F. f x :> at_bot) \<longleftrightarrow> (LIM x F. - (f x) :: real :> at_top)"  | 
| 
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1632  | 
unfolding filterlim_uminus_at_top by simp  | 
| 50323 | 1633  | 
|
| 50347 | 1634  | 
lemma filterlim_inverse_at_top_right: "LIM x at_right (0::real). inverse x :> at_top"  | 
| 
51641
 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 
hoelzl 
parents: 
51531 
diff
changeset
 | 
1635  | 
unfolding filterlim_at_top_gt[where c=0] eventually_at_filter  | 
| 50347 | 1636  | 
proof safe  | 
| 63546 | 1637  | 
fix Z :: real  | 
1638  | 
assume [arith]: "0 < Z"  | 
|
| 50347 | 1639  | 
then have "eventually (\<lambda>x. x < inverse Z) (nhds 0)"  | 
| 68615 | 1640  | 
by (auto simp: eventually_nhds_metric dist_real_def intro!: exI[of _ "\<bar>inverse Z\<bar>"])  | 
| 
51641
 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 
hoelzl 
parents: 
51531 
diff
changeset
 | 
1641  | 
  then show "eventually (\<lambda>x. x \<noteq> 0 \<longrightarrow> x \<in> {0<..} \<longrightarrow> Z \<le> inverse x) (nhds 0)"
 | 
| 61810 | 1642  | 
by (auto elim!: eventually_mono simp: inverse_eq_divide field_simps)  | 
| 50347 | 1643  | 
qed  | 
1644  | 
||
| 50325 | 1645  | 
lemma tendsto_inverse_0:  | 
| 61076 | 1646  | 
fixes x :: "_ \<Rightarrow> 'a::real_normed_div_algebra"  | 
| 61973 | 1647  | 
shows "(inverse \<longlongrightarrow> (0::'a)) at_infinity"  | 
| 50325 | 1648  | 
unfolding tendsto_Zfun_iff diff_0_right Zfun_def eventually_at_infinity  | 
1649  | 
proof safe  | 
|
| 63546 | 1650  | 
fix r :: real  | 
1651  | 
assume "0 < r"  | 
|
| 50325 | 1652  | 
show "\<exists>b. \<forall>x. b \<le> norm x \<longrightarrow> norm (inverse x :: 'a) < r"  | 
1653  | 
proof (intro exI[of _ "inverse (r / 2)"] allI impI)  | 
|
1654  | 
fix x :: 'a  | 
|
| 60758 | 1655  | 
from \<open>0 < r\<close> have "0 < inverse (r / 2)" by simp  | 
| 50325 | 1656  | 
also assume *: "inverse (r / 2) \<le> norm x"  | 
1657  | 
finally show "norm (inverse x) < r"  | 
|
| 63546 | 1658  | 
using * \<open>0 < r\<close>  | 
1659  | 
by (subst nonzero_norm_inverse) (simp_all add: inverse_eq_divide field_simps)  | 
|
| 50325 | 1660  | 
qed  | 
1661  | 
qed  | 
|
1662  | 
||
| 
61552
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1663  | 
lemma tendsto_add_filterlim_at_infinity:  | 
| 63546 | 1664  | 
fixes c :: "'b::real_normed_vector"  | 
1665  | 
and F :: "'a filter"  | 
|
1666  | 
assumes "(f \<longlongrightarrow> c) F"  | 
|
1667  | 
and "filterlim g at_infinity F"  | 
|
1668  | 
shows "filterlim (\<lambda>x. f x + g x) at_infinity F"  | 
|
| 
61552
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1669  | 
proof (subst filterlim_at_infinity[OF order_refl], safe)  | 
| 63546 | 1670  | 
fix r :: real  | 
1671  | 
assume r: "r > 0"  | 
|
1672  | 
from assms(1) have "((\<lambda>x. norm (f x)) \<longlongrightarrow> norm c) F"  | 
|
1673  | 
by (rule tendsto_norm)  | 
|
1674  | 
then have "eventually (\<lambda>x. norm (f x) < norm c + 1) F"  | 
|
1675  | 
by (rule order_tendstoD) simp_all  | 
|
1676  | 
moreover from r have "r + norm c + 1 > 0"  | 
|
1677  | 
by (intro add_pos_nonneg) simp_all  | 
|
| 
61552
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1678  | 
with assms(2) have "eventually (\<lambda>x. norm (g x) \<ge> r + norm c + 1) F"  | 
| 63546 | 1679  | 
unfolding filterlim_at_infinity[OF order_refl]  | 
1680  | 
by (elim allE[of _ "r + norm c + 1"]) simp_all  | 
|
| 
61552
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1681  | 
ultimately show "eventually (\<lambda>x. norm (f x + g x) \<ge> r) F"  | 
| 
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1682  | 
proof eventually_elim  | 
| 63546 | 1683  | 
fix x :: 'a  | 
1684  | 
assume A: "norm (f x) < norm c + 1" and B: "r + norm c + 1 \<le> norm (g x)"  | 
|
1685  | 
from A B have "r \<le> norm (g x) - norm (f x)"  | 
|
1686  | 
by simp  | 
|
1687  | 
also have "norm (g x) - norm (f x) \<le> norm (g x + f x)"  | 
|
1688  | 
by (rule norm_diff_ineq)  | 
|
1689  | 
finally show "r \<le> norm (f x + g x)"  | 
|
1690  | 
by (simp add: add_ac)  | 
|
| 
61552
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1691  | 
qed  | 
| 
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1692  | 
qed  | 
| 
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1693  | 
|
| 
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1694  | 
lemma tendsto_add_filterlim_at_infinity':  | 
| 63546 | 1695  | 
fixes c :: "'b::real_normed_vector"  | 
1696  | 
and F :: "'a filter"  | 
|
| 
61552
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1697  | 
assumes "filterlim f at_infinity F"  | 
| 63546 | 1698  | 
and "(g \<longlongrightarrow> c) F"  | 
1699  | 
shows "filterlim (\<lambda>x. f x + g x) at_infinity F"  | 
|
| 
61552
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1700  | 
by (subst add.commute) (rule tendsto_add_filterlim_at_infinity assms)+  | 
| 
 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 
eberlm 
parents: 
61531 
diff
changeset
 | 
1701  | 
|
| 
60721
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1702  | 
lemma filterlim_inverse_at_right_top: "LIM x at_top. inverse x :> at_right (0::real)"  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1703  | 
unfolding filterlim_at  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1704  | 
by (auto simp: eventually_at_top_dense)  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1705  | 
(metis tendsto_inverse_0 filterlim_mono at_top_le_at_infinity order_refl)  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1706  | 
|
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1707  | 
lemma filterlim_inverse_at_top:  | 
| 61973 | 1708  | 
"(f \<longlongrightarrow> (0 :: real)) F \<Longrightarrow> eventually (\<lambda>x. 0 < f x) F \<Longrightarrow> LIM x F. inverse (f x) :> at_top"  | 
| 
60721
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1709  | 
by (intro filterlim_compose[OF filterlim_inverse_at_top_right])  | 
| 61810 | 1710  | 
(simp add: filterlim_def eventually_filtermap eventually_mono at_within_def le_principal)  | 
| 
60721
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1711  | 
|
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1712  | 
lemma filterlim_inverse_at_bot_neg:  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1713  | 
"LIM x (at_left (0::real)). inverse x :> at_bot"  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1714  | 
by (simp add: filterlim_inverse_at_top_right filterlim_uminus_at_bot filterlim_at_left_to_right)  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1715  | 
|
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1716  | 
lemma filterlim_inverse_at_bot:  | 
| 61973 | 1717  | 
"(f \<longlongrightarrow> (0 :: real)) F \<Longrightarrow> eventually (\<lambda>x. f x < 0) F \<Longrightarrow> LIM x F. inverse (f x) :> at_bot"  | 
| 
60721
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1718  | 
unfolding filterlim_uminus_at_bot inverse_minus_eq[symmetric]  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1719  | 
by (rule filterlim_inverse_at_top) (simp_all add: tendsto_minus_cancel_left[symmetric])  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1720  | 
|
| 50347 | 1721  | 
lemma at_right_to_top: "(at_right (0::real)) = filtermap inverse at_top"  | 
| 
60721
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1722  | 
by (intro filtermap_fun_inverse[symmetric, where g=inverse])  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1723  | 
(auto intro: filterlim_inverse_at_top_right filterlim_inverse_at_right_top)  | 
| 50347 | 1724  | 
|
1725  | 
lemma eventually_at_right_to_top:  | 
|
1726  | 
"eventually P (at_right (0::real)) \<longleftrightarrow> eventually (\<lambda>x. P (inverse x)) at_top"  | 
|
1727  | 
unfolding at_right_to_top eventually_filtermap ..  | 
|
1728  | 
||
1729  | 
lemma filterlim_at_right_to_top:  | 
|
1730  | 
"filterlim f F (at_right (0::real)) \<longleftrightarrow> (LIM x at_top. f (inverse x) :> F)"  | 
|
1731  | 
unfolding filterlim_def at_right_to_top filtermap_filtermap ..  | 
|
1732  | 
||
1733  | 
lemma at_top_to_right: "at_top = filtermap inverse (at_right (0::real))"  | 
|
1734  | 
unfolding at_right_to_top filtermap_filtermap inverse_inverse_eq filtermap_ident ..  | 
|
1735  | 
||
1736  | 
lemma eventually_at_top_to_right:  | 
|
1737  | 
"eventually P at_top \<longleftrightarrow> eventually (\<lambda>x. P (inverse x)) (at_right (0::real))"  | 
|
1738  | 
unfolding at_top_to_right eventually_filtermap ..  | 
|
1739  | 
||
1740  | 
lemma filterlim_at_top_to_right:  | 
|
1741  | 
"filterlim f F at_top \<longleftrightarrow> (LIM x (at_right (0::real)). f (inverse x) :> F)"  | 
|
1742  | 
unfolding filterlim_def at_top_to_right filtermap_filtermap ..  | 
|
1743  | 
||
| 50325 | 1744  | 
lemma filterlim_inverse_at_infinity:  | 
| 61076 | 1745  | 
  fixes x :: "_ \<Rightarrow> 'a::{real_normed_div_algebra, division_ring}"
 | 
| 50325 | 1746  | 
shows "filterlim inverse at_infinity (at (0::'a))"  | 
1747  | 
unfolding filterlim_at_infinity[OF order_refl]  | 
|
1748  | 
proof safe  | 
|
| 63546 | 1749  | 
fix r :: real  | 
1750  | 
assume "0 < r"  | 
|
| 50325 | 1751  | 
then show "eventually (\<lambda>x::'a. r \<le> norm (inverse x)) (at 0)"  | 
1752  | 
unfolding eventually_at norm_inverse  | 
|
1753  | 
by (intro exI[of _ "inverse r"])  | 
|
1754  | 
(auto simp: norm_conv_dist[symmetric] field_simps inverse_eq_divide)  | 
|
1755  | 
qed  | 
|
1756  | 
||
1757  | 
lemma filterlim_inverse_at_iff:  | 
|
| 61076 | 1758  | 
  fixes g :: "'a \<Rightarrow> 'b::{real_normed_div_algebra, division_ring}"
 | 
| 50325 | 1759  | 
shows "(LIM x F. inverse (g x) :> at 0) \<longleftrightarrow> (LIM x F. g x :> at_infinity)"  | 
1760  | 
unfolding filterlim_def filtermap_filtermap[symmetric]  | 
|
1761  | 
proof  | 
|
1762  | 
assume "filtermap g F \<le> at_infinity"  | 
|
1763  | 
then have "filtermap inverse (filtermap g F) \<le> filtermap inverse at_infinity"  | 
|
1764  | 
by (rule filtermap_mono)  | 
|
1765  | 
also have "\<dots> \<le> at 0"  | 
|
| 
51641
 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 
hoelzl 
parents: 
51531 
diff
changeset
 | 
1766  | 
using tendsto_inverse_0[where 'a='b]  | 
| 
 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 
hoelzl 
parents: 
51531 
diff
changeset
 | 
1767  | 
by (auto intro!: exI[of _ 1]  | 
| 63546 | 1768  | 
simp: le_principal eventually_filtermap filterlim_def at_within_def eventually_at_infinity)  | 
| 50325 | 1769  | 
finally show "filtermap inverse (filtermap g F) \<le> at 0" .  | 
1770  | 
next  | 
|
1771  | 
assume "filtermap inverse (filtermap g F) \<le> at 0"  | 
|
1772  | 
then have "filtermap inverse (filtermap inverse (filtermap g F)) \<le> filtermap inverse (at 0)"  | 
|
1773  | 
by (rule filtermap_mono)  | 
|
1774  | 
with filterlim_inverse_at_infinity show "filtermap g F \<le> at_infinity"  | 
|
1775  | 
by (auto intro: order_trans simp: filterlim_def filtermap_filtermap)  | 
|
1776  | 
qed  | 
|
1777  | 
||
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1778  | 
lemma tendsto_mult_filterlim_at_infinity:  | 
| 63546 | 1779  | 
fixes c :: "'a::real_normed_field"  | 
| 64394 | 1780  | 
assumes "(f \<longlongrightarrow> c) F" "c \<noteq> 0"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1781  | 
assumes "filterlim g at_infinity F"  | 
| 63546 | 1782  | 
shows "filterlim (\<lambda>x. f x * g x) at_infinity F"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1783  | 
proof -  | 
| 61973 | 1784  | 
have "((\<lambda>x. inverse (f x) * inverse (g x)) \<longlongrightarrow> inverse c * 0) F"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1785  | 
by (intro tendsto_mult tendsto_inverse assms filterlim_compose[OF tendsto_inverse_0])  | 
| 63546 | 1786  | 
then have "filterlim (\<lambda>x. inverse (f x) * inverse (g x)) (at (inverse c * 0)) F"  | 
1787  | 
unfolding filterlim_at  | 
|
1788  | 
using assms  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1789  | 
by (auto intro: filterlim_at_infinity_imp_eventually_ne tendsto_imp_eventually_ne eventually_conj)  | 
| 63546 | 1790  | 
then show ?thesis  | 
1791  | 
by (subst filterlim_inverse_at_iff[symmetric]) simp_all  | 
|
| 68611 | 1792  | 
qed  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
1793  | 
|
| 61973 | 1794  | 
lemma tendsto_inverse_0_at_top: "LIM x F. f x :> at_top \<Longrightarrow> ((\<lambda>x. inverse (f x) :: real) \<longlongrightarrow> 0) F"  | 
| 
73885
 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 
paulson <lp15@cam.ac.uk> 
parents: 
73795 
diff
changeset
 | 
1795  | 
by (metis filterlim_at filterlim_mono[OF _ at_top_le_at_infinity order_refl] filterlim_inverse_at_iff)  | 
| 
 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 
paulson <lp15@cam.ac.uk> 
parents: 
73795 
diff
changeset
 | 
1796  | 
|
| 
 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 
paulson <lp15@cam.ac.uk> 
parents: 
73795 
diff
changeset
 | 
1797  | 
lemma filterlim_inverse_at_top_iff:  | 
| 
 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 
paulson <lp15@cam.ac.uk> 
parents: 
73795 
diff
changeset
 | 
1798  | 
"eventually (\<lambda>x. 0 < f x) F \<Longrightarrow> (LIM x F. inverse (f x) :> at_top) \<longleftrightarrow> (f \<longlongrightarrow> (0 :: real)) F"  | 
| 
 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 
paulson <lp15@cam.ac.uk> 
parents: 
73795 
diff
changeset
 | 
1799  | 
by (auto dest: tendsto_inverse_0_at_top filterlim_inverse_at_top)  | 
| 
 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 
paulson <lp15@cam.ac.uk> 
parents: 
73795 
diff
changeset
 | 
1800  | 
|
| 
 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 
paulson <lp15@cam.ac.uk> 
parents: 
73795 
diff
changeset
 | 
1801  | 
lemma filterlim_at_top_iff_inverse_0:  | 
| 
 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 
paulson <lp15@cam.ac.uk> 
parents: 
73795 
diff
changeset
 | 
1802  | 
"eventually (\<lambda>x. 0 < f x) F \<Longrightarrow> (LIM x F. f x :> at_top) \<longleftrightarrow> ((inverse \<circ> f) \<longlongrightarrow> (0 :: real)) F"  | 
| 
 
26171a89466a
A few useful lemmas about derivatives, colinearity and other topics
 
paulson <lp15@cam.ac.uk> 
parents: 
73795 
diff
changeset
 | 
1803  | 
using filterlim_inverse_at_top_iff [of "inverse \<circ> f"] by auto  | 
| 50419 | 1804  | 
|
| 63556 | 1805  | 
lemma real_tendsto_divide_at_top:  | 
1806  | 
fixes c::"real"  | 
|
1807  | 
assumes "(f \<longlongrightarrow> c) F"  | 
|
1808  | 
assumes "filterlim g at_top F"  | 
|
1809  | 
shows "((\<lambda>x. f x / g x) \<longlongrightarrow> 0) F"  | 
|
1810  | 
by (auto simp: divide_inverse_commute  | 
|
1811  | 
intro!: tendsto_mult[THEN tendsto_eq_rhs] tendsto_inverse_0_at_top assms)  | 
|
1812  | 
||
| 63546 | 1813  | 
lemma mult_nat_left_at_top: "c > 0 \<Longrightarrow> filterlim (\<lambda>x. c * x) at_top sequentially"  | 
1814  | 
for c :: nat  | 
|
| 
66447
 
a1f5c5c26fa6
Replaced subseq with strict_mono
 
eberlm <eberlm@in.tum.de> 
parents: 
65680 
diff
changeset
 | 
1815  | 
by (rule filterlim_subseq) (auto simp: strict_mono_def)  | 
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1816  | 
|
| 63546 | 1817  | 
lemma mult_nat_right_at_top: "c > 0 \<Longrightarrow> filterlim (\<lambda>x. x * c) at_top sequentially"  | 
1818  | 
for c :: nat  | 
|
| 
66447
 
a1f5c5c26fa6
Replaced subseq with strict_mono
 
eberlm <eberlm@in.tum.de> 
parents: 
65680 
diff
changeset
 | 
1819  | 
by (rule filterlim_subseq) (auto simp: strict_mono_def)  | 
| 63546 | 1820  | 
|
| 
67685
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1821  | 
lemma filterlim_times_pos:  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1822  | 
"LIM x F1. c * f x :> at_right l"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1823  | 
if "filterlim f (at_right p) F1" "0 < c" "l = c * p"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1824  | 
  for c::"'a::{linordered_field, linorder_topology}"
 | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1825  | 
unfolding filterlim_iff  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1826  | 
proof safe  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1827  | 
fix P  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1828  | 
assume "\<forall>\<^sub>F x in at_right l. P x"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1829  | 
then obtain d where "c * p < d" "\<And>y. y > c * p \<Longrightarrow> y < d \<Longrightarrow> P y"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1830  | 
unfolding \<open>l = _ \<close> eventually_at_right_field  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1831  | 
by auto  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1832  | 
then have "\<forall>\<^sub>F a in at_right p. P (c * a)"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1833  | 
by (auto simp: eventually_at_right_field \<open>0 < c\<close> field_simps intro!: exI[where x="d/c"])  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1834  | 
from that(1)[unfolded filterlim_iff, rule_format, OF this]  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1835  | 
show "\<forall>\<^sub>F x in F1. P (c * f x)" .  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1836  | 
qed  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1837  | 
|
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1838  | 
lemma filtermap_nhds_times: "c \<noteq> 0 \<Longrightarrow> filtermap (times c) (nhds a) = nhds (c * a)"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1839  | 
for a c :: "'a::real_normed_field"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1840  | 
by (rule filtermap_fun_inverse[where g="\<lambda>x. inverse c * x"])  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1841  | 
(auto intro!: tendsto_eq_intros filterlim_ident)  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1842  | 
|
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1843  | 
lemma filtermap_times_pos_at_right:  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1844  | 
  fixes c::"'a::{linordered_field, linorder_topology}"
 | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1845  | 
assumes "c > 0"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1846  | 
shows "filtermap (times c) (at_right p) = at_right (c * p)"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1847  | 
using assms  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1848  | 
by (intro filtermap_fun_inverse[where g="\<lambda>x. inverse c * x"])  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1849  | 
(auto intro!: filterlim_ident filterlim_times_pos)  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
1850  | 
|
| 63546 | 1851  | 
lemma at_to_infinity: "(at (0::'a::{real_normed_field,field})) = filtermap inverse at_infinity"
 | 
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1852  | 
proof (rule antisym)  | 
| 61973 | 1853  | 
have "(inverse \<longlongrightarrow> (0::'a)) at_infinity"  | 
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1854  | 
by (fact tendsto_inverse_0)  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1855  | 
then show "filtermap inverse at_infinity \<le> at (0::'a)"  | 
| 68615 | 1856  | 
using filterlim_def filterlim_ident filterlim_inverse_at_iff by fastforce  | 
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1857  | 
next  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1858  | 
have "filtermap inverse (filtermap inverse (at (0::'a))) \<le> filtermap inverse at_infinity"  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1859  | 
using filterlim_inverse_at_infinity unfolding filterlim_def  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1860  | 
by (rule filtermap_mono)  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1861  | 
then show "at (0::'a) \<le> filtermap inverse at_infinity"  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1862  | 
by (simp add: filtermap_ident filtermap_filtermap)  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1863  | 
qed  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1864  | 
|
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1865  | 
lemma lim_at_infinity_0:  | 
| 63546 | 1866  | 
  fixes l :: "'a::{real_normed_field,field}"
 | 
1867  | 
shows "(f \<longlongrightarrow> l) at_infinity \<longleftrightarrow> ((f \<circ> inverse) \<longlongrightarrow> l) (at (0::'a))"  | 
|
1868  | 
by (simp add: tendsto_compose_filtermap at_to_infinity filtermap_filtermap)  | 
|
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1869  | 
|
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1870  | 
lemma lim_zero_infinity:  | 
| 63546 | 1871  | 
  fixes l :: "'a::{real_normed_field,field}"
 | 
| 61973 | 1872  | 
shows "((\<lambda>x. f(1 / x)) \<longlongrightarrow> l) (at (0::'a)) \<Longrightarrow> (f \<longlongrightarrow> l) at_infinity"  | 
| 63546 | 1873  | 
by (simp add: inverse_eq_divide lim_at_infinity_0 comp_def)  | 
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1874  | 
|
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1875  | 
|
| 60758 | 1876  | 
text \<open>  | 
| 63546 | 1877  | 
We only show rules for multiplication and addition when the functions are either against a real  | 
1878  | 
  value or against infinity. Further rules are easy to derive by using @{thm
 | 
|
1879  | 
filterlim_uminus_at_top}.  | 
|
| 60758 | 1880  | 
\<close>  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1881  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1882  | 
lemma filterlim_tendsto_pos_mult_at_top:  | 
| 63546 | 1883  | 
assumes f: "(f \<longlongrightarrow> c) F"  | 
1884  | 
and c: "0 < c"  | 
|
1885  | 
and g: "LIM x F. g x :> at_top"  | 
|
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1886  | 
shows "LIM x F. (f x * g x :: real) :> at_top"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1887  | 
unfolding filterlim_at_top_gt[where c=0]  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1888  | 
proof safe  | 
| 63546 | 1889  | 
fix Z :: real  | 
1890  | 
assume "0 < Z"  | 
|
| 60758 | 1891  | 
from f \<open>0 < c\<close> have "eventually (\<lambda>x. c / 2 < f x) F"  | 
| 61810 | 1892  | 
by (auto dest!: tendstoD[where e="c / 2"] elim!: eventually_mono  | 
| 63546 | 1893  | 
simp: dist_real_def abs_real_def split: if_split_asm)  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1894  | 
moreover from g have "eventually (\<lambda>x. (Z / c * 2) \<le> g x) F"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1895  | 
unfolding filterlim_at_top by auto  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1896  | 
ultimately show "eventually (\<lambda>x. Z \<le> f x * g x) F"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1897  | 
proof eventually_elim  | 
| 63546 | 1898  | 
case (elim x)  | 
| 60758 | 1899  | 
with \<open>0 < Z\<close> \<open>0 < c\<close> have "c / 2 * (Z / c * 2) \<le> f x * g x"  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1900  | 
by (intro mult_mono) (auto simp: zero_le_divide_iff)  | 
| 60758 | 1901  | 
with \<open>0 < c\<close> show "Z \<le> f x * g x"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1902  | 
by simp  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1903  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1904  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1905  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1906  | 
lemma filterlim_at_top_mult_at_top:  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1907  | 
assumes f: "LIM x F. f x :> at_top"  | 
| 63546 | 1908  | 
and g: "LIM x F. g x :> at_top"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1909  | 
shows "LIM x F. (f x * g x :: real) :> at_top"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1910  | 
unfolding filterlim_at_top_gt[where c=0]  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1911  | 
proof safe  | 
| 63546 | 1912  | 
fix Z :: real  | 
1913  | 
assume "0 < Z"  | 
|
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1914  | 
from f have "eventually (\<lambda>x. 1 \<le> f x) F"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1915  | 
unfolding filterlim_at_top by auto  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1916  | 
moreover from g have "eventually (\<lambda>x. Z \<le> g x) F"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1917  | 
unfolding filterlim_at_top by auto  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1918  | 
ultimately show "eventually (\<lambda>x. Z \<le> f x * g x) F"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1919  | 
proof eventually_elim  | 
| 63546 | 1920  | 
case (elim x)  | 
| 60758 | 1921  | 
with \<open>0 < Z\<close> have "1 * Z \<le> f x * g x"  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1922  | 
by (intro mult_mono) (auto simp: zero_le_divide_iff)  | 
| 
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1923  | 
then show "Z \<le> f x * g x"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1924  | 
by simp  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1925  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1926  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1927  | 
|
| 63556 | 1928  | 
lemma filterlim_at_top_mult_tendsto_pos:  | 
1929  | 
assumes f: "(f \<longlongrightarrow> c) F"  | 
|
1930  | 
and c: "0 < c"  | 
|
1931  | 
and g: "LIM x F. g x :> at_top"  | 
|
1932  | 
shows "LIM x F. (g x * f x:: real) :> at_top"  | 
|
1933  | 
by (auto simp: mult.commute intro!: filterlim_tendsto_pos_mult_at_top f c g)  | 
|
1934  | 
||
| 50419 | 1935  | 
lemma filterlim_tendsto_pos_mult_at_bot:  | 
| 63546 | 1936  | 
fixes c :: real  | 
1937  | 
assumes "(f \<longlongrightarrow> c) F" "0 < c" "filterlim g at_bot F"  | 
|
| 50419 | 1938  | 
shows "LIM x F. f x * g x :> at_bot"  | 
1939  | 
using filterlim_tendsto_pos_mult_at_top[OF assms(1,2), of "\<lambda>x. - g x"] assms(3)  | 
|
1940  | 
unfolding filterlim_uminus_at_bot by simp  | 
|
1941  | 
||
| 
60182
 
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
 
hoelzl 
parents: 
60141 
diff
changeset
 | 
1942  | 
lemma filterlim_tendsto_neg_mult_at_bot:  | 
| 63546 | 1943  | 
fixes c :: real  | 
1944  | 
assumes c: "(f \<longlongrightarrow> c) F" "c < 0" and g: "filterlim g at_top F"  | 
|
| 
60182
 
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
 
hoelzl 
parents: 
60141 
diff
changeset
 | 
1945  | 
shows "LIM x F. f x * g x :> at_bot"  | 
| 
 
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
 
hoelzl 
parents: 
60141 
diff
changeset
 | 
1946  | 
using c filterlim_tendsto_pos_mult_at_top[of "\<lambda>x. - f x" "- c" F, OF _ _ g]  | 
| 
 
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
 
hoelzl 
parents: 
60141 
diff
changeset
 | 
1947  | 
unfolding filterlim_uminus_at_bot tendsto_minus_cancel_left by simp  | 
| 
 
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
 
hoelzl 
parents: 
60141 
diff
changeset
 | 
1948  | 
|
| 56330 | 1949  | 
lemma filterlim_pow_at_top:  | 
| 63721 | 1950  | 
fixes f :: "'a \<Rightarrow> real"  | 
| 63546 | 1951  | 
assumes "0 < n"  | 
1952  | 
and f: "LIM x F. f x :> at_top"  | 
|
| 56330 | 1953  | 
shows "LIM x F. (f x)^n :: real :> at_top"  | 
| 63546 | 1954  | 
using \<open>0 < n\<close>  | 
1955  | 
proof (induct n)  | 
|
1956  | 
case 0  | 
|
1957  | 
then show ?case by simp  | 
|
1958  | 
next  | 
|
| 56330 | 1959  | 
case (Suc n) with f show ?case  | 
1960  | 
by (cases "n = 0") (auto intro!: filterlim_at_top_mult_at_top)  | 
|
| 63546 | 1961  | 
qed  | 
| 56330 | 1962  | 
|
1963  | 
lemma filterlim_pow_at_bot_even:  | 
|
1964  | 
fixes f :: "real \<Rightarrow> real"  | 
|
1965  | 
shows "0 < n \<Longrightarrow> LIM x F. f x :> at_bot \<Longrightarrow> even n \<Longrightarrow> LIM x F. (f x)^n :> at_top"  | 
|
1966  | 
using filterlim_pow_at_top[of n "\<lambda>x. - f x" F] by (simp add: filterlim_uminus_at_top)  | 
|
1967  | 
||
1968  | 
lemma filterlim_pow_at_bot_odd:  | 
|
1969  | 
fixes f :: "real \<Rightarrow> real"  | 
|
1970  | 
shows "0 < n \<Longrightarrow> LIM x F. f x :> at_bot \<Longrightarrow> odd n \<Longrightarrow> LIM x F. (f x)^n :> at_bot"  | 
|
1971  | 
using filterlim_pow_at_top[of n "\<lambda>x. - f x" F] by (simp add: filterlim_uminus_at_bot)  | 
|
1972  | 
||
| 
67371
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1973  | 
lemma filterlim_power_at_infinity [tendsto_intros]:  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1974  | 
fixes F and f :: "'a \<Rightarrow> 'b :: real_normed_div_algebra"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1975  | 
assumes "filterlim f at_infinity F" "n > 0"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1976  | 
shows "filterlim (\<lambda>x. f x ^ n) at_infinity F"  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1977  | 
by (rule filterlim_norm_at_top_imp_at_infinity)  | 
| 68611 | 1978  | 
(auto simp: norm_power intro!: filterlim_pow_at_top assms  | 
| 
67371
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1979  | 
intro: filterlim_at_infinity_imp_norm_at_top)  | 
| 
 
2d9cf74943e1
moved in some material from Euler-MacLaurin
 
paulson <lp15@cam.ac.uk> 
parents: 
67091 
diff
changeset
 | 
1980  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1981  | 
lemma filterlim_tendsto_add_at_top:  | 
| 61973 | 1982  | 
assumes f: "(f \<longlongrightarrow> c) F"  | 
| 63546 | 1983  | 
and g: "LIM x F. g x :> at_top"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1984  | 
shows "LIM x F. (f x + g x :: real) :> at_top"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1985  | 
unfolding filterlim_at_top_gt[where c=0]  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1986  | 
proof safe  | 
| 63546 | 1987  | 
fix Z :: real  | 
1988  | 
assume "0 < Z"  | 
|
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1989  | 
from f have "eventually (\<lambda>x. c - 1 < f x) F"  | 
| 61810 | 1990  | 
by (auto dest!: tendstoD[where e=1] elim!: eventually_mono simp: dist_real_def)  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1991  | 
moreover from g have "eventually (\<lambda>x. Z - (c - 1) \<le> g x) F"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1992  | 
unfolding filterlim_at_top by auto  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
1993  | 
ultimately show "eventually (\<lambda>x. Z \<le> f x + g x) F"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1994  | 
by eventually_elim simp  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1995  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1996  | 
|
| 50347 | 1997  | 
lemma LIM_at_top_divide:  | 
1998  | 
fixes f g :: "'a \<Rightarrow> real"  | 
|
| 61973 | 1999  | 
assumes f: "(f \<longlongrightarrow> a) F" "0 < a"  | 
| 63546 | 2000  | 
and g: "(g \<longlongrightarrow> 0) F" "eventually (\<lambda>x. 0 < g x) F"  | 
| 50347 | 2001  | 
shows "LIM x F. f x / g x :> at_top"  | 
2002  | 
unfolding divide_inverse  | 
|
2003  | 
by (rule filterlim_tendsto_pos_mult_at_top[OF f]) (rule filterlim_inverse_at_top[OF g])  | 
|
2004  | 
||
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2005  | 
lemma filterlim_at_top_add_at_top:  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
2006  | 
assumes f: "LIM x F. f x :> at_top"  | 
| 63546 | 2007  | 
and g: "LIM x F. g x :> at_top"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
2008  | 
shows "LIM x F. (f x + g x :: real) :> at_top"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
2009  | 
unfolding filterlim_at_top_gt[where c=0]  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
2010  | 
proof safe  | 
| 63546 | 2011  | 
fix Z :: real  | 
2012  | 
assume "0 < Z"  | 
|
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
2013  | 
from f have "eventually (\<lambda>x. 0 \<le> f x) F"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
2014  | 
unfolding filterlim_at_top by auto  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
2015  | 
moreover from g have "eventually (\<lambda>x. Z \<le> g x) F"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
2016  | 
unfolding filterlim_at_top by auto  | 
| 
50346
 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 
hoelzl 
parents: 
50331 
diff
changeset
 | 
2017  | 
ultimately show "eventually (\<lambda>x. Z \<le> f x + g x) F"  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
2018  | 
by eventually_elim simp  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
2019  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
2020  | 
|
| 50331 | 2021  | 
lemma tendsto_divide_0:  | 
| 61076 | 2022  | 
  fixes f :: "_ \<Rightarrow> 'a::{real_normed_div_algebra, division_ring}"
 | 
| 61973 | 2023  | 
assumes f: "(f \<longlongrightarrow> c) F"  | 
| 63546 | 2024  | 
and g: "LIM x F. g x :> at_infinity"  | 
| 61973 | 2025  | 
shows "((\<lambda>x. f x / g x) \<longlongrightarrow> 0) F"  | 
| 63546 | 2026  | 
using tendsto_mult[OF f filterlim_compose[OF tendsto_inverse_0 g]]  | 
2027  | 
by (simp add: divide_inverse)  | 
|
| 50331 | 2028  | 
|
2029  | 
lemma linear_plus_1_le_power:  | 
|
2030  | 
fixes x :: real  | 
|
2031  | 
assumes x: "0 \<le> x"  | 
|
2032  | 
shows "real n * x + 1 \<le> (x + 1) ^ n"  | 
|
2033  | 
proof (induct n)  | 
|
| 63546 | 2034  | 
case 0  | 
2035  | 
then show ?case by simp  | 
|
2036  | 
next  | 
|
| 50331 | 2037  | 
case (Suc n)  | 
| 63546 | 2038  | 
from x have "real (Suc n) * x + 1 \<le> (x + 1) * (real n * x + 1)"  | 
2039  | 
by (simp add: field_simps)  | 
|
| 50331 | 2040  | 
also have "\<dots> \<le> (x + 1)^Suc n"  | 
2041  | 
using Suc x by (simp add: mult_left_mono)  | 
|
2042  | 
finally show ?case .  | 
|
| 63546 | 2043  | 
qed  | 
| 50331 | 2044  | 
|
2045  | 
lemma filterlim_realpow_sequentially_gt1:  | 
|
2046  | 
fixes x :: "'a :: real_normed_div_algebra"  | 
|
2047  | 
assumes x[arith]: "1 < norm x"  | 
|
2048  | 
shows "LIM n sequentially. x ^ n :> at_infinity"  | 
|
2049  | 
proof (intro filterlim_at_infinity[THEN iffD2] allI impI)  | 
|
| 63546 | 2050  | 
fix y :: real  | 
2051  | 
assume "0 < y"  | 
|
| 
72219
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
2052  | 
obtain N :: nat where "y < real N * (norm x - 1)"  | 
| 
 
0f38c96a0a74
tidying up some theorem statements
 
paulson <lp15@cam.ac.uk> 
parents: 
71837 
diff
changeset
 | 
2053  | 
by (meson diff_gt_0_iff_gt reals_Archimedean3 x)  | 
| 63546 | 2054  | 
also have "\<dots> \<le> real N * (norm x - 1) + 1"  | 
2055  | 
by simp  | 
|
2056  | 
also have "\<dots> \<le> (norm x - 1 + 1) ^ N"  | 
|
2057  | 
by (rule linear_plus_1_le_power) simp  | 
|
2058  | 
also have "\<dots> = norm x ^ N"  | 
|
2059  | 
by simp  | 
|
| 50331 | 2060  | 
finally have "\<forall>n\<ge>N. y \<le> norm x ^ n"  | 
2061  | 
by (metis order_less_le_trans power_increasing order_less_imp_le x)  | 
|
2062  | 
then show "eventually (\<lambda>n. y \<le> norm (x ^ n)) sequentially"  | 
|
2063  | 
unfolding eventually_sequentially  | 
|
2064  | 
by (auto simp: norm_power)  | 
|
2065  | 
qed simp  | 
|
2066  | 
||
| 51471 | 2067  | 
|
| 
66456
 
621897f47fab
Various lemmas for HOL-Analysis
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
66447 
diff
changeset
 | 
2068  | 
lemma filterlim_divide_at_infinity:  | 
| 
 
621897f47fab
Various lemmas for HOL-Analysis
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
66447 
diff
changeset
 | 
2069  | 
fixes f g :: "'a \<Rightarrow> 'a :: real_normed_field"  | 
| 
 
621897f47fab
Various lemmas for HOL-Analysis
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
66447 
diff
changeset
 | 
2070  | 
assumes "filterlim f (nhds c) F" "filterlim g (at 0) F" "c \<noteq> 0"  | 
| 
 
621897f47fab
Various lemmas for HOL-Analysis
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
66447 
diff
changeset
 | 
2071  | 
shows "filterlim (\<lambda>x. f x / g x) at_infinity F"  | 
| 
 
621897f47fab
Various lemmas for HOL-Analysis
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
66447 
diff
changeset
 | 
2072  | 
proof -  | 
| 
 
621897f47fab
Various lemmas for HOL-Analysis
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
66447 
diff
changeset
 | 
2073  | 
have "filterlim (\<lambda>x. f x * inverse (g x)) at_infinity F"  | 
| 
 
621897f47fab
Various lemmas for HOL-Analysis
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
66447 
diff
changeset
 | 
2074  | 
by (intro tendsto_mult_filterlim_at_infinity[OF assms(1,3)]  | 
| 
 
621897f47fab
Various lemmas for HOL-Analysis
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
66447 
diff
changeset
 | 
2075  | 
filterlim_compose [OF filterlim_inverse_at_infinity assms(2)])  | 
| 
 
621897f47fab
Various lemmas for HOL-Analysis
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
66447 
diff
changeset
 | 
2076  | 
thus ?thesis by (simp add: field_simps)  | 
| 
 
621897f47fab
Various lemmas for HOL-Analysis
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
66447 
diff
changeset
 | 
2077  | 
qed  | 
| 
 
621897f47fab
Various lemmas for HOL-Analysis
 
Manuel Eberl <eberlm@in.tum.de> 
parents: 
66447 
diff
changeset
 | 
2078  | 
|
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2079  | 
subsection \<open>Floor and Ceiling\<close>  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2080  | 
|
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2081  | 
lemma eventually_floor_less:  | 
| 63546 | 2082  | 
  fixes f :: "'a \<Rightarrow> 'b::{order_topology,floor_ceiling}"
 | 
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2083  | 
assumes f: "(f \<longlongrightarrow> l) F"  | 
| 63546 | 2084  | 
and l: "l \<notin> \<int>"  | 
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2085  | 
shows "\<forall>\<^sub>F x in F. of_int (floor l) < f x"  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2086  | 
by (intro order_tendstoD[OF f]) (metis Ints_of_int antisym_conv2 floor_correct l)  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2087  | 
|
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2088  | 
lemma eventually_less_ceiling:  | 
| 63546 | 2089  | 
  fixes f :: "'a \<Rightarrow> 'b::{order_topology,floor_ceiling}"
 | 
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2090  | 
assumes f: "(f \<longlongrightarrow> l) F"  | 
| 63546 | 2091  | 
and l: "l \<notin> \<int>"  | 
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2092  | 
shows "\<forall>\<^sub>F x in F. f x < of_int (ceiling l)"  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2093  | 
by (intro order_tendstoD[OF f]) (metis Ints_of_int l le_of_int_ceiling less_le)  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2094  | 
|
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2095  | 
lemma eventually_floor_eq:  | 
| 63546 | 2096  | 
  fixes f::"'a \<Rightarrow> 'b::{order_topology,floor_ceiling}"
 | 
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2097  | 
assumes f: "(f \<longlongrightarrow> l) F"  | 
| 63546 | 2098  | 
and l: "l \<notin> \<int>"  | 
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2099  | 
shows "\<forall>\<^sub>F x in F. floor (f x) = floor l"  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2100  | 
using eventually_floor_less[OF assms] eventually_less_ceiling[OF assms]  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2101  | 
by eventually_elim (meson floor_less_iff less_ceiling_iff not_less_iff_gr_or_eq)  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2102  | 
|
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2103  | 
lemma eventually_ceiling_eq:  | 
| 63546 | 2104  | 
  fixes f::"'a \<Rightarrow> 'b::{order_topology,floor_ceiling}"
 | 
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2105  | 
assumes f: "(f \<longlongrightarrow> l) F"  | 
| 63546 | 2106  | 
and l: "l \<notin> \<int>"  | 
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2107  | 
shows "\<forall>\<^sub>F x in F. ceiling (f x) = ceiling l"  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2108  | 
using eventually_floor_less[OF assms] eventually_less_ceiling[OF assms]  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2109  | 
by eventually_elim (meson floor_less_iff less_ceiling_iff not_less_iff_gr_or_eq)  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2110  | 
|
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2111  | 
lemma tendsto_of_int_floor:  | 
| 63546 | 2112  | 
  fixes f::"'a \<Rightarrow> 'b::{order_topology,floor_ceiling}"
 | 
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2113  | 
assumes "(f \<longlongrightarrow> l) F"  | 
| 63546 | 2114  | 
and "l \<notin> \<int>"  | 
2115  | 
  shows "((\<lambda>x. of_int (floor (f x)) :: 'c::{ring_1,topological_space}) \<longlongrightarrow> of_int (floor l)) F"
 | 
|
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2116  | 
using eventually_floor_eq[OF assms]  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2117  | 
by (simp add: eventually_mono topological_tendstoI)  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2118  | 
|
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2119  | 
lemma tendsto_of_int_ceiling:  | 
| 63546 | 2120  | 
  fixes f::"'a \<Rightarrow> 'b::{order_topology,floor_ceiling}"
 | 
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2121  | 
assumes "(f \<longlongrightarrow> l) F"  | 
| 63546 | 2122  | 
and "l \<notin> \<int>"  | 
2123  | 
  shows "((\<lambda>x. of_int (ceiling (f x)):: 'c::{ring_1,topological_space}) \<longlongrightarrow> of_int (ceiling l)) F"
 | 
|
| 
63263
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2124  | 
using eventually_ceiling_eq[OF assms]  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2125  | 
by (simp add: eventually_mono topological_tendstoI)  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2126  | 
|
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2127  | 
lemma continuous_on_of_int_floor:  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2128  | 
  "continuous_on (UNIV - \<int>::'a::{order_topology, floor_ceiling} set)
 | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2129  | 
    (\<lambda>x. of_int (floor x)::'b::{ring_1, topological_space})"
 | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2130  | 
unfolding continuous_on_def  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2131  | 
by (auto intro!: tendsto_of_int_floor)  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2132  | 
|
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2133  | 
lemma continuous_on_of_int_ceiling:  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2134  | 
  "continuous_on (UNIV - \<int>::'a::{order_topology, floor_ceiling} set)
 | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2135  | 
    (\<lambda>x. of_int (ceiling x)::'b::{ring_1, topological_space})"
 | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2136  | 
unfolding continuous_on_def  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2137  | 
by (auto intro!: tendsto_of_int_ceiling)  | 
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2138  | 
|
| 
 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 
immler 
parents: 
63104 
diff
changeset
 | 
2139  | 
|
| 60758 | 2140  | 
subsection \<open>Limits of Sequences\<close>  | 
| 51526 | 2141  | 
|
| 62368 | 2142  | 
lemma [trans]: "X = Y \<Longrightarrow> Y \<longlonglongrightarrow> z \<Longrightarrow> X \<longlonglongrightarrow> z"  | 
| 51526 | 2143  | 
by simp  | 
2144  | 
||
2145  | 
lemma LIMSEQ_iff:  | 
|
2146  | 
fixes L :: "'a::real_normed_vector"  | 
|
| 61969 | 2147  | 
shows "(X \<longlonglongrightarrow> L) = (\<forall>r>0. \<exists>no. \<forall>n \<ge> no. norm (X n - L) < r)"  | 
| 
60017
 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 
paulson <lp15@cam.ac.uk> 
parents: 
59867 
diff
changeset
 | 
2148  | 
unfolding lim_sequentially dist_norm ..  | 
| 51526 | 2149  | 
|
| 63546 | 2150  | 
lemma LIMSEQ_I: "(\<And>r. 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n - L) < r) \<Longrightarrow> X \<longlonglongrightarrow> L"  | 
2151  | 
for L :: "'a::real_normed_vector"  | 
|
2152  | 
by (simp add: LIMSEQ_iff)  | 
|
2153  | 
||
2154  | 
lemma LIMSEQ_D: "X \<longlonglongrightarrow> L \<Longrightarrow> 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n - L) < r"  | 
|
2155  | 
for L :: "'a::real_normed_vector"  | 
|
2156  | 
by (simp add: LIMSEQ_iff)  | 
|
2157  | 
||
2158  | 
lemma LIMSEQ_linear: "X \<longlonglongrightarrow> x \<Longrightarrow> l > 0 \<Longrightarrow> (\<lambda> n. X (n * l)) \<longlonglongrightarrow> x"  | 
|
| 51526 | 2159  | 
unfolding tendsto_def eventually_sequentially  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57447 
diff
changeset
 | 
2160  | 
by (metis div_le_dividend div_mult_self1_is_m le_trans mult.commute)  | 
| 51526 | 2161  | 
|
| 63546 | 2162  | 
|
2163  | 
text \<open>Transformation of limit.\<close>  | 
|
2164  | 
||
2165  | 
lemma Lim_transform: "(g \<longlongrightarrow> a) F \<Longrightarrow> ((\<lambda>x. f x - g x) \<longlongrightarrow> 0) F \<Longrightarrow> (f \<longlongrightarrow> a) F"  | 
|
2166  | 
for a b :: "'a::real_normed_vector"  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2167  | 
using tendsto_add [of g a F "\<lambda>x. f x - g x" 0] by simp  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2168  | 
|
| 63546 | 2169  | 
lemma Lim_transform2: "(f \<longlongrightarrow> a) F \<Longrightarrow> ((\<lambda>x. f x - g x) \<longlongrightarrow> 0) F \<Longrightarrow> (g \<longlongrightarrow> a) F"  | 
2170  | 
for a b :: "'a::real_normed_vector"  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2171  | 
by (erule Lim_transform) (simp add: tendsto_minus_cancel)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2172  | 
|
| 63546 | 2173  | 
proposition Lim_transform_eq: "((\<lambda>x. f x - g x) \<longlongrightarrow> 0) F \<Longrightarrow> (f \<longlongrightarrow> a) F \<longleftrightarrow> (g \<longlongrightarrow> a) F"  | 
2174  | 
for a :: "'a::real_normed_vector"  | 
|
2175  | 
using Lim_transform Lim_transform2 by blast  | 
|
| 
62379
 
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
 
paulson <lp15@cam.ac.uk> 
parents: 
62369 
diff
changeset
 | 
2176  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2177  | 
lemma Lim_transform_eventually:  | 
| 
70532
 
fcf3b891ccb1
new material; rotated premises of Lim_transform_eventually
 
paulson <lp15@cam.ac.uk> 
parents: 
70365 
diff
changeset
 | 
2178  | 
"\<lbrakk>(f \<longlongrightarrow> l) F; eventually (\<lambda>x. f x = g x) F\<rbrakk> \<Longrightarrow> (g \<longlongrightarrow> l) F"  | 
| 68615 | 2179  | 
using eventually_elim2 by (fastforce simp add: tendsto_def)  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2180  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2181  | 
lemma Lim_transform_within:  | 
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2182  | 
assumes "(f \<longlongrightarrow> l) (at x within S)"  | 
| 
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2183  | 
and "0 < d"  | 
| 63546 | 2184  | 
and "\<And>x'. x'\<in>S \<Longrightarrow> 0 < dist x' x \<Longrightarrow> dist x' x < d \<Longrightarrow> f x' = g x'"  | 
| 61973 | 2185  | 
shows "(g \<longlongrightarrow> l) (at x within S)"  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2186  | 
proof (rule Lim_transform_eventually)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2187  | 
show "eventually (\<lambda>x. f x = g x) (at x within S)"  | 
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2188  | 
using assms by (auto simp: eventually_at)  | 
| 63546 | 2189  | 
show "(f \<longlongrightarrow> l) (at x within S)"  | 
2190  | 
by fact  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2191  | 
qed  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2192  | 
|
| 
67706
 
4ddc49205f5d
Unified the order of zeros and poles; improved reasoning around non-essential singularites
 
Wenda Li <wl302@cam.ac.uk> 
parents: 
67673 
diff
changeset
 | 
2193  | 
lemma filterlim_transform_within:  | 
| 
 
4ddc49205f5d
Unified the order of zeros and poles; improved reasoning around non-essential singularites
 
Wenda Li <wl302@cam.ac.uk> 
parents: 
67673 
diff
changeset
 | 
2194  | 
assumes "filterlim g G (at x within S)"  | 
| 
 
4ddc49205f5d
Unified the order of zeros and poles; improved reasoning around non-essential singularites
 
Wenda Li <wl302@cam.ac.uk> 
parents: 
67673 
diff
changeset
 | 
2195  | 
assumes "G \<le> F" "0<d" "(\<And>x'. x' \<in> S \<Longrightarrow> 0 < dist x' x \<Longrightarrow> dist x' x < d \<Longrightarrow> f x' = g x') "  | 
| 
 
4ddc49205f5d
Unified the order of zeros and poles; improved reasoning around non-essential singularites
 
Wenda Li <wl302@cam.ac.uk> 
parents: 
67673 
diff
changeset
 | 
2196  | 
shows "filterlim f F (at x within S)"  | 
| 
 
4ddc49205f5d
Unified the order of zeros and poles; improved reasoning around non-essential singularites
 
Wenda Li <wl302@cam.ac.uk> 
parents: 
67673 
diff
changeset
 | 
2197  | 
using assms  | 
| 
 
4ddc49205f5d
Unified the order of zeros and poles; improved reasoning around non-essential singularites
 
Wenda Li <wl302@cam.ac.uk> 
parents: 
67673 
diff
changeset
 | 
2198  | 
apply (elim filterlim_mono_eventually)  | 
| 
 
4ddc49205f5d
Unified the order of zeros and poles; improved reasoning around non-essential singularites
 
Wenda Li <wl302@cam.ac.uk> 
parents: 
67673 
diff
changeset
 | 
2199  | 
unfolding eventually_at by auto  | 
| 
 
4ddc49205f5d
Unified the order of zeros and poles; improved reasoning around non-essential singularites
 
Wenda Li <wl302@cam.ac.uk> 
parents: 
67673 
diff
changeset
 | 
2200  | 
|
| 63546 | 2201  | 
text \<open>Common case assuming being away from some crucial point like 0.\<close>  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2202  | 
lemma Lim_transform_away_within:  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2203  | 
fixes a b :: "'a::t1_space"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2204  | 
assumes "a \<noteq> b"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2205  | 
and "\<forall>x\<in>S. x \<noteq> a \<and> x \<noteq> b \<longrightarrow> f x = g x"  | 
| 61973 | 2206  | 
and "(f \<longlongrightarrow> l) (at a within S)"  | 
2207  | 
shows "(g \<longlongrightarrow> l) (at a within S)"  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2208  | 
proof (rule Lim_transform_eventually)  | 
| 63546 | 2209  | 
show "(f \<longlongrightarrow> l) (at a within S)"  | 
2210  | 
by fact  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2211  | 
show "eventually (\<lambda>x. f x = g x) (at a within S)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2212  | 
unfolding eventually_at_topological  | 
| 63546 | 2213  | 
    by (rule exI [where x="- {b}"]) (simp add: open_Compl assms)
 | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2214  | 
qed  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2215  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2216  | 
lemma Lim_transform_away_at:  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2217  | 
fixes a b :: "'a::t1_space"  | 
| 63546 | 2218  | 
assumes ab: "a \<noteq> b"  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2219  | 
and fg: "\<forall>x. x \<noteq> a \<and> x \<noteq> b \<longrightarrow> f x = g x"  | 
| 61973 | 2220  | 
and fl: "(f \<longlongrightarrow> l) (at a)"  | 
2221  | 
shows "(g \<longlongrightarrow> l) (at a)"  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2222  | 
using Lim_transform_away_within[OF ab, of UNIV f g l] fg fl by simp  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2223  | 
|
| 63546 | 2224  | 
text \<open>Alternatively, within an open set.\<close>  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2225  | 
lemma Lim_transform_within_open:  | 
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2226  | 
assumes "(f \<longlongrightarrow> l) (at a within T)"  | 
| 
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2227  | 
and "open s" and "a \<in> s"  | 
| 63546 | 2228  | 
and "\<And>x. x\<in>s \<Longrightarrow> x \<noteq> a \<Longrightarrow> f x = g x"  | 
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2229  | 
shows "(g \<longlongrightarrow> l) (at a within T)"  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2230  | 
proof (rule Lim_transform_eventually)  | 
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2231  | 
show "eventually (\<lambda>x. f x = g x) (at a within T)"  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2232  | 
unfolding eventually_at_topological  | 
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2233  | 
using assms by auto  | 
| 
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2234  | 
show "(f \<longlongrightarrow> l) (at a within T)" by fact  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2235  | 
qed  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2236  | 
|
| 63546 | 2237  | 
|
2238  | 
text \<open>A congruence rule allowing us to transform limits assuming not at point.\<close>  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2239  | 
|
| 72220 | 2240  | 
lemma Lim_cong_within:  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2241  | 
assumes "a = b"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2242  | 
and "x = y"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2243  | 
and "S = T"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2244  | 
and "\<And>x. x \<noteq> b \<Longrightarrow> x \<in> T \<Longrightarrow> f x = g x"  | 
| 61973 | 2245  | 
shows "(f \<longlongrightarrow> x) (at a within S) \<longleftrightarrow> (g \<longlongrightarrow> y) (at b within T)"  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2246  | 
unfolding tendsto_def eventually_at_topological  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2247  | 
using assms by simp  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2248  | 
|
| 63546 | 2249  | 
text \<open>An unbounded sequence's inverse tends to 0.\<close>  | 
| 
65578
 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 
paulson <lp15@cam.ac.uk> 
parents: 
65204 
diff
changeset
 | 
2250  | 
lemma LIMSEQ_inverse_zero:  | 
| 
 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 
paulson <lp15@cam.ac.uk> 
parents: 
65204 
diff
changeset
 | 
2251  | 
assumes "\<And>r::real. \<exists>N. \<forall>n\<ge>N. r < X n"  | 
| 
 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 
paulson <lp15@cam.ac.uk> 
parents: 
65204 
diff
changeset
 | 
2252  | 
shows "(\<lambda>n. inverse (X n)) \<longlonglongrightarrow> 0"  | 
| 51526 | 2253  | 
apply (rule filterlim_compose[OF tendsto_inverse_0])  | 
| 68615 | 2254  | 
by (metis assms eventually_at_top_linorderI filterlim_at_top_dense filterlim_at_top_imp_at_infinity)  | 
| 51526 | 2255  | 
|
| 69593 | 2256  | 
text \<open>The sequence \<^term>\<open>1/n\<close> tends to 0 as \<^term>\<open>n\<close> tends to infinity.\<close>  | 
| 63546 | 2257  | 
lemma LIMSEQ_inverse_real_of_nat: "(\<lambda>n. inverse (real (Suc n))) \<longlonglongrightarrow> 0"  | 
| 51526 | 2258  | 
by (metis filterlim_compose tendsto_inverse_0 filterlim_mono order_refl filterlim_Suc  | 
| 63546 | 2259  | 
filterlim_compose[OF filterlim_real_sequentially] at_top_le_at_infinity)  | 
2260  | 
||
2261  | 
text \<open>  | 
|
| 69593 | 2262  | 
The sequence \<^term>\<open>r + 1/n\<close> tends to \<^term>\<open>r\<close> as \<^term>\<open>n\<close> tends to  | 
| 63546 | 2263  | 
infinity is now easily proved.  | 
2264  | 
\<close>  | 
|
2265  | 
||
2266  | 
lemma LIMSEQ_inverse_real_of_nat_add: "(\<lambda>n. r + inverse (real (Suc n))) \<longlonglongrightarrow> r"  | 
|
| 51526 | 2267  | 
using tendsto_add [OF tendsto_const LIMSEQ_inverse_real_of_nat] by auto  | 
2268  | 
||
| 63546 | 2269  | 
lemma LIMSEQ_inverse_real_of_nat_add_minus: "(\<lambda>n. r + -inverse (real (Suc n))) \<longlonglongrightarrow> r"  | 
| 51526 | 2270  | 
using tendsto_add [OF tendsto_const tendsto_minus [OF LIMSEQ_inverse_real_of_nat]]  | 
2271  | 
by auto  | 
|
2272  | 
||
| 63546 | 2273  | 
lemma LIMSEQ_inverse_real_of_nat_add_minus_mult: "(\<lambda>n. r * (1 + - inverse (real (Suc n)))) \<longlonglongrightarrow> r"  | 
| 51526 | 2274  | 
using tendsto_mult [OF tendsto_const LIMSEQ_inverse_real_of_nat_add_minus [of 1]]  | 
2275  | 
by auto  | 
|
2276  | 
||
| 61973 | 2277  | 
lemma lim_inverse_n: "((\<lambda>n. inverse(of_nat n)) \<longlongrightarrow> (0::'a::real_normed_field)) sequentially"  | 
| 
61524
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2278  | 
using lim_1_over_n by (simp add: inverse_eq_divide)  | 
| 
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2279  | 
|
| 
67685
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
2280  | 
lemma lim_inverse_n': "((\<lambda>n. 1 / n) \<longlongrightarrow> 0) sequentially"  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
2281  | 
using lim_inverse_n  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
2282  | 
by (simp add: inverse_eq_divide)  | 
| 
 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 
immler 
parents: 
67673 
diff
changeset
 | 
2283  | 
|
| 61969 | 2284  | 
lemma LIMSEQ_Suc_n_over_n: "(\<lambda>n. of_nat (Suc n) / of_nat n :: 'a :: real_normed_field) \<longlonglongrightarrow> 1"  | 
| 
61524
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2285  | 
proof (rule Lim_transform_eventually)  | 
| 
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2286  | 
show "eventually (\<lambda>n. 1 + inverse (of_nat n :: 'a) = of_nat (Suc n) / of_nat n) sequentially"  | 
| 63546 | 2287  | 
using eventually_gt_at_top[of "0::nat"]  | 
2288  | 
by eventually_elim (simp add: field_simps)  | 
|
| 61969 | 2289  | 
have "(\<lambda>n. 1 + inverse (of_nat n) :: 'a) \<longlonglongrightarrow> 1 + 0"  | 
| 
61524
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2290  | 
by (intro tendsto_add tendsto_const lim_inverse_n)  | 
| 63546 | 2291  | 
then show "(\<lambda>n. 1 + inverse (of_nat n) :: 'a) \<longlonglongrightarrow> 1"  | 
2292  | 
by simp  | 
|
| 
61524
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2293  | 
qed  | 
| 
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2294  | 
|
| 61969 | 2295  | 
lemma LIMSEQ_n_over_Suc_n: "(\<lambda>n. of_nat n / of_nat (Suc n) :: 'a :: real_normed_field) \<longlonglongrightarrow> 1"  | 
| 
61524
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2296  | 
proof (rule Lim_transform_eventually)  | 
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2297  | 
show "eventually (\<lambda>n. inverse (of_nat (Suc n) / of_nat n :: 'a) =  | 
| 63546 | 2298  | 
of_nat n / of_nat (Suc n)) sequentially"  | 
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2299  | 
using eventually_gt_at_top[of "0::nat"]  | 
| 
61524
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2300  | 
by eventually_elim (simp add: field_simps del: of_nat_Suc)  | 
| 61969 | 2301  | 
have "(\<lambda>n. inverse (of_nat (Suc n) / of_nat n :: 'a)) \<longlonglongrightarrow> inverse 1"  | 
| 
61524
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2302  | 
by (intro tendsto_inverse LIMSEQ_Suc_n_over_n) simp_all  | 
| 63546 | 2303  | 
then show "(\<lambda>n. inverse (of_nat (Suc n) / of_nat n :: 'a)) \<longlonglongrightarrow> 1"  | 
2304  | 
by simp  | 
|
| 
61524
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2305  | 
qed  | 
| 
 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 
eberlm 
parents: 
61169 
diff
changeset
 | 
2306  | 
|
| 63546 | 2307  | 
|
| 60758 | 2308  | 
subsection \<open>Convergence on sequences\<close>  | 
| 51526 | 2309  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2310  | 
lemma convergent_cong:  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2311  | 
assumes "eventually (\<lambda>x. f x = g x) sequentially"  | 
| 63546 | 2312  | 
shows "convergent f \<longleftrightarrow> convergent g"  | 
2313  | 
unfolding convergent_def  | 
|
2314  | 
by (subst filterlim_cong[OF refl refl assms]) (rule refl)  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2315  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2316  | 
lemma convergent_Suc_iff: "convergent (\<lambda>n. f (Suc n)) \<longleftrightarrow> convergent f"  | 
| 71827 | 2317  | 
by (auto simp: convergent_def filterlim_sequentially_Suc)  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2318  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2319  | 
lemma convergent_ignore_initial_segment: "convergent (\<lambda>n. f (n + m)) = convergent f"  | 
| 63546 | 2320  | 
proof (induct m arbitrary: f)  | 
2321  | 
case 0  | 
|
2322  | 
then show ?case by simp  | 
|
2323  | 
next  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2324  | 
case (Suc m)  | 
| 63546 | 2325  | 
have "convergent (\<lambda>n. f (n + Suc m)) \<longleftrightarrow> convergent (\<lambda>n. f (Suc n + m))"  | 
2326  | 
by simp  | 
|
2327  | 
also have "\<dots> \<longleftrightarrow> convergent (\<lambda>n. f (n + m))"  | 
|
2328  | 
by (rule convergent_Suc_iff)  | 
|
2329  | 
also have "\<dots> \<longleftrightarrow> convergent f"  | 
|
2330  | 
by (rule Suc)  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2331  | 
finally show ?case .  | 
| 63546 | 2332  | 
qed  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2333  | 
|
| 51526 | 2334  | 
lemma convergent_add:  | 
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2335  | 
fixes X Y :: "nat \<Rightarrow> 'a::topological_monoid_add"  | 
| 51526 | 2336  | 
assumes "convergent (\<lambda>n. X n)"  | 
| 63546 | 2337  | 
and "convergent (\<lambda>n. Y n)"  | 
| 51526 | 2338  | 
shows "convergent (\<lambda>n. X n + Y n)"  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
2339  | 
using assms unfolding convergent_def by (blast intro: tendsto_add)  | 
| 51526 | 2340  | 
|
| 64267 | 2341  | 
lemma convergent_sum:  | 
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2342  | 
fixes X :: "'a \<Rightarrow> nat \<Rightarrow> 'b::topological_comm_monoid_add"  | 
| 63915 | 2343  | 
shows "(\<And>i. i \<in> A \<Longrightarrow> convergent (\<lambda>n. X i n)) \<Longrightarrow> convergent (\<lambda>n. \<Sum>i\<in>A. X i n)"  | 
2344  | 
by (induct A rule: infinite_finite_induct) (simp_all add: convergent_const convergent_add)  | 
|
| 51526 | 2345  | 
|
2346  | 
lemma (in bounded_linear) convergent:  | 
|
2347  | 
assumes "convergent (\<lambda>n. X n)"  | 
|
2348  | 
shows "convergent (\<lambda>n. f (X n))"  | 
|
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
2349  | 
using assms unfolding convergent_def by (blast intro: tendsto)  | 
| 51526 | 2350  | 
|
2351  | 
lemma (in bounded_bilinear) convergent:  | 
|
| 63546 | 2352  | 
assumes "convergent (\<lambda>n. X n)"  | 
2353  | 
and "convergent (\<lambda>n. Y n)"  | 
|
| 51526 | 2354  | 
shows "convergent (\<lambda>n. X n ** Y n)"  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
2355  | 
using assms unfolding convergent_def by (blast intro: tendsto)  | 
| 51526 | 2356  | 
|
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2357  | 
lemma convergent_minus_iff:  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2358  | 
fixes X :: "nat \<Rightarrow> 'a::topological_group_add"  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2359  | 
shows "convergent X \<longleftrightarrow> convergent (\<lambda>n. - X n)"  | 
| 
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2360  | 
unfolding convergent_def by (force dest: tendsto_minus)  | 
| 51526 | 2361  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2362  | 
lemma convergent_diff:  | 
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2363  | 
fixes X Y :: "nat \<Rightarrow> 'a::topological_group_add"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2364  | 
assumes "convergent (\<lambda>n. X n)"  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2365  | 
assumes "convergent (\<lambda>n. Y n)"  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2366  | 
shows "convergent (\<lambda>n. X n - Y n)"  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
2367  | 
using assms unfolding convergent_def by (blast intro: tendsto_diff)  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2368  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2369  | 
lemma convergent_norm:  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2370  | 
assumes "convergent f"  | 
| 63546 | 2371  | 
shows "convergent (\<lambda>n. norm (f n))"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2372  | 
proof -  | 
| 63546 | 2373  | 
from assms have "f \<longlonglongrightarrow> lim f"  | 
2374  | 
by (simp add: convergent_LIMSEQ_iff)  | 
|
2375  | 
then have "(\<lambda>n. norm (f n)) \<longlonglongrightarrow> norm (lim f)"  | 
|
2376  | 
by (rule tendsto_norm)  | 
|
2377  | 
then show ?thesis  | 
|
2378  | 
by (auto simp: convergent_def)  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2379  | 
qed  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2380  | 
|
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2381  | 
lemma convergent_of_real:  | 
| 63546 | 2382  | 
"convergent f \<Longrightarrow> convergent (\<lambda>n. of_real (f n) :: 'a::real_normed_algebra_1)"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2383  | 
unfolding convergent_def by (blast intro!: tendsto_of_real)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2384  | 
|
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2385  | 
lemma convergent_add_const_iff:  | 
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2386  | 
"convergent (\<lambda>n. c + f n :: 'a::topological_ab_group_add) \<longleftrightarrow> convergent f"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2387  | 
proof  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2388  | 
assume "convergent (\<lambda>n. c + f n)"  | 
| 63546 | 2389  | 
from convergent_diff[OF this convergent_const[of c]] show "convergent f"  | 
2390  | 
by simp  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2391  | 
next  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2392  | 
assume "convergent f"  | 
| 63546 | 2393  | 
from convergent_add[OF convergent_const[of c] this] show "convergent (\<lambda>n. c + f n)"  | 
2394  | 
by simp  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2395  | 
qed  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2396  | 
|
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2397  | 
lemma convergent_add_const_right_iff:  | 
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2398  | 
"convergent (\<lambda>n. f n + c :: 'a::topological_ab_group_add) \<longleftrightarrow> convergent f"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2399  | 
using convergent_add_const_iff[of c f] by (simp add: add_ac)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2400  | 
|
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2401  | 
lemma convergent_diff_const_right_iff:  | 
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2402  | 
"convergent (\<lambda>n. f n - c :: 'a::topological_ab_group_add) \<longleftrightarrow> convergent f"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2403  | 
using convergent_add_const_right_iff[of f "-c"] by (simp add: add_ac)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2404  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2405  | 
lemma convergent_mult:  | 
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2406  | 
fixes X Y :: "nat \<Rightarrow> 'a::topological_semigroup_mult"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2407  | 
assumes "convergent (\<lambda>n. X n)"  | 
| 63546 | 2408  | 
and "convergent (\<lambda>n. Y n)"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2409  | 
shows "convergent (\<lambda>n. X n * Y n)"  | 
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
2410  | 
using assms unfolding convergent_def by (blast intro: tendsto_mult)  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2411  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2412  | 
lemma convergent_mult_const_iff:  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2413  | 
assumes "c \<noteq> 0"  | 
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2414  | 
  shows "convergent (\<lambda>n. c * f n :: 'a::{field,topological_semigroup_mult}) \<longleftrightarrow> convergent f"
 | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2415  | 
proof  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2416  | 
assume "convergent (\<lambda>n. c * f n)"  | 
| 
62087
 
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
 
paulson 
parents: 
61976 
diff
changeset
 | 
2417  | 
from assms convergent_mult[OF this convergent_const[of "inverse c"]]  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2418  | 
show "convergent f" by (simp add: field_simps)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2419  | 
next  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2420  | 
assume "convergent f"  | 
| 63546 | 2421  | 
from convergent_mult[OF convergent_const[of c] this] show "convergent (\<lambda>n. c * f n)"  | 
2422  | 
by simp  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2423  | 
qed  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2424  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2425  | 
lemma convergent_mult_const_right_iff:  | 
| 
68064
 
b249fab48c76
type class generalisations; some work on infinite products
 
paulson <lp15@cam.ac.uk> 
parents: 
67958 
diff
changeset
 | 
2426  | 
  fixes c :: "'a::{field,topological_semigroup_mult}"
 | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2427  | 
assumes "c \<noteq> 0"  | 
| 63546 | 2428  | 
shows "convergent (\<lambda>n. f n * c) \<longleftrightarrow> convergent f"  | 
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2429  | 
using convergent_mult_const_iff[OF assms, of f] by (simp add: mult_ac)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2430  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2431  | 
lemma convergent_imp_Bseq: "convergent f \<Longrightarrow> Bseq f"  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2432  | 
by (simp add: Cauchy_Bseq convergent_Cauchy)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2433  | 
|
| 51526 | 2434  | 
|
| 60758 | 2435  | 
text \<open>A monotone sequence converges to its least upper bound.\<close>  | 
| 51526 | 2436  | 
|
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
2437  | 
lemma LIMSEQ_incseq_SUP:  | 
| 63546 | 2438  | 
  fixes X :: "nat \<Rightarrow> 'a::{conditionally_complete_linorder,linorder_topology}"
 | 
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
2439  | 
assumes u: "bdd_above (range X)"  | 
| 63546 | 2440  | 
and X: "incseq X"  | 
| 61969 | 2441  | 
shows "X \<longlonglongrightarrow> (SUP i. X i)"  | 
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
2442  | 
by (rule order_tendstoI)  | 
| 63546 | 2443  | 
(auto simp: eventually_sequentially u less_cSUP_iff  | 
2444  | 
intro: X[THEN incseqD] less_le_trans cSUP_lessD[OF u])  | 
|
| 51526 | 2445  | 
|
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
2446  | 
lemma LIMSEQ_decseq_INF:  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
2447  | 
  fixes X :: "nat \<Rightarrow> 'a::{conditionally_complete_linorder, linorder_topology}"
 | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
2448  | 
assumes u: "bdd_below (range X)"  | 
| 63546 | 2449  | 
and X: "decseq X"  | 
| 61969 | 2450  | 
shows "X \<longlonglongrightarrow> (INF i. X i)"  | 
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
2451  | 
by (rule order_tendstoI)  | 
| 63546 | 2452  | 
(auto simp: eventually_sequentially u cINF_less_iff  | 
2453  | 
intro: X[THEN decseqD] le_less_trans less_cINF_D[OF u])  | 
|
2454  | 
||
2455  | 
text \<open>Main monotonicity theorem.\<close>  | 
|
2456  | 
||
2457  | 
lemma Bseq_monoseq_convergent: "Bseq X \<Longrightarrow> monoseq X \<Longrightarrow> convergent X"  | 
|
2458  | 
for X :: "nat \<Rightarrow> real"  | 
|
2459  | 
by (auto simp: monoseq_iff convergent_def intro: LIMSEQ_decseq_INF LIMSEQ_incseq_SUP  | 
|
2460  | 
dest: Bseq_bdd_above Bseq_bdd_below)  | 
|
2461  | 
||
2462  | 
lemma Bseq_mono_convergent: "Bseq X \<Longrightarrow> (\<forall>m n. m \<le> n \<longrightarrow> X m \<le> X n) \<Longrightarrow> convergent X"  | 
|
2463  | 
for X :: "nat \<Rightarrow> real"  | 
|
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
2464  | 
by (auto intro!: Bseq_monoseq_convergent incseq_imp_monoseq simp: incseq_def)  | 
| 51526 | 2465  | 
|
| 63546 | 2466  | 
lemma monoseq_imp_convergent_iff_Bseq: "monoseq f \<Longrightarrow> convergent f \<longleftrightarrow> Bseq f"  | 
2467  | 
for f :: "nat \<Rightarrow> real"  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2468  | 
using Bseq_monoseq_convergent[of f] convergent_imp_Bseq[of f] by blast  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2469  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2470  | 
lemma Bseq_monoseq_convergent'_inc:  | 
| 63546 | 2471  | 
fixes f :: "nat \<Rightarrow> real"  | 
2472  | 
shows "Bseq (\<lambda>n. f (n + M)) \<Longrightarrow> (\<And>m n. M \<le> m \<Longrightarrow> m \<le> n \<Longrightarrow> f m \<le> f n) \<Longrightarrow> convergent f"  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2473  | 
by (subst convergent_ignore_initial_segment [symmetric, of _ M])  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2474  | 
(auto intro!: Bseq_monoseq_convergent simp: monoseq_def)  | 
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2475  | 
|
| 
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2476  | 
lemma Bseq_monoseq_convergent'_dec:  | 
| 63546 | 2477  | 
fixes f :: "nat \<Rightarrow> real"  | 
2478  | 
shows "Bseq (\<lambda>n. f (n + M)) \<Longrightarrow> (\<And>m n. M \<le> m \<Longrightarrow> m \<le> n \<Longrightarrow> f m \<ge> f n) \<Longrightarrow> convergent f"  | 
|
| 
61531
 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 
eberlm 
parents: 
61524 
diff
changeset
 | 
2479  | 
by (subst convergent_ignore_initial_segment [symmetric, of _ M])  | 
| 63546 | 2480  | 
(auto intro!: Bseq_monoseq_convergent simp: monoseq_def)  | 
2481  | 
||
2482  | 
lemma Cauchy_iff: "Cauchy X \<longleftrightarrow> (\<forall>e>0. \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e)"  | 
|
2483  | 
for X :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
|
| 51526 | 2484  | 
unfolding Cauchy_def dist_norm ..  | 
2485  | 
||
| 63546 | 2486  | 
lemma CauchyI: "(\<And>e. 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e) \<Longrightarrow> Cauchy X"  | 
2487  | 
for X :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
|
2488  | 
by (simp add: Cauchy_iff)  | 
|
2489  | 
||
2490  | 
lemma CauchyD: "Cauchy X \<Longrightarrow> 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e"  | 
|
2491  | 
for X :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
|
2492  | 
by (simp add: Cauchy_iff)  | 
|
| 51526 | 2493  | 
|
2494  | 
lemma incseq_convergent:  | 
|
2495  | 
fixes X :: "nat \<Rightarrow> real"  | 
|
| 63546 | 2496  | 
assumes "incseq X"  | 
2497  | 
and "\<forall>i. X i \<le> B"  | 
|
| 61969 | 2498  | 
obtains L where "X \<longlonglongrightarrow> L" "\<forall>i. X i \<le> L"  | 
| 51526 | 2499  | 
proof atomize_elim  | 
| 60758 | 2500  | 
from incseq_bounded[OF assms] \<open>incseq X\<close> Bseq_monoseq_convergent[of X]  | 
| 61969 | 2501  | 
obtain L where "X \<longlonglongrightarrow> L"  | 
| 51526 | 2502  | 
by (auto simp: convergent_def monoseq_def incseq_def)  | 
| 61969 | 2503  | 
with \<open>incseq X\<close> show "\<exists>L. X \<longlonglongrightarrow> L \<and> (\<forall>i. X i \<le> L)"  | 
| 51526 | 2504  | 
by (auto intro!: exI[of _ L] incseq_le)  | 
2505  | 
qed  | 
|
2506  | 
||
2507  | 
lemma decseq_convergent:  | 
|
2508  | 
fixes X :: "nat \<Rightarrow> real"  | 
|
| 63546 | 2509  | 
assumes "decseq X"  | 
2510  | 
and "\<forall>i. B \<le> X i"  | 
|
| 61969 | 2511  | 
obtains L where "X \<longlonglongrightarrow> L" "\<forall>i. L \<le> X i"  | 
| 51526 | 2512  | 
proof atomize_elim  | 
| 60758 | 2513  | 
from decseq_bounded[OF assms] \<open>decseq X\<close> Bseq_monoseq_convergent[of X]  | 
| 61969 | 2514  | 
obtain L where "X \<longlonglongrightarrow> L"  | 
| 51526 | 2515  | 
by (auto simp: convergent_def monoseq_def decseq_def)  | 
| 61969 | 2516  | 
with \<open>decseq X\<close> show "\<exists>L. X \<longlonglongrightarrow> L \<and> (\<forall>i. L \<le> X i)"  | 
| 
68532
 
f8b98d31ad45
Incorporating new/strengthened proofs from Library and AFP entries
 
paulson <lp15@cam.ac.uk> 
parents: 
68296 
diff
changeset
 | 
2517  | 
by (auto intro!: exI[of _ L] decseq_ge)  | 
| 51526 | 2518  | 
qed  | 
2519  | 
||
| 
70694
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2520  | 
lemma monoseq_convergent:  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2521  | 
fixes X :: "nat \<Rightarrow> real"  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2522  | 
assumes X: "monoseq X" and B: "\<And>i. \<bar>X i\<bar> \<le> B"  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2523  | 
obtains L where "X \<longlonglongrightarrow> L"  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2524  | 
using X unfolding monoseq_iff  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2525  | 
proof  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2526  | 
assume "incseq X"  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2527  | 
show thesis  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2528  | 
using abs_le_D1 [OF B] incseq_convergent [OF \<open>incseq X\<close>] that by meson  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2529  | 
next  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2530  | 
assume "decseq X"  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2531  | 
show thesis  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2532  | 
using decseq_convergent [OF \<open>decseq X\<close>] that  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2533  | 
by (metis B abs_le_iff add.inverse_inverse neg_le_iff_le)  | 
| 
 
ae37b8fbf023
New theory Equivalence_Measurable_On_Borel, with the HOL Light notion of measurable_on and its equivalence to ours
 
paulson <lp15@cam.ac.uk> 
parents: 
70688 
diff
changeset
 | 
2534  | 
qed  | 
| 63546 | 2535  | 
|
| 60758 | 2536  | 
subsection \<open>Power Sequences\<close>  | 
| 51526 | 2537  | 
|
| 63546 | 2538  | 
lemma Bseq_realpow: "0 \<le> x \<Longrightarrow> x \<le> 1 \<Longrightarrow> Bseq (\<lambda>n. x ^ n)"  | 
2539  | 
for x :: real  | 
|
| 68615 | 2540  | 
by (metis decseq_bounded decseq_def power_decreasing zero_le_power)  | 
| 63546 | 2541  | 
|
2542  | 
lemma monoseq_realpow: "0 \<le> x \<Longrightarrow> x \<le> 1 \<Longrightarrow> monoseq (\<lambda>n. x ^ n)"  | 
|
2543  | 
for x :: real  | 
|
| 68615 | 2544  | 
using monoseq_def power_decreasing by blast  | 
| 63546 | 2545  | 
|
2546  | 
lemma convergent_realpow: "0 \<le> x \<Longrightarrow> x \<le> 1 \<Longrightarrow> convergent (\<lambda>n. x ^ n)"  | 
|
2547  | 
for x :: real  | 
|
2548  | 
by (blast intro!: Bseq_monoseq_convergent Bseq_realpow monoseq_realpow)  | 
|
2549  | 
||
2550  | 
lemma LIMSEQ_inverse_realpow_zero: "1 < x \<Longrightarrow> (\<lambda>n. inverse (x ^ n)) \<longlonglongrightarrow> 0"  | 
|
2551  | 
for x :: real  | 
|
| 51526 | 2552  | 
by (rule filterlim_compose[OF tendsto_inverse_0 filterlim_realpow_sequentially_gt1]) simp  | 
2553  | 
||
2554  | 
lemma LIMSEQ_realpow_zero:  | 
|
| 63546 | 2555  | 
fixes x :: real  | 
2556  | 
assumes "0 \<le> x" "x < 1"  | 
|
2557  | 
shows "(\<lambda>n. x ^ n) \<longlonglongrightarrow> 0"  | 
|
2558  | 
proof (cases "x = 0")  | 
|
2559  | 
case False  | 
|
2560  | 
with \<open>0 \<le> x\<close> have x0: "0 < x" by simp  | 
|
2561  | 
then have "1 < inverse x"  | 
|
2562  | 
using \<open>x < 1\<close> by (rule one_less_inverse)  | 
|
2563  | 
then have "(\<lambda>n. inverse (inverse x ^ n)) \<longlonglongrightarrow> 0"  | 
|
| 51526 | 2564  | 
by (rule LIMSEQ_inverse_realpow_zero)  | 
| 63546 | 2565  | 
then show ?thesis by (simp add: power_inverse)  | 
2566  | 
next  | 
|
2567  | 
case True  | 
|
2568  | 
show ?thesis  | 
|
2569  | 
by (rule LIMSEQ_imp_Suc) (simp add: True)  | 
|
2570  | 
qed  | 
|
2571  | 
||
| 
70723
 
4e39d87c9737
imported new material mostly due to Sébastien Gouëzel
 
paulson <lp15@cam.ac.uk> 
parents: 
70694 
diff
changeset
 | 
2572  | 
lemma LIMSEQ_power_zero [tendsto_intros]: "norm x < 1 \<Longrightarrow> (\<lambda>n. x ^ n) \<longlonglongrightarrow> 0"  | 
| 63546 | 2573  | 
for x :: "'a::real_normed_algebra_1"  | 
2574  | 
apply (drule LIMSEQ_realpow_zero [OF norm_ge_zero])  | 
|
| 68615 | 2575  | 
by (simp add: Zfun_le norm_power_ineq tendsto_Zfun_iff)  | 
| 51526 | 2576  | 
|
| 61969 | 2577  | 
lemma LIMSEQ_divide_realpow_zero: "1 < x \<Longrightarrow> (\<lambda>n. a / (x ^ n) :: real) \<longlonglongrightarrow> 0"  | 
| 51526 | 2578  | 
by (rule tendsto_divide_0 [OF tendsto_const filterlim_realpow_sequentially_gt1]) simp  | 
2579  | 
||
| 63556 | 2580  | 
lemma  | 
2581  | 
tendsto_power_zero:  | 
|
2582  | 
fixes x::"'a::real_normed_algebra_1"  | 
|
2583  | 
assumes "filterlim f at_top F"  | 
|
2584  | 
assumes "norm x < 1"  | 
|
2585  | 
shows "((\<lambda>y. x ^ (f y)) \<longlongrightarrow> 0) F"  | 
|
2586  | 
proof (rule tendstoI)  | 
|
2587  | 
fix e::real assume "0 < e"  | 
|
2588  | 
from tendstoD[OF LIMSEQ_power_zero[OF \<open>norm x < 1\<close>] \<open>0 < e\<close>]  | 
|
2589  | 
have "\<forall>\<^sub>F xa in sequentially. norm (x ^ xa) < e"  | 
|
2590  | 
by simp  | 
|
2591  | 
then obtain N where N: "norm (x ^ n) < e" if "n \<ge> N" for n  | 
|
2592  | 
by (auto simp: eventually_sequentially)  | 
|
2593  | 
have "\<forall>\<^sub>F i in F. f i \<ge> N"  | 
|
2594  | 
using \<open>filterlim f sequentially F\<close>  | 
|
2595  | 
by (simp add: filterlim_at_top)  | 
|
2596  | 
then show "\<forall>\<^sub>F i in F. dist (x ^ f i) 0 < e"  | 
|
| 68615 | 2597  | 
by eventually_elim (auto simp: N)  | 
| 63556 | 2598  | 
qed  | 
2599  | 
||
| 69593 | 2600  | 
text \<open>Limit of \<^term>\<open>c^n\<close> for \<^term>\<open>\<bar>c\<bar> < 1\<close>.\<close>  | 
| 51526 | 2601  | 
|
| 68614 | 2602  | 
lemma LIMSEQ_abs_realpow_zero: "\<bar>c\<bar> < 1 \<Longrightarrow> (\<lambda>n. \<bar>c\<bar> ^ n :: real) \<longlonglongrightarrow> 0"  | 
| 51526 | 2603  | 
by (rule LIMSEQ_realpow_zero [OF abs_ge_zero])  | 
2604  | 
||
| 68614 | 2605  | 
lemma LIMSEQ_abs_realpow_zero2: "\<bar>c\<bar> < 1 \<Longrightarrow> (\<lambda>n. c ^ n :: real) \<longlonglongrightarrow> 0"  | 
| 51526 | 2606  | 
by (rule LIMSEQ_power_zero) simp  | 
2607  | 
||
2608  | 
||
| 60758 | 2609  | 
subsection \<open>Limits of Functions\<close>  | 
| 51526 | 2610  | 
|
| 63546 | 2611  | 
lemma LIM_eq: "f \<midarrow>a\<rightarrow> L = (\<forall>r>0. \<exists>s>0. \<forall>x. x \<noteq> a \<and> norm (x - a) < s \<longrightarrow> norm (f x - L) < r)"  | 
2612  | 
for a :: "'a::real_normed_vector" and L :: "'b::real_normed_vector"  | 
|
2613  | 
by (simp add: LIM_def dist_norm)  | 
|
| 51526 | 2614  | 
|
2615  | 
lemma LIM_I:  | 
|
| 63546 | 2616  | 
"(\<And>r. 0 < r \<Longrightarrow> \<exists>s>0. \<forall>x. x \<noteq> a \<and> norm (x - a) < s \<longrightarrow> norm (f x - L) < r) \<Longrightarrow> f \<midarrow>a\<rightarrow> L"  | 
2617  | 
for a :: "'a::real_normed_vector" and L :: "'b::real_normed_vector"  | 
|
2618  | 
by (simp add: LIM_eq)  | 
|
2619  | 
||
2620  | 
lemma LIM_D: "f \<midarrow>a\<rightarrow> L \<Longrightarrow> 0 < r \<Longrightarrow> \<exists>s>0.\<forall>x. x \<noteq> a \<and> norm (x - a) < s \<longrightarrow> norm (f x - L) < r"  | 
|
2621  | 
for a :: "'a::real_normed_vector" and L :: "'b::real_normed_vector"  | 
|
2622  | 
by (simp add: LIM_eq)  | 
|
2623  | 
||
2624  | 
lemma LIM_offset: "f \<midarrow>a\<rightarrow> L \<Longrightarrow> (\<lambda>x. f (x + k)) \<midarrow>(a - k)\<rightarrow> L"  | 
|
2625  | 
for a :: "'a::real_normed_vector"  | 
|
2626  | 
by (simp add: filtermap_at_shift[symmetric, of a k] filterlim_def filtermap_filtermap)  | 
|
2627  | 
||
2628  | 
lemma LIM_offset_zero: "f \<midarrow>a\<rightarrow> L \<Longrightarrow> (\<lambda>h. f (a + h)) \<midarrow>0\<rightarrow> L"  | 
|
2629  | 
for a :: "'a::real_normed_vector"  | 
|
2630  | 
by (drule LIM_offset [where k = a]) (simp add: add.commute)  | 
|
2631  | 
||
2632  | 
lemma LIM_offset_zero_cancel: "(\<lambda>h. f (a + h)) \<midarrow>0\<rightarrow> L \<Longrightarrow> f \<midarrow>a\<rightarrow> L"  | 
|
2633  | 
for a :: "'a::real_normed_vector"  | 
|
2634  | 
by (drule LIM_offset [where k = "- a"]) simp  | 
|
2635  | 
||
| 72245 | 2636  | 
lemma LIM_offset_zero_iff: "NO_MATCH 0 a \<Longrightarrow> f \<midarrow>a\<rightarrow> L \<longleftrightarrow> (\<lambda>h. f (a + h)) \<midarrow>0\<rightarrow> L"  | 
| 63546 | 2637  | 
for f :: "'a :: real_normed_vector \<Rightarrow> _"  | 
| 
51642
 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 
hoelzl 
parents: 
51641 
diff
changeset
 | 
2638  | 
using LIM_offset_zero_cancel[of f a L] LIM_offset_zero[of f L a] by auto  | 
| 
 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 
hoelzl 
parents: 
51641 
diff
changeset
 | 
2639  | 
|
| 
70999
 
5b753486c075
Inverse function theorem + lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
70817 
diff
changeset
 | 
2640  | 
lemma tendsto_offset_zero_iff:  | 
| 
 
5b753486c075
Inverse function theorem + lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
70817 
diff
changeset
 | 
2641  | 
fixes f :: "'a :: real_normed_vector \<Rightarrow> _"  | 
| 72245 | 2642  | 
assumes " NO_MATCH 0 a" "a \<in> S" "open S"  | 
| 
70999
 
5b753486c075
Inverse function theorem + lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
70817 
diff
changeset
 | 
2643  | 
shows "(f \<longlongrightarrow> L) (at a within S) \<longleftrightarrow> ((\<lambda>h. f (a + h)) \<longlongrightarrow> L) (at 0)"  | 
| 72245 | 2644  | 
using assms by (simp add: tendsto_within_open_NO_MATCH LIM_offset_zero_iff)  | 
| 
70999
 
5b753486c075
Inverse function theorem + lemmas
 
paulson <lp15@cam.ac.uk> 
parents: 
70817 
diff
changeset
 | 
2645  | 
|
| 63546 | 2646  | 
lemma LIM_zero: "(f \<longlongrightarrow> l) F \<Longrightarrow> ((\<lambda>x. f x - l) \<longlongrightarrow> 0) F"  | 
| 
65578
 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 
paulson <lp15@cam.ac.uk> 
parents: 
65204 
diff
changeset
 | 
2647  | 
for f :: "'a \<Rightarrow> 'b::real_normed_vector"  | 
| 63546 | 2648  | 
unfolding tendsto_iff dist_norm by simp  | 
| 51526 | 2649  | 
|
2650  | 
lemma LIM_zero_cancel:  | 
|
| 
65578
 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 
paulson <lp15@cam.ac.uk> 
parents: 
65204 
diff
changeset
 | 
2651  | 
fixes f :: "'a \<Rightarrow> 'b::real_normed_vector"  | 
| 61973 | 2652  | 
shows "((\<lambda>x. f x - l) \<longlongrightarrow> 0) F \<Longrightarrow> (f \<longlongrightarrow> l) F"  | 
| 51526 | 2653  | 
unfolding tendsto_iff dist_norm by simp  | 
2654  | 
||
| 63546 | 2655  | 
lemma LIM_zero_iff: "((\<lambda>x. f x - l) \<longlongrightarrow> 0) F = (f \<longlongrightarrow> l) F"  | 
| 
65578
 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 
paulson <lp15@cam.ac.uk> 
parents: 
65204 
diff
changeset
 | 
2656  | 
for f :: "'a \<Rightarrow> 'b::real_normed_vector"  | 
| 63546 | 2657  | 
unfolding tendsto_iff dist_norm by simp  | 
| 51526 | 2658  | 
|
2659  | 
lemma LIM_imp_LIM:  | 
|
2660  | 
fixes f :: "'a::topological_space \<Rightarrow> 'b::real_normed_vector"  | 
|
2661  | 
fixes g :: "'a::topological_space \<Rightarrow> 'c::real_normed_vector"  | 
|
| 61976 | 2662  | 
assumes f: "f \<midarrow>a\<rightarrow> l"  | 
| 63546 | 2663  | 
and le: "\<And>x. x \<noteq> a \<Longrightarrow> norm (g x - m) \<le> norm (f x - l)"  | 
| 61976 | 2664  | 
shows "g \<midarrow>a\<rightarrow> m"  | 
| 63546 | 2665  | 
by (rule metric_LIM_imp_LIM [OF f]) (simp add: dist_norm le)  | 
| 51526 | 2666  | 
|
2667  | 
lemma LIM_equal2:  | 
|
2668  | 
fixes f g :: "'a::real_normed_vector \<Rightarrow> 'b::topological_space"  | 
|
| 63546 | 2669  | 
assumes "0 < R"  | 
2670  | 
and "\<And>x. x \<noteq> a \<Longrightarrow> norm (x - a) < R \<Longrightarrow> f x = g x"  | 
|
| 61976 | 2671  | 
shows "g \<midarrow>a\<rightarrow> l \<Longrightarrow> f \<midarrow>a\<rightarrow> l"  | 
| 68594 | 2672  | 
by (rule metric_LIM_equal2 [OF _ assms]) (simp_all add: dist_norm)  | 
| 51526 | 2673  | 
|
2674  | 
lemma LIM_compose2:  | 
|
2675  | 
fixes a :: "'a::real_normed_vector"  | 
|
| 61976 | 2676  | 
assumes f: "f \<midarrow>a\<rightarrow> b"  | 
| 63546 | 2677  | 
and g: "g \<midarrow>b\<rightarrow> c"  | 
2678  | 
and inj: "\<exists>d>0. \<forall>x. x \<noteq> a \<and> norm (x - a) < d \<longrightarrow> f x \<noteq> b"  | 
|
| 61976 | 2679  | 
shows "(\<lambda>x. g (f x)) \<midarrow>a\<rightarrow> c"  | 
| 63546 | 2680  | 
by (rule metric_LIM_compose2 [OF f g inj [folded dist_norm]])  | 
| 51526 | 2681  | 
|
2682  | 
lemma real_LIM_sandwich_zero:  | 
|
2683  | 
fixes f g :: "'a::topological_space \<Rightarrow> real"  | 
|
| 61976 | 2684  | 
assumes f: "f \<midarrow>a\<rightarrow> 0"  | 
| 63546 | 2685  | 
and 1: "\<And>x. x \<noteq> a \<Longrightarrow> 0 \<le> g x"  | 
2686  | 
and 2: "\<And>x. x \<noteq> a \<Longrightarrow> g x \<le> f x"  | 
|
| 61976 | 2687  | 
shows "g \<midarrow>a\<rightarrow> 0"  | 
| 51526 | 2688  | 
proof (rule LIM_imp_LIM [OF f]) (* FIXME: use tendsto_sandwich *)  | 
| 63546 | 2689  | 
fix x  | 
2690  | 
assume x: "x \<noteq> a"  | 
|
2691  | 
with 1 have "norm (g x - 0) = g x" by simp  | 
|
| 51526 | 2692  | 
also have "g x \<le> f x" by (rule 2 [OF x])  | 
2693  | 
also have "f x \<le> \<bar>f x\<bar>" by (rule abs_ge_self)  | 
|
2694  | 
also have "\<bar>f x\<bar> = norm (f x - 0)" by simp  | 
|
2695  | 
finally show "norm (g x - 0) \<le> norm (f x - 0)" .  | 
|
2696  | 
qed  | 
|
2697  | 
||
2698  | 
||
| 60758 | 2699  | 
subsection \<open>Continuity\<close>  | 
| 51526 | 2700  | 
|
| 63546 | 2701  | 
lemma LIM_isCont_iff: "(f \<midarrow>a\<rightarrow> f a) = ((\<lambda>h. f (a + h)) \<midarrow>0\<rightarrow> f a)"  | 
2702  | 
for f :: "'a::real_normed_vector \<Rightarrow> 'b::topological_space"  | 
|
2703  | 
by (rule iffI [OF LIM_offset_zero LIM_offset_zero_cancel])  | 
|
2704  | 
||
2705  | 
lemma isCont_iff: "isCont f x = (\<lambda>h. f (x + h)) \<midarrow>0\<rightarrow> f x"  | 
|
2706  | 
for f :: "'a::real_normed_vector \<Rightarrow> 'b::topological_space"  | 
|
2707  | 
by (simp add: isCont_def LIM_isCont_iff)  | 
|
| 51526 | 2708  | 
|
2709  | 
lemma isCont_LIM_compose2:  | 
|
2710  | 
fixes a :: "'a::real_normed_vector"  | 
|
2711  | 
assumes f [unfolded isCont_def]: "isCont f a"  | 
|
| 63546 | 2712  | 
and g: "g \<midarrow>f a\<rightarrow> l"  | 
2713  | 
and inj: "\<exists>d>0. \<forall>x. x \<noteq> a \<and> norm (x - a) < d \<longrightarrow> f x \<noteq> f a"  | 
|
| 61976 | 2714  | 
shows "(\<lambda>x. g (f x)) \<midarrow>a\<rightarrow> l"  | 
| 63546 | 2715  | 
by (rule LIM_compose2 [OF f g inj])  | 
2716  | 
||
2717  | 
lemma isCont_norm [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. norm (f x)) a"  | 
|
2718  | 
for f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
|
| 51526 | 2719  | 
by (fact continuous_norm)  | 
2720  | 
||
| 63546 | 2721  | 
lemma isCont_rabs [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. \<bar>f x\<bar>) a"  | 
2722  | 
for f :: "'a::t2_space \<Rightarrow> real"  | 
|
| 51526 | 2723  | 
by (fact continuous_rabs)  | 
2724  | 
||
| 63546 | 2725  | 
lemma isCont_add [simp]: "isCont f a \<Longrightarrow> isCont g a \<Longrightarrow> isCont (\<lambda>x. f x + g x) a"  | 
2726  | 
for f :: "'a::t2_space \<Rightarrow> 'b::topological_monoid_add"  | 
|
| 51526 | 2727  | 
by (fact continuous_add)  | 
2728  | 
||
| 63546 | 2729  | 
lemma isCont_minus [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. - f x) a"  | 
2730  | 
for f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
|
| 51526 | 2731  | 
by (fact continuous_minus)  | 
2732  | 
||
| 63546 | 2733  | 
lemma isCont_diff [simp]: "isCont f a \<Longrightarrow> isCont g a \<Longrightarrow> isCont (\<lambda>x. f x - g x) a"  | 
2734  | 
for f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
|
| 51526 | 2735  | 
by (fact continuous_diff)  | 
2736  | 
||
| 63546 | 2737  | 
lemma isCont_mult [simp]: "isCont f a \<Longrightarrow> isCont g a \<Longrightarrow> isCont (\<lambda>x. f x * g x) a"  | 
2738  | 
for f g :: "'a::t2_space \<Rightarrow> 'b::real_normed_algebra"  | 
|
| 51526 | 2739  | 
by (fact continuous_mult)  | 
2740  | 
||
| 63546 | 2741  | 
lemma (in bounded_linear) isCont: "isCont g a \<Longrightarrow> isCont (\<lambda>x. f (g x)) a"  | 
| 51526 | 2742  | 
by (fact continuous)  | 
2743  | 
||
| 63546 | 2744  | 
lemma (in bounded_bilinear) isCont: "isCont f a \<Longrightarrow> isCont g a \<Longrightarrow> isCont (\<lambda>x. f x ** g x) a"  | 
| 51526 | 2745  | 
by (fact continuous)  | 
2746  | 
||
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2747  | 
lemmas isCont_scaleR [simp] =  | 
| 51526 | 2748  | 
bounded_bilinear.isCont [OF bounded_bilinear_scaleR]  | 
2749  | 
||
2750  | 
lemmas isCont_of_real [simp] =  | 
|
2751  | 
bounded_linear.isCont [OF bounded_linear_of_real]  | 
|
2752  | 
||
| 63546 | 2753  | 
lemma isCont_power [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. f x ^ n) a"  | 
2754  | 
  for f :: "'a::t2_space \<Rightarrow> 'b::{power,real_normed_algebra}"
 | 
|
| 51526 | 2755  | 
by (fact continuous_power)  | 
2756  | 
||
| 64267 | 2757  | 
lemma isCont_sum [simp]: "\<forall>i\<in>A. isCont (f i) a \<Longrightarrow> isCont (\<lambda>x. \<Sum>i\<in>A. f i x) a"  | 
| 63546 | 2758  | 
for f :: "'a \<Rightarrow> 'b::t2_space \<Rightarrow> 'c::topological_comm_monoid_add"  | 
| 64267 | 2759  | 
by (auto intro: continuous_sum)  | 
| 51526 | 2760  | 
|
| 63546 | 2761  | 
|
| 60758 | 2762  | 
subsection \<open>Uniform Continuity\<close>  | 
| 51526 | 2763  | 
|
| 63104 | 2764  | 
lemma uniformly_continuous_on_def:  | 
2765  | 
fixes f :: "'a::metric_space \<Rightarrow> 'b::metric_space"  | 
|
2766  | 
shows "uniformly_continuous_on s f \<longleftrightarrow>  | 
|
2767  | 
(\<forall>e>0. \<exists>d>0. \<forall>x\<in>s. \<forall>x'\<in>s. dist x' x < d \<longrightarrow> dist (f x') (f x) < e)"  | 
|
2768  | 
unfolding uniformly_continuous_on_uniformity  | 
|
2769  | 
uniformity_dist filterlim_INF filterlim_principal eventually_inf_principal  | 
|
2770  | 
by (force simp: Ball_def uniformity_dist[symmetric] eventually_uniformity_metric)  | 
|
2771  | 
||
| 63546 | 2772  | 
abbreviation isUCont :: "['a::metric_space \<Rightarrow> 'b::metric_space] \<Rightarrow> bool"  | 
2773  | 
where "isUCont f \<equiv> uniformly_continuous_on UNIV f"  | 
|
2774  | 
||
2775  | 
lemma isUCont_def: "isUCont f \<longleftrightarrow> (\<forall>r>0. \<exists>s>0. \<forall>x y. dist x y < s \<longrightarrow> dist (f x) (f y) < r)"  | 
|
| 63104 | 2776  | 
by (auto simp: uniformly_continuous_on_def dist_commute)  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
2777  | 
|
| 63546 | 2778  | 
lemma isUCont_isCont: "isUCont f \<Longrightarrow> isCont f x"  | 
| 63104 | 2779  | 
by (drule uniformly_continuous_imp_continuous) (simp add: continuous_on_eq_continuous_at)  | 
2780  | 
||
2781  | 
lemma uniformly_continuous_on_Cauchy:  | 
|
| 63546 | 2782  | 
fixes f :: "'a::metric_space \<Rightarrow> 'b::metric_space"  | 
| 63104 | 2783  | 
assumes "uniformly_continuous_on S f" "Cauchy X" "\<And>n. X n \<in> S"  | 
2784  | 
shows "Cauchy (\<lambda>n. f (X n))"  | 
|
2785  | 
using assms  | 
|
| 68594 | 2786  | 
unfolding uniformly_continuous_on_def by (meson Cauchy_def)  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
2787  | 
|
| 63546 | 2788  | 
lemma isUCont_Cauchy: "isUCont f \<Longrightarrow> Cauchy X \<Longrightarrow> Cauchy (\<lambda>n. f (X n))"  | 
| 63104 | 2789  | 
by (rule uniformly_continuous_on_Cauchy[where S=UNIV and f=f]) simp_all  | 
| 68611 | 2790  | 
|
| 64287 | 2791  | 
lemma uniformly_continuous_imp_Cauchy_continuous:  | 
2792  | 
fixes f :: "'a::metric_space \<Rightarrow> 'b::metric_space"  | 
|
| 67091 | 2793  | 
shows "\<lbrakk>uniformly_continuous_on S f; Cauchy \<sigma>; \<And>n. (\<sigma> n) \<in> S\<rbrakk> \<Longrightarrow> Cauchy(f \<circ> \<sigma>)"  | 
| 64287 | 2794  | 
by (simp add: uniformly_continuous_on_def Cauchy_def) meson  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
2795  | 
|
| 51526 | 2796  | 
lemma (in bounded_linear) isUCont: "isUCont f"  | 
| 63546 | 2797  | 
unfolding isUCont_def dist_norm  | 
| 51526 | 2798  | 
proof (intro allI impI)  | 
| 63546 | 2799  | 
fix r :: real  | 
2800  | 
assume r: "0 < r"  | 
|
2801  | 
obtain K where K: "0 < K" and norm_le: "norm (f x) \<le> norm x * K" for x  | 
|
| 
61649
 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 
paulson <lp15@cam.ac.uk> 
parents: 
61609 
diff
changeset
 | 
2802  | 
using pos_bounded by blast  | 
| 51526 | 2803  | 
show "\<exists>s>0. \<forall>x y. norm (x - y) < s \<longrightarrow> norm (f x - f y) < r"  | 
2804  | 
proof (rule exI, safe)  | 
|
| 56541 | 2805  | 
from r K show "0 < r / K" by simp  | 
| 51526 | 2806  | 
next  | 
2807  | 
fix x y :: 'a  | 
|
2808  | 
assume xy: "norm (x - y) < r / K"  | 
|
2809  | 
have "norm (f x - f y) = norm (f (x - y))" by (simp only: diff)  | 
|
2810  | 
also have "\<dots> \<le> norm (x - y) * K" by (rule norm_le)  | 
|
2811  | 
also from K xy have "\<dots> < r" by (simp only: pos_less_divide_eq)  | 
|
2812  | 
finally show "norm (f x - f y) < r" .  | 
|
2813  | 
qed  | 
|
2814  | 
qed  | 
|
2815  | 
||
2816  | 
lemma (in bounded_linear) Cauchy: "Cauchy X \<Longrightarrow> Cauchy (\<lambda>n. f (X n))"  | 
|
| 63546 | 2817  | 
by (rule isUCont [THEN isUCont_Cauchy])  | 
| 51526 | 2818  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2819  | 
lemma LIM_less_bound:  | 
| 51526 | 2820  | 
fixes f :: "real \<Rightarrow> real"  | 
2821  | 
  assumes ev: "b < x" "\<forall> x' \<in> { b <..< x}. 0 \<le> f x'" and "isCont f x"
 | 
|
2822  | 
shows "0 \<le> f x"  | 
|
| 
63952
 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 
paulson <lp15@cam.ac.uk> 
parents: 
63915 
diff
changeset
 | 
2823  | 
proof (rule tendsto_lowerbound)  | 
| 61973 | 2824  | 
show "(f \<longlongrightarrow> f x) (at_left x)"  | 
| 60758 | 2825  | 
using \<open>isCont f x\<close> by (simp add: filterlim_at_split isCont_def)  | 
| 51526 | 2826  | 
show "eventually (\<lambda>x. 0 \<le> f x) (at_left x)"  | 
| 
51641
 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 
hoelzl 
parents: 
51531 
diff
changeset
 | 
2827  | 
using ev by (auto simp: eventually_at dist_real_def intro!: exI[of _ "x - b"])  | 
| 51526 | 2828  | 
qed simp  | 
| 51471 | 2829  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2830  | 
|
| 60758 | 2831  | 
subsection \<open>Nested Intervals and Bisection -- Needed for Compactness\<close>  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2832  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2833  | 
lemma nested_sequence_unique:  | 
| 61969 | 2834  | 
assumes "\<forall>n. f n \<le> f (Suc n)" "\<forall>n. g (Suc n) \<le> g n" "\<forall>n. f n \<le> g n" "(\<lambda>n. f n - g n) \<longlonglongrightarrow> 0"  | 
2835  | 
shows "\<exists>l::real. ((\<forall>n. f n \<le> l) \<and> f \<longlonglongrightarrow> l) \<and> ((\<forall>n. l \<le> g n) \<and> g \<longlonglongrightarrow> l)"  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2836  | 
proof -  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2837  | 
have "incseq f" unfolding incseq_Suc_iff by fact  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2838  | 
have "decseq g" unfolding decseq_Suc_iff by fact  | 
| 63546 | 2839  | 
have "f n \<le> g 0" for n  | 
2840  | 
proof -  | 
|
2841  | 
from \<open>decseq g\<close> have "g n \<le> g 0"  | 
|
2842  | 
by (rule decseqD) simp  | 
|
2843  | 
with \<open>\<forall>n. f n \<le> g n\<close>[THEN spec, of n] show ?thesis  | 
|
2844  | 
by auto  | 
|
2845  | 
qed  | 
|
| 61969 | 2846  | 
then obtain u where "f \<longlonglongrightarrow> u" "\<forall>i. f i \<le> u"  | 
| 60758 | 2847  | 
using incseq_convergent[OF \<open>incseq f\<close>] by auto  | 
| 63546 | 2848  | 
moreover have "f 0 \<le> g n" for n  | 
2849  | 
proof -  | 
|
| 60758 | 2850  | 
from \<open>incseq f\<close> have "f 0 \<le> f n" by (rule incseqD) simp  | 
| 63546 | 2851  | 
with \<open>\<forall>n. f n \<le> g n\<close>[THEN spec, of n] show ?thesis  | 
2852  | 
by simp  | 
|
2853  | 
qed  | 
|
| 61969 | 2854  | 
then obtain l where "g \<longlonglongrightarrow> l" "\<forall>i. l \<le> g i"  | 
| 60758 | 2855  | 
using decseq_convergent[OF \<open>decseq g\<close>] by auto  | 
| 61969 | 2856  | 
moreover note LIMSEQ_unique[OF assms(4) tendsto_diff[OF \<open>f \<longlonglongrightarrow> u\<close> \<open>g \<longlonglongrightarrow> l\<close>]]  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2857  | 
ultimately show ?thesis by auto  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2858  | 
qed  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2859  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2860  | 
lemma Bolzano[consumes 1, case_names trans local]:  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2861  | 
fixes P :: "real \<Rightarrow> real \<Rightarrow> bool"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2862  | 
assumes [arith]: "a \<le> b"  | 
| 63546 | 2863  | 
and trans: "\<And>a b c. P a b \<Longrightarrow> P b c \<Longrightarrow> a \<le> b \<Longrightarrow> b \<le> c \<Longrightarrow> P a c"  | 
2864  | 
and local: "\<And>x. a \<le> x \<Longrightarrow> x \<le> b \<Longrightarrow> \<exists>d>0. \<forall>a b. a \<le> x \<and> x \<le> b \<and> b - a < d \<longrightarrow> P a b"  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2865  | 
shows "P a b"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2866  | 
proof -  | 
| 
74513
 
67d87d224e00
A few new lemmas plus some refinements
 
paulson <lp15@cam.ac.uk> 
parents: 
74475 
diff
changeset
 | 
2867  | 
define bisect where "bisect \<equiv> \<lambda>(x,y). if P x ((x+y) / 2) then ((x+y)/2, y) else (x, (x+y)/2)"  | 
| 
 
67d87d224e00
A few new lemmas plus some refinements
 
paulson <lp15@cam.ac.uk> 
parents: 
74475 
diff
changeset
 | 
2868  | 
define l u where "l n \<equiv> fst ((bisect^^n)(a,b))" and "u n \<equiv> snd ((bisect^^n)(a,b))" for n  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2869  | 
have l[simp]: "l 0 = a" "\<And>n. l (Suc n) = (if P (l n) ((l n + u n) / 2) then (l n + u n) / 2 else l n)"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2870  | 
and u[simp]: "u 0 = b" "\<And>n. u (Suc n) = (if P (l n) ((l n + u n) / 2) then u n else (l n + u n) / 2)"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2871  | 
by (simp_all add: l_def u_def bisect_def split: prod.split)  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2872  | 
|
| 63546 | 2873  | 
have [simp]: "l n \<le> u n" for n by (induct n) auto  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2874  | 
|
| 61969 | 2875  | 
have "\<exists>x. ((\<forall>n. l n \<le> x) \<and> l \<longlonglongrightarrow> x) \<and> ((\<forall>n. x \<le> u n) \<and> u \<longlonglongrightarrow> x)"  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2876  | 
proof (safe intro!: nested_sequence_unique)  | 
| 63546 | 2877  | 
show "l n \<le> l (Suc n)" "u (Suc n) \<le> u n" for n  | 
2878  | 
by (induct n) auto  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2879  | 
next  | 
| 63546 | 2880  | 
have "l n - u n = (a - b) / 2^n" for n  | 
2881  | 
by (induct n) (auto simp: field_simps)  | 
|
2882  | 
then show "(\<lambda>n. l n - u n) \<longlonglongrightarrow> 0"  | 
|
2883  | 
by (simp add: LIMSEQ_divide_realpow_zero)  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2884  | 
qed fact  | 
| 63546 | 2885  | 
then obtain x where x: "\<And>n. l n \<le> x" "\<And>n. x \<le> u n" and "l \<longlonglongrightarrow> x" "u \<longlonglongrightarrow> x"  | 
2886  | 
by auto  | 
|
2887  | 
obtain d where "0 < d" and d: "a \<le> x \<Longrightarrow> x \<le> b \<Longrightarrow> b - a < d \<Longrightarrow> P a b" for a b  | 
|
| 60758 | 2888  | 
using \<open>l 0 \<le> x\<close> \<open>x \<le> u 0\<close> local[of x] by auto  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2889  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2890  | 
show "P a b"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2891  | 
proof (rule ccontr)  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2892  | 
assume "\<not> P a b"  | 
| 63546 | 2893  | 
have "\<not> P (l n) (u n)" for n  | 
2894  | 
proof (induct n)  | 
|
2895  | 
case 0  | 
|
2896  | 
then show ?case  | 
|
2897  | 
by (simp add: \<open>\<not> P a b\<close>)  | 
|
2898  | 
next  | 
|
2899  | 
case (Suc n)  | 
|
2900  | 
with trans[of "l n" "(l n + u n) / 2" "u n"] show ?case  | 
|
2901  | 
by auto  | 
|
2902  | 
qed  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2903  | 
moreover  | 
| 63546 | 2904  | 
    {
 | 
2905  | 
have "eventually (\<lambda>n. x - d / 2 < l n) sequentially"  | 
|
| 61969 | 2906  | 
using \<open>0 < d\<close> \<open>l \<longlonglongrightarrow> x\<close> by (intro order_tendstoD[of _ x]) auto  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2907  | 
moreover have "eventually (\<lambda>n. u n < x + d / 2) sequentially"  | 
| 61969 | 2908  | 
using \<open>0 < d\<close> \<open>u \<longlonglongrightarrow> x\<close> by (intro order_tendstoD[of _ x]) auto  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2909  | 
ultimately have "eventually (\<lambda>n. P (l n) (u n)) sequentially"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2910  | 
proof eventually_elim  | 
| 63546 | 2911  | 
case (elim n)  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2912  | 
from add_strict_mono[OF this] have "u n - l n < d" by simp  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2913  | 
with x show "P (l n) (u n)" by (rule d)  | 
| 63546 | 2914  | 
qed  | 
2915  | 
}  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2916  | 
ultimately show False by simp  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2917  | 
qed  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2918  | 
qed  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2919  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2920  | 
lemma compact_Icc[simp, intro]: "compact {a .. b::real}"
 | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2921  | 
proof (cases "a \<le> b", rule compactI)  | 
| 63546 | 2922  | 
fix C  | 
2923  | 
  assume C: "a \<le> b" "\<forall>t\<in>C. open t" "{a..b} \<subseteq> \<Union>C"
 | 
|
| 63040 | 2924  | 
  define T where "T = {a .. b}"
 | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2925  | 
  from C(1,3) show "\<exists>C'\<subseteq>C. finite C' \<and> {a..b} \<subseteq> \<Union>C'"
 | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2926  | 
proof (induct rule: Bolzano)  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2927  | 
case (trans a b c)  | 
| 63546 | 2928  | 
    then have *: "{a..c} = {a..b} \<union> {b..c}"
 | 
2929  | 
by auto  | 
|
2930  | 
with trans obtain C1 C2  | 
|
2931  | 
      where "C1\<subseteq>C" "finite C1" "{a..b} \<subseteq> \<Union>C1" "C2\<subseteq>C" "finite C2" "{b..c} \<subseteq> \<Union>C2"
 | 
|
2932  | 
by auto  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2933  | 
with trans show ?case  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2934  | 
unfolding * by (intro exI[of _ "C1 \<union> C2"]) auto  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2935  | 
next  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2936  | 
case (local x)  | 
| 63546 | 2937  | 
with C have "x \<in> \<Union>C" by auto  | 
2938  | 
with C(2) obtain c where "x \<in> c" "open c" "c \<in> C"  | 
|
2939  | 
by auto  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2940  | 
    then obtain e where "0 < e" "{x - e <..< x + e} \<subseteq> c"
 | 
| 62101 | 2941  | 
by (auto simp: open_dist dist_real_def subset_eq Ball_def abs_less_iff)  | 
| 60758 | 2942  | 
with \<open>c \<in> C\<close> show ?case  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2943  | 
      by (safe intro!: exI[of _ "e/2"] exI[of _ "{c}"]) auto
 | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2944  | 
qed  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2945  | 
qed simp  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2946  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2947  | 
|
| 
57447
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2948  | 
lemma continuous_image_closed_interval:  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2949  | 
fixes a b and f :: "real \<Rightarrow> real"  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2950  | 
  defines "S \<equiv> {a..b}"
 | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2951  | 
assumes "a \<le> b" and f: "continuous_on S f"  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2952  | 
  shows "\<exists>c d. f`S = {c..d} \<and> c \<le> d"
 | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2953  | 
proof -  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2954  | 
  have S: "compact S" "S \<noteq> {}"
 | 
| 60758 | 2955  | 
using \<open>a \<le> b\<close> by (auto simp: S_def)  | 
| 
57447
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2956  | 
obtain c where "c \<in> S" "\<forall>d\<in>S. f d \<le> f c"  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2957  | 
using continuous_attains_sup[OF S f] by auto  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2958  | 
moreover obtain d where "d \<in> S" "\<forall>c\<in>S. f d \<le> f c"  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2959  | 
using continuous_attains_inf[OF S f] by auto  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2960  | 
moreover have "connected (f`S)"  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2961  | 
using connected_continuous_image[OF f] connected_Icc by (auto simp: S_def)  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2962  | 
  ultimately have "f ` S = {f d .. f c} \<and> f d \<le> f c"
 | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2963  | 
by (auto simp: connected_iff_interval)  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2964  | 
then show ?thesis  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2965  | 
by auto  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2966  | 
qed  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
2967  | 
|
| 
60974
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
2968  | 
lemma open_Collect_positive:  | 
| 
67958
 
732c0b059463
tuned proofs and generalized some lemmas about limits
 
huffman 
parents: 
67950 
diff
changeset
 | 
2969  | 
fixes f :: "'a::topological_space \<Rightarrow> real"  | 
| 63546 | 2970  | 
assumes f: "continuous_on s f"  | 
2971  | 
  shows "\<exists>A. open A \<and> A \<inter> s = {x\<in>s. 0 < f x}"
 | 
|
2972  | 
  using continuous_on_open_invariant[THEN iffD1, OF f, rule_format, of "{0 <..}"]
 | 
|
2973  | 
by (auto simp: Int_def field_simps)  | 
|
| 
60974
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
2974  | 
|
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
2975  | 
lemma open_Collect_less_Int:  | 
| 
67958
 
732c0b059463
tuned proofs and generalized some lemmas about limits
 
huffman 
parents: 
67950 
diff
changeset
 | 
2976  | 
fixes f g :: "'a::topological_space \<Rightarrow> real"  | 
| 63546 | 2977  | 
assumes f: "continuous_on s f"  | 
2978  | 
and g: "continuous_on s g"  | 
|
2979  | 
  shows "\<exists>A. open A \<and> A \<inter> s = {x\<in>s. f x < g x}"
 | 
|
2980  | 
using open_Collect_positive[OF continuous_on_diff[OF g f]] by (simp add: field_simps)  | 
|
| 
60974
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
2981  | 
|
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
2982  | 
|
| 60758 | 2983  | 
subsection \<open>Boundedness of continuous functions\<close>  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2984  | 
|
| 60758 | 2985  | 
text\<open>By bisection, function continuous on closed interval is bounded above\<close>  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2986  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2987  | 
lemma isCont_eq_Ub:  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2988  | 
fixes f :: "real \<Rightarrow> 'a::linorder_topology"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2989  | 
shows "a \<le> b \<Longrightarrow> \<forall>x::real. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x \<Longrightarrow>  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2990  | 
\<exists>M. (\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> f x \<le> M) \<and> (\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = M)"  | 
| 63546 | 2991  | 
  using continuous_attains_sup[of "{a..b}" f]
 | 
| 68615 | 2992  | 
by (auto simp: continuous_at_imp_continuous_on Ball_def Bex_def)  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2993  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2994  | 
lemma isCont_eq_Lb:  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2995  | 
fixes f :: "real \<Rightarrow> 'a::linorder_topology"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2996  | 
shows "a \<le> b \<Longrightarrow> \<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x \<Longrightarrow>  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
2997  | 
\<exists>M. (\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> M \<le> f x) \<and> (\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = M)"  | 
| 63546 | 2998  | 
  using continuous_attains_inf[of "{a..b}" f]
 | 
| 68615 | 2999  | 
by (auto simp: continuous_at_imp_continuous_on Ball_def Bex_def)  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3000  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3001  | 
lemma isCont_bounded:  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3002  | 
fixes f :: "real \<Rightarrow> 'a::linorder_topology"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3003  | 
shows "a \<le> b \<Longrightarrow> \<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x \<Longrightarrow> \<exists>M. \<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> f x \<le> M"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3004  | 
using isCont_eq_Ub[of a b f] by auto  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3005  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3006  | 
lemma isCont_has_Ub:  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3007  | 
fixes f :: "real \<Rightarrow> 'a::linorder_topology"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3008  | 
shows "a \<le> b \<Longrightarrow> \<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x \<Longrightarrow>  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3009  | 
\<exists>M. (\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> f x \<le> M) \<and> (\<forall>N. N < M \<longrightarrow> (\<exists>x. a \<le> x \<and> x \<le> b \<and> N < f x))"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3010  | 
using isCont_eq_Ub[of a b f] by auto  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3011  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3012  | 
lemma isCont_Lb_Ub:  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3013  | 
fixes f :: "real \<Rightarrow> real"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3014  | 
assumes "a \<le> b" "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x"  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
3015  | 
shows "\<exists>L M. (\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> L \<le> f x \<and> f x \<le> M) \<and>  | 
| 63546 | 3016  | 
(\<forall>y. L \<le> y \<and> y \<le> M \<longrightarrow> (\<exists>x. a \<le> x \<and> x \<le> b \<and> (f x = y)))"  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3017  | 
proof -  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3018  | 
obtain M where M: "a \<le> M" "M \<le> b" "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> f x \<le> f M"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3019  | 
using isCont_eq_Ub[OF assms] by auto  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3020  | 
obtain L where L: "a \<le> L" "L \<le> b" "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> f L \<le> f x"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3021  | 
using isCont_eq_Lb[OF assms] by auto  | 
| 68615 | 3022  | 
have "(\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> f L \<le> f x \<and> f x \<le> f M)"  | 
3023  | 
using M L by simp  | 
|
3024  | 
moreover  | 
|
3025  | 
have "(\<forall>y. f L \<le> y \<and> y \<le> f M \<longrightarrow> (\<exists>x\<ge>a. x \<le> b \<and> f x = y))"  | 
|
3026  | 
proof (cases "L \<le> M")  | 
|
3027  | 
case True then show ?thesis  | 
|
3028  | 
using IVT[of f L _ M] M L assms by (metis order.trans)  | 
|
3029  | 
next  | 
|
3030  | 
case False then show ?thesis  | 
|
3031  | 
using IVT2[of f L _ M]  | 
|
3032  | 
by (metis L(2) M(1) assms(2) le_cases order.trans)  | 
|
3033  | 
qed  | 
|
3034  | 
ultimately show ?thesis  | 
|
3035  | 
by blast  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3036  | 
qed  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3037  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3038  | 
|
| 63546 | 3039  | 
text \<open>Continuity of inverse function.\<close>  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3040  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3041  | 
lemma isCont_inverse_function:  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3042  | 
fixes f g :: "real \<Rightarrow> real"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3043  | 
assumes d: "0 < d"  | 
| 68611 | 3044  | 
and inj: "\<And>z. \<bar>z-x\<bar> \<le> d \<Longrightarrow> g (f z) = z"  | 
3045  | 
and cont: "\<And>z. \<bar>z-x\<bar> \<le> d \<Longrightarrow> isCont f z"  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3046  | 
shows "isCont g (f x)"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3047  | 
proof -  | 
| 63546 | 3048  | 
let ?A = "f (x - d)"  | 
3049  | 
let ?B = "f (x + d)"  | 
|
3050  | 
  let ?D = "{x - d..x + d}"
 | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3051  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3052  | 
have f: "continuous_on ?D f"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3053  | 
using cont by (intro continuous_at_imp_continuous_on ballI) auto  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3054  | 
then have g: "continuous_on (f`?D) g"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3055  | 
using inj by (intro continuous_on_inv) auto  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3056  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3057  | 
  from d f have "{min ?A ?B <..< max ?A ?B} \<subseteq> f ` ?D"
 | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3058  | 
by (intro connected_contains_Ioo connected_continuous_image) (auto split: split_min split_max)  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3059  | 
  with g have "continuous_on {min ?A ?B <..< max ?A ?B} g"
 | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3060  | 
by (rule continuous_on_subset)  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3061  | 
moreover  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3062  | 
have "(?A < f x \<and> f x < ?B) \<or> (?B < f x \<and> f x < ?A)"  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3063  | 
using d inj by (intro continuous_inj_imp_mono[OF _ _ f] inj_on_imageI2[of g, OF inj_onI]) auto  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3064  | 
  then have "f x \<in> {min ?A ?B <..< max ?A ?B}"
 | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3065  | 
by auto  | 
| 68615 | 3066  | 
ultimately show ?thesis  | 
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3067  | 
by (simp add: continuous_on_eq_continuous_at)  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3068  | 
qed  | 
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3069  | 
|
| 
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3070  | 
lemma isCont_inverse_function2:  | 
| 63546 | 3071  | 
fixes f g :: "real \<Rightarrow> real"  | 
3072  | 
shows  | 
|
| 68611 | 3073  | 
"\<lbrakk>a < x; x < b;  | 
3074  | 
\<And>z. \<lbrakk>a \<le> z; z \<le> b\<rbrakk> \<Longrightarrow> g (f z) = z;  | 
|
3075  | 
\<And>z. \<lbrakk>a \<le> z; z \<le> b\<rbrakk> \<Longrightarrow> isCont f z\<rbrakk> \<Longrightarrow> isCont g (f x)"  | 
|
| 63546 | 3076  | 
apply (rule isCont_inverse_function [where f=f and d="min (x - a) (b - x)"])  | 
3077  | 
apply (simp_all add: abs_le_iff)  | 
|
3078  | 
done  | 
|
| 
51529
 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 
hoelzl 
parents: 
51526 
diff
changeset
 | 
3079  | 
|
| 63546 | 3080  | 
text \<open>Bartle/Sherbert: Introduction to Real Analysis, Theorem 4.2.9, p. 110.\<close>  | 
3081  | 
lemma LIM_fun_gt_zero: "f \<midarrow>c\<rightarrow> l \<Longrightarrow> 0 < l \<Longrightarrow> \<exists>r. 0 < r \<and> (\<forall>x. x \<noteq> c \<and> \<bar>c - x\<bar> < r \<longrightarrow> 0 < f x)"  | 
|
3082  | 
for f :: "real \<Rightarrow> real"  | 
|
| 68615 | 3083  | 
by (force simp: dest: LIM_D)  | 
| 63546 | 3084  | 
|
3085  | 
lemma LIM_fun_less_zero: "f \<midarrow>c\<rightarrow> l \<Longrightarrow> l < 0 \<Longrightarrow> \<exists>r. 0 < r \<and> (\<forall>x. x \<noteq> c \<and> \<bar>c - x\<bar> < r \<longrightarrow> f x < 0)"  | 
|
3086  | 
for f :: "real \<Rightarrow> real"  | 
|
| 68615 | 3087  | 
by (drule LIM_D [where r="-l"]) force+  | 
| 63546 | 3088  | 
|
3089  | 
lemma LIM_fun_not_zero: "f \<midarrow>c\<rightarrow> l \<Longrightarrow> l \<noteq> 0 \<Longrightarrow> \<exists>r. 0 < r \<and> (\<forall>x. x \<noteq> c \<and> \<bar>c - x\<bar> < r \<longrightarrow> f x \<noteq> 0)"  | 
|
3090  | 
for f :: "real \<Rightarrow> real"  | 
|
| 68615 | 3091  | 
using LIM_fun_gt_zero[of f l c] LIM_fun_less_zero[of f l c] by (auto simp: neq_iff)  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
3092  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
3093  | 
end  |