| author | paulson <lp15@cam.ac.uk> | 
| Wed, 19 Aug 2015 19:18:19 +0100 | |
| changeset 60974 | 6a6f15d8fbc4 | 
| parent 60758 | d8d85a8172b5 | 
| child 61076 | bdc1e2f0a86a | 
| 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  | 
| 51524 | 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  | 
|
| 60758 | 14  | 
subsection \<open>Filter going to infinity norm\<close>  | 
| 51526 | 15  | 
|
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
16  | 
definition at_infinity :: "'a::real_normed_vector filter" where  | 
| 57276 | 17  | 
  "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
 | 
18  | 
|
| 57276 | 19  | 
lemma eventually_at_infinity: "eventually P at_infinity \<longleftrightarrow> (\<exists>b. \<forall>x. b \<le> norm x \<longrightarrow> P x)"  | 
20  | 
unfolding at_infinity_def  | 
|
21  | 
by (subst eventually_INF_base)  | 
|
22  | 
(auto simp: subset_eq eventually_principal intro!: exI[of _ "max a b" for a b])  | 
|
| 31392 | 23  | 
|
| 50325 | 24  | 
lemma at_infinity_eq_at_top_bot:  | 
25  | 
"(at_infinity \<Colon> real filter) = sup at_top at_bot"  | 
|
| 57276 | 26  | 
apply (simp add: filter_eq_iff eventually_sup eventually_at_infinity  | 
27  | 
eventually_at_top_linorder eventually_at_bot_linorder)  | 
|
28  | 
apply safe  | 
|
29  | 
apply (rule_tac x="b" in exI, simp)  | 
|
30  | 
apply (rule_tac x="- b" in exI, simp)  | 
|
31  | 
apply (rule_tac x="max (- Na) N" in exI, auto simp: abs_real_def)  | 
|
32  | 
done  | 
|
| 50325 | 33  | 
|
| 57276 | 34  | 
lemma at_top_le_at_infinity: "at_top \<le> (at_infinity :: real filter)"  | 
| 50325 | 35  | 
unfolding at_infinity_eq_at_top_bot by simp  | 
36  | 
||
| 57276 | 37  | 
lemma at_bot_le_at_infinity: "at_bot \<le> (at_infinity :: real filter)"  | 
| 50325 | 38  | 
unfolding at_infinity_eq_at_top_bot by simp  | 
39  | 
||
| 
57275
 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 
hoelzl 
parents: 
56541 
diff
changeset
 | 
40  | 
lemma filterlim_at_top_imp_at_infinity:  | 
| 
 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 
hoelzl 
parents: 
56541 
diff
changeset
 | 
41  | 
fixes f :: "_ \<Rightarrow> real"  | 
| 
 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 
hoelzl 
parents: 
56541 
diff
changeset
 | 
42  | 
shows "filterlim f at_top F \<Longrightarrow> filterlim f at_infinity F"  | 
| 
 
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
 
hoelzl 
parents: 
56541 
diff
changeset
 | 
43  | 
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
 | 
44  | 
|
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
45  | 
lemma lim_infinity_imp_sequentially:  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
46  | 
"(f ---> l) at_infinity \<Longrightarrow> ((\<lambda>n. f(n)) ---> l) sequentially"  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
47  | 
by (simp add: filterlim_at_top_imp_at_infinity filterlim_compose filterlim_real_sequentially)  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
48  | 
|
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
49  | 
|
| 60758 | 50  | 
subsubsection \<open>Boundedness\<close>  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
51  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
52  | 
definition Bfun :: "('a \<Rightarrow> 'b::metric_space) \<Rightarrow> 'a filter \<Rightarrow> bool" where
 | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
53  | 
Bfun_metric_def: "Bfun f F = (\<exists>y. \<exists>K>0. eventually (\<lambda>x. dist (f x) y \<le> K) F)"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
54  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
55  | 
abbreviation Bseq :: "(nat \<Rightarrow> 'a::metric_space) \<Rightarrow> bool" where  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
56  | 
"Bseq X \<equiv> Bfun X sequentially"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
57  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
58  | 
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
 | 
59  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
60  | 
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
 | 
61  | 
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
 | 
62  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
63  | 
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
 | 
64  | 
unfolding Bfun_metric_def by (subst (asm) eventually_sequentially_seg)  | 
| 31355 | 65  | 
|
| 
51474
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
66  | 
lemma Bfun_def:  | 
| 
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
67  | 
"Bfun f F \<longleftrightarrow> (\<exists>K>0. eventually (\<lambda>x. norm (f x) \<le> K) F)"  | 
| 
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
68  | 
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
 | 
69  | 
proof safe  | 
| 
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
70  | 
fix y K assume "0 < K" and *: "eventually (\<lambda>x. dist (f x) y \<le> K) F"  | 
| 
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
71  | 
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
 | 
72  | 
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
 | 
73  | 
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
 | 
74  | 
by eventually_elim auto  | 
| 60758 | 75  | 
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
 | 
76  | 
by (intro exI[of _ "K + dist 0 y"] add_pos_nonneg conjI zero_le_dist) auto  | 
| 
 
1e9e68247ad1
generalize Bfun and Bseq to metric spaces; Bseq is an abbreviation for Bfun
 
hoelzl 
parents: 
51472 
diff
changeset
 | 
77  | 
qed auto  | 
| 31355 | 78  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
79  | 
lemma BfunI:  | 
| 44195 | 80  | 
assumes K: "eventually (\<lambda>x. norm (f x) \<le> K) F" shows "Bfun f F"  | 
| 31355 | 81  | 
unfolding Bfun_def  | 
82  | 
proof (intro exI conjI allI)  | 
|
83  | 
show "0 < max K 1" by simp  | 
|
84  | 
next  | 
|
| 44195 | 85  | 
show "eventually (\<lambda>x. norm (f x) \<le> max K 1) F"  | 
| 31355 | 86  | 
using K by (rule eventually_elim1, simp)  | 
87  | 
qed  | 
|
88  | 
||
89  | 
lemma BfunE:  | 
|
| 44195 | 90  | 
assumes "Bfun f F"  | 
91  | 
obtains B where "0 < B" and "eventually (\<lambda>x. norm (f x) \<le> B) F"  | 
|
| 31355 | 92  | 
using assms unfolding Bfun_def by fast  | 
93  | 
||
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
94  | 
lemma Cauchy_Bseq: "Cauchy X \<Longrightarrow> Bseq X"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
95  | 
unfolding Cauchy_def Bfun_metric_def eventually_sequentially  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
96  | 
apply (erule_tac x=1 in allE)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
97  | 
apply simp  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
98  | 
apply safe  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
99  | 
apply (rule_tac x="X M" in exI)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
100  | 
apply (rule_tac x=1 in exI)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
101  | 
apply (erule_tac x=M in allE)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
102  | 
apply simp  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
103  | 
apply (rule_tac x=M in exI)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
104  | 
apply (auto simp: dist_commute)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
105  | 
done  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
106  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
107  | 
|
| 60758 | 108  | 
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
 | 
109  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
110  | 
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
 | 
111  | 
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
 | 
112  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
113  | 
lemma BseqI2': "\<forall>n\<ge>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
 | 
114  | 
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
 | 
115  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
116  | 
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
 | 
117  | 
unfolding Bfun_def eventually_sequentially  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
118  | 
proof safe  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
119  | 
fix N K assume "0 < K" "\<forall>n\<ge>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
 | 
120  | 
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
 | 
121  | 
    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
 | 
122  | 
(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
 | 
123  | 
qed auto  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
124  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
125  | 
lemma BseqE: "\<lbrakk>Bseq X; \<And>K. \<lbrakk>0 < K; \<forall>n. norm (X n) \<le> K\<rbrakk> \<Longrightarrow> Q\<rbrakk> \<Longrightarrow> Q"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
126  | 
unfolding Bseq_def by auto  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
127  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
128  | 
lemma BseqD: "Bseq X ==> \<exists>K. 0 < K & (\<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
 | 
129  | 
by (simp add: Bseq_def)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
130  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
131  | 
lemma BseqI: "[| 0 < K; \<forall>n. norm (X n) \<le> K |] ==> Bseq X"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
132  | 
by (auto simp add: Bseq_def)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
133  | 
|
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
134  | 
lemma Bseq_bdd_above: "Bseq (X::nat \<Rightarrow> real) \<Longrightarrow> bdd_above (range X)"  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
135  | 
proof (elim BseqE, intro bdd_aboveI2)  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
136  | 
fix K n assume "0 < K" "\<forall>n. norm (X n) \<le> K" then show "X n \<le> K"  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
137  | 
by (auto elim!: allE[of _ n])  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
138  | 
qed  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
139  | 
|
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
140  | 
lemma Bseq_bdd_below: "Bseq (X::nat \<Rightarrow> real) \<Longrightarrow> bdd_below (range X)"  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
141  | 
proof (elim BseqE, intro bdd_belowI2)  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
142  | 
fix K n assume "0 < K" "\<forall>n. norm (X n) \<le> K" then show "- K \<le> X n"  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
143  | 
by (auto elim!: allE[of _ n])  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
144  | 
qed  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
145  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
146  | 
lemma lemma_NBseq_def:  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
147  | 
"(\<exists>K > 0. \<forall>n. norm (X n) \<le> K) = (\<exists>N. \<forall>n. norm (X n) \<le> real(Suc N))"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
148  | 
proof safe  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
149  | 
fix K :: real  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
150  | 
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
 | 
151  | 
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
 | 
152  | 
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
 | 
153  | 
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
 | 
154  | 
by (blast intro: order_trans)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
155  | 
then show "\<exists>N. \<forall>n. norm (X n) \<le> real (Suc N)" ..  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
156  | 
qed (force simp add: real_of_nat_Suc)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
157  | 
|
| 60758 | 158  | 
text\<open>alternative definition for Bseq\<close>  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
159  | 
lemma Bseq_iff: "Bseq X = (\<exists>N. \<forall>n. norm (X n) \<le> real(Suc N))"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
160  | 
apply (simp add: Bseq_def)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
161  | 
apply (simp (no_asm) add: lemma_NBseq_def)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
162  | 
done  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
163  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
164  | 
lemma lemma_NBseq_def2:  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
165  | 
"(\<exists>K > 0. \<forall>n. norm (X n) \<le> K) = (\<exists>N. \<forall>n. norm (X n) < real(Suc N))"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
166  | 
apply (subst lemma_NBseq_def, auto)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
167  | 
apply (rule_tac x = "Suc N" in exI)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
168  | 
apply (rule_tac [2] x = N in exI)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
169  | 
apply (auto simp add: real_of_nat_Suc)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
170  | 
prefer 2 apply (blast intro: order_less_imp_le)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
171  | 
apply (drule_tac x = n in spec, simp)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
172  | 
done  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
173  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
174  | 
(* yet another definition for Bseq *)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
175  | 
lemma Bseq_iff1a: "Bseq X = (\<exists>N. \<forall>n. norm (X n) < real(Suc N))"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
176  | 
by (simp add: Bseq_def lemma_NBseq_def2)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
177  | 
|
| 60758 | 178  | 
subsubsection\<open>A Few More Equivalence Theorems for Boundedness\<close>  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
179  | 
|
| 60758 | 180  | 
text\<open>alternative formulation for boundedness\<close>  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
181  | 
lemma Bseq_iff2: "Bseq X = (\<exists>k > 0. \<exists>x. \<forall>n. norm (X(n) + -x) \<le> k)"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
182  | 
apply (unfold Bseq_def, safe)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
183  | 
apply (rule_tac [2] x = "k + norm x" in exI)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
184  | 
apply (rule_tac x = K in exI, simp)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
185  | 
apply (rule exI [where x = 0], auto)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
186  | 
apply (erule order_less_le_trans, simp)  | 
| 
54230
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
53602 
diff
changeset
 | 
187  | 
apply (drule_tac x=n in spec)  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
188  | 
apply (drule order_trans [OF norm_triangle_ineq2])  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
189  | 
apply simp  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
190  | 
done  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
191  | 
|
| 60758 | 192  | 
text\<open>alternative formulation for boundedness\<close>  | 
| 53602 | 193  | 
lemma Bseq_iff3:  | 
194  | 
"Bseq X \<longleftrightarrow> (\<exists>k>0. \<exists>N. \<forall>n. norm (X n + - X N) \<le> k)" (is "?P \<longleftrightarrow> ?Q")  | 
|
195  | 
proof  | 
|
196  | 
assume ?P  | 
|
197  | 
then obtain K  | 
|
198  | 
where *: "0 < K" and **: "\<And>n. norm (X n) \<le> K" by (auto simp add: Bseq_def)  | 
|
199  | 
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
 | 
200  | 
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
 | 
201  | 
by (auto intro: order_trans norm_triangle_ineq4)  | 
| 
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
53602 
diff
changeset
 | 
202  | 
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
 | 
203  | 
by simp  | 
| 60758 | 204  | 
with \<open>0 < K + norm (X 0)\<close> show ?Q by blast  | 
| 53602 | 205  | 
next  | 
206  | 
assume ?Q then show ?P by (auto simp add: Bseq_iff2)  | 
|
207  | 
qed  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
208  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
209  | 
lemma BseqI2: "(\<forall>n. k \<le> f n & f n \<le> (K::real)) ==> Bseq f"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
210  | 
apply (simp add: Bseq_def)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
211  | 
apply (rule_tac x = " (\<bar>k\<bar> + \<bar>K\<bar>) + 1" in exI, auto)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
212  | 
apply (drule_tac x = n in spec, arith)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
213  | 
done  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
214  | 
|
| 
54230
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
53602 
diff
changeset
 | 
215  | 
|
| 60758 | 216  | 
subsubsection\<open>Upper Bounds and Lubs of Bounded Sequences\<close>  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
217  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
218  | 
lemma Bseq_minus_iff: "Bseq (%n. -(X n) :: 'a :: real_normed_vector) = Bseq X"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
219  | 
by (simp add: Bseq_def)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
220  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
221  | 
lemma Bseq_eq_bounded: "range f \<subseteq> {a .. b::real} \<Longrightarrow> Bseq f"
 | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
222  | 
apply (simp add: subset_eq)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
223  | 
apply (rule BseqI'[where K="max (norm a) (norm b)"])  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
224  | 
apply (erule_tac x=n in allE)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
225  | 
apply auto  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
226  | 
done  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
227  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
228  | 
lemma incseq_bounded: "incseq X \<Longrightarrow> \<forall>i. X i \<le> (B::real) \<Longrightarrow> Bseq X"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
229  | 
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
 | 
230  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
231  | 
lemma decseq_bounded: "decseq X \<Longrightarrow> \<forall>i. (B::real) \<le> X i \<Longrightarrow> Bseq X"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
232  | 
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
 | 
233  | 
|
| 60758 | 234  | 
subsection \<open>Bounded Monotonic Sequences\<close>  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
235  | 
|
| 60758 | 236  | 
subsubsection\<open>A Bounded and Monotonic Sequence Converges\<close>  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
237  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
238  | 
(* TODO: delete *)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
239  | 
(* FIXME: one use in NSA/HSEQ.thy *)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
240  | 
lemma Bmonoseq_LIMSEQ: "\<forall>n. m \<le> n --> X n = X m ==> \<exists>L. (X ----> L)"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
241  | 
apply (rule_tac x="X m" in exI)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
242  | 
apply (rule filterlim_cong[THEN iffD2, OF refl refl _ tendsto_const])  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
243  | 
unfolding eventually_sequentially  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
244  | 
apply blast  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
245  | 
done  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
246  | 
|
| 60758 | 247  | 
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
 | 
248  | 
|
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
249  | 
definition Zfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a filter \<Rightarrow> bool"
 | 
| 44195 | 250  | 
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
 | 
251  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
252  | 
lemma ZfunI:  | 
| 44195 | 253  | 
"(\<And>r. 0 < r \<Longrightarrow> eventually (\<lambda>x. norm (f x) < r) F) \<Longrightarrow> Zfun f F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
254  | 
unfolding Zfun_def by simp  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
255  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
256  | 
lemma ZfunD:  | 
| 44195 | 257  | 
"\<lbrakk>Zfun f F; 0 < r\<rbrakk> \<Longrightarrow> eventually (\<lambda>x. norm (f x) < r) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
258  | 
unfolding Zfun_def by simp  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
259  | 
|
| 31355 | 260  | 
lemma Zfun_ssubst:  | 
| 44195 | 261  | 
"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
 | 
262  | 
unfolding Zfun_def by (auto elim!: eventually_rev_mp)  | 
| 31355 | 263  | 
|
| 44195 | 264  | 
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
 | 
265  | 
unfolding Zfun_def by simp  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
266  | 
|
| 44195 | 267  | 
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
 | 
268  | 
unfolding Zfun_def by simp  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
269  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
270  | 
lemma Zfun_imp_Zfun:  | 
| 44195 | 271  | 
assumes f: "Zfun f F"  | 
272  | 
assumes g: "eventually (\<lambda>x. norm (g x) \<le> norm (f x) * K) F"  | 
|
273  | 
shows "Zfun (\<lambda>x. g x) F"  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
274  | 
proof (cases)  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
275  | 
assume K: "0 < K"  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
276  | 
show ?thesis  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
277  | 
proof (rule ZfunI)  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
278  | 
fix r::real assume "0 < r"  | 
| 56541 | 279  | 
hence "0 < r / K" using K by simp  | 
| 44195 | 280  | 
then have "eventually (\<lambda>x. norm (f x) < r / K) F"  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
281  | 
using ZfunD [OF f] by fast  | 
| 44195 | 282  | 
with g show "eventually (\<lambda>x. norm (g x) < r) F"  | 
| 46887 | 283  | 
proof eventually_elim  | 
284  | 
case (elim x)  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
285  | 
hence "norm (f x) * K < r"  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
286  | 
by (simp add: pos_less_divide_eq K)  | 
| 46887 | 287  | 
thus ?case  | 
288  | 
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
 | 
289  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
290  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
291  | 
next  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
292  | 
assume "\<not> 0 < K"  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
293  | 
hence K: "K \<le> 0" by (simp only: not_less)  | 
| 31355 | 294  | 
show ?thesis  | 
295  | 
proof (rule ZfunI)  | 
|
296  | 
fix r :: real  | 
|
297  | 
assume "0 < r"  | 
|
| 44195 | 298  | 
from g show "eventually (\<lambda>x. norm (g x) < r) F"  | 
| 46887 | 299  | 
proof eventually_elim  | 
300  | 
case (elim x)  | 
|
301  | 
also have "norm (f x) * K \<le> norm (f x) * 0"  | 
|
| 31355 | 302  | 
using K norm_ge_zero by (rule mult_left_mono)  | 
| 46887 | 303  | 
finally show ?case  | 
| 60758 | 304  | 
using \<open>0 < r\<close> by simp  | 
| 31355 | 305  | 
qed  | 
306  | 
qed  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
307  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
308  | 
|
| 44195 | 309  | 
lemma Zfun_le: "\<lbrakk>Zfun g F; \<forall>x. norm (f x) \<le> norm (g x)\<rbrakk> \<Longrightarrow> Zfun f F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
310  | 
by (erule_tac K="1" in Zfun_imp_Zfun, simp)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
311  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
312  | 
lemma Zfun_add:  | 
| 44195 | 313  | 
assumes f: "Zfun f F" and g: "Zfun g F"  | 
314  | 
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
 | 
315  | 
proof (rule ZfunI)  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
316  | 
fix r::real assume "0 < r"  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
317  | 
hence r: "0 < r / 2" by simp  | 
| 44195 | 318  | 
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
 | 
319  | 
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
 | 
320  | 
moreover  | 
| 44195 | 321  | 
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
 | 
322  | 
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
 | 
323  | 
ultimately  | 
| 44195 | 324  | 
show "eventually (\<lambda>x. norm (f x + g x) < r) F"  | 
| 46887 | 325  | 
proof eventually_elim  | 
326  | 
case (elim x)  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
327  | 
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
 | 
328  | 
by (rule norm_triangle_ineq)  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
329  | 
also have "\<dots> < r/2 + r/2"  | 
| 46887 | 330  | 
using elim by (rule add_strict_mono)  | 
331  | 
finally show ?case  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
332  | 
by simp  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
333  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
334  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
335  | 
|
| 44195 | 336  | 
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
 | 
337  | 
unfolding Zfun_def by simp  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
338  | 
|
| 44195 | 339  | 
lemma Zfun_diff: "\<lbrakk>Zfun f F; Zfun g F\<rbrakk> \<Longrightarrow> Zfun (\<lambda>x. f x - g x) F"  | 
| 
54230
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
53602 
diff
changeset
 | 
340  | 
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
 | 
341  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
342  | 
lemma (in bounded_linear) Zfun:  | 
| 44195 | 343  | 
assumes g: "Zfun g F"  | 
344  | 
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
 | 
345  | 
proof -  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
346  | 
obtain K where "\<And>x. norm (f x) \<le> norm x * K"  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
347  | 
using bounded by fast  | 
| 44195 | 348  | 
then have "eventually (\<lambda>x. norm (f (g x)) \<le> norm (g x) * K) F"  | 
| 31355 | 349  | 
by simp  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
350  | 
with g show ?thesis  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
351  | 
by (rule Zfun_imp_Zfun)  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
352  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
353  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
354  | 
lemma (in bounded_bilinear) Zfun:  | 
| 44195 | 355  | 
assumes f: "Zfun f F"  | 
356  | 
assumes g: "Zfun g F"  | 
|
357  | 
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
 | 
358  | 
proof (rule ZfunI)  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
359  | 
fix r::real assume r: "0 < r"  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
360  | 
obtain K where K: "0 < K"  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
361  | 
and norm_le: "\<And>x y. norm (x ** y) \<le> norm x * norm y * K"  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
362  | 
using pos_bounded by fast  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
363  | 
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
 | 
364  | 
by (rule positive_imp_inverse_positive)  | 
| 44195 | 365  | 
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
 | 
366  | 
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
 | 
367  | 
moreover  | 
| 44195 | 368  | 
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
 | 
369  | 
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
 | 
370  | 
ultimately  | 
| 44195 | 371  | 
show "eventually (\<lambda>x. norm (f x ** g x) < r) F"  | 
| 46887 | 372  | 
proof eventually_elim  | 
373  | 
case (elim x)  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
374  | 
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
 | 
375  | 
by (rule norm_le)  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
376  | 
also have "norm (f x) * norm (g x) * K < r * inverse K * K"  | 
| 46887 | 377  | 
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
 | 
378  | 
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
 | 
379  | 
by simp  | 
| 46887 | 380  | 
finally show ?case .  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
381  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
382  | 
qed  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
383  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
384  | 
lemma (in bounded_bilinear) Zfun_left:  | 
| 44195 | 385  | 
"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
 | 
386  | 
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
 | 
387  | 
|
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
388  | 
lemma (in bounded_bilinear) Zfun_right:  | 
| 44195 | 389  | 
"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
 | 
390  | 
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
 | 
391  | 
|
| 
44282
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
392  | 
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
 | 
393  | 
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
 | 
394  | 
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
 | 
395  | 
|
| 44195 | 396  | 
lemma tendsto_Zfun_iff: "(f ---> 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
 | 
397  | 
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
 | 
398  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
399  | 
lemma tendsto_0_le: "\<lbrakk>(f ---> 0) F; eventually (\<lambda>x. norm (g x) \<le> norm (f x) * K) F\<rbrakk>  | 
| 56366 | 400  | 
\<Longrightarrow> (g ---> 0) F"  | 
401  | 
by (simp add: Zfun_imp_Zfun tendsto_Zfun_iff)  | 
|
402  | 
||
| 60758 | 403  | 
subsubsection \<open>Distance and norms\<close>  | 
| 
36662
 
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
 
huffman 
parents: 
36656 
diff
changeset
 | 
404  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
405  | 
lemma tendsto_dist [tendsto_intros]:  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
406  | 
fixes l m :: "'a :: metric_space"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
407  | 
assumes f: "(f ---> l) F" and g: "(g ---> m) F"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
408  | 
shows "((\<lambda>x. dist (f x) (g x)) ---> dist l m) F"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
409  | 
proof (rule tendstoI)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
410  | 
fix e :: real assume "0 < e"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
411  | 
hence e2: "0 < e/2" by simp  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
412  | 
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
 | 
413  | 
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
 | 
414  | 
proof (eventually_elim)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
415  | 
case (elim x)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
416  | 
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
 | 
417  | 
unfolding dist_real_def  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
418  | 
using dist_triangle2 [of "f x" "g x" "l"]  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
419  | 
using dist_triangle2 [of "g x" "l" "m"]  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
420  | 
using dist_triangle3 [of "l" "m" "f x"]  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
421  | 
using dist_triangle [of "f x" "m" "g x"]  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
422  | 
by arith  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
423  | 
qed  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
424  | 
qed  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
425  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
426  | 
lemma continuous_dist[continuous_intros]:  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
427  | 
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
 | 
428  | 
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
 | 
429  | 
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
 | 
430  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
431  | 
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
 | 
432  | 
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
 | 
433  | 
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
 | 
434  | 
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
 | 
435  | 
|
| 31565 | 436  | 
lemma tendsto_norm [tendsto_intros]:  | 
| 44195 | 437  | 
"(f ---> a) F \<Longrightarrow> ((\<lambda>x. norm (f x)) ---> norm a) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
438  | 
unfolding norm_conv_dist by (intro tendsto_intros)  | 
| 
36662
 
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
 
huffman 
parents: 
36656 
diff
changeset
 | 
439  | 
|
| 
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
 | 
440  | 
lemma continuous_norm [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
 | 
441  | 
"continuous F f \<Longrightarrow> continuous F (\<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
 | 
442  | 
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
 | 
443  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
444  | 
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
 | 
445  | 
"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
 | 
446  | 
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
 | 
447  | 
|
| 
36662
 
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
 
huffman 
parents: 
36656 
diff
changeset
 | 
448  | 
lemma tendsto_norm_zero:  | 
| 44195 | 449  | 
"(f ---> 0) F \<Longrightarrow> ((\<lambda>x. norm (f x)) ---> 0) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
450  | 
by (drule tendsto_norm, simp)  | 
| 
36662
 
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
 
huffman 
parents: 
36656 
diff
changeset
 | 
451  | 
|
| 
 
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
 
huffman 
parents: 
36656 
diff
changeset
 | 
452  | 
lemma tendsto_norm_zero_cancel:  | 
| 44195 | 453  | 
"((\<lambda>x. norm (f x)) ---> 0) F \<Longrightarrow> (f ---> 0) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
454  | 
unfolding tendsto_iff dist_norm by simp  | 
| 
36662
 
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
 
huffman 
parents: 
36656 
diff
changeset
 | 
455  | 
|
| 
 
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
 
huffman 
parents: 
36656 
diff
changeset
 | 
456  | 
lemma tendsto_norm_zero_iff:  | 
| 44195 | 457  | 
"((\<lambda>x. norm (f x)) ---> 0) F \<longleftrightarrow> (f ---> 0) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
458  | 
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
 | 
459  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
460  | 
lemma tendsto_rabs [tendsto_intros]:  | 
| 44195 | 461  | 
"(f ---> (l::real)) F \<Longrightarrow> ((\<lambda>x. \<bar>f x\<bar>) ---> \<bar>l\<bar>) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
462  | 
by (fold real_norm_def, rule tendsto_norm)  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
463  | 
|
| 
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
 | 
464  | 
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
 | 
465  | 
"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
 | 
466  | 
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
 | 
467  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
468  | 
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
 | 
469  | 
"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
 | 
470  | 
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
 | 
471  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
472  | 
lemma tendsto_rabs_zero:  | 
| 44195 | 473  | 
"(f ---> (0::real)) F \<Longrightarrow> ((\<lambda>x. \<bar>f x\<bar>) ---> 0) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
474  | 
by (fold real_norm_def, rule tendsto_norm_zero)  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
475  | 
|
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
476  | 
lemma tendsto_rabs_zero_cancel:  | 
| 44195 | 477  | 
"((\<lambda>x. \<bar>f x\<bar>) ---> (0::real)) F \<Longrightarrow> (f ---> 0) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
478  | 
by (fold real_norm_def, rule tendsto_norm_zero_cancel)  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
479  | 
|
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
480  | 
lemma tendsto_rabs_zero_iff:  | 
| 44195 | 481  | 
"((\<lambda>x. \<bar>f x\<bar>) ---> (0::real)) F \<longleftrightarrow> (f ---> 0) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
482  | 
by (fold real_norm_def, rule tendsto_norm_zero_iff)  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
483  | 
|
| 60758 | 484  | 
subsubsection \<open>Addition and subtraction\<close>  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
485  | 
|
| 31565 | 486  | 
lemma tendsto_add [tendsto_intros]:  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
487  | 
fixes a b :: "'a::real_normed_vector"  | 
| 44195 | 488  | 
shows "\<lbrakk>(f ---> a) F; (g ---> b) F\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x + g x) ---> a + b) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
489  | 
by (simp only: tendsto_Zfun_iff add_diff_add Zfun_add)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
490  | 
|
| 
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
 | 
491  | 
lemma continuous_add [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
 | 
492  | 
fixes f g :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
493  | 
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
 | 
494  | 
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
 | 
495  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
496  | 
lemma continuous_on_add [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
 | 
497  | 
fixes f g :: "_ \<Rightarrow> 'b::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
498  | 
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
 | 
499  | 
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
 | 
500  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
501  | 
lemma tendsto_add_zero:  | 
| 
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
 | 
502  | 
fixes f g :: "_ \<Rightarrow> 'b::real_normed_vector"  | 
| 44195 | 503  | 
shows "\<lbrakk>(f ---> 0) F; (g ---> 0) F\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x + g x) ---> 0) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
504  | 
by (drule (1) tendsto_add, simp)  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
505  | 
|
| 31565 | 506  | 
lemma tendsto_minus [tendsto_intros]:  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
507  | 
fixes a :: "'a::real_normed_vector"  | 
| 44195 | 508  | 
shows "(f ---> a) F \<Longrightarrow> ((\<lambda>x. - f x) ---> - a) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
509  | 
by (simp only: tendsto_Zfun_iff minus_diff_minus Zfun_minus)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
510  | 
|
| 
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
 | 
511  | 
lemma continuous_minus [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
 | 
512  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
513  | 
shows "continuous F f \<Longrightarrow> continuous F (\<lambda>x. - f x)"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
514  | 
unfolding continuous_def by (rule tendsto_minus)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
515  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
516  | 
lemma continuous_on_minus [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
 | 
517  | 
fixes f :: "_ \<Rightarrow> 'b::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
518  | 
shows "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. - f x)"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
519  | 
unfolding continuous_on_def by (auto intro: tendsto_minus)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
520  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
521  | 
lemma tendsto_minus_cancel:  | 
| 
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
522  | 
fixes a :: "'a::real_normed_vector"  | 
| 44195 | 523  | 
shows "((\<lambda>x. - f x) ---> - a) F \<Longrightarrow> (f ---> a) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
524  | 
by (drule tendsto_minus, simp)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
525  | 
|
| 
50330
 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 
hoelzl 
parents: 
50327 
diff
changeset
 | 
526  | 
lemma tendsto_minus_cancel_left:  | 
| 
 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 
hoelzl 
parents: 
50327 
diff
changeset
 | 
527  | 
"(f ---> - (y::_::real_normed_vector)) F \<longleftrightarrow> ((\<lambda>x. - f x) ---> y) F"  | 
| 
 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 
hoelzl 
parents: 
50327 
diff
changeset
 | 
528  | 
using tendsto_minus_cancel[of f "- y" F] tendsto_minus[of f "- y" F]  | 
| 
 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 
hoelzl 
parents: 
50327 
diff
changeset
 | 
529  | 
by auto  | 
| 
 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 
hoelzl 
parents: 
50327 
diff
changeset
 | 
530  | 
|
| 31565 | 531  | 
lemma tendsto_diff [tendsto_intros]:  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
532  | 
fixes a b :: "'a::real_normed_vector"  | 
| 44195 | 533  | 
shows "\<lbrakk>(f ---> a) F; (g ---> b) F\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x - g x) ---> a - b) F"  | 
| 
54230
 
b1d955791529
more simplification rules on unary and binary minus
 
haftmann 
parents: 
53602 
diff
changeset
 | 
534  | 
using tendsto_add [of f a F "\<lambda>x. - g x" "- b"] by (simp add: tendsto_minus)  | 
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
535  | 
|
| 
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
 | 
536  | 
lemma continuous_diff [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
 | 
537  | 
fixes f g :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
538  | 
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
 | 
539  | 
unfolding continuous_def by (rule tendsto_diff)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
540  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
541  | 
lemma continuous_on_diff [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
 | 
542  | 
fixes f g :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
543  | 
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
 | 
544  | 
unfolding continuous_on_def by (auto intro: tendsto_diff)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
545  | 
|
| 31588 | 546  | 
lemma tendsto_setsum [tendsto_intros]:  | 
547  | 
fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::real_normed_vector"  | 
|
| 44195 | 548  | 
assumes "\<And>i. i \<in> S \<Longrightarrow> (f i ---> a i) F"  | 
549  | 
shows "((\<lambda>x. \<Sum>i\<in>S. f i x) ---> (\<Sum>i\<in>S. a i)) F"  | 
|
| 31588 | 550  | 
proof (cases "finite S")  | 
551  | 
assume "finite S" thus ?thesis using assms  | 
|
| 
58729
 
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
 
hoelzl 
parents: 
57512 
diff
changeset
 | 
552  | 
by (induct, simp, simp add: tendsto_add)  | 
| 
 
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
 
hoelzl 
parents: 
57512 
diff
changeset
 | 
553  | 
qed simp  | 
| 31588 | 554  | 
|
| 
51478
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
555  | 
lemma continuous_setsum [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
 | 
556  | 
fixes f :: "'a \<Rightarrow> 'b::t2_space \<Rightarrow> 'c::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
557  | 
shows "(\<And>i. i \<in> S \<Longrightarrow> continuous F (f i)) \<Longrightarrow> continuous F (\<lambda>x. \<Sum>i\<in>S. f i 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
 | 
558  | 
unfolding continuous_def by (rule tendsto_setsum)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
559  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
560  | 
lemma continuous_on_setsum [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
 | 
561  | 
fixes f :: "'a \<Rightarrow> _ \<Rightarrow> 'c::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
562  | 
shows "(\<And>i. i \<in> S \<Longrightarrow> continuous_on s (f i)) \<Longrightarrow> continuous_on s (\<lambda>x. \<Sum>i\<in>S. f i 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
 | 
563  | 
unfolding continuous_on_def by (auto intro: tendsto_setsum)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
564  | 
|
| 50999 | 565  | 
lemmas real_tendsto_sandwich = tendsto_sandwich[where 'b=real]  | 
566  | 
||
| 60758 | 567  | 
subsubsection \<open>Linear operators and multiplication\<close>  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
568  | 
|
| 
44282
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
569  | 
lemma (in bounded_linear) tendsto:  | 
| 44195 | 570  | 
"(g ---> a) F \<Longrightarrow> ((\<lambda>x. f (g x)) ---> f a) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
571  | 
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
 | 
572  | 
|
| 
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
 | 
573  | 
lemma (in bounded_linear) 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
 | 
574  | 
"continuous F g \<Longrightarrow> continuous F (\<lambda>x. f (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
 | 
575  | 
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
 | 
576  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
577  | 
lemma (in bounded_linear) 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
 | 
578  | 
"continuous_on s g \<Longrightarrow> continuous_on s (\<lambda>x. f (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
 | 
579  | 
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
 | 
580  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
581  | 
lemma (in bounded_linear) tendsto_zero:  | 
| 44195 | 582  | 
"(g ---> 0) F \<Longrightarrow> ((\<lambda>x. f (g x)) ---> 0) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
583  | 
by (drule tendsto, simp only: zero)  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
584  | 
|
| 
44282
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
585  | 
lemma (in bounded_bilinear) tendsto:  | 
| 44195 | 586  | 
"\<lbrakk>(f ---> a) F; (g ---> b) F\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x ** g x) ---> a ** b) F"  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
587  | 
by (simp only: tendsto_Zfun_iff prod_diff_prod  | 
| 
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
588  | 
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
 | 
589  | 
|
| 
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
 | 
590  | 
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
 | 
591  | 
"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
 | 
592  | 
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
 | 
593  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
594  | 
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
 | 
595  | 
"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
 | 
596  | 
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
 | 
597  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
598  | 
lemma (in bounded_bilinear) tendsto_zero:  | 
| 44195 | 599  | 
assumes f: "(f ---> 0) F"  | 
600  | 
assumes g: "(g ---> 0) F"  | 
|
601  | 
shows "((\<lambda>x. f x ** g x) ---> 0) F"  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
602  | 
using tendsto [OF f g] by (simp add: zero_left)  | 
| 31355 | 603  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
604  | 
lemma (in bounded_bilinear) tendsto_left_zero:  | 
| 44195 | 605  | 
"(f ---> 0) F \<Longrightarrow> ((\<lambda>x. f x ** c) ---> 0) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
606  | 
by (rule bounded_linear.tendsto_zero [OF bounded_linear_left])  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
607  | 
|
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
608  | 
lemma (in bounded_bilinear) tendsto_right_zero:  | 
| 44195 | 609  | 
"(f ---> 0) F \<Longrightarrow> ((\<lambda>x. c ** f x) ---> 0) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
610  | 
by (rule bounded_linear.tendsto_zero [OF bounded_linear_right])  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
611  | 
|
| 
44282
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
612  | 
lemmas tendsto_of_real [tendsto_intros] =  | 
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
613  | 
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
 | 
614  | 
|
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
615  | 
lemmas tendsto_scaleR [tendsto_intros] =  | 
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
616  | 
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
 | 
617  | 
|
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
618  | 
lemmas tendsto_mult [tendsto_intros] =  | 
| 
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
619  | 
bounded_bilinear.tendsto [OF bounded_bilinear_mult]  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
620  | 
|
| 
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
 | 
621  | 
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
 | 
622  | 
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
 | 
623  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
624  | 
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
 | 
625  | 
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
 | 
626  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
627  | 
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
 | 
628  | 
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
 | 
629  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
630  | 
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
 | 
631  | 
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
 | 
632  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
633  | 
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
 | 
634  | 
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
 | 
635  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
636  | 
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
 | 
637  | 
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
 | 
638  | 
|
| 
44568
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
639  | 
lemmas tendsto_mult_zero =  | 
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
640  | 
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
 | 
641  | 
|
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
642  | 
lemmas tendsto_mult_left_zero =  | 
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
643  | 
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
 | 
644  | 
|
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
645  | 
lemmas tendsto_mult_right_zero =  | 
| 
 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 
huffman 
parents: 
44342 
diff
changeset
 | 
646  | 
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
 | 
647  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
648  | 
lemma tendsto_power [tendsto_intros]:  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
649  | 
  fixes f :: "'a \<Rightarrow> 'b::{power,real_normed_algebra}"
 | 
| 44195 | 650  | 
shows "(f ---> a) F \<Longrightarrow> ((\<lambda>x. f x ^ n) ---> a ^ n) F"  | 
| 
58729
 
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
 
hoelzl 
parents: 
57512 
diff
changeset
 | 
651  | 
by (induct n) (simp_all add: tendsto_mult)  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
652  | 
|
| 
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
 | 
653  | 
lemma continuous_power [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
 | 
654  | 
  fixes f :: "'a::t2_space \<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
 | 
655  | 
shows "continuous F f \<Longrightarrow> continuous F (\<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
 | 
656  | 
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
 | 
657  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
658  | 
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
 | 
659  | 
  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
 | 
660  | 
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
 | 
661  | 
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
 | 
662  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
663  | 
lemma tendsto_setprod [tendsto_intros]:  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
664  | 
  fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::{real_normed_algebra,comm_ring_1}"
 | 
| 44195 | 665  | 
assumes "\<And>i. i \<in> S \<Longrightarrow> (f i ---> L i) F"  | 
666  | 
shows "((\<lambda>x. \<Prod>i\<in>S. f i x) ---> (\<Prod>i\<in>S. L i)) F"  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
667  | 
proof (cases "finite S")  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
668  | 
assume "finite S" thus ?thesis using assms  | 
| 
58729
 
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
 
hoelzl 
parents: 
57512 
diff
changeset
 | 
669  | 
by (induct, simp, simp add: tendsto_mult)  | 
| 
 
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
 
hoelzl 
parents: 
57512 
diff
changeset
 | 
670  | 
qed simp  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
671  | 
|
| 
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
 | 
672  | 
lemma continuous_setprod [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
 | 
673  | 
  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
 | 
674  | 
shows "(\<And>i. i \<in> S \<Longrightarrow> continuous F (f i)) \<Longrightarrow> continuous F (\<lambda>x. \<Prod>i\<in>S. f i 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
 | 
675  | 
unfolding continuous_def by (rule tendsto_setprod)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
676  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
677  | 
lemma continuous_on_setprod [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
 | 
678  | 
  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
 | 
679  | 
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)"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
680  | 
unfolding continuous_on_def by (auto intro: tendsto_setprod)  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
681  | 
|
| 60758 | 682  | 
subsubsection \<open>Inverse and division\<close>  | 
| 31355 | 683  | 
|
684  | 
lemma (in bounded_bilinear) Zfun_prod_Bfun:  | 
|
| 44195 | 685  | 
assumes f: "Zfun f F"  | 
686  | 
assumes g: "Bfun g F"  | 
|
687  | 
shows "Zfun (\<lambda>x. f x ** g x) F"  | 
|
| 31355 | 688  | 
proof -  | 
689  | 
obtain K where K: "0 \<le> K"  | 
|
690  | 
and norm_le: "\<And>x y. norm (x ** y) \<le> norm x * norm y * K"  | 
|
691  | 
using nonneg_bounded by fast  | 
|
692  | 
obtain B where B: "0 < B"  | 
|
| 44195 | 693  | 
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
 | 
694  | 
using g by (rule BfunE)  | 
| 44195 | 695  | 
have "eventually (\<lambda>x. norm (f x ** g x) \<le> norm (f x) * (B * K)) F"  | 
| 46887 | 696  | 
using norm_g proof eventually_elim  | 
697  | 
case (elim x)  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
698  | 
have "norm (f x ** g x) \<le> norm (f x) * norm (g x) * K"  | 
| 31355 | 699  | 
by (rule norm_le)  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
700  | 
also have "\<dots> \<le> norm (f x) * B * K"  | 
| 
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
701  | 
by (intro mult_mono' order_refl norm_g norm_ge_zero  | 
| 46887 | 702  | 
mult_nonneg_nonneg K elim)  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
703  | 
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
 | 
704  | 
by (rule mult.assoc)  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
705  | 
finally show "norm (f x ** g x) \<le> norm (f x) * (B * K)" .  | 
| 31355 | 706  | 
qed  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
707  | 
with f show ?thesis  | 
| 
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
708  | 
by (rule Zfun_imp_Zfun)  | 
| 31355 | 709  | 
qed  | 
710  | 
||
711  | 
lemma (in bounded_bilinear) flip:  | 
|
712  | 
"bounded_bilinear (\<lambda>x y. y ** x)"  | 
|
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
713  | 
apply default  | 
| 
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
714  | 
apply (rule add_right)  | 
| 
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
715  | 
apply (rule add_left)  | 
| 
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
716  | 
apply (rule scaleR_right)  | 
| 
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
717  | 
apply (rule scaleR_left)  | 
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57447 
diff
changeset
 | 
718  | 
apply (subst mult.commute)  | 
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
719  | 
using bounded by fast  | 
| 31355 | 720  | 
|
721  | 
lemma (in bounded_bilinear) Bfun_prod_Zfun:  | 
|
| 44195 | 722  | 
assumes f: "Bfun f F"  | 
723  | 
assumes g: "Zfun g F"  | 
|
724  | 
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
 | 
725  | 
using flip g f by (rule bounded_bilinear.Zfun_prod_Bfun)  | 
| 31355 | 726  | 
|
727  | 
lemma Bfun_inverse_lemma:  | 
|
728  | 
fixes x :: "'a::real_normed_div_algebra"  | 
|
729  | 
shows "\<lbrakk>r \<le> norm x; 0 < r\<rbrakk> \<Longrightarrow> norm (inverse x) \<le> inverse r"  | 
|
| 
44081
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
730  | 
apply (subst nonzero_norm_inverse, clarsimp)  | 
| 
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
731  | 
apply (erule (1) le_imp_inverse_le)  | 
| 
 
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
 
huffman 
parents: 
44079 
diff
changeset
 | 
732  | 
done  | 
| 31355 | 733  | 
|
734  | 
lemma Bfun_inverse:  | 
|
735  | 
fixes a :: "'a::real_normed_div_algebra"  | 
|
| 44195 | 736  | 
assumes f: "(f ---> a) F"  | 
| 31355 | 737  | 
assumes a: "a \<noteq> 0"  | 
| 44195 | 738  | 
shows "Bfun (\<lambda>x. inverse (f x)) F"  | 
| 31355 | 739  | 
proof -  | 
740  | 
from a have "0 < norm a" by simp  | 
|
741  | 
hence "\<exists>r>0. r < norm a" by (rule dense)  | 
|
742  | 
then obtain r where r1: "0 < r" and r2: "r < norm a" by fast  | 
|
| 44195 | 743  | 
have "eventually (\<lambda>x. dist (f x) a < r) F"  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
744  | 
using tendstoD [OF f r1] by fast  | 
| 44195 | 745  | 
hence "eventually (\<lambda>x. norm (inverse (f x)) \<le> inverse (norm a - r)) F"  | 
| 46887 | 746  | 
proof eventually_elim  | 
747  | 
case (elim x)  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
748  | 
hence 1: "norm (f x - a) < r"  | 
| 31355 | 749  | 
by (simp add: dist_norm)  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
750  | 
hence 2: "f x \<noteq> 0" using r2 by auto  | 
| 
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
751  | 
hence "norm (inverse (f x)) = inverse (norm (f x))"  | 
| 31355 | 752  | 
by (rule nonzero_norm_inverse)  | 
753  | 
also have "\<dots> \<le> inverse (norm a - r)"  | 
|
754  | 
proof (rule le_imp_inverse_le)  | 
|
755  | 
show "0 < norm a - r" using r2 by simp  | 
|
756  | 
next  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
757  | 
have "norm a - norm (f x) \<le> norm (a - f x)"  | 
| 31355 | 758  | 
by (rule norm_triangle_ineq2)  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
759  | 
also have "\<dots> = norm (f x - a)"  | 
| 31355 | 760  | 
by (rule norm_minus_commute)  | 
761  | 
also have "\<dots> < r" using 1 .  | 
|
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
762  | 
finally show "norm a - r \<le> norm (f x)" by simp  | 
| 31355 | 763  | 
qed  | 
| 
31487
 
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
 
huffman 
parents: 
31447 
diff
changeset
 | 
764  | 
finally show "norm (inverse (f x)) \<le> inverse (norm a - r)" .  | 
| 31355 | 765  | 
qed  | 
766  | 
thus ?thesis by (rule BfunI)  | 
|
767  | 
qed  | 
|
768  | 
||
| 31565 | 769  | 
lemma tendsto_inverse [tendsto_intros]:  | 
| 31355 | 770  | 
fixes a :: "'a::real_normed_div_algebra"  | 
| 44195 | 771  | 
assumes f: "(f ---> a) F"  | 
| 31355 | 772  | 
assumes a: "a \<noteq> 0"  | 
| 44195 | 773  | 
shows "((\<lambda>x. inverse (f x)) ---> inverse a) F"  | 
| 31355 | 774  | 
proof -  | 
775  | 
from a have "0 < norm a" by simp  | 
|
| 44195 | 776  | 
with f have "eventually (\<lambda>x. dist (f x) a < norm a) F"  | 
| 31355 | 777  | 
by (rule tendstoD)  | 
| 44195 | 778  | 
then have "eventually (\<lambda>x. f x \<noteq> 0) F"  | 
| 31355 | 779  | 
unfolding dist_norm by (auto elim!: eventually_elim1)  | 
| 44627 | 780  | 
with a have "eventually (\<lambda>x. inverse (f x) - inverse a =  | 
781  | 
- (inverse (f x) * (f x - a) * inverse a)) F"  | 
|
782  | 
by (auto elim!: eventually_elim1 simp: inverse_diff_inverse)  | 
|
783  | 
moreover have "Zfun (\<lambda>x. - (inverse (f x) * (f x - a) * inverse a)) F"  | 
|
784  | 
by (intro Zfun_minus Zfun_mult_left  | 
|
785  | 
bounded_bilinear.Bfun_prod_Zfun [OF bounded_bilinear_mult]  | 
|
786  | 
Bfun_inverse [OF f a] f [unfolded tendsto_Zfun_iff])  | 
|
787  | 
ultimately show ?thesis  | 
|
788  | 
unfolding tendsto_Zfun_iff by (rule Zfun_ssubst)  | 
|
| 31355 | 789  | 
qed  | 
790  | 
||
| 
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
 | 
791  | 
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
 | 
792  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_div_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
 | 
793  | 
assumes "continuous F f" and "f (Lim F (\<lambda>x. x)) \<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
 | 
794  | 
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
 | 
795  | 
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
 | 
796  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
797  | 
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
 | 
798  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_div_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
 | 
799  | 
assumes "continuous (at a within s) f" and "f 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
 | 
800  | 
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
 | 
801  | 
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
 | 
802  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
803  | 
lemma isCont_inverse[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
 | 
804  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_div_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
 | 
805  | 
assumes "isCont f a" and "f 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
 | 
806  | 
shows "isCont (\<lambda>x. inverse (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
 | 
807  | 
using assms unfolding continuous_at 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
 | 
808  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
809  | 
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
 | 
810  | 
fixes f :: "'a::topological_space \<Rightarrow> 'b::real_normed_div_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
 | 
811  | 
assumes "continuous_on s f" and "\<forall>x\<in>s. f x \<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
 | 
812  | 
shows "continuous_on 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
 | 
813  | 
using assms unfolding continuous_on_def by (fast intro: 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
 | 
814  | 
|
| 31565 | 815  | 
lemma tendsto_divide [tendsto_intros]:  | 
| 31355 | 816  | 
fixes a b :: "'a::real_normed_field"  | 
| 44195 | 817  | 
shows "\<lbrakk>(f ---> a) F; (g ---> b) F; b \<noteq> 0\<rbrakk>  | 
818  | 
\<Longrightarrow> ((\<lambda>x. f x / g x) ---> a / b) F"  | 
|
| 
44282
 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 
huffman 
parents: 
44253 
diff
changeset
 | 
819  | 
by (simp add: tendsto_mult tendsto_inverse divide_inverse)  | 
| 31355 | 820  | 
|
| 
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
 | 
821  | 
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
 | 
822  | 
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
 | 
823  | 
assumes "continuous F f" and "continuous F g" and "g (Lim F (\<lambda>x. x)) \<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
 | 
824  | 
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
 | 
825  | 
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
 | 
826  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to 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 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
 | 
828  | 
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
 | 
829  | 
assumes "continuous (at a within s) f" "continuous (at a within s) g" and "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
 | 
830  | 
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
 | 
831  | 
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
 | 
832  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to 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  | 
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
 | 
834  | 
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
 | 
835  | 
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
 | 
836  | 
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
 | 
837  | 
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
 | 
838  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
839  | 
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
 | 
840  | 
fixes f :: "'a::topological_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
 | 
841  | 
assumes "continuous_on s f" "continuous_on s g" and "\<forall>x\<in>s. g x \<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
 | 
842  | 
shows "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
 | 
843  | 
using assms unfolding continuous_on_def by (fast intro: 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
 | 
844  | 
|
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
845  | 
lemma tendsto_sgn [tendsto_intros]:  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
846  | 
fixes l :: "'a::real_normed_vector"  | 
| 44195 | 847  | 
shows "\<lbrakk>(f ---> l) F; l \<noteq> 0\<rbrakk> \<Longrightarrow> ((\<lambda>x. sgn (f x)) ---> sgn l) F"  | 
| 
44194
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
848  | 
unfolding sgn_div_norm by (simp add: tendsto_intros)  | 
| 
 
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
 
huffman 
parents: 
44081 
diff
changeset
 | 
849  | 
|
| 
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
 | 
850  | 
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
 | 
851  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
852  | 
assumes "continuous F f" and "f (Lim F (\<lambda>x. x)) \<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
 | 
853  | 
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
 | 
854  | 
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
 | 
855  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
856  | 
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
 | 
857  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
858  | 
assumes "continuous (at a within s) f" and "f 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
 | 
859  | 
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
 | 
860  | 
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
 | 
861  | 
|
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
862  | 
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
 | 
863  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
864  | 
assumes "isCont f a" and "f 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
 | 
865  | 
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
 | 
866  | 
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
 | 
867  | 
|
| 
56371
 
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
 
hoelzl 
parents: 
56366 
diff
changeset
 | 
868  | 
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
 | 
869  | 
fixes f :: "'a::topological_space \<Rightarrow> 'b::real_normed_vector"  | 
| 
 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 
hoelzl 
parents: 
51474 
diff
changeset
 | 
870  | 
assumes "continuous_on s f" and "\<forall>x\<in>s. f x \<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
 | 
871  | 
shows "continuous_on 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
 | 
872  | 
using assms unfolding continuous_on_def by (fast intro: 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
 | 
873  | 
|
| 50325 | 874  | 
lemma filterlim_at_infinity:  | 
875  | 
fixes f :: "_ \<Rightarrow> 'a\<Colon>real_normed_vector"  | 
|
876  | 
assumes "0 \<le> c"  | 
|
877  | 
shows "(LIM x F. f x :> at_infinity) \<longleftrightarrow> (\<forall>r>c. eventually (\<lambda>x. r \<le> norm (f x)) F)"  | 
|
878  | 
unfolding filterlim_iff eventually_at_infinity  | 
|
879  | 
proof safe  | 
|
880  | 
fix P :: "'a \<Rightarrow> bool" and b  | 
|
881  | 
assume *: "\<forall>r>c. eventually (\<lambda>x. r \<le> norm (f x)) F"  | 
|
882  | 
and P: "\<forall>x. b \<le> norm x \<longrightarrow> P x"  | 
|
883  | 
have "max b (c + 1) > c" by auto  | 
|
884  | 
with * have "eventually (\<lambda>x. max b (c + 1) \<le> norm (f x)) F"  | 
|
885  | 
by auto  | 
|
886  | 
then show "eventually (\<lambda>x. P (f x)) F"  | 
|
887  | 
proof eventually_elim  | 
|
888  | 
fix x assume "max b (c + 1) \<le> norm (f x)"  | 
|
889  | 
with P show "P (f x)" by auto  | 
|
890  | 
qed  | 
|
891  | 
qed force  | 
|
892  | 
||
| 60758 | 893  | 
subsection \<open>Relate @{const at}, @{const at_left} and @{const at_right}\<close>
 | 
| 50347 | 894  | 
|
| 60758 | 895  | 
text \<open>  | 
| 50347 | 896  | 
|
897  | 
This lemmas are useful for conversion between @{term "at x"} to @{term "at_left x"} and
 | 
|
898  | 
@{term "at_right x"} and also @{term "at_right 0"}.
 | 
|
899  | 
||
| 60758 | 900  | 
\<close>  | 
| 50347 | 901  | 
|
| 51471 | 902  | 
lemmas filterlim_split_at_real = filterlim_split_at[where 'a=real]  | 
| 50323 | 903  | 
|
| 
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
 | 
904  | 
lemma filtermap_nhds_shift: "filtermap (\<lambda>x. x - d) (nhds a) = nhds (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
 | 
905  | 
by (rule filtermap_fun_inverse[where g="\<lambda>x. x + d"])  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
906  | 
(auto intro!: tendsto_eq_intros filterlim_ident)  | 
| 50347 | 907  | 
|
| 
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
 | 
908  | 
lemma filtermap_nhds_minus: "filtermap (\<lambda>x. - x) (nhds a) = nhds (- 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
 | 
909  | 
by (rule filtermap_fun_inverse[where g=uminus])  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
910  | 
(auto intro!: tendsto_eq_intros filterlim_ident)  | 
| 
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
 | 
911  | 
|
| 
 
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
 | 
912  | 
lemma filtermap_at_shift: "filtermap (\<lambda>x. x - d) (at a) = at (a - d::'a::real_normed_vector)"  | 
| 
 
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
 | 
913  | 
by (simp add: filter_eq_iff eventually_filtermap eventually_at_filter filtermap_nhds_shift[symmetric])  | 
| 50347 | 914  | 
|
915  | 
lemma filtermap_at_right_shift: "filtermap (\<lambda>x. x - d) (at_right a) = at_right (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
 | 
916  | 
by (simp add: filter_eq_iff eventually_filtermap eventually_at_filter filtermap_nhds_shift[symmetric])  | 
| 50323 | 917  | 
|
| 50347 | 918  | 
lemma at_right_to_0: "at_right (a::real) = filtermap (\<lambda>x. x + a) (at_right 0)"  | 
919  | 
using filtermap_at_right_shift[of "-a" 0] by simp  | 
|
920  | 
||
921  | 
lemma filterlim_at_right_to_0:  | 
|
922  | 
"filterlim f F (at_right (a::real)) \<longleftrightarrow> filterlim (\<lambda>x. f (x + a)) F (at_right 0)"  | 
|
923  | 
unfolding filterlim_def filtermap_filtermap at_right_to_0[of a] ..  | 
|
924  | 
||
925  | 
lemma eventually_at_right_to_0:  | 
|
926  | 
"eventually P (at_right (a::real)) \<longleftrightarrow> eventually (\<lambda>x. P (x + a)) (at_right 0)"  | 
|
927  | 
unfolding at_right_to_0[of a] by (simp add: eventually_filtermap)  | 
|
928  | 
||
| 
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
 | 
929  | 
lemma filtermap_at_minus: "filtermap (\<lambda>x. - x) (at a) = at (- a::'a::real_normed_vector)"  | 
| 
 
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
 | 
930  | 
by (simp add: filter_eq_iff eventually_filtermap eventually_at_filter filtermap_nhds_minus[symmetric])  | 
| 50347 | 931  | 
|
932  | 
lemma at_left_minus: "at_left (a::real) = filtermap (\<lambda>x. - x) (at_right (- a))"  | 
|
| 
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
 | 
933  | 
by (simp add: filter_eq_iff eventually_filtermap eventually_at_filter filtermap_nhds_minus[symmetric])  | 
| 50323 | 934  | 
|
| 50347 | 935  | 
lemma at_right_minus: "at_right (a::real) = filtermap (\<lambda>x. - x) (at_left (- a))"  | 
| 
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
 | 
936  | 
by (simp add: filter_eq_iff eventually_filtermap eventually_at_filter filtermap_nhds_minus[symmetric])  | 
| 50347 | 937  | 
|
938  | 
lemma filterlim_at_left_to_right:  | 
|
939  | 
"filterlim f F (at_left (a::real)) \<longleftrightarrow> filterlim (\<lambda>x. f (- x)) F (at_right (-a))"  | 
|
940  | 
unfolding filterlim_def filtermap_filtermap at_left_minus[of a] ..  | 
|
941  | 
||
942  | 
lemma eventually_at_left_to_right:  | 
|
943  | 
"eventually P (at_left (a::real)) \<longleftrightarrow> eventually (\<lambda>x. P (- x)) (at_right (-a))"  | 
|
944  | 
unfolding at_left_minus[of a] by (simp add: eventually_filtermap)  | 
|
945  | 
||
| 
60721
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
946  | 
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
 | 
947  | 
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
 | 
948  | 
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
 | 
949  | 
|
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
950  | 
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
 | 
951  | 
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
 | 
952  | 
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
 | 
953  | 
|
| 
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
 | 
954  | 
lemma at_top_mirror: "at_top = filtermap uminus (at_bot :: real filter)"  | 
| 
60721
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
955  | 
by (rule filtermap_fun_inverse[symmetric, of uminus])  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
956  | 
(auto intro: filterlim_uminus_at_bot_at_top filterlim_uminus_at_top_at_bot)  | 
| 
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
 | 
957  | 
|
| 
 
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
 | 
958  | 
lemma at_bot_mirror: "at_bot = filtermap uminus (at_top :: real filter)"  | 
| 
 
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
 | 
959  | 
unfolding at_top_mirror filtermap_filtermap by (simp add: filtermap_ident)  | 
| 
 
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
 | 
960  | 
|
| 
 
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
 | 
961  | 
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
 | 
962  | 
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
 | 
963  | 
|
| 
 
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
 | 
964  | 
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
 | 
965  | 
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
 | 
966  | 
|
| 
 
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
 | 
967  | 
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
 | 
968  | 
using filterlim_compose[OF filterlim_uminus_at_bot_at_top, of f 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
 | 
969  | 
using filterlim_compose[OF filterlim_uminus_at_top_at_bot, of "\<lambda>x. - f x" 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
 | 
970  | 
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
 | 
971  | 
|
| 
 
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
 | 
972  | 
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
 | 
973  | 
unfolding filterlim_uminus_at_top by simp  | 
| 50323 | 974  | 
|
| 50347 | 975  | 
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
 | 
976  | 
unfolding filterlim_at_top_gt[where c=0] eventually_at_filter  | 
| 50347 | 977  | 
proof safe  | 
978  | 
fix Z :: real assume [arith]: "0 < Z"  | 
|
979  | 
then have "eventually (\<lambda>x. x < inverse Z) (nhds 0)"  | 
|
980  | 
by (auto simp add: 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
 | 
981  | 
  then show "eventually (\<lambda>x. x \<noteq> 0 \<longrightarrow> x \<in> {0<..} \<longrightarrow> Z \<le> inverse x) (nhds 0)"
 | 
| 50347 | 982  | 
by (auto elim!: eventually_elim1 simp: inverse_eq_divide field_simps)  | 
983  | 
qed  | 
|
984  | 
||
| 50325 | 985  | 
lemma tendsto_inverse_0:  | 
986  | 
fixes x :: "_ \<Rightarrow> 'a\<Colon>real_normed_div_algebra"  | 
|
987  | 
shows "(inverse ---> (0::'a)) at_infinity"  | 
|
988  | 
unfolding tendsto_Zfun_iff diff_0_right Zfun_def eventually_at_infinity  | 
|
989  | 
proof safe  | 
|
990  | 
fix r :: real assume "0 < r"  | 
|
991  | 
show "\<exists>b. \<forall>x. b \<le> norm x \<longrightarrow> norm (inverse x :: 'a) < r"  | 
|
992  | 
proof (intro exI[of _ "inverse (r / 2)"] allI impI)  | 
|
993  | 
fix x :: 'a  | 
|
| 60758 | 994  | 
from \<open>0 < r\<close> have "0 < inverse (r / 2)" by simp  | 
| 50325 | 995  | 
also assume *: "inverse (r / 2) \<le> norm x"  | 
996  | 
finally show "norm (inverse x) < r"  | 
|
| 60758 | 997  | 
using * \<open>0 < r\<close> by (subst nonzero_norm_inverse) (simp_all add: inverse_eq_divide field_simps)  | 
| 50325 | 998  | 
qed  | 
999  | 
qed  | 
|
1000  | 
||
| 
60721
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1001  | 
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
 | 
1002  | 
unfolding filterlim_at  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1003  | 
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
 | 
1004  | 
(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
 | 
1005  | 
|
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1006  | 
lemma filterlim_inverse_at_top:  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1007  | 
"(f ---> (0 :: real)) F \<Longrightarrow> eventually (\<lambda>x. 0 < f x) F \<Longrightarrow> LIM x F. inverse (f x) :> at_top"  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1008  | 
by (intro filterlim_compose[OF filterlim_inverse_at_top_right])  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1009  | 
(simp add: filterlim_def eventually_filtermap eventually_elim1 at_within_def le_principal)  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1010  | 
|
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1011  | 
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
 | 
1012  | 
"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
 | 
1013  | 
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
 | 
1014  | 
|
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1015  | 
lemma filterlim_inverse_at_bot:  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1016  | 
"(f ---> (0 :: real)) F \<Longrightarrow> eventually (\<lambda>x. f x < 0) F \<Longrightarrow> LIM x F. inverse (f x) :> at_bot"  | 
| 
 
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
 
hoelzl 
parents: 
60182 
diff
changeset
 | 
1017  | 
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
 | 
1018  | 
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
 | 
1019  | 
|
| 50347 | 1020  | 
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
 | 
1021  | 
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
 | 
1022  | 
(auto intro: filterlim_inverse_at_top_right filterlim_inverse_at_right_top)  | 
| 50347 | 1023  | 
|
1024  | 
lemma eventually_at_right_to_top:  | 
|
1025  | 
"eventually P (at_right (0::real)) \<longleftrightarrow> eventually (\<lambda>x. P (inverse x)) at_top"  | 
|
1026  | 
unfolding at_right_to_top eventually_filtermap ..  | 
|
1027  | 
||
1028  | 
lemma filterlim_at_right_to_top:  | 
|
1029  | 
"filterlim f F (at_right (0::real)) \<longleftrightarrow> (LIM x at_top. f (inverse x) :> F)"  | 
|
1030  | 
unfolding filterlim_def at_right_to_top filtermap_filtermap ..  | 
|
1031  | 
||
1032  | 
lemma at_top_to_right: "at_top = filtermap inverse (at_right (0::real))"  | 
|
1033  | 
unfolding at_right_to_top filtermap_filtermap inverse_inverse_eq filtermap_ident ..  | 
|
1034  | 
||
1035  | 
lemma eventually_at_top_to_right:  | 
|
1036  | 
"eventually P at_top \<longleftrightarrow> eventually (\<lambda>x. P (inverse x)) (at_right (0::real))"  | 
|
1037  | 
unfolding at_top_to_right eventually_filtermap ..  | 
|
1038  | 
||
1039  | 
lemma filterlim_at_top_to_right:  | 
|
1040  | 
"filterlim f F at_top \<longleftrightarrow> (LIM x (at_right (0::real)). f (inverse x) :> F)"  | 
|
1041  | 
unfolding filterlim_def at_top_to_right filtermap_filtermap ..  | 
|
1042  | 
||
| 50325 | 1043  | 
lemma filterlim_inverse_at_infinity:  | 
| 
59867
 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 
haftmann 
parents: 
59613 
diff
changeset
 | 
1044  | 
  fixes x :: "_ \<Rightarrow> 'a\<Colon>{real_normed_div_algebra, division_ring}"
 | 
| 50325 | 1045  | 
shows "filterlim inverse at_infinity (at (0::'a))"  | 
1046  | 
unfolding filterlim_at_infinity[OF order_refl]  | 
|
1047  | 
proof safe  | 
|
1048  | 
fix r :: real assume "0 < r"  | 
|
1049  | 
then show "eventually (\<lambda>x::'a. r \<le> norm (inverse x)) (at 0)"  | 
|
1050  | 
unfolding eventually_at norm_inverse  | 
|
1051  | 
by (intro exI[of _ "inverse r"])  | 
|
1052  | 
(auto simp: norm_conv_dist[symmetric] field_simps inverse_eq_divide)  | 
|
1053  | 
qed  | 
|
1054  | 
||
1055  | 
lemma filterlim_inverse_at_iff:  | 
|
| 
59867
 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 
haftmann 
parents: 
59613 
diff
changeset
 | 
1056  | 
  fixes g :: "'a \<Rightarrow> 'b\<Colon>{real_normed_div_algebra, division_ring}"
 | 
| 50325 | 1057  | 
shows "(LIM x F. inverse (g x) :> at 0) \<longleftrightarrow> (LIM x F. g x :> at_infinity)"  | 
1058  | 
unfolding filterlim_def filtermap_filtermap[symmetric]  | 
|
1059  | 
proof  | 
|
1060  | 
assume "filtermap g F \<le> at_infinity"  | 
|
1061  | 
then have "filtermap inverse (filtermap g F) \<le> filtermap inverse at_infinity"  | 
|
1062  | 
by (rule filtermap_mono)  | 
|
1063  | 
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
 | 
1064  | 
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
 | 
1065  | 
by (auto intro!: exI[of _ 1]  | 
| 
 
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
 | 
1066  | 
simp: le_principal eventually_filtermap filterlim_def at_within_def eventually_at_infinity)  | 
| 50325 | 1067  | 
finally show "filtermap inverse (filtermap g F) \<le> at 0" .  | 
1068  | 
next  | 
|
1069  | 
assume "filtermap inverse (filtermap g F) \<le> at 0"  | 
|
1070  | 
then have "filtermap inverse (filtermap inverse (filtermap g F)) \<le> filtermap inverse (at 0)"  | 
|
1071  | 
by (rule filtermap_mono)  | 
|
1072  | 
with filterlim_inverse_at_infinity show "filtermap g F \<le> at_infinity"  | 
|
1073  | 
by (auto intro: order_trans simp: filterlim_def filtermap_filtermap)  | 
|
1074  | 
qed  | 
|
1075  | 
||
| 
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
 | 
1076  | 
lemma tendsto_inverse_0_at_top: "LIM x F. f x :> at_top \<Longrightarrow> ((\<lambda>x. inverse (f x) :: real) ---> 0) F"  | 
| 
 
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
 | 
1077  | 
by (metis filterlim_at filterlim_mono[OF _ at_top_le_at_infinity order_refl] filterlim_inverse_at_iff)  | 
| 50419 | 1078  | 
|
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1079  | 
|
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1080  | 
lemma at_to_infinity:  | 
| 
59867
 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 
haftmann 
parents: 
59613 
diff
changeset
 | 
1081  | 
  fixes x :: "'a \<Colon> {real_normed_field,field}"
 | 
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1082  | 
shows "(at (0::'a)) = 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
 | 
1083  | 
proof (rule antisym)  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1084  | 
have "(inverse ---> (0::'a)) at_infinity"  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1085  | 
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
 | 
1086  | 
then show "filtermap inverse at_infinity \<le> at (0::'a)"  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1087  | 
apply (simp add: le_principal eventually_filtermap eventually_at_infinity filterlim_def at_within_def)  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1088  | 
apply (rule_tac x="1" in exI, auto)  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1089  | 
done  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1090  | 
next  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1091  | 
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
 | 
1092  | 
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
 | 
1093  | 
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
 | 
1094  | 
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
 | 
1095  | 
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
 | 
1096  | 
qed  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1097  | 
|
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1098  | 
lemma lim_at_infinity_0:  | 
| 
59867
 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 
haftmann 
parents: 
59613 
diff
changeset
 | 
1099  | 
  fixes l :: "'a :: {real_normed_field,field}"
 | 
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1100  | 
shows "(f ---> l) at_infinity \<longleftrightarrow> ((f o inverse) ---> l) (at (0::'a))"  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1101  | 
by (simp add: tendsto_compose_filtermap at_to_infinity filtermap_filtermap)  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1102  | 
|
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1103  | 
lemma lim_zero_infinity:  | 
| 
59867
 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 
haftmann 
parents: 
59613 
diff
changeset
 | 
1104  | 
  fixes l :: "'a :: {real_normed_field,field}"
 | 
| 
59613
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1105  | 
shows "((\<lambda>x. f(1 / x)) ---> l) (at (0::'a)) \<Longrightarrow> (f ---> l) at_infinity"  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1106  | 
by (simp add: inverse_eq_divide lim_at_infinity_0 comp_def)  | 
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1107  | 
|
| 
 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 
paulson <lp15@cam.ac.uk> 
parents: 
58889 
diff
changeset
 | 
1108  | 
|
| 60758 | 1109  | 
text \<open>  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1110  | 
|
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1111  | 
We only show rules for multiplication and addition when the functions are either against a real  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1112  | 
value or against infinity. Further rules are easy to derive by using @{thm filterlim_uminus_at_top}.
 | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1113  | 
|
| 60758 | 1114  | 
\<close>  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1115  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1116  | 
lemma filterlim_tendsto_pos_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
 | 
1117  | 
assumes f: "(f ---> c) F" and c: "0 < c"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1118  | 
assumes g: "LIM x F. g x :> at_top"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1119  | 
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
 | 
1120  | 
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
 | 
1121  | 
proof safe  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1122  | 
fix Z :: real assume "0 < Z"  | 
| 60758 | 1123  | 
from f \<open>0 < c\<close> have "eventually (\<lambda>x. c / 2 < 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
 | 
1124  | 
by (auto dest!: tendstoD[where e="c / 2"] elim!: eventually_elim1  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1125  | 
simp: dist_real_def abs_real_def split: split_if_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
 | 
1126  | 
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
 | 
1127  | 
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
 | 
1128  | 
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
 | 
1129  | 
proof eventually_elim  | 
| 
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
 | 
1130  | 
fix x assume "c / 2 < f x" "Z / c * 2 \<le> g x"  | 
| 60758 | 1131  | 
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
 | 
1132  | 
by (intro mult_mono) (auto simp: zero_le_divide_iff)  | 
| 60758 | 1133  | 
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
 | 
1134  | 
by simp  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1135  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1136  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1137  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1138  | 
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
 | 
1139  | 
assumes f: "LIM x F. f x :> at_top"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1140  | 
assumes g: "LIM x F. g x :> at_top"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1141  | 
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
 | 
1142  | 
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
 | 
1143  | 
proof safe  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1144  | 
fix Z :: real 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
 | 
1145  | 
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
 | 
1146  | 
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
 | 
1147  | 
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
 | 
1148  | 
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
 | 
1149  | 
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
 | 
1150  | 
proof eventually_elim  | 
| 
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
 | 
1151  | 
fix x assume "1 \<le> f x" "Z \<le> g x"  | 
| 60758 | 1152  | 
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
 | 
1153  | 
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
 | 
1154  | 
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
 | 
1155  | 
by simp  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1156  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1157  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1158  | 
|
| 50419 | 1159  | 
lemma filterlim_tendsto_pos_mult_at_bot:  | 
1160  | 
assumes "(f ---> c) F" "0 < (c::real)" "filterlim g at_bot F"  | 
|
1161  | 
shows "LIM x F. f x * g x :> at_bot"  | 
|
1162  | 
using filterlim_tendsto_pos_mult_at_top[OF assms(1,2), of "\<lambda>x. - g x"] assms(3)  | 
|
1163  | 
unfolding filterlim_uminus_at_bot by simp  | 
|
1164  | 
||
| 
60182
 
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
 
hoelzl 
parents: 
60141 
diff
changeset
 | 
1165  | 
lemma filterlim_tendsto_neg_mult_at_bot:  | 
| 
 
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
 
hoelzl 
parents: 
60141 
diff
changeset
 | 
1166  | 
assumes c: "(f ---> c) F" "(c::real) < 0" and g: "filterlim g at_top F"  | 
| 
 
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
 
hoelzl 
parents: 
60141 
diff
changeset
 | 
1167  | 
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
 | 
1168  | 
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
 | 
1169  | 
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
 | 
1170  | 
|
| 56330 | 1171  | 
lemma filterlim_pow_at_top:  | 
1172  | 
fixes f :: "real \<Rightarrow> real"  | 
|
1173  | 
assumes "0 < n" and f: "LIM x F. f x :> at_top"  | 
|
1174  | 
shows "LIM x F. (f x)^n :: real :> at_top"  | 
|
| 60758 | 1175  | 
using \<open>0 < n\<close> proof (induct n)  | 
| 56330 | 1176  | 
case (Suc n) with f show ?case  | 
1177  | 
by (cases "n = 0") (auto intro!: filterlim_at_top_mult_at_top)  | 
|
1178  | 
qed simp  | 
|
1179  | 
||
1180  | 
lemma filterlim_pow_at_bot_even:  | 
|
1181  | 
fixes f :: "real \<Rightarrow> real"  | 
|
1182  | 
shows "0 < n \<Longrightarrow> LIM x F. f x :> at_bot \<Longrightarrow> even n \<Longrightarrow> LIM x F. (f x)^n :> at_top"  | 
|
1183  | 
using filterlim_pow_at_top[of n "\<lambda>x. - f x" F] by (simp add: filterlim_uminus_at_top)  | 
|
1184  | 
||
1185  | 
lemma filterlim_pow_at_bot_odd:  | 
|
1186  | 
fixes f :: "real \<Rightarrow> real"  | 
|
1187  | 
shows "0 < n \<Longrightarrow> LIM x F. f x :> at_bot \<Longrightarrow> odd n \<Longrightarrow> LIM x F. (f x)^n :> at_bot"  | 
|
1188  | 
using filterlim_pow_at_top[of n "\<lambda>x. - f x" F] by (simp add: filterlim_uminus_at_bot)  | 
|
1189  | 
||
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1190  | 
lemma filterlim_tendsto_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
 | 
1191  | 
assumes f: "(f ---> c) F"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1192  | 
assumes g: "LIM x F. g x :> at_top"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1193  | 
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
 | 
1194  | 
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
 | 
1195  | 
proof safe  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1196  | 
fix Z :: real assume "0 < Z"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1197  | 
from f have "eventually (\<lambda>x. c - 1 < f x) F"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1198  | 
by (auto dest!: tendstoD[where e=1] elim!: eventually_elim1 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
 | 
1199  | 
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
 | 
1200  | 
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
 | 
1201  | 
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
 | 
1202  | 
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
 | 
1203  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1204  | 
|
| 50347 | 1205  | 
lemma LIM_at_top_divide:  | 
1206  | 
fixes f g :: "'a \<Rightarrow> real"  | 
|
1207  | 
assumes f: "(f ---> a) F" "0 < a"  | 
|
1208  | 
assumes g: "(g ---> 0) F" "eventually (\<lambda>x. 0 < g x) F"  | 
|
1209  | 
shows "LIM x F. f x / g x :> at_top"  | 
|
1210  | 
unfolding divide_inverse  | 
|
1211  | 
by (rule filterlim_tendsto_pos_mult_at_top[OF f]) (rule filterlim_inverse_at_top[OF g])  | 
|
1212  | 
||
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1213  | 
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
 | 
1214  | 
assumes f: "LIM x F. f x :> at_top"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1215  | 
assumes g: "LIM x F. g x :> at_top"  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1216  | 
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
 | 
1217  | 
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
 | 
1218  | 
proof safe  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1219  | 
fix Z :: real 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
 | 
1220  | 
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
 | 
1221  | 
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
 | 
1222  | 
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
 | 
1223  | 
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
 | 
1224  | 
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
 | 
1225  | 
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
 | 
1226  | 
qed  | 
| 
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
1227  | 
|
| 50331 | 1228  | 
lemma tendsto_divide_0:  | 
| 
59867
 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 
haftmann 
parents: 
59613 
diff
changeset
 | 
1229  | 
  fixes f :: "_ \<Rightarrow> 'a\<Colon>{real_normed_div_algebra, division_ring}"
 | 
| 50331 | 1230  | 
assumes f: "(f ---> c) F"  | 
1231  | 
assumes g: "LIM x F. g x :> at_infinity"  | 
|
1232  | 
shows "((\<lambda>x. f x / g x) ---> 0) F"  | 
|
1233  | 
using tendsto_mult[OF f filterlim_compose[OF tendsto_inverse_0 g]] by (simp add: divide_inverse)  | 
|
1234  | 
||
1235  | 
lemma linear_plus_1_le_power:  | 
|
1236  | 
fixes x :: real  | 
|
1237  | 
assumes x: "0 \<le> x"  | 
|
1238  | 
shows "real n * x + 1 \<le> (x + 1) ^ n"  | 
|
1239  | 
proof (induct n)  | 
|
1240  | 
case (Suc n)  | 
|
1241  | 
have "real (Suc n) * x + 1 \<le> (x + 1) * (real n * x + 1)"  | 
|
| 56536 | 1242  | 
by (simp add: field_simps real_of_nat_Suc x)  | 
| 50331 | 1243  | 
also have "\<dots> \<le> (x + 1)^Suc n"  | 
1244  | 
using Suc x by (simp add: mult_left_mono)  | 
|
1245  | 
finally show ?case .  | 
|
1246  | 
qed simp  | 
|
1247  | 
||
1248  | 
lemma filterlim_realpow_sequentially_gt1:  | 
|
1249  | 
fixes x :: "'a :: real_normed_div_algebra"  | 
|
1250  | 
assumes x[arith]: "1 < norm x"  | 
|
1251  | 
shows "LIM n sequentially. x ^ n :> at_infinity"  | 
|
1252  | 
proof (intro filterlim_at_infinity[THEN iffD2] allI impI)  | 
|
1253  | 
fix y :: real assume "0 < y"  | 
|
1254  | 
have "0 < norm x - 1" by simp  | 
|
1255  | 
then obtain N::nat where "y < real N * (norm x - 1)" by (blast dest: reals_Archimedean3)  | 
|
1256  | 
also have "\<dots> \<le> real N * (norm x - 1) + 1" by simp  | 
|
1257  | 
also have "\<dots> \<le> (norm x - 1 + 1) ^ N" by (rule linear_plus_1_le_power) simp  | 
|
1258  | 
also have "\<dots> = norm x ^ N" by simp  | 
|
1259  | 
finally have "\<forall>n\<ge>N. y \<le> norm x ^ n"  | 
|
1260  | 
by (metis order_less_le_trans power_increasing order_less_imp_le x)  | 
|
1261  | 
then show "eventually (\<lambda>n. y \<le> norm (x ^ n)) sequentially"  | 
|
1262  | 
unfolding eventually_sequentially  | 
|
1263  | 
by (auto simp: norm_power)  | 
|
1264  | 
qed simp  | 
|
1265  | 
||
| 51471 | 1266  | 
|
| 60758 | 1267  | 
subsection \<open>Limits of Sequences\<close>  | 
| 51526 | 1268  | 
|
1269  | 
lemma [trans]: "X=Y ==> Y ----> z ==> X ----> z"  | 
|
1270  | 
by simp  | 
|
1271  | 
||
1272  | 
lemma LIMSEQ_iff:  | 
|
1273  | 
fixes L :: "'a::real_normed_vector"  | 
|
1274  | 
shows "(X ----> 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
 | 
1275  | 
unfolding lim_sequentially dist_norm ..  | 
| 51526 | 1276  | 
|
1277  | 
lemma LIMSEQ_I:  | 
|
1278  | 
fixes L :: "'a::real_normed_vector"  | 
|
1279  | 
shows "(\<And>r. 0 < r \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n - L) < r) \<Longrightarrow> X ----> L"  | 
|
1280  | 
by (simp add: LIMSEQ_iff)  | 
|
1281  | 
||
1282  | 
lemma LIMSEQ_D:  | 
|
1283  | 
fixes L :: "'a::real_normed_vector"  | 
|
1284  | 
shows "\<lbrakk>X ----> L; 0 < r\<rbrakk> \<Longrightarrow> \<exists>no. \<forall>n\<ge>no. norm (X n - L) < r"  | 
|
1285  | 
by (simp add: LIMSEQ_iff)  | 
|
1286  | 
||
1287  | 
lemma LIMSEQ_linear: "\<lbrakk> X ----> x ; l > 0 \<rbrakk> \<Longrightarrow> (\<lambda> n. X (n * l)) ----> x"  | 
|
1288  | 
unfolding tendsto_def eventually_sequentially  | 
|
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57447 
diff
changeset
 | 
1289  | 
by (metis div_le_dividend div_mult_self1_is_m le_trans mult.commute)  | 
| 51526 | 1290  | 
|
1291  | 
lemma Bseq_inverse_lemma:  | 
|
1292  | 
fixes x :: "'a::real_normed_div_algebra"  | 
|
1293  | 
shows "\<lbrakk>r \<le> norm x; 0 < r\<rbrakk> \<Longrightarrow> norm (inverse x) \<le> inverse r"  | 
|
1294  | 
apply (subst nonzero_norm_inverse, clarsimp)  | 
|
1295  | 
apply (erule (1) le_imp_inverse_le)  | 
|
1296  | 
done  | 
|
1297  | 
||
1298  | 
lemma Bseq_inverse:  | 
|
1299  | 
fixes a :: "'a::real_normed_div_algebra"  | 
|
1300  | 
shows "\<lbrakk>X ----> a; a \<noteq> 0\<rbrakk> \<Longrightarrow> Bseq (\<lambda>n. inverse (X n))"  | 
|
1301  | 
by (rule Bfun_inverse)  | 
|
1302  | 
||
| 60758 | 1303  | 
text\<open>Transformation of limit.\<close>  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1304  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1305  | 
lemma eventually_at2:  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1306  | 
"eventually P (at a) \<longleftrightarrow> (\<exists>d>0. \<forall>x. 0 < dist x a \<and> dist x a < d \<longrightarrow> P x)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1307  | 
unfolding eventually_at dist_nz by auto  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1308  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1309  | 
lemma Lim_transform:  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1310  | 
fixes a b :: "'a::real_normed_vector"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1311  | 
shows "\<lbrakk>(g ---> a) F; ((\<lambda>x. f x - g x) ---> 0) F\<rbrakk> \<Longrightarrow> (f ---> a) F"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1312  | 
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
 | 
1313  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1314  | 
lemma Lim_transform2:  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1315  | 
fixes a b :: "'a::real_normed_vector"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1316  | 
shows "\<lbrakk>(f ---> a) F; ((\<lambda>x. f x - g x) ---> 0) F\<rbrakk> \<Longrightarrow> (g ---> a) F"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1317  | 
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
 | 
1318  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1319  | 
lemma Lim_transform_eventually:  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1320  | 
"eventually (\<lambda>x. f x = g x) net \<Longrightarrow> (f ---> l) net \<Longrightarrow> (g ---> l) net"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1321  | 
apply (rule topological_tendstoI)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1322  | 
apply (drule (2) topological_tendstoD)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1323  | 
apply (erule (1) eventually_elim2, simp)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1324  | 
done  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1325  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1326  | 
lemma Lim_transform_within:  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1327  | 
assumes "0 < d"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1328  | 
and "\<forall>x'\<in>S. 0 < dist x' x \<and> dist x' x < d \<longrightarrow> f x' = g x'"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1329  | 
and "(f ---> l) (at x within S)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1330  | 
shows "(g ---> l) (at x within S)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1331  | 
proof (rule Lim_transform_eventually)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1332  | 
show "eventually (\<lambda>x. f x = g x) (at x within S)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1333  | 
using assms(1,2) by (auto simp: dist_nz eventually_at)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1334  | 
show "(f ---> l) (at x within S)" by fact  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1335  | 
qed  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1336  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1337  | 
lemma Lim_transform_at:  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1338  | 
assumes "0 < d"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1339  | 
and "\<forall>x'. 0 < dist x' x \<and> dist x' x < d \<longrightarrow> f x' = g x'"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1340  | 
and "(f ---> l) (at x)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1341  | 
shows "(g ---> l) (at x)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1342  | 
using _ assms(3)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1343  | 
proof (rule Lim_transform_eventually)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1344  | 
show "eventually (\<lambda>x. f x = g x) (at x)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1345  | 
unfolding eventually_at2  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1346  | 
using assms(1,2) by auto  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1347  | 
qed  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1348  | 
|
| 60758 | 1349  | 
text\<open>Common case assuming being away from some crucial point like 0.\<close>  | 
| 51526 | 1350  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1351  | 
lemma Lim_transform_away_within:  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1352  | 
fixes a b :: "'a::t1_space"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1353  | 
assumes "a \<noteq> b"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1354  | 
and "\<forall>x\<in>S. x \<noteq> a \<and> x \<noteq> b \<longrightarrow> f x = g x"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1355  | 
and "(f ---> l) (at a within S)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1356  | 
shows "(g ---> l) (at a within S)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1357  | 
proof (rule Lim_transform_eventually)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1358  | 
show "(f ---> l) (at a within S)" by fact  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1359  | 
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
 | 
1360  | 
unfolding eventually_at_topological  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1361  | 
    by (rule exI [where x="- {b}"], simp add: open_Compl assms)
 | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1362  | 
qed  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1363  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1364  | 
lemma Lim_transform_away_at:  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1365  | 
fixes a b :: "'a::t1_space"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1366  | 
assumes ab: "a\<noteq>b"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1367  | 
and fg: "\<forall>x. x \<noteq> a \<and> x \<noteq> b \<longrightarrow> f x = g x"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1368  | 
and fl: "(f ---> l) (at a)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1369  | 
shows "(g ---> l) (at a)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1370  | 
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
 | 
1371  | 
|
| 60758 | 1372  | 
text\<open>Alternatively, within an open set.\<close>  | 
| 51526 | 1373  | 
|
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1374  | 
lemma Lim_transform_within_open:  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1375  | 
assumes "open S" and "a \<in> S"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1376  | 
and "\<forall>x\<in>S. x \<noteq> a \<longrightarrow> f x = g x"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1377  | 
and "(f ---> l) (at a)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1378  | 
shows "(g ---> l) (at a)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1379  | 
proof (rule Lim_transform_eventually)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1380  | 
show "eventually (\<lambda>x. f x = g x) (at a)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1381  | 
unfolding eventually_at_topological  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1382  | 
using assms(1,2,3) by auto  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1383  | 
show "(f ---> l) (at a)" by fact  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1384  | 
qed  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1385  | 
|
| 60758 | 1386  | 
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
 | 
1387  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1388  | 
(* FIXME: Only one congruence rule for tendsto can be used at a time! *)  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1389  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1390  | 
lemma Lim_cong_within(*[cong add]*):  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1391  | 
assumes "a = b"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1392  | 
and "x = y"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1393  | 
and "S = T"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1394  | 
and "\<And>x. x \<noteq> b \<Longrightarrow> x \<in> T \<Longrightarrow> f x = g x"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1395  | 
shows "(f ---> x) (at a within S) \<longleftrightarrow> (g ---> y) (at b within T)"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1396  | 
unfolding tendsto_def eventually_at_topological  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1397  | 
using assms by simp  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1398  | 
|
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1399  | 
lemma Lim_cong_at(*[cong add]*):  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1400  | 
assumes "a = b" "x = y"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1401  | 
and "\<And>x. x \<noteq> a \<Longrightarrow> f x = g x"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1402  | 
shows "((\<lambda>x. f x) ---> x) (at a) \<longleftrightarrow> ((g ---> y) (at a))"  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1403  | 
unfolding tendsto_def eventually_at_topological  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1404  | 
using assms by simp  | 
| 60758 | 1405  | 
text\<open>An unbounded sequence's inverse tends to 0\<close>  | 
| 51526 | 1406  | 
|
1407  | 
lemma LIMSEQ_inverse_zero:  | 
|
1408  | 
"\<forall>r::real. \<exists>N. \<forall>n\<ge>N. r < X n \<Longrightarrow> (\<lambda>n. inverse (X n)) ----> 0"  | 
|
1409  | 
apply (rule filterlim_compose[OF tendsto_inverse_0])  | 
|
1410  | 
apply (simp add: filterlim_at_infinity[OF order_refl] eventually_sequentially)  | 
|
1411  | 
apply (metis abs_le_D1 linorder_le_cases linorder_not_le)  | 
|
1412  | 
done  | 
|
1413  | 
||
| 60758 | 1414  | 
text\<open>The sequence @{term "1/n"} tends to 0 as @{term n} tends to infinity\<close>
 | 
| 51526 | 1415  | 
|
1416  | 
lemma LIMSEQ_inverse_real_of_nat: "(%n. inverse(real(Suc n))) ----> 0"  | 
|
1417  | 
by (metis filterlim_compose tendsto_inverse_0 filterlim_mono order_refl filterlim_Suc  | 
|
1418  | 
filterlim_compose[OF filterlim_real_sequentially] at_top_le_at_infinity)  | 
|
1419  | 
||
| 60758 | 1420  | 
text\<open>The sequence @{term "r + 1/n"} tends to @{term r} as @{term n} tends to
 | 
1421  | 
infinity is now easily proved\<close>  | 
|
| 51526 | 1422  | 
|
1423  | 
lemma LIMSEQ_inverse_real_of_nat_add:  | 
|
1424  | 
"(%n. r + inverse(real(Suc n))) ----> r"  | 
|
1425  | 
using tendsto_add [OF tendsto_const LIMSEQ_inverse_real_of_nat] by auto  | 
|
1426  | 
||
1427  | 
lemma LIMSEQ_inverse_real_of_nat_add_minus:  | 
|
1428  | 
"(%n. r + -inverse(real(Suc n))) ----> r"  | 
|
1429  | 
using tendsto_add [OF tendsto_const tendsto_minus [OF LIMSEQ_inverse_real_of_nat]]  | 
|
1430  | 
by auto  | 
|
1431  | 
||
1432  | 
lemma LIMSEQ_inverse_real_of_nat_add_minus_mult:  | 
|
1433  | 
"(%n. r*( 1 + -inverse(real(Suc n)))) ----> r"  | 
|
1434  | 
using tendsto_mult [OF tendsto_const LIMSEQ_inverse_real_of_nat_add_minus [of 1]]  | 
|
1435  | 
by auto  | 
|
1436  | 
||
| 60758 | 1437  | 
subsection \<open>Convergence on sequences\<close>  | 
| 51526 | 1438  | 
|
1439  | 
lemma convergent_add:  | 
|
1440  | 
fixes X Y :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
|
1441  | 
assumes "convergent (\<lambda>n. X n)"  | 
|
1442  | 
assumes "convergent (\<lambda>n. Y n)"  | 
|
1443  | 
shows "convergent (\<lambda>n. X n + Y n)"  | 
|
1444  | 
using assms unfolding convergent_def by (fast intro: tendsto_add)  | 
|
1445  | 
||
1446  | 
lemma convergent_setsum:  | 
|
1447  | 
fixes X :: "'a \<Rightarrow> nat \<Rightarrow> 'b::real_normed_vector"  | 
|
1448  | 
assumes "\<And>i. i \<in> A \<Longrightarrow> convergent (\<lambda>n. X i n)"  | 
|
1449  | 
shows "convergent (\<lambda>n. \<Sum>i\<in>A. X i n)"  | 
|
1450  | 
proof (cases "finite A")  | 
|
1451  | 
case True from this and assms show ?thesis  | 
|
1452  | 
by (induct A set: finite) (simp_all add: convergent_const convergent_add)  | 
|
1453  | 
qed (simp add: convergent_const)  | 
|
1454  | 
||
1455  | 
lemma (in bounded_linear) convergent:  | 
|
1456  | 
assumes "convergent (\<lambda>n. X n)"  | 
|
1457  | 
shows "convergent (\<lambda>n. f (X n))"  | 
|
1458  | 
using assms unfolding convergent_def by (fast intro: tendsto)  | 
|
1459  | 
||
1460  | 
lemma (in bounded_bilinear) convergent:  | 
|
1461  | 
assumes "convergent (\<lambda>n. X n)" and "convergent (\<lambda>n. Y n)"  | 
|
1462  | 
shows "convergent (\<lambda>n. X n ** Y n)"  | 
|
1463  | 
using assms unfolding convergent_def by (fast intro: tendsto)  | 
|
1464  | 
||
1465  | 
lemma convergent_minus_iff:  | 
|
1466  | 
fixes X :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
|
1467  | 
shows "convergent X \<longleftrightarrow> convergent (\<lambda>n. - X n)"  | 
|
1468  | 
apply (simp add: convergent_def)  | 
|
1469  | 
apply (auto dest: tendsto_minus)  | 
|
1470  | 
apply (drule tendsto_minus, auto)  | 
|
1471  | 
done  | 
|
1472  | 
||
1473  | 
||
| 60758 | 1474  | 
text \<open>A monotone sequence converges to its least upper bound.\<close>  | 
| 51526 | 1475  | 
|
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1476  | 
lemma LIMSEQ_incseq_SUP:  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1477  | 
  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
 | 
1478  | 
assumes u: "bdd_above (range X)"  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1479  | 
assumes X: "incseq X"  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1480  | 
shows "X ----> (SUP i. X i)"  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1481  | 
by (rule order_tendstoI)  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1482  | 
(auto simp: eventually_sequentially u less_cSUP_iff intro: X[THEN incseqD] less_le_trans cSUP_lessD[OF u])  | 
| 51526 | 1483  | 
|
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1484  | 
lemma LIMSEQ_decseq_INF:  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1485  | 
  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
 | 
1486  | 
assumes u: "bdd_below (range X)"  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1487  | 
assumes X: "decseq X"  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1488  | 
shows "X ----> (INF i. X i)"  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1489  | 
by (rule order_tendstoI)  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1490  | 
(auto simp: eventually_sequentially u cINF_less_iff intro: X[THEN decseqD] le_less_trans less_cINF_D[OF u])  | 
| 51526 | 1491  | 
|
| 60758 | 1492  | 
text\<open>Main monotonicity theorem\<close>  | 
| 51526 | 1493  | 
|
1494  | 
lemma Bseq_monoseq_convergent: "Bseq X \<Longrightarrow> monoseq X \<Longrightarrow> convergent (X::nat\<Rightarrow>real)"  | 
|
| 
54263
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1495  | 
by (auto simp: monoseq_iff convergent_def intro: LIMSEQ_decseq_INF LIMSEQ_incseq_SUP dest: Bseq_bdd_above Bseq_bdd_below)  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1496  | 
|
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1497  | 
lemma Bseq_mono_convergent: "Bseq X \<Longrightarrow> (\<forall>m n. m \<le> n \<longrightarrow> X m \<le> X n) \<Longrightarrow> convergent (X::nat\<Rightarrow>real)"  | 
| 
 
c4159fe6fa46
move Lubs from HOL to HOL-Library (replaced by conditionally complete lattices)
 
hoelzl 
parents: 
54230 
diff
changeset
 | 
1498  | 
by (auto intro!: Bseq_monoseq_convergent incseq_imp_monoseq simp: incseq_def)  | 
| 51526 | 1499  | 
|
1500  | 
lemma Cauchy_iff:  | 
|
1501  | 
fixes X :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
|
1502  | 
shows "Cauchy X \<longleftrightarrow> (\<forall>e>0. \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e)"  | 
|
1503  | 
unfolding Cauchy_def dist_norm ..  | 
|
1504  | 
||
1505  | 
lemma CauchyI:  | 
|
1506  | 
fixes X :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
|
1507  | 
shows "(\<And>e. 0 < e \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e) \<Longrightarrow> Cauchy X"  | 
|
1508  | 
by (simp add: Cauchy_iff)  | 
|
1509  | 
||
1510  | 
lemma CauchyD:  | 
|
1511  | 
fixes X :: "nat \<Rightarrow> 'a::real_normed_vector"  | 
|
1512  | 
shows "\<lbrakk>Cauchy X; 0 < e\<rbrakk> \<Longrightarrow> \<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. norm (X m - X n) < e"  | 
|
1513  | 
by (simp add: Cauchy_iff)  | 
|
1514  | 
||
1515  | 
lemma incseq_convergent:  | 
|
1516  | 
fixes X :: "nat \<Rightarrow> real"  | 
|
1517  | 
assumes "incseq X" and "\<forall>i. X i \<le> B"  | 
|
1518  | 
obtains L where "X ----> L" "\<forall>i. X i \<le> L"  | 
|
1519  | 
proof atomize_elim  | 
|
| 60758 | 1520  | 
from incseq_bounded[OF assms] \<open>incseq X\<close> Bseq_monoseq_convergent[of X]  | 
| 51526 | 1521  | 
obtain L where "X ----> L"  | 
1522  | 
by (auto simp: convergent_def monoseq_def incseq_def)  | 
|
| 60758 | 1523  | 
with \<open>incseq X\<close> show "\<exists>L. X ----> L \<and> (\<forall>i. X i \<le> L)"  | 
| 51526 | 1524  | 
by (auto intro!: exI[of _ L] incseq_le)  | 
1525  | 
qed  | 
|
1526  | 
||
1527  | 
lemma decseq_convergent:  | 
|
1528  | 
fixes X :: "nat \<Rightarrow> real"  | 
|
1529  | 
assumes "decseq X" and "\<forall>i. B \<le> X i"  | 
|
1530  | 
obtains L where "X ----> L" "\<forall>i. L \<le> X i"  | 
|
1531  | 
proof atomize_elim  | 
|
| 60758 | 1532  | 
from decseq_bounded[OF assms] \<open>decseq X\<close> Bseq_monoseq_convergent[of X]  | 
| 51526 | 1533  | 
obtain L where "X ----> L"  | 
1534  | 
by (auto simp: convergent_def monoseq_def decseq_def)  | 
|
| 60758 | 1535  | 
with \<open>decseq X\<close> show "\<exists>L. X ----> L \<and> (\<forall>i. L \<le> X i)"  | 
| 51526 | 1536  | 
by (auto intro!: exI[of _ L] decseq_le)  | 
1537  | 
qed  | 
|
1538  | 
||
| 60758 | 1539  | 
subsubsection \<open>Cauchy Sequences are Bounded\<close>  | 
| 51526 | 1540  | 
|
| 60758 | 1541  | 
text\<open>A Cauchy sequence is bounded -- this is the standard  | 
1542  | 
proof mechanization rather than the nonstandard proof\<close>  | 
|
| 51526 | 1543  | 
|
1544  | 
lemma lemmaCauchy: "\<forall>n \<ge> M. norm (X M - X n) < (1::real)  | 
|
1545  | 
==> \<forall>n \<ge> M. norm (X n :: 'a::real_normed_vector) < 1 + norm (X M)"  | 
|
1546  | 
apply (clarify, drule spec, drule (1) mp)  | 
|
1547  | 
apply (simp only: norm_minus_commute)  | 
|
1548  | 
apply (drule order_le_less_trans [OF norm_triangle_ineq2])  | 
|
1549  | 
apply simp  | 
|
1550  | 
done  | 
|
1551  | 
||
| 60758 | 1552  | 
subsection \<open>Power Sequences\<close>  | 
| 51526 | 1553  | 
|
| 60758 | 1554  | 
text\<open>The sequence @{term "x^n"} tends to 0 if @{term "0\<le>x"} and @{term
 | 
| 51526 | 1555  | 
"x<1"}. Proof will use (NS) Cauchy equivalence for convergence and  | 
| 60758 | 1556  | 
also fact that bounded and monotonic sequence converges.\<close>  | 
| 51526 | 1557  | 
|
1558  | 
lemma Bseq_realpow: "[| 0 \<le> (x::real); x \<le> 1 |] ==> Bseq (%n. x ^ n)"  | 
|
1559  | 
apply (simp add: Bseq_def)  | 
|
1560  | 
apply (rule_tac x = 1 in exI)  | 
|
1561  | 
apply (simp add: power_abs)  | 
|
1562  | 
apply (auto dest: power_mono)  | 
|
1563  | 
done  | 
|
1564  | 
||
1565  | 
lemma monoseq_realpow: fixes x :: real shows "[| 0 \<le> x; x \<le> 1 |] ==> monoseq (%n. x ^ n)"  | 
|
1566  | 
apply (clarify intro!: mono_SucI2)  | 
|
1567  | 
apply (cut_tac n = n and N = "Suc n" and a = x in power_decreasing, auto)  | 
|
1568  | 
done  | 
|
1569  | 
||
1570  | 
lemma convergent_realpow:  | 
|
1571  | 
"[| 0 \<le> (x::real); x \<le> 1 |] ==> convergent (%n. x ^ n)"  | 
|
1572  | 
by (blast intro!: Bseq_monoseq_convergent Bseq_realpow monoseq_realpow)  | 
|
1573  | 
||
1574  | 
lemma LIMSEQ_inverse_realpow_zero: "1 < (x::real) \<Longrightarrow> (\<lambda>n. inverse (x ^ n)) ----> 0"  | 
|
1575  | 
by (rule filterlim_compose[OF tendsto_inverse_0 filterlim_realpow_sequentially_gt1]) simp  | 
|
1576  | 
||
1577  | 
lemma LIMSEQ_realpow_zero:  | 
|
1578  | 
"\<lbrakk>0 \<le> (x::real); x < 1\<rbrakk> \<Longrightarrow> (\<lambda>n. x ^ n) ----> 0"  | 
|
1579  | 
proof cases  | 
|
1580  | 
assume "0 \<le> x" and "x \<noteq> 0"  | 
|
1581  | 
hence x0: "0 < x" by simp  | 
|
1582  | 
assume x1: "x < 1"  | 
|
1583  | 
from x0 x1 have "1 < inverse x"  | 
|
1584  | 
by (rule one_less_inverse)  | 
|
1585  | 
hence "(\<lambda>n. inverse (inverse x ^ n)) ----> 0"  | 
|
1586  | 
by (rule LIMSEQ_inverse_realpow_zero)  | 
|
1587  | 
thus ?thesis by (simp add: power_inverse)  | 
|
| 
58729
 
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
 
hoelzl 
parents: 
57512 
diff
changeset
 | 
1588  | 
qed (rule LIMSEQ_imp_Suc, simp)  | 
| 51526 | 1589  | 
|
1590  | 
lemma LIMSEQ_power_zero:  | 
|
1591  | 
  fixes x :: "'a::{real_normed_algebra_1}"
 | 
|
1592  | 
shows "norm x < 1 \<Longrightarrow> (\<lambda>n. x ^ n) ----> 0"  | 
|
1593  | 
apply (drule LIMSEQ_realpow_zero [OF norm_ge_zero])  | 
|
1594  | 
apply (simp only: tendsto_Zfun_iff, erule Zfun_le)  | 
|
1595  | 
apply (simp add: power_abs norm_power_ineq)  | 
|
1596  | 
done  | 
|
1597  | 
||
1598  | 
lemma LIMSEQ_divide_realpow_zero: "1 < x \<Longrightarrow> (\<lambda>n. a / (x ^ n) :: real) ----> 0"  | 
|
1599  | 
by (rule tendsto_divide_0 [OF tendsto_const filterlim_realpow_sequentially_gt1]) simp  | 
|
1600  | 
||
| 60758 | 1601  | 
text\<open>Limit of @{term "c^n"} for @{term"\<bar>c\<bar> < 1"}\<close>
 | 
| 51526 | 1602  | 
|
1603  | 
lemma LIMSEQ_rabs_realpow_zero: "\<bar>c\<bar> < 1 \<Longrightarrow> (\<lambda>n. \<bar>c\<bar> ^ n :: real) ----> 0"  | 
|
1604  | 
by (rule LIMSEQ_realpow_zero [OF abs_ge_zero])  | 
|
1605  | 
||
1606  | 
lemma LIMSEQ_rabs_realpow_zero2: "\<bar>c\<bar> < 1 \<Longrightarrow> (\<lambda>n. c ^ n :: real) ----> 0"  | 
|
1607  | 
by (rule LIMSEQ_power_zero) simp  | 
|
1608  | 
||
1609  | 
||
| 60758 | 1610  | 
subsection \<open>Limits of Functions\<close>  | 
| 51526 | 1611  | 
|
1612  | 
lemma LIM_eq:  | 
|
1613  | 
fixes a :: "'a::real_normed_vector" and L :: "'b::real_normed_vector"  | 
|
1614  | 
shows "f -- a --> L =  | 
|
1615  | 
(\<forall>r>0.\<exists>s>0.\<forall>x. x \<noteq> a & norm (x-a) < s --> norm (f x - L) < r)"  | 
|
1616  | 
by (simp add: LIM_def dist_norm)  | 
|
1617  | 
||
1618  | 
lemma LIM_I:  | 
|
1619  | 
fixes a :: "'a::real_normed_vector" and L :: "'b::real_normed_vector"  | 
|
1620  | 
shows "(!!r. 0<r ==> \<exists>s>0.\<forall>x. x \<noteq> a & norm (x-a) < s --> norm (f x - L) < r)  | 
|
1621  | 
==> f -- a --> L"  | 
|
1622  | 
by (simp add: LIM_eq)  | 
|
1623  | 
||
1624  | 
lemma LIM_D:  | 
|
1625  | 
fixes a :: "'a::real_normed_vector" and L :: "'b::real_normed_vector"  | 
|
1626  | 
shows "[| f -- a --> L; 0<r |]  | 
|
1627  | 
==> \<exists>s>0.\<forall>x. x \<noteq> a & norm (x-a) < s --> norm (f x - L) < r"  | 
|
1628  | 
by (simp add: LIM_eq)  | 
|
1629  | 
||
1630  | 
lemma LIM_offset:  | 
|
1631  | 
fixes a :: "'a::real_normed_vector"  | 
|
1632  | 
shows "f -- a --> L \<Longrightarrow> (\<lambda>x. f (x + k)) -- a - k --> L"  | 
|
| 
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
 | 
1633  | 
unfolding filtermap_at_shift[symmetric, of a k] filterlim_def filtermap_filtermap by simp  | 
| 51526 | 1634  | 
|
1635  | 
lemma LIM_offset_zero:  | 
|
1636  | 
fixes a :: "'a::real_normed_vector"  | 
|
1637  | 
shows "f -- a --> L \<Longrightarrow> (\<lambda>h. f (a + h)) -- 0 --> L"  | 
|
| 
57512
 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 
haftmann 
parents: 
57447 
diff
changeset
 | 
1638  | 
by (drule_tac k="a" in LIM_offset, simp add: add.commute)  | 
| 51526 | 1639  | 
|
1640  | 
lemma LIM_offset_zero_cancel:  | 
|
1641  | 
fixes a :: "'a::real_normed_vector"  | 
|
1642  | 
shows "(\<lambda>h. f (a + h)) -- 0 --> L \<Longrightarrow> f -- a --> L"  | 
|
1643  | 
by (drule_tac k="- a" in LIM_offset, simp)  | 
|
1644  | 
||
| 
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
 | 
1645  | 
lemma LIM_offset_zero_iff:  | 
| 
 
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
 | 
1646  | 
fixes f :: "'a :: real_normed_vector \<Rightarrow> _"  | 
| 
 
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
 | 
1647  | 
shows "f -- a --> L \<longleftrightarrow> (\<lambda>h. f (a + h)) -- 0 --> L"  | 
| 
 
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
 | 
1648  | 
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
 | 
1649  | 
|
| 51526 | 1650  | 
lemma LIM_zero:  | 
1651  | 
fixes f :: "'a::topological_space \<Rightarrow> 'b::real_normed_vector"  | 
|
1652  | 
shows "(f ---> l) F \<Longrightarrow> ((\<lambda>x. f x - l) ---> 0) F"  | 
|
1653  | 
unfolding tendsto_iff dist_norm by simp  | 
|
1654  | 
||
1655  | 
lemma LIM_zero_cancel:  | 
|
1656  | 
fixes f :: "'a::topological_space \<Rightarrow> 'b::real_normed_vector"  | 
|
1657  | 
shows "((\<lambda>x. f x - l) ---> 0) F \<Longrightarrow> (f ---> l) F"  | 
|
1658  | 
unfolding tendsto_iff dist_norm by simp  | 
|
1659  | 
||
1660  | 
lemma LIM_zero_iff:  | 
|
1661  | 
fixes f :: "'a::metric_space \<Rightarrow> 'b::real_normed_vector"  | 
|
1662  | 
shows "((\<lambda>x. f x - l) ---> 0) F = (f ---> l) F"  | 
|
1663  | 
unfolding tendsto_iff dist_norm by simp  | 
|
1664  | 
||
1665  | 
lemma LIM_imp_LIM:  | 
|
1666  | 
fixes f :: "'a::topological_space \<Rightarrow> 'b::real_normed_vector"  | 
|
1667  | 
fixes g :: "'a::topological_space \<Rightarrow> 'c::real_normed_vector"  | 
|
1668  | 
assumes f: "f -- a --> l"  | 
|
1669  | 
assumes le: "\<And>x. x \<noteq> a \<Longrightarrow> norm (g x - m) \<le> norm (f x - l)"  | 
|
1670  | 
shows "g -- a --> m"  | 
|
1671  | 
by (rule metric_LIM_imp_LIM [OF f],  | 
|
1672  | 
simp add: dist_norm le)  | 
|
1673  | 
||
1674  | 
lemma LIM_equal2:  | 
|
1675  | 
fixes f g :: "'a::real_normed_vector \<Rightarrow> 'b::topological_space"  | 
|
1676  | 
assumes 1: "0 < R"  | 
|
1677  | 
assumes 2: "\<And>x. \<lbrakk>x \<noteq> a; norm (x - a) < R\<rbrakk> \<Longrightarrow> f x = g x"  | 
|
1678  | 
shows "g -- a --> l \<Longrightarrow> f -- a --> l"  | 
|
1679  | 
by (rule metric_LIM_equal2 [OF 1 2], simp_all add: dist_norm)  | 
|
1680  | 
||
1681  | 
lemma LIM_compose2:  | 
|
1682  | 
fixes a :: "'a::real_normed_vector"  | 
|
1683  | 
assumes f: "f -- a --> b"  | 
|
1684  | 
assumes g: "g -- b --> c"  | 
|
1685  | 
assumes inj: "\<exists>d>0. \<forall>x. x \<noteq> a \<and> norm (x - a) < d \<longrightarrow> f x \<noteq> b"  | 
|
1686  | 
shows "(\<lambda>x. g (f x)) -- a --> c"  | 
|
1687  | 
by (rule metric_LIM_compose2 [OF f g inj [folded dist_norm]])  | 
|
1688  | 
||
1689  | 
lemma real_LIM_sandwich_zero:  | 
|
1690  | 
fixes f g :: "'a::topological_space \<Rightarrow> real"  | 
|
1691  | 
assumes f: "f -- a --> 0"  | 
|
1692  | 
assumes 1: "\<And>x. x \<noteq> a \<Longrightarrow> 0 \<le> g x"  | 
|
1693  | 
assumes 2: "\<And>x. x \<noteq> a \<Longrightarrow> g x \<le> f x"  | 
|
1694  | 
shows "g -- a --> 0"  | 
|
1695  | 
proof (rule LIM_imp_LIM [OF f]) (* FIXME: use tendsto_sandwich *)  | 
|
1696  | 
fix x assume x: "x \<noteq> a"  | 
|
1697  | 
have "norm (g x - 0) = g x" by (simp add: 1 x)  | 
|
1698  | 
also have "g x \<le> f x" by (rule 2 [OF x])  | 
|
1699  | 
also have "f x \<le> \<bar>f x\<bar>" by (rule abs_ge_self)  | 
|
1700  | 
also have "\<bar>f x\<bar> = norm (f x - 0)" by simp  | 
|
1701  | 
finally show "norm (g x - 0) \<le> norm (f x - 0)" .  | 
|
1702  | 
qed  | 
|
1703  | 
||
1704  | 
||
| 60758 | 1705  | 
subsection \<open>Continuity\<close>  | 
| 51526 | 1706  | 
|
1707  | 
lemma LIM_isCont_iff:  | 
|
1708  | 
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::topological_space"  | 
|
1709  | 
shows "(f -- a --> f a) = ((\<lambda>h. f (a + h)) -- 0 --> f a)"  | 
|
1710  | 
by (rule iffI [OF LIM_offset_zero LIM_offset_zero_cancel])  | 
|
1711  | 
||
1712  | 
lemma isCont_iff:  | 
|
1713  | 
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::topological_space"  | 
|
1714  | 
shows "isCont f x = (\<lambda>h. f (x + h)) -- 0 --> f x"  | 
|
1715  | 
by (simp add: isCont_def LIM_isCont_iff)  | 
|
1716  | 
||
1717  | 
lemma isCont_LIM_compose2:  | 
|
1718  | 
fixes a :: "'a::real_normed_vector"  | 
|
1719  | 
assumes f [unfolded isCont_def]: "isCont f a"  | 
|
1720  | 
assumes g: "g -- f a --> l"  | 
|
1721  | 
assumes inj: "\<exists>d>0. \<forall>x. x \<noteq> a \<and> norm (x - a) < d \<longrightarrow> f x \<noteq> f a"  | 
|
1722  | 
shows "(\<lambda>x. g (f x)) -- a --> l"  | 
|
1723  | 
by (rule LIM_compose2 [OF f g inj])  | 
|
1724  | 
||
1725  | 
||
1726  | 
lemma isCont_norm [simp]:  | 
|
1727  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
|
1728  | 
shows "isCont f a \<Longrightarrow> isCont (\<lambda>x. norm (f x)) a"  | 
|
1729  | 
by (fact continuous_norm)  | 
|
1730  | 
||
1731  | 
lemma isCont_rabs [simp]:  | 
|
1732  | 
fixes f :: "'a::t2_space \<Rightarrow> real"  | 
|
1733  | 
shows "isCont f a \<Longrightarrow> isCont (\<lambda>x. \<bar>f x\<bar>) a"  | 
|
1734  | 
by (fact continuous_rabs)  | 
|
1735  | 
||
1736  | 
lemma isCont_add [simp]:  | 
|
1737  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
|
1738  | 
shows "\<lbrakk>isCont f a; isCont g a\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. f x + g x) a"  | 
|
1739  | 
by (fact continuous_add)  | 
|
1740  | 
||
1741  | 
lemma isCont_minus [simp]:  | 
|
1742  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
|
1743  | 
shows "isCont f a \<Longrightarrow> isCont (\<lambda>x. - f x) a"  | 
|
1744  | 
by (fact continuous_minus)  | 
|
1745  | 
||
1746  | 
lemma isCont_diff [simp]:  | 
|
1747  | 
fixes f :: "'a::t2_space \<Rightarrow> 'b::real_normed_vector"  | 
|
1748  | 
shows "\<lbrakk>isCont f a; isCont g a\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. f x - g x) a"  | 
|
1749  | 
by (fact continuous_diff)  | 
|
1750  | 
||
1751  | 
lemma isCont_mult [simp]:  | 
|
1752  | 
fixes f g :: "'a::t2_space \<Rightarrow> 'b::real_normed_algebra"  | 
|
1753  | 
shows "\<lbrakk>isCont f a; isCont g a\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. f x * g x) a"  | 
|
1754  | 
by (fact continuous_mult)  | 
|
1755  | 
||
1756  | 
lemma (in bounded_linear) isCont:  | 
|
1757  | 
"isCont g a \<Longrightarrow> isCont (\<lambda>x. f (g x)) a"  | 
|
1758  | 
by (fact continuous)  | 
|
1759  | 
||
1760  | 
lemma (in bounded_bilinear) isCont:  | 
|
1761  | 
"\<lbrakk>isCont f a; isCont g a\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. f x ** g x) a"  | 
|
1762  | 
by (fact continuous)  | 
|
1763  | 
||
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1764  | 
lemmas isCont_scaleR [simp] =  | 
| 51526 | 1765  | 
bounded_bilinear.isCont [OF bounded_bilinear_scaleR]  | 
1766  | 
||
1767  | 
lemmas isCont_of_real [simp] =  | 
|
1768  | 
bounded_linear.isCont [OF bounded_linear_of_real]  | 
|
1769  | 
||
1770  | 
lemma isCont_power [simp]:  | 
|
1771  | 
  fixes f :: "'a::t2_space \<Rightarrow> 'b::{power,real_normed_algebra}"
 | 
|
1772  | 
shows "isCont f a \<Longrightarrow> isCont (\<lambda>x. f x ^ n) a"  | 
|
1773  | 
by (fact continuous_power)  | 
|
1774  | 
||
1775  | 
lemma isCont_setsum [simp]:  | 
|
1776  | 
fixes f :: "'a \<Rightarrow> 'b::t2_space \<Rightarrow> 'c::real_normed_vector"  | 
|
1777  | 
shows "\<forall>i\<in>A. isCont (f i) a \<Longrightarrow> isCont (\<lambda>x. \<Sum>i\<in>A. f i x) a"  | 
|
1778  | 
by (auto intro: continuous_setsum)  | 
|
1779  | 
||
| 60758 | 1780  | 
subsection \<open>Uniform Continuity\<close>  | 
| 51526 | 1781  | 
|
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1782  | 
definition  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1783  | 
isUCont :: "['a::metric_space \<Rightarrow> 'b::metric_space] \<Rightarrow> bool" where  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1784  | 
"isUCont f = (\<forall>r>0. \<exists>s>0. \<forall>x y. dist x y < s \<longrightarrow> dist (f x) (f y) < r)"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1785  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1786  | 
lemma isUCont_isCont: "isUCont f ==> isCont f x"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1787  | 
by (simp add: isUCont_def isCont_def LIM_def, force)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1788  | 
|
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1789  | 
lemma isUCont_Cauchy:  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1790  | 
"\<lbrakk>isUCont f; Cauchy X\<rbrakk> \<Longrightarrow> Cauchy (\<lambda>n. f (X n))"  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1791  | 
unfolding isUCont_def  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1792  | 
apply (rule metric_CauchyI)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1793  | 
apply (drule_tac x=e in spec, safe)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1794  | 
apply (drule_tac e=s in metric_CauchyD, safe)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1795  | 
apply (rule_tac x=M in exI, simp)  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1796  | 
done  | 
| 
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
1797  | 
|
| 51526 | 1798  | 
lemma (in bounded_linear) isUCont: "isUCont f"  | 
1799  | 
unfolding isUCont_def dist_norm  | 
|
1800  | 
proof (intro allI impI)  | 
|
1801  | 
fix r::real assume r: "0 < r"  | 
|
1802  | 
obtain K where K: "0 < K" and norm_le: "\<And>x. norm (f x) \<le> norm x * K"  | 
|
1803  | 
using pos_bounded by fast  | 
|
1804  | 
show "\<exists>s>0. \<forall>x y. norm (x - y) < s \<longrightarrow> norm (f x - f y) < r"  | 
|
1805  | 
proof (rule exI, safe)  | 
|
| 56541 | 1806  | 
from r K show "0 < r / K" by simp  | 
| 51526 | 1807  | 
next  | 
1808  | 
fix x y :: 'a  | 
|
1809  | 
assume xy: "norm (x - y) < r / K"  | 
|
1810  | 
have "norm (f x - f y) = norm (f (x - y))" by (simp only: diff)  | 
|
1811  | 
also have "\<dots> \<le> norm (x - y) * K" by (rule norm_le)  | 
|
1812  | 
also from K xy have "\<dots> < r" by (simp only: pos_less_divide_eq)  | 
|
1813  | 
finally show "norm (f x - f y) < r" .  | 
|
1814  | 
qed  | 
|
1815  | 
qed  | 
|
1816  | 
||
1817  | 
lemma (in bounded_linear) Cauchy: "Cauchy X \<Longrightarrow> Cauchy (\<lambda>n. f (X n))"  | 
|
1818  | 
by (rule isUCont [THEN isUCont_Cauchy])  | 
|
1819  | 
||
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1820  | 
lemma LIM_less_bound:  | 
| 51526 | 1821  | 
fixes f :: "real \<Rightarrow> real"  | 
1822  | 
  assumes ev: "b < x" "\<forall> x' \<in> { b <..< x}. 0 \<le> f x'" and "isCont f x"
 | 
|
1823  | 
shows "0 \<le> f x"  | 
|
1824  | 
proof (rule tendsto_le_const)  | 
|
1825  | 
show "(f ---> f x) (at_left x)"  | 
|
| 60758 | 1826  | 
using \<open>isCont f x\<close> by (simp add: filterlim_at_split isCont_def)  | 
| 51526 | 1827  | 
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
 | 
1828  | 
using ev by (auto simp: eventually_at dist_real_def intro!: exI[of _ "x - b"])  | 
| 51526 | 1829  | 
qed simp  | 
| 51471 | 1830  | 
|
| 
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
 | 
1831  | 
|
| 60758 | 1832  | 
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
 | 
1833  | 
|
| 
 
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
 | 
1834  | 
lemma nested_sequence_unique:  | 
| 
 
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
 | 
1835  | 
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) ----> 0"  | 
| 
 
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
 | 
1836  | 
shows "\<exists>l::real. ((\<forall>n. f n \<le> l) \<and> f ----> l) \<and> ((\<forall>n. l \<le> g n) \<and> g ----> l)"  | 
| 
 
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
 | 
1837  | 
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
 | 
1838  | 
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
 | 
1839  | 
have "decseq g" unfolding decseq_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
 | 
1840  | 
|
| 
 
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
 | 
1841  | 
  { fix n
 | 
| 60758 | 1842  | 
from \<open>decseq g\<close> have "g n \<le> g 0" by (rule decseqD) simp  | 
1843  | 
with \<open>\<forall>n. f n \<le> g n\<close>[THEN spec, of n] have "f n \<le> g 0" 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
 | 
1844  | 
then obtain u where "f ----> u" "\<forall>i. f i \<le> u"  | 
| 60758 | 1845  | 
using incseq_convergent[OF \<open>incseq f\<close>] 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
 | 
1846  | 
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
 | 
1847  | 
  { fix n
 | 
| 60758 | 1848  | 
from \<open>incseq f\<close> have "f 0 \<le> f n" by (rule incseqD) simp  | 
1849  | 
with \<open>\<forall>n. f n \<le> g n\<close>[THEN spec, of n] have "f 0 \<le> g n" by simp }  | 
|
| 
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
 | 
1850  | 
then obtain l where "g ----> l" "\<forall>i. l \<le> g i"  | 
| 60758 | 1851  | 
using decseq_convergent[OF \<open>decseq g\<close>] by auto  | 
1852  | 
moreover note LIMSEQ_unique[OF assms(4) tendsto_diff[OF \<open>f ----> u\<close> \<open>g ----> 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
 | 
1853  | 
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
 | 
1854  | 
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
 | 
1855  | 
|
| 
 
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
 | 
1856  | 
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
 | 
1857  | 
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
 | 
1858  | 
assumes [arith]: "a \<le> 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
 | 
1859  | 
assumes trans: "\<And>a b c. \<lbrakk>P a b; P b c; a \<le> b; b \<le> c\<rbrakk> \<Longrightarrow> P a 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
 | 
1860  | 
assumes 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"  | 
| 
 
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
 | 
1861  | 
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
 | 
1862  | 
proof -  | 
| 55415 | 1863  | 
def bisect \<equiv> "rec_nat (a, b) (\<lambda>n (x, y). if P x ((x+y) / 2) then ((x+y)/2, y) else (x, (x+y)/2))"  | 
| 
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
 | 
1864  | 
def l \<equiv> "\<lambda>n. fst (bisect n)" and u \<equiv> "\<lambda>n. snd (bisect 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
 | 
1865  | 
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
 | 
1866  | 
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
 | 
1867  | 
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
 | 
1868  | 
|
| 
 
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
 | 
1869  | 
  { fix n have "l n \<le> u n" by (induct n) auto } note this[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
 | 
1870  | 
|
| 
 
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
 | 
1871  | 
have "\<exists>x. ((\<forall>n. l n \<le> x) \<and> l ----> x) \<and> ((\<forall>n. x \<le> u n) \<and> u ----> 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
 | 
1872  | 
proof (safe intro!: nested_sequence_unique)  | 
| 
 
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
 | 
1873  | 
fix n show "l n \<le> l (Suc n)" "u (Suc n) \<le> u n" by (induct n) 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
 | 
1874  | 
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
 | 
1875  | 
    { fix n have "l n - u n = (a - b) / 2^n" by (induct n) (auto simp: field_simps) }
 | 
| 
 
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
 | 
1876  | 
then show "(\<lambda>n. l n - u n) ----> 0" by (simp add: LIMSEQ_divide_realpow_zero)  | 
| 
 
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
 | 
1877  | 
qed 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
 | 
1878  | 
then obtain x where x: "\<And>n. l n \<le> x" "\<And>n. x \<le> u n" and "l ----> x" "u ----> x" 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
 | 
1879  | 
obtain d where "0 < d" and d: "\<And>a b. a \<le> x \<Longrightarrow> x \<le> b \<Longrightarrow> b - a < d \<Longrightarrow> P a b"  | 
| 60758 | 1880  | 
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
 | 
1881  | 
|
| 
 
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
 | 
1882  | 
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
 | 
1883  | 
proof (rule ccontr)  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
1884  | 
assume "\<not> 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
 | 
1885  | 
    { fix n have "\<not> P (l n) (u 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
 | 
1886  | 
proof (induct 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
 | 
1887  | 
case (Suc n) with trans[of "l n" "(l n + u n) / 2" "u n"] show ?case by auto  | 
| 60758 | 1888  | 
qed (simp add: \<open>\<not> P a b\<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
 | 
1889  | 
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
 | 
1890  | 
    { have "eventually (\<lambda>n. x - d / 2 < l n) sequentially"
 | 
| 60758 | 1891  | 
using \<open>0 < d\<close> \<open>l ----> 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
 | 
1892  | 
moreover have "eventually (\<lambda>n. u n < x + d / 2) sequentially"  | 
| 60758 | 1893  | 
using \<open>0 < d\<close> \<open>u ----> 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
 | 
1894  | 
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
 | 
1895  | 
proof eventually_elim  | 
| 
 
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
 | 
1896  | 
fix n assume "x - d / 2 < l n" "u n < x + d / 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
 | 
1897  | 
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
 | 
1898  | 
with x show "P (l n) (u n)" by (rule 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
 | 
1899  | 
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
 | 
1900  | 
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
 | 
1901  | 
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
 | 
1902  | 
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
 | 
1903  | 
|
| 
 
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
 | 
1904  | 
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
 | 
1905  | 
proof (cases "a \<le> b", rule compactI)  | 
| 
 
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
 | 
1906  | 
  fix C assume C: "a \<le> b" "\<forall>t\<in>C. open t" "{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
 | 
1907  | 
  def T == "{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
 | 
1908  | 
  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
 | 
1909  | 
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
 | 
1910  | 
case (trans a b 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
 | 
1911  | 
    then have *: "{a .. c} = {a .. b} \<union> {b .. c}" 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
 | 
1912  | 
    from trans obtain C1 C2 where "C1\<subseteq>C \<and> finite C1 \<and> {a..b} \<subseteq> \<Union>C1" "C2\<subseteq>C \<and> finite C2 \<and> {b..c} \<subseteq> \<Union>C2"
 | 
| 
 
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
 | 
1913  | 
by (auto 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
 | 
1914  | 
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
 | 
1915  | 
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
 | 
1916  | 
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
 | 
1917  | 
case (local 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
 | 
1918  | 
then have "x \<in> \<Union>C" using C 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
 | 
1919  | 
with C(2) obtain c where "x \<in> c" "open c" "c \<in> C" 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
 | 
1920  | 
    then obtain e where "0 < e" "{x - e <..< x + e} \<subseteq> 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
 | 
1921  | 
by (auto simp: open_real_def dist_real_def subset_eq Ball_def abs_less_iff)  | 
| 60758 | 1922  | 
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
 | 
1923  | 
      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
 | 
1924  | 
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
 | 
1925  | 
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
 | 
1926  | 
|
| 
 
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
 | 
1927  | 
|
| 
57447
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
1928  | 
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
 | 
1929  | 
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
 | 
1930  | 
  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
 | 
1931  | 
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
 | 
1932  | 
  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
 | 
1933  | 
proof -  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
1934  | 
  have S: "compact S" "S \<noteq> {}"
 | 
| 60758 | 1935  | 
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
 | 
1936  | 
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
 | 
1937  | 
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
 | 
1938  | 
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
 | 
1939  | 
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
 | 
1940  | 
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
 | 
1941  | 
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
 | 
1942  | 
  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
 | 
1943  | 
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
 | 
1944  | 
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
 | 
1945  | 
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
 | 
1946  | 
qed  | 
| 
 
87429bdecad5
import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
 
hoelzl 
parents: 
57276 
diff
changeset
 | 
1947  | 
|
| 
60974
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1948  | 
lemma open_Collect_positive:  | 
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1949  | 
fixes f :: "'a::t2_space \<Rightarrow> real"  | 
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1950  | 
assumes f: "continuous_on s f"  | 
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1951  | 
 shows "\<exists>A. open A \<and> A \<inter> s = {x\<in>s. 0 < f x}"
 | 
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1952  | 
 using continuous_on_open_invariant[THEN iffD1, OF f, rule_format, of "{0 <..}"]
 | 
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1953  | 
by (auto simp: Int_def field_simps)  | 
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1954  | 
|
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1955  | 
lemma open_Collect_less_Int:  | 
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1956  | 
fixes f g :: "'a::t2_space \<Rightarrow> real"  | 
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1957  | 
assumes f: "continuous_on s f" and g: "continuous_on s g"  | 
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1958  | 
 shows "\<exists>A. open A \<and> A \<inter> s = {x\<in>s. f x < g x}"
 | 
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1959  | 
using open_Collect_positive[OF continuous_on_diff[OF g f]] by (simp add: field_simps)  | 
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1960  | 
|
| 
 
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
 
paulson <lp15@cam.ac.uk> 
parents: 
60758 
diff
changeset
 | 
1961  | 
|
| 60758 | 1962  | 
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
 | 
1963  | 
|
| 60758 | 1964  | 
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
 | 
1965  | 
|
| 
 
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
 | 
1966  | 
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
 | 
1967  | 
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
 | 
1968  | 
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
 | 
1969  | 
\<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)"  | 
| 
 
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
 | 
1970  | 
  using continuous_attains_sup[of "{a .. b}" 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
 | 
1971  | 
by (auto simp add: continuous_at_imp_continuous_on Ball_def Bex_def)  | 
| 
 
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
 | 
1972  | 
|
| 
 
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
 | 
1973  | 
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
 | 
1974  | 
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
 | 
1975  | 
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
 | 
1976  | 
\<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)"  | 
| 
 
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
 | 
1977  | 
  using continuous_attains_inf[of "{a .. b}" 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
 | 
1978  | 
by (auto simp add: continuous_at_imp_continuous_on Ball_def Bex_def)  | 
| 
 
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
 | 
1979  | 
|
| 
 
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
 | 
1980  | 
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
 | 
1981  | 
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
 | 
1982  | 
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
 | 
1983  | 
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
 | 
1984  | 
|
| 
 
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
 | 
1985  | 
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
 | 
1986  | 
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
 | 
1987  | 
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
 | 
1988  | 
\<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
 | 
1989  | 
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
 | 
1990  | 
|
| 
 
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
 | 
1991  | 
(*HOL style here: object-level formulations*)  | 
| 
 
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
 | 
1992  | 
lemma IVT_objl: "(f(a::real) \<le> (y::real) & y \<le> f(b) & a \<le> 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
 | 
1993  | 
(\<forall>x. a \<le> x & x \<le> b --> isCont 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
 | 
1994  | 
--> (\<exists>x. a \<le> x & x \<le> b & f(x) = y)"  | 
| 
 
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
 | 
1995  | 
by (blast intro: IVT)  | 
| 
 
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
 | 
1996  | 
|
| 
 
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
 | 
1997  | 
lemma IVT2_objl: "(f(b::real) \<le> (y::real) & y \<le> f(a) & a \<le> 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
 | 
1998  | 
(\<forall>x. a \<le> x & x \<le> b --> isCont 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
 | 
1999  | 
--> (\<exists>x. a \<le> x & x \<le> b & f(x) = y)"  | 
| 
 
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
 | 
2000  | 
by (blast intro: IVT2)  | 
| 
 
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
 | 
2001  | 
|
| 
 
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
 | 
2002  | 
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
 | 
2003  | 
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
 | 
2004  | 
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
 | 
2005  | 
shows "\<exists>L M. (\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> L \<le> f x \<and> f x \<le> M) \<and>  | 
| 
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
 | 
2006  | 
(\<forall>y. L \<le> y \<and> y \<le> M \<longrightarrow> (\<exists>x. a \<le> x \<and> x \<le> b \<and> (f x = y)))"  | 
| 
 
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
 | 
2007  | 
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
 | 
2008  | 
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
 | 
2009  | 
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
 | 
2010  | 
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
 | 
2011  | 
using isCont_eq_Lb[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
 | 
2012  | 
show ?thesis  | 
| 
 
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
 | 
2013  | 
using IVT[of f L _ M] IVT2[of f L _ M] M L assms  | 
| 
 
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
 | 
2014  | 
apply (rule_tac x="f L" in exI)  | 
| 
 
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
 | 
2015  | 
apply (rule_tac x="f M" in exI)  | 
| 
 
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
 | 
2016  | 
apply (cases "L \<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
 | 
2017  | 
apply (simp, metis order_trans)  | 
| 
 
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
 | 
2018  | 
apply (simp, metis order_trans)  | 
| 
 
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
 | 
2019  | 
done  | 
| 
 
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
 | 
2020  | 
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
 | 
2021  | 
|
| 
 
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
 | 
2022  | 
|
| 60758 | 2023  | 
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
 | 
2024  | 
|
| 
 
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
 | 
2025  | 
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
 | 
2026  | 
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
 | 
2027  | 
assumes d: "0 < 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
 | 
2028  | 
and inj: "\<forall>z. \<bar>z-x\<bar> \<le> d \<longrightarrow> g (f z) = z"  | 
| 
 
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
 | 
2029  | 
and cont: "\<forall>z. \<bar>z-x\<bar> \<le> d \<longrightarrow> isCont f z"  | 
| 
 
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
 | 
2030  | 
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
 | 
2031  | 
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
 | 
2032  | 
  let ?A = "f (x - d)" and ?B = "f (x + d)" and ?D = "{x - d..x + 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
 | 
2033  | 
|
| 
 
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
 | 
2034  | 
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
 | 
2035  | 
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
 | 
2036  | 
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
 | 
2037  | 
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
 | 
2038  | 
|
| 
 
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
 | 
2039  | 
  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
 | 
2040  | 
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
 | 
2041  | 
  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
 | 
2042  | 
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
 | 
2043  | 
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
 | 
2044  | 
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
 | 
2045  | 
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
 | 
2046  | 
  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
 | 
2047  | 
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
 | 
2048  | 
ultimately  | 
| 
 
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
 | 
2049  | 
show ?thesis  | 
| 
 
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
 | 
2050  | 
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
 | 
2051  | 
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
 | 
2052  | 
|
| 
 
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
 | 
2053  | 
lemma isCont_inverse_function2:  | 
| 
 
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
 | 
2054  | 
fixes f g :: "real \<Rightarrow> real" shows  | 
| 
 
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
 | 
2055  | 
"\<lbrakk>a < x; x < 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
 | 
2056  | 
\<forall>z. a \<le> z \<and> z \<le> b \<longrightarrow> g (f z) = z;  | 
| 
 
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
 | 
2057  | 
\<forall>z. a \<le> z \<and> z \<le> b \<longrightarrow> isCont f z\<rbrakk>  | 
| 
 
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
 | 
2058  | 
\<Longrightarrow> 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
 | 
2059  | 
apply (rule 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
 | 
2060  | 
[where f=f and d="min (x - a) (b - 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
 | 
2061  | 
apply (simp_all add: abs_le_iff)  | 
| 
 
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
 | 
2062  | 
done  | 
| 
 
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
 | 
2063  | 
|
| 
 
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
 | 
2064  | 
(* need to rename second isCont_inverse *)  | 
| 
 
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
 | 
2065  | 
|
| 
 
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
 | 
2066  | 
lemma isCont_inv_fun:  | 
| 
 
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
 | 
2067  | 
fixes f g :: "real \<Rightarrow> real"  | 
| 
60141
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2068  | 
shows "[| 0 < d; \<forall>z. \<bar>z - x\<bar> \<le> d --> g(f(z)) = z;  | 
| 
 
833adf7db7d8
New material, mostly about limits. Consolidation.
 
paulson <lp15@cam.ac.uk> 
parents: 
60017 
diff
changeset
 | 
2069  | 
\<forall>z. \<bar>z - x\<bar> \<le> d --> 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
 | 
2070  | 
==> 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
 | 
2071  | 
by (rule 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
 | 
2072  | 
|
| 60758 | 2073  | 
text\<open>Bartle/Sherbert: Introduction to Real Analysis, Theorem 4.2.9, p. 110\<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
 | 
2074  | 
lemma LIM_fun_gt_zero:  | 
| 
 
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
 | 
2075  | 
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
 | 
2076  | 
shows "f -- c --> 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)"  | 
| 
 
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
 | 
2077  | 
apply (drule (1) LIM_D, clarify)  | 
| 
 
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
 | 
2078  | 
apply (rule_tac x = s in exI)  | 
| 
 
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
 | 
2079  | 
apply (simp add: abs_less_iff)  | 
| 
 
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
 | 
2080  | 
done  | 
| 
 
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
 | 
2081  | 
|
| 
 
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
 | 
2082  | 
lemma LIM_fun_less_zero:  | 
| 
 
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
 | 
2083  | 
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
 | 
2084  | 
shows "f -- c --> 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)"  | 
| 
 
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
 | 
2085  | 
apply (drule LIM_D [where r="-l"], simp, clarify)  | 
| 
 
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
 | 
2086  | 
apply (rule_tac x = s in exI)  | 
| 
 
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
 | 
2087  | 
apply (simp add: abs_less_iff)  | 
| 
 
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
 | 
2088  | 
done  | 
| 
 
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
 | 
2089  | 
|
| 
 
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
 | 
2090  | 
lemma LIM_fun_not_zero:  | 
| 
 
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
 | 
2091  | 
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
 | 
2092  | 
shows "f -- c --> 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)"  | 
| 
 
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
 | 
2093  | 
using LIM_fun_gt_zero[of f l c] LIM_fun_less_zero[of f l c] by (auto simp add: neq_iff)  | 
| 
51531
 
f415febf4234
remove Metric_Spaces and move its content into Limits and Real_Vector_Spaces
 
hoelzl 
parents: 
51529 
diff
changeset
 | 
2094  | 
|
| 
31349
 
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
 
huffman 
parents:  
diff
changeset
 | 
2095  | 
end  | 
| 
50324
 
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
 
hoelzl 
parents: 
50323 
diff
changeset
 | 
2096  |