author | blanchet |
Thu, 03 Jan 2013 17:10:12 +0100 | |
changeset 50704 | cd1fcda1ea88 |
parent 50419 | 3177d0374701 |
child 50880 | b22ecedde1c7 |
permissions | -rw-r--r-- |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
1 |
(* Title : Limits.thy |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
2 |
Author : Brian Huffman |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
3 |
*) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
4 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
5 |
header {* Filters and Limits *} |
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 |
theory Limits |
36822 | 8 |
imports RealVector |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
9 |
begin |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
10 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
11 |
subsection {* Filters *} |
31392 | 12 |
|
13 |
text {* |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
14 |
This definition also allows non-proper filters. |
31392 | 15 |
*} |
16 |
||
36358
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
17 |
locale is_filter = |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
18 |
fixes F :: "('a \<Rightarrow> bool) \<Rightarrow> bool" |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
19 |
assumes True: "F (\<lambda>x. True)" |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
20 |
assumes conj: "F (\<lambda>x. P x) \<Longrightarrow> F (\<lambda>x. Q x) \<Longrightarrow> F (\<lambda>x. P x \<and> Q x)" |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
21 |
assumes mono: "\<forall>x. P x \<longrightarrow> Q x \<Longrightarrow> F (\<lambda>x. P x) \<Longrightarrow> F (\<lambda>x. Q x)" |
36358
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
22 |
|
49834 | 23 |
typedef 'a filter = "{F :: ('a \<Rightarrow> bool) \<Rightarrow> bool. is_filter F}" |
31392 | 24 |
proof |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
25 |
show "(\<lambda>x. True) \<in> ?filter" by (auto intro: is_filter.intro) |
31392 | 26 |
qed |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
27 |
|
44195 | 28 |
lemma is_filter_Rep_filter: "is_filter (Rep_filter F)" |
29 |
using Rep_filter [of F] by simp |
|
31392 | 30 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
31 |
lemma Abs_filter_inverse': |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
32 |
assumes "is_filter F" shows "Rep_filter (Abs_filter F) = F" |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
33 |
using assms by (simp add: Abs_filter_inverse) |
31392 | 34 |
|
35 |
||
36 |
subsection {* Eventually *} |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
37 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
38 |
definition eventually :: "('a \<Rightarrow> bool) \<Rightarrow> 'a filter \<Rightarrow> bool" |
44195 | 39 |
where "eventually P F \<longleftrightarrow> Rep_filter F P" |
36358
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
40 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
41 |
lemma eventually_Abs_filter: |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
42 |
assumes "is_filter F" shows "eventually P (Abs_filter F) = F P" |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
43 |
unfolding eventually_def using assms by (simp add: Abs_filter_inverse) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
44 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
45 |
lemma filter_eq_iff: |
44195 | 46 |
shows "F = F' \<longleftrightarrow> (\<forall>P. eventually P F = eventually P F')" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
47 |
unfolding Rep_filter_inject [symmetric] fun_eq_iff eventually_def .. |
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
48 |
|
44195 | 49 |
lemma eventually_True [simp]: "eventually (\<lambda>x. True) F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
50 |
unfolding eventually_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
51 |
by (rule is_filter.True [OF is_filter_Rep_filter]) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
52 |
|
44195 | 53 |
lemma always_eventually: "\<forall>x. P x \<Longrightarrow> eventually P F" |
36630 | 54 |
proof - |
55 |
assume "\<forall>x. P x" hence "P = (\<lambda>x. True)" by (simp add: ext) |
|
44195 | 56 |
thus "eventually P F" by simp |
36630 | 57 |
qed |
58 |
||
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
59 |
lemma eventually_mono: |
44195 | 60 |
"(\<forall>x. P x \<longrightarrow> Q x) \<Longrightarrow> eventually P F \<Longrightarrow> eventually Q F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
61 |
unfolding eventually_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
62 |
by (rule is_filter.mono [OF is_filter_Rep_filter]) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
63 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
64 |
lemma eventually_conj: |
44195 | 65 |
assumes P: "eventually (\<lambda>x. P x) F" |
66 |
assumes Q: "eventually (\<lambda>x. Q x) F" |
|
67 |
shows "eventually (\<lambda>x. P x \<and> Q x) F" |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
68 |
using assms unfolding eventually_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
69 |
by (rule is_filter.conj [OF is_filter_Rep_filter]) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
70 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
71 |
lemma eventually_mp: |
44195 | 72 |
assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) F" |
73 |
assumes "eventually (\<lambda>x. P x) F" |
|
74 |
shows "eventually (\<lambda>x. Q x) F" |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
75 |
proof (rule eventually_mono) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
76 |
show "\<forall>x. (P x \<longrightarrow> Q x) \<and> P x \<longrightarrow> Q x" by simp |
44195 | 77 |
show "eventually (\<lambda>x. (P x \<longrightarrow> Q x) \<and> P x) F" |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
78 |
using assms by (rule eventually_conj) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
79 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
80 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
81 |
lemma eventually_rev_mp: |
44195 | 82 |
assumes "eventually (\<lambda>x. P x) F" |
83 |
assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) F" |
|
84 |
shows "eventually (\<lambda>x. Q x) F" |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
85 |
using assms(2) assms(1) by (rule eventually_mp) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
86 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
87 |
lemma eventually_conj_iff: |
44195 | 88 |
"eventually (\<lambda>x. P x \<and> Q x) F \<longleftrightarrow> eventually P F \<and> eventually Q F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
89 |
by (auto intro: eventually_conj elim: eventually_rev_mp) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
90 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
91 |
lemma eventually_elim1: |
44195 | 92 |
assumes "eventually (\<lambda>i. P i) F" |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
93 |
assumes "\<And>i. P i \<Longrightarrow> Q i" |
44195 | 94 |
shows "eventually (\<lambda>i. Q i) F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
95 |
using assms by (auto elim!: eventually_rev_mp) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
96 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
97 |
lemma eventually_elim2: |
44195 | 98 |
assumes "eventually (\<lambda>i. P i) F" |
99 |
assumes "eventually (\<lambda>i. Q i) F" |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
100 |
assumes "\<And>i. P i \<Longrightarrow> Q i \<Longrightarrow> R i" |
44195 | 101 |
shows "eventually (\<lambda>i. R i) F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
102 |
using assms by (auto elim!: eventually_rev_mp) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
103 |
|
45892 | 104 |
lemma eventually_subst: |
105 |
assumes "eventually (\<lambda>n. P n = Q n) F" |
|
106 |
shows "eventually P F = eventually Q F" (is "?L = ?R") |
|
107 |
proof - |
|
108 |
from assms have "eventually (\<lambda>x. P x \<longrightarrow> Q x) F" |
|
109 |
and "eventually (\<lambda>x. Q x \<longrightarrow> P x) F" |
|
110 |
by (auto elim: eventually_elim1) |
|
111 |
then show ?thesis by (auto elim: eventually_elim2) |
|
112 |
qed |
|
113 |
||
46886 | 114 |
ML {* |
47432 | 115 |
fun eventually_elim_tac ctxt thms thm = |
116 |
let |
|
46886 | 117 |
val thy = Proof_Context.theory_of ctxt |
118 |
val mp_thms = thms RL [@{thm eventually_rev_mp}] |
|
119 |
val raw_elim_thm = |
|
120 |
(@{thm allI} RS @{thm always_eventually}) |
|
121 |
|> fold (fn thm1 => fn thm2 => thm2 RS thm1) mp_thms |
|
122 |
|> fold (fn _ => fn thm => @{thm impI} RS thm) thms |
|
123 |
val cases_prop = prop_of (raw_elim_thm RS thm) |
|
124 |
val cases = (Rule_Cases.make_common (thy, cases_prop) [(("elim", []), [])]) |
|
125 |
in |
|
126 |
CASES cases (rtac raw_elim_thm 1) thm |
|
127 |
end |
|
128 |
*} |
|
129 |
||
47432 | 130 |
method_setup eventually_elim = {* |
131 |
Scan.succeed (fn ctxt => METHOD_CASES (eventually_elim_tac ctxt)) |
|
132 |
*} "elimination of eventually quantifiers" |
|
45892 | 133 |
|
134 |
||
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
135 |
subsection {* Finer-than relation *} |
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
136 |
|
44195 | 137 |
text {* @{term "F \<le> F'"} means that filter @{term F} is finer than |
138 |
filter @{term F'}. *} |
|
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
139 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
140 |
instantiation filter :: (type) complete_lattice |
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
141 |
begin |
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
142 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
143 |
definition le_filter_def: |
44195 | 144 |
"F \<le> F' \<longleftrightarrow> (\<forall>P. eventually P F' \<longrightarrow> eventually P F)" |
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
145 |
|
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
146 |
definition |
44195 | 147 |
"(F :: 'a filter) < F' \<longleftrightarrow> F \<le> F' \<and> \<not> F' \<le> F" |
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
148 |
|
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
149 |
definition |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
150 |
"top = Abs_filter (\<lambda>P. \<forall>x. P x)" |
36630 | 151 |
|
152 |
definition |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
153 |
"bot = Abs_filter (\<lambda>P. True)" |
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
154 |
|
36630 | 155 |
definition |
44195 | 156 |
"sup F F' = Abs_filter (\<lambda>P. eventually P F \<and> eventually P F')" |
36630 | 157 |
|
158 |
definition |
|
44195 | 159 |
"inf F F' = Abs_filter |
160 |
(\<lambda>P. \<exists>Q R. eventually Q F \<and> eventually R F' \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))" |
|
36630 | 161 |
|
162 |
definition |
|
44195 | 163 |
"Sup S = Abs_filter (\<lambda>P. \<forall>F\<in>S. eventually P F)" |
36630 | 164 |
|
165 |
definition |
|
44195 | 166 |
"Inf S = Sup {F::'a filter. \<forall>F'\<in>S. F \<le> F'}" |
36630 | 167 |
|
168 |
lemma eventually_top [simp]: "eventually P top \<longleftrightarrow> (\<forall>x. P x)" |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
169 |
unfolding top_filter_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
170 |
by (rule eventually_Abs_filter, rule is_filter.intro, auto) |
36630 | 171 |
|
36629
de62713aec6e
swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents:
36360
diff
changeset
|
172 |
lemma eventually_bot [simp]: "eventually P bot" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
173 |
unfolding bot_filter_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
174 |
by (subst eventually_Abs_filter, rule is_filter.intro, auto) |
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
175 |
|
36630 | 176 |
lemma eventually_sup: |
44195 | 177 |
"eventually P (sup F F') \<longleftrightarrow> eventually P F \<and> eventually P F'" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
178 |
unfolding sup_filter_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
179 |
by (rule eventually_Abs_filter, rule is_filter.intro) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
180 |
(auto elim!: eventually_rev_mp) |
36630 | 181 |
|
182 |
lemma eventually_inf: |
|
44195 | 183 |
"eventually P (inf F F') \<longleftrightarrow> |
184 |
(\<exists>Q R. eventually Q F \<and> eventually R F' \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))" |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
185 |
unfolding inf_filter_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
186 |
apply (rule eventually_Abs_filter, rule is_filter.intro) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
187 |
apply (fast intro: eventually_True) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
188 |
apply clarify |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
189 |
apply (intro exI conjI) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
190 |
apply (erule (1) eventually_conj) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
191 |
apply (erule (1) eventually_conj) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
192 |
apply simp |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
193 |
apply auto |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
194 |
done |
36630 | 195 |
|
196 |
lemma eventually_Sup: |
|
44195 | 197 |
"eventually P (Sup S) \<longleftrightarrow> (\<forall>F\<in>S. eventually P F)" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
198 |
unfolding Sup_filter_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
199 |
apply (rule eventually_Abs_filter, rule is_filter.intro) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
200 |
apply (auto intro: eventually_conj elim!: eventually_rev_mp) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
201 |
done |
36630 | 202 |
|
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
203 |
instance proof |
44195 | 204 |
fix F F' F'' :: "'a filter" and S :: "'a filter set" |
205 |
{ show "F < F' \<longleftrightarrow> F \<le> F' \<and> \<not> F' \<le> F" |
|
206 |
by (rule less_filter_def) } |
|
207 |
{ show "F \<le> F" |
|
208 |
unfolding le_filter_def by simp } |
|
209 |
{ assume "F \<le> F'" and "F' \<le> F''" thus "F \<le> F''" |
|
210 |
unfolding le_filter_def by simp } |
|
211 |
{ assume "F \<le> F'" and "F' \<le> F" thus "F = F'" |
|
212 |
unfolding le_filter_def filter_eq_iff by fast } |
|
213 |
{ show "F \<le> top" |
|
214 |
unfolding le_filter_def eventually_top by (simp add: always_eventually) } |
|
215 |
{ show "bot \<le> F" |
|
216 |
unfolding le_filter_def by simp } |
|
217 |
{ show "F \<le> sup F F'" and "F' \<le> sup F F'" |
|
218 |
unfolding le_filter_def eventually_sup by simp_all } |
|
219 |
{ assume "F \<le> F''" and "F' \<le> F''" thus "sup F F' \<le> F''" |
|
220 |
unfolding le_filter_def eventually_sup by simp } |
|
221 |
{ show "inf F F' \<le> F" and "inf F F' \<le> F'" |
|
222 |
unfolding le_filter_def eventually_inf by (auto intro: eventually_True) } |
|
223 |
{ assume "F \<le> F'" and "F \<le> F''" thus "F \<le> inf F' F''" |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
224 |
unfolding le_filter_def eventually_inf |
44195 | 225 |
by (auto elim!: eventually_mono intro: eventually_conj) } |
226 |
{ assume "F \<in> S" thus "F \<le> Sup S" |
|
227 |
unfolding le_filter_def eventually_Sup by simp } |
|
228 |
{ assume "\<And>F. F \<in> S \<Longrightarrow> F \<le> F'" thus "Sup S \<le> F'" |
|
229 |
unfolding le_filter_def eventually_Sup by simp } |
|
230 |
{ assume "F'' \<in> S" thus "Inf S \<le> F''" |
|
231 |
unfolding le_filter_def Inf_filter_def eventually_Sup Ball_def by simp } |
|
232 |
{ assume "\<And>F'. F' \<in> S \<Longrightarrow> F \<le> F'" thus "F \<le> Inf S" |
|
233 |
unfolding le_filter_def Inf_filter_def eventually_Sup Ball_def by simp } |
|
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
234 |
qed |
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
235 |
|
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
236 |
end |
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
237 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
238 |
lemma filter_leD: |
44195 | 239 |
"F \<le> F' \<Longrightarrow> eventually P F' \<Longrightarrow> eventually P F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
240 |
unfolding le_filter_def by simp |
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
241 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
242 |
lemma filter_leI: |
44195 | 243 |
"(\<And>P. eventually P F' \<Longrightarrow> eventually P F) \<Longrightarrow> F \<le> F'" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
244 |
unfolding le_filter_def by simp |
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
245 |
|
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
246 |
lemma eventually_False: |
44195 | 247 |
"eventually (\<lambda>x. False) F \<longleftrightarrow> F = bot" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
248 |
unfolding filter_eq_iff by (auto elim: eventually_rev_mp) |
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
249 |
|
44342
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
250 |
abbreviation (input) trivial_limit :: "'a filter \<Rightarrow> bool" |
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
251 |
where "trivial_limit F \<equiv> F = bot" |
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
252 |
|
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
253 |
lemma trivial_limit_def: "trivial_limit F \<longleftrightarrow> eventually (\<lambda>x. False) F" |
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
254 |
by (rule eventually_False [symmetric]) |
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
255 |
|
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
256 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
257 |
subsection {* Map function for filters *} |
36654 | 258 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
259 |
definition filtermap :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a filter \<Rightarrow> 'b filter" |
44195 | 260 |
where "filtermap f F = Abs_filter (\<lambda>P. eventually (\<lambda>x. P (f x)) F)" |
36654 | 261 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
262 |
lemma eventually_filtermap: |
44195 | 263 |
"eventually P (filtermap f F) = eventually (\<lambda>x. P (f x)) F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
264 |
unfolding filtermap_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
265 |
apply (rule eventually_Abs_filter) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
266 |
apply (rule is_filter.intro) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
267 |
apply (auto elim!: eventually_rev_mp) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
268 |
done |
36654 | 269 |
|
44195 | 270 |
lemma filtermap_ident: "filtermap (\<lambda>x. x) F = F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
271 |
by (simp add: filter_eq_iff eventually_filtermap) |
36654 | 272 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
273 |
lemma filtermap_filtermap: |
44195 | 274 |
"filtermap f (filtermap g F) = filtermap (\<lambda>x. f (g x)) F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
275 |
by (simp add: filter_eq_iff eventually_filtermap) |
36654 | 276 |
|
44195 | 277 |
lemma filtermap_mono: "F \<le> F' \<Longrightarrow> filtermap f F \<le> filtermap f F'" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
278 |
unfolding le_filter_def eventually_filtermap by simp |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
279 |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
280 |
lemma filtermap_bot [simp]: "filtermap f bot = bot" |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
281 |
by (simp add: filter_eq_iff eventually_filtermap) |
36654 | 282 |
|
50330
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
283 |
lemma filtermap_sup: "filtermap f (sup F1 F2) = sup (filtermap f F1) (filtermap f F2)" |
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
284 |
by (auto simp: filter_eq_iff eventually_filtermap eventually_sup) |
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
285 |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
286 |
subsection {* Order filters *} |
31392 | 287 |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
288 |
definition at_top :: "('a::order) filter" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
289 |
where "at_top = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<ge>k. P n)" |
31392 | 290 |
|
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
291 |
lemma eventually_at_top_linorder: "eventually P at_top \<longleftrightarrow> (\<exists>N::'a::linorder. \<forall>n\<ge>N. P n)" |
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
292 |
unfolding at_top_def |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
293 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
294 |
fix P Q :: "'a \<Rightarrow> bool" |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
295 |
assume "\<exists>i. \<forall>n\<ge>i. P n" and "\<exists>j. \<forall>n\<ge>j. Q n" |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
296 |
then obtain i j where "\<forall>n\<ge>i. P n" and "\<forall>n\<ge>j. Q n" by auto |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
297 |
then have "\<forall>n\<ge>max i j. P n \<and> Q n" by simp |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
298 |
then show "\<exists>k. \<forall>n\<ge>k. P n \<and> Q n" .. |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
299 |
qed auto |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
300 |
|
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
|
301 |
lemma eventually_ge_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
|
302 |
"eventually (\<lambda>x. (c::_::linorder) \<le> x) 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
|
303 |
unfolding eventually_at_top_linorder 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
|
304 |
|
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
305 |
lemma eventually_at_top_dense: "eventually P at_top \<longleftrightarrow> (\<exists>N::'a::dense_linorder. \<forall>n>N. P n)" |
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
306 |
unfolding eventually_at_top_linorder |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
307 |
proof safe |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
308 |
fix N assume "\<forall>n\<ge>N. P n" then show "\<exists>N. \<forall>n>N. P n" by (auto intro!: exI[of _ N]) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
309 |
next |
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
310 |
fix N assume "\<forall>n>N. P n" |
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
311 |
moreover from gt_ex[of N] guess y .. |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
312 |
ultimately show "\<exists>N. \<forall>n\<ge>N. P n" by (auto intro!: exI[of _ y]) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
313 |
qed |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
314 |
|
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
|
315 |
lemma eventually_gt_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
|
316 |
"eventually (\<lambda>x. (c::_::dense_linorder) < x) 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
|
317 |
unfolding eventually_at_top_dense 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
|
318 |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
319 |
definition at_bot :: "('a::order) filter" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
320 |
where "at_bot = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<le>k. P n)" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
321 |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
322 |
lemma eventually_at_bot_linorder: |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
323 |
fixes P :: "'a::linorder \<Rightarrow> bool" shows "eventually P at_bot \<longleftrightarrow> (\<exists>N. \<forall>n\<le>N. P n)" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
324 |
unfolding at_bot_def |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
325 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
326 |
fix P Q :: "'a \<Rightarrow> bool" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
327 |
assume "\<exists>i. \<forall>n\<le>i. P n" and "\<exists>j. \<forall>n\<le>j. Q n" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
328 |
then obtain i j where "\<forall>n\<le>i. P n" and "\<forall>n\<le>j. Q n" by auto |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
329 |
then have "\<forall>n\<le>min i j. P n \<and> Q n" by simp |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
330 |
then show "\<exists>k. \<forall>n\<le>k. P n \<and> Q n" .. |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
331 |
qed auto |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
332 |
|
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
|
333 |
lemma eventually_le_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
|
334 |
"eventually (\<lambda>x. x \<le> (c::_::linorder)) 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
|
335 |
unfolding eventually_at_bot_linorder 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
|
336 |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
337 |
lemma eventually_at_bot_dense: |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
338 |
fixes P :: "'a::dense_linorder \<Rightarrow> bool" shows "eventually P at_bot \<longleftrightarrow> (\<exists>N. \<forall>n<N. P n)" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
339 |
unfolding eventually_at_bot_linorder |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
340 |
proof safe |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
341 |
fix N assume "\<forall>n\<le>N. P n" then show "\<exists>N. \<forall>n<N. P n" by (auto intro!: exI[of _ N]) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
342 |
next |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
343 |
fix N assume "\<forall>n<N. P n" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
344 |
moreover from lt_ex[of N] guess y .. |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
345 |
ultimately show "\<exists>N. \<forall>n\<le>N. P n" by (auto intro!: exI[of _ y]) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
346 |
qed |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
347 |
|
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
|
348 |
lemma eventually_gt_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
|
349 |
"eventually (\<lambda>x. x < (c::_::dense_linorder)) 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
|
350 |
unfolding eventually_at_bot_dense 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
|
351 |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
352 |
subsection {* Sequentially *} |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
353 |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
354 |
abbreviation sequentially :: "nat filter" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
355 |
where "sequentially == at_top" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
356 |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
357 |
lemma sequentially_def: "sequentially = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<ge>k. P n)" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
358 |
unfolding at_top_def by simp |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
359 |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
360 |
lemma eventually_sequentially: |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
361 |
"eventually P sequentially \<longleftrightarrow> (\<exists>N. \<forall>n\<ge>N. P n)" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
362 |
by (rule eventually_at_top_linorder) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
363 |
|
44342
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
364 |
lemma sequentially_bot [simp, intro]: "sequentially \<noteq> bot" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
365 |
unfolding filter_eq_iff eventually_sequentially by auto |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
366 |
|
44342
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
367 |
lemmas trivial_limit_sequentially = sequentially_bot |
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
368 |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
369 |
lemma eventually_False_sequentially [simp]: |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
370 |
"\<not> eventually (\<lambda>n. False) sequentially" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
371 |
by (simp add: eventually_False) |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
372 |
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
373 |
lemma le_sequentially: |
44195 | 374 |
"F \<le> sequentially \<longleftrightarrow> (\<forall>N. eventually (\<lambda>n. N \<le> n) F)" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
375 |
unfolding le_filter_def eventually_sequentially |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
376 |
by (safe, fast, drule_tac x=N in spec, auto elim: eventually_rev_mp) |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
377 |
|
45892 | 378 |
lemma eventually_sequentiallyI: |
379 |
assumes "\<And>x. c \<le> x \<Longrightarrow> P x" |
|
380 |
shows "eventually P sequentially" |
|
381 |
using assms by (auto simp: eventually_sequentially) |
|
382 |
||
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
383 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
384 |
subsection {* Standard filters *} |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
385 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
386 |
definition within :: "'a filter \<Rightarrow> 'a set \<Rightarrow> 'a filter" (infixr "within" 70) |
44195 | 387 |
where "F within S = Abs_filter (\<lambda>P. eventually (\<lambda>x. x \<in> S \<longrightarrow> P x) F)" |
31392 | 388 |
|
44206
5e4a1664106e
locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents:
44205
diff
changeset
|
389 |
definition (in topological_space) nhds :: "'a \<Rightarrow> 'a filter" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
390 |
where "nhds a = Abs_filter (\<lambda>P. \<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))" |
36654 | 391 |
|
44206
5e4a1664106e
locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents:
44205
diff
changeset
|
392 |
definition (in topological_space) at :: "'a \<Rightarrow> 'a filter" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
393 |
where "at a = nhds a within - {a}" |
31447
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
394 |
|
50326 | 395 |
abbreviation at_right :: "'a\<Colon>{topological_space, order} \<Rightarrow> 'a filter" where |
396 |
"at_right x \<equiv> at x within {x <..}" |
|
397 |
||
398 |
abbreviation at_left :: "'a\<Colon>{topological_space, order} \<Rightarrow> 'a filter" where |
|
399 |
"at_left x \<equiv> at x within {..< x}" |
|
400 |
||
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
401 |
definition at_infinity :: "'a::real_normed_vector filter" where |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
402 |
"at_infinity = Abs_filter (\<lambda>P. \<exists>r. \<forall>x. r \<le> norm x \<longrightarrow> P x)" |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
403 |
|
31392 | 404 |
lemma eventually_within: |
44195 | 405 |
"eventually P (F within S) = eventually (\<lambda>x. x \<in> S \<longrightarrow> P x) F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
406 |
unfolding within_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
407 |
by (rule eventually_Abs_filter, rule is_filter.intro) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
408 |
(auto elim!: eventually_rev_mp) |
31392 | 409 |
|
45031 | 410 |
lemma within_UNIV [simp]: "F within UNIV = F" |
411 |
unfolding filter_eq_iff eventually_within by simp |
|
412 |
||
413 |
lemma within_empty [simp]: "F within {} = bot" |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
414 |
unfolding filter_eq_iff eventually_within by simp |
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
415 |
|
50347 | 416 |
lemma within_within_eq: "(F within S) within T = F within (S \<inter> T)" |
417 |
by (auto simp: filter_eq_iff eventually_within elim: eventually_elim1) |
|
418 |
||
419 |
lemma at_within_eq: "at x within T = nhds x within (T - {x})" |
|
420 |
unfolding at_def within_within_eq by (simp add: ac_simps Diff_eq) |
|
421 |
||
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
422 |
lemma within_le: "F within S \<le> F" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
423 |
unfolding le_filter_def eventually_within by (auto elim: eventually_elim1) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
424 |
|
50323 | 425 |
lemma le_withinI: "F \<le> F' \<Longrightarrow> eventually (\<lambda>x. x \<in> S) F \<Longrightarrow> F \<le> F' within S" |
426 |
unfolding le_filter_def eventually_within by (auto elim: eventually_elim2) |
|
427 |
||
428 |
lemma le_within_iff: "eventually (\<lambda>x. x \<in> S) F \<Longrightarrow> F \<le> F' within S \<longleftrightarrow> F \<le> F'" |
|
429 |
by (blast intro: within_le le_withinI order_trans) |
|
430 |
||
36654 | 431 |
lemma eventually_nhds: |
432 |
"eventually P (nhds a) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))" |
|
433 |
unfolding nhds_def |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
434 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
36654 | 435 |
have "open UNIV \<and> a \<in> UNIV \<and> (\<forall>x\<in>UNIV. True)" by simp |
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
436 |
thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. True)" .. |
36358
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
437 |
next |
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
438 |
fix P Q |
36654 | 439 |
assume "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)" |
440 |
and "\<exists>T. open T \<and> a \<in> T \<and> (\<forall>x\<in>T. Q x)" |
|
36358
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
441 |
then obtain S T where |
36654 | 442 |
"open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)" |
443 |
"open T \<and> a \<in> T \<and> (\<forall>x\<in>T. Q x)" by auto |
|
444 |
hence "open (S \<inter> T) \<and> a \<in> S \<inter> T \<and> (\<forall>x\<in>(S \<inter> T). P x \<and> Q x)" |
|
36358
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
445 |
by (simp add: open_Int) |
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
446 |
thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x \<and> Q x)" .. |
36358
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
447 |
qed auto |
31447
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
448 |
|
36656
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
449 |
lemma eventually_nhds_metric: |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
450 |
"eventually P (nhds a) \<longleftrightarrow> (\<exists>d>0. \<forall>x. dist x a < d \<longrightarrow> P x)" |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
451 |
unfolding eventually_nhds open_dist |
31447
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
452 |
apply safe |
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
453 |
apply fast |
31492
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents:
31488
diff
changeset
|
454 |
apply (rule_tac x="{x. dist x a < d}" in exI, simp) |
31447
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
455 |
apply clarsimp |
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
456 |
apply (rule_tac x="d - dist x a" in exI, clarsimp) |
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
457 |
apply (simp only: less_diff_eq) |
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
458 |
apply (erule le_less_trans [OF dist_triangle]) |
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
459 |
done |
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
460 |
|
44571 | 461 |
lemma nhds_neq_bot [simp]: "nhds a \<noteq> bot" |
462 |
unfolding trivial_limit_def eventually_nhds by simp |
|
463 |
||
36656
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
464 |
lemma eventually_at_topological: |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
465 |
"eventually P (at a) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. x \<noteq> a \<longrightarrow> P x))" |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
466 |
unfolding at_def eventually_within eventually_nhds by simp |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
467 |
|
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
468 |
lemma eventually_at: |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
469 |
fixes a :: "'a::metric_space" |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
470 |
shows "eventually P (at a) \<longleftrightarrow> (\<exists>d>0. \<forall>x. x \<noteq> a \<and> dist x a < d \<longrightarrow> P x)" |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
471 |
unfolding at_def eventually_within eventually_nhds_metric by auto |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
472 |
|
50327 | 473 |
lemma eventually_within_less: (* COPY FROM Topo/eventually_within *) |
474 |
"eventually P (at a within S) \<longleftrightarrow> (\<exists>d>0. \<forall>x\<in>S. 0 < dist x a \<and> dist x a < d \<longrightarrow> P x)" |
|
475 |
unfolding eventually_within eventually_at dist_nz by auto |
|
476 |
||
477 |
lemma eventually_within_le: (* COPY FROM Topo/eventually_within_le *) |
|
478 |
"eventually P (at a within S) \<longleftrightarrow> (\<exists>d>0. \<forall>x\<in>S. 0 < dist x a \<and> dist x a <= d \<longrightarrow> P x)" |
|
479 |
unfolding eventually_within_less by auto (metis dense order_le_less_trans) |
|
480 |
||
44571 | 481 |
lemma at_eq_bot_iff: "at a = bot \<longleftrightarrow> open {a}" |
482 |
unfolding trivial_limit_def eventually_at_topological |
|
483 |
by (safe, case_tac "S = {a}", simp, fast, fast) |
|
484 |
||
485 |
lemma at_neq_bot [simp]: "at (a::'a::perfect_space) \<noteq> bot" |
|
486 |
by (simp add: at_eq_bot_iff not_open_singleton) |
|
487 |
||
50331 | 488 |
lemma trivial_limit_at_left_real [simp]: (* maybe generalize type *) |
489 |
"\<not> trivial_limit (at_left (x::real))" |
|
490 |
unfolding trivial_limit_def eventually_within_le |
|
491 |
apply clarsimp |
|
492 |
apply (rule_tac x="x - d/2" in bexI) |
|
493 |
apply (auto simp: dist_real_def) |
|
494 |
done |
|
495 |
||
496 |
lemma trivial_limit_at_right_real [simp]: (* maybe generalize type *) |
|
497 |
"\<not> trivial_limit (at_right (x::real))" |
|
498 |
unfolding trivial_limit_def eventually_within_le |
|
499 |
apply clarsimp |
|
500 |
apply (rule_tac x="x + d/2" in bexI) |
|
501 |
apply (auto simp: dist_real_def) |
|
502 |
done |
|
503 |
||
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
504 |
lemma eventually_at_infinity: |
50325 | 505 |
"eventually P at_infinity \<longleftrightarrow> (\<exists>b. \<forall>x. b \<le> norm x \<longrightarrow> P x)" |
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
506 |
unfolding at_infinity_def |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
507 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
508 |
fix P Q :: "'a \<Rightarrow> bool" |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
509 |
assume "\<exists>r. \<forall>x. r \<le> norm x \<longrightarrow> P x" and "\<exists>s. \<forall>x. s \<le> norm x \<longrightarrow> Q x" |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
510 |
then obtain r s where |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
511 |
"\<forall>x. r \<le> norm x \<longrightarrow> P x" and "\<forall>x. s \<le> norm x \<longrightarrow> Q x" by auto |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
512 |
then have "\<forall>x. max r s \<le> norm x \<longrightarrow> P x \<and> Q x" by simp |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
513 |
then show "\<exists>r. \<forall>x. r \<le> norm x \<longrightarrow> P x \<and> Q x" .. |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
514 |
qed auto |
31392 | 515 |
|
50325 | 516 |
lemma at_infinity_eq_at_top_bot: |
517 |
"(at_infinity \<Colon> real filter) = sup at_top at_bot" |
|
518 |
unfolding sup_filter_def at_infinity_def eventually_at_top_linorder eventually_at_bot_linorder |
|
519 |
proof (intro arg_cong[where f=Abs_filter] ext iffI) |
|
520 |
fix P :: "real \<Rightarrow> bool" assume "\<exists>r. \<forall>x. r \<le> norm x \<longrightarrow> P x" |
|
521 |
then guess r .. |
|
522 |
then have "(\<forall>x\<ge>r. P x) \<and> (\<forall>x\<le>-r. P x)" by auto |
|
523 |
then show "(\<exists>r. \<forall>x\<ge>r. P x) \<and> (\<exists>r. \<forall>x\<le>r. P x)" by auto |
|
524 |
next |
|
525 |
fix P :: "real \<Rightarrow> bool" assume "(\<exists>r. \<forall>x\<ge>r. P x) \<and> (\<exists>r. \<forall>x\<le>r. P x)" |
|
526 |
then obtain p q where "\<forall>x\<ge>p. P x" "\<forall>x\<le>q. P x" by auto |
|
527 |
then show "\<exists>r. \<forall>x. r \<le> norm x \<longrightarrow> P x" |
|
528 |
by (intro exI[of _ "max p (-q)"]) |
|
529 |
(auto simp: abs_real_def) |
|
530 |
qed |
|
531 |
||
532 |
lemma at_top_le_at_infinity: |
|
533 |
"at_top \<le> (at_infinity :: real filter)" |
|
534 |
unfolding at_infinity_eq_at_top_bot by simp |
|
535 |
||
536 |
lemma at_bot_le_at_infinity: |
|
537 |
"at_bot \<le> (at_infinity :: real filter)" |
|
538 |
unfolding at_infinity_eq_at_top_bot by simp |
|
539 |
||
31355 | 540 |
subsection {* Boundedness *} |
541 |
||
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
542 |
definition Bfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a filter \<Rightarrow> bool" |
44195 | 543 |
where "Bfun f F = (\<exists>K>0. eventually (\<lambda>x. norm (f x) \<le> K) F)" |
31355 | 544 |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
545 |
lemma BfunI: |
44195 | 546 |
assumes K: "eventually (\<lambda>x. norm (f x) \<le> K) F" shows "Bfun f F" |
31355 | 547 |
unfolding Bfun_def |
548 |
proof (intro exI conjI allI) |
|
549 |
show "0 < max K 1" by simp |
|
550 |
next |
|
44195 | 551 |
show "eventually (\<lambda>x. norm (f x) \<le> max K 1) F" |
31355 | 552 |
using K by (rule eventually_elim1, simp) |
553 |
qed |
|
554 |
||
555 |
lemma BfunE: |
|
44195 | 556 |
assumes "Bfun f F" |
557 |
obtains B where "0 < B" and "eventually (\<lambda>x. norm (f x) \<le> B) F" |
|
31355 | 558 |
using assms unfolding Bfun_def by fast |
559 |
||
560 |
||
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
561 |
subsection {* Convergence to Zero *} |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
562 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
563 |
definition Zfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a filter \<Rightarrow> bool" |
44195 | 564 |
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
|
565 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
566 |
lemma ZfunI: |
44195 | 567 |
"(\<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
|
568 |
unfolding Zfun_def by simp |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
569 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
570 |
lemma ZfunD: |
44195 | 571 |
"\<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
|
572 |
unfolding Zfun_def by simp |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
573 |
|
31355 | 574 |
lemma Zfun_ssubst: |
44195 | 575 |
"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
|
576 |
unfolding Zfun_def by (auto elim!: eventually_rev_mp) |
31355 | 577 |
|
44195 | 578 |
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
|
579 |
unfolding Zfun_def by simp |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
580 |
|
44195 | 581 |
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
|
582 |
unfolding Zfun_def by simp |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
583 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
584 |
lemma Zfun_imp_Zfun: |
44195 | 585 |
assumes f: "Zfun f F" |
586 |
assumes g: "eventually (\<lambda>x. norm (g x) \<le> norm (f x) * K) F" |
|
587 |
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
|
588 |
proof (cases) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
589 |
assume K: "0 < K" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
590 |
show ?thesis |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
591 |
proof (rule ZfunI) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
592 |
fix r::real assume "0 < r" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
593 |
hence "0 < r / K" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
594 |
using K by (rule divide_pos_pos) |
44195 | 595 |
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
|
596 |
using ZfunD [OF f] by fast |
44195 | 597 |
with g show "eventually (\<lambda>x. norm (g x) < r) F" |
46887 | 598 |
proof eventually_elim |
599 |
case (elim x) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
600 |
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
|
601 |
by (simp add: pos_less_divide_eq K) |
46887 | 602 |
thus ?case |
603 |
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
|
604 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
605 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
606 |
next |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
607 |
assume "\<not> 0 < K" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
608 |
hence K: "K \<le> 0" by (simp only: not_less) |
31355 | 609 |
show ?thesis |
610 |
proof (rule ZfunI) |
|
611 |
fix r :: real |
|
612 |
assume "0 < r" |
|
44195 | 613 |
from g show "eventually (\<lambda>x. norm (g x) < r) F" |
46887 | 614 |
proof eventually_elim |
615 |
case (elim x) |
|
616 |
also have "norm (f x) * K \<le> norm (f x) * 0" |
|
31355 | 617 |
using K norm_ge_zero by (rule mult_left_mono) |
46887 | 618 |
finally show ?case |
31355 | 619 |
using `0 < r` by simp |
620 |
qed |
|
621 |
qed |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
622 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
623 |
|
44195 | 624 |
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
|
625 |
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
|
626 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
627 |
lemma Zfun_add: |
44195 | 628 |
assumes f: "Zfun f F" and g: "Zfun g F" |
629 |
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
|
630 |
proof (rule ZfunI) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
631 |
fix r::real assume "0 < r" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
632 |
hence r: "0 < r / 2" by simp |
44195 | 633 |
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
|
634 |
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
|
635 |
moreover |
44195 | 636 |
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
|
637 |
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
|
638 |
ultimately |
44195 | 639 |
show "eventually (\<lambda>x. norm (f x + g x) < r) F" |
46887 | 640 |
proof eventually_elim |
641 |
case (elim x) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
642 |
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
|
643 |
by (rule norm_triangle_ineq) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
644 |
also have "\<dots> < r/2 + r/2" |
46887 | 645 |
using elim by (rule add_strict_mono) |
646 |
finally show ?case |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
647 |
by simp |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
648 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
649 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
650 |
|
44195 | 651 |
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
|
652 |
unfolding Zfun_def by simp |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
653 |
|
44195 | 654 |
lemma Zfun_diff: "\<lbrakk>Zfun f F; Zfun g F\<rbrakk> \<Longrightarrow> 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
|
655 |
by (simp only: diff_minus Zfun_add Zfun_minus) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
656 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
657 |
lemma (in bounded_linear) Zfun: |
44195 | 658 |
assumes g: "Zfun g F" |
659 |
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
|
660 |
proof - |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
661 |
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
|
662 |
using bounded by fast |
44195 | 663 |
then have "eventually (\<lambda>x. norm (f (g x)) \<le> norm (g x) * K) F" |
31355 | 664 |
by simp |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
665 |
with g show ?thesis |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
666 |
by (rule Zfun_imp_Zfun) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
667 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
668 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
669 |
lemma (in bounded_bilinear) Zfun: |
44195 | 670 |
assumes f: "Zfun f F" |
671 |
assumes g: "Zfun g F" |
|
672 |
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
|
673 |
proof (rule ZfunI) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
674 |
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
|
675 |
obtain K where K: "0 < K" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
676 |
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
|
677 |
using pos_bounded by fast |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
678 |
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
|
679 |
by (rule positive_imp_inverse_positive) |
44195 | 680 |
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
|
681 |
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
|
682 |
moreover |
44195 | 683 |
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
|
684 |
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
|
685 |
ultimately |
44195 | 686 |
show "eventually (\<lambda>x. norm (f x ** g x) < r) F" |
46887 | 687 |
proof eventually_elim |
688 |
case (elim x) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
689 |
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
|
690 |
by (rule norm_le) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
691 |
also have "norm (f x) * norm (g x) * K < r * inverse K * K" |
46887 | 692 |
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
|
693 |
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
|
694 |
by simp |
46887 | 695 |
finally show ?case . |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
696 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
697 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
698 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
699 |
lemma (in bounded_bilinear) Zfun_left: |
44195 | 700 |
"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
|
701 |
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
|
702 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
703 |
lemma (in bounded_bilinear) Zfun_right: |
44195 | 704 |
"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
|
705 |
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
|
706 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
707 |
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
|
708 |
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
|
709 |
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
|
710 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
711 |
|
31902 | 712 |
subsection {* Limits *} |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
713 |
|
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
714 |
definition filterlim :: "('a \<Rightarrow> 'b) \<Rightarrow> 'b filter \<Rightarrow> 'a filter \<Rightarrow> bool" where |
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
715 |
"filterlim f F2 F1 \<longleftrightarrow> filtermap f F1 \<le> F2" |
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
716 |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
717 |
syntax |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
718 |
"_LIM" :: "pttrns \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'a \<Rightarrow> bool" ("(3LIM (_)/ (_)./ (_) :> (_))" [1000, 10, 0, 10] 10) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
719 |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
720 |
translations |
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
721 |
"LIM x F1. f :> F2" == "CONST filterlim (%x. f) F2 F1" |
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
722 |
|
50325 | 723 |
lemma filterlim_iff: |
724 |
"(LIM x F1. f x :> F2) \<longleftrightarrow> (\<forall>P. eventually P F2 \<longrightarrow> eventually (\<lambda>x. P (f x)) F1)" |
|
725 |
unfolding filterlim_def le_filter_def eventually_filtermap .. |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
726 |
|
50327 | 727 |
lemma filterlim_compose: |
50323 | 728 |
"filterlim g F3 F2 \<Longrightarrow> filterlim f F2 F1 \<Longrightarrow> filterlim (\<lambda>x. g (f x)) F3 F1" |
729 |
unfolding filterlim_def filtermap_filtermap[symmetric] by (metis filtermap_mono order_trans) |
|
730 |
||
50327 | 731 |
lemma filterlim_mono: |
50323 | 732 |
"filterlim f F2 F1 \<Longrightarrow> F2 \<le> F2' \<Longrightarrow> F1' \<le> F1 \<Longrightarrow> filterlim f F2' F1'" |
733 |
unfolding filterlim_def by (metis filtermap_mono order_trans) |
|
734 |
||
50419 | 735 |
lemma filterlim_ident: "LIM x F. x :> F" |
736 |
by (simp add: filterlim_def filtermap_ident) |
|
737 |
||
50327 | 738 |
lemma filterlim_cong: |
739 |
"F1 = F1' \<Longrightarrow> F2 = F2' \<Longrightarrow> eventually (\<lambda>x. f x = g x) F2 \<Longrightarrow> filterlim f F1 F2 = filterlim g F1' F2'" |
|
740 |
by (auto simp: filterlim_def le_filter_def eventually_filtermap elim: eventually_elim2) |
|
741 |
||
50325 | 742 |
lemma filterlim_within: |
743 |
"(LIM x F1. f x :> F2 within S) \<longleftrightarrow> (eventually (\<lambda>x. f x \<in> S) F1 \<and> (LIM x F1. f x :> F2))" |
|
744 |
unfolding filterlim_def |
|
745 |
proof safe |
|
746 |
assume "filtermap f F1 \<le> F2 within S" then show "eventually (\<lambda>x. f x \<in> S) F1" |
|
747 |
by (auto simp: le_filter_def eventually_filtermap eventually_within elim!: allE[of _ "\<lambda>x. x \<in> S"]) |
|
748 |
qed (auto intro: within_le order_trans simp: le_within_iff eventually_filtermap) |
|
749 |
||
50330
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
750 |
lemma filterlim_filtermap: "filterlim f F1 (filtermap g F2) = filterlim (\<lambda>x. f (g x)) F1 F2" |
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
751 |
unfolding filterlim_def filtermap_filtermap .. |
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
752 |
|
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
753 |
lemma filterlim_sup: |
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
754 |
"filterlim f F F1 \<Longrightarrow> filterlim f F F2 \<Longrightarrow> filterlim f F (sup F1 F2)" |
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
755 |
unfolding filterlim_def filtermap_sup by auto |
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
756 |
|
50331 | 757 |
lemma filterlim_Suc: "filterlim Suc sequentially sequentially" |
758 |
by (simp add: filterlim_iff eventually_sequentially) (metis le_Suc_eq) |
|
759 |
||
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
760 |
abbreviation (in topological_space) |
44206
5e4a1664106e
locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents:
44205
diff
changeset
|
761 |
tendsto :: "('b \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'b filter \<Rightarrow> bool" (infixr "--->" 55) where |
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
762 |
"(f ---> l) F \<equiv> filterlim f (nhds l) F" |
45892 | 763 |
|
31902 | 764 |
ML {* |
765 |
structure Tendsto_Intros = Named_Thms |
|
766 |
( |
|
45294 | 767 |
val name = @{binding tendsto_intros} |
31902 | 768 |
val description = "introduction rules for tendsto" |
769 |
) |
|
31565 | 770 |
*} |
771 |
||
31902 | 772 |
setup Tendsto_Intros.setup |
31565 | 773 |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
774 |
lemma tendsto_def: "(f ---> l) F \<longleftrightarrow> (\<forall>S. open S \<longrightarrow> l \<in> S \<longrightarrow> eventually (\<lambda>x. f x \<in> S) F)" |
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
775 |
unfolding filterlim_def |
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
776 |
proof safe |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
777 |
fix S assume "open S" "l \<in> S" "filtermap f F \<le> nhds l" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
778 |
then show "eventually (\<lambda>x. f x \<in> S) F" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
779 |
unfolding eventually_nhds eventually_filtermap le_filter_def |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
780 |
by (auto elim!: allE[of _ "\<lambda>x. x \<in> S"] eventually_rev_mp) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
781 |
qed (auto elim!: eventually_rev_mp simp: eventually_nhds eventually_filtermap le_filter_def) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
782 |
|
50325 | 783 |
lemma filterlim_at: |
784 |
"(LIM x F. f x :> at b) \<longleftrightarrow> (eventually (\<lambda>x. f x \<noteq> b) F \<and> (f ---> b) F)" |
|
785 |
by (simp add: at_def filterlim_within) |
|
786 |
||
44195 | 787 |
lemma tendsto_mono: "F \<le> F' \<Longrightarrow> (f ---> l) F' \<Longrightarrow> (f ---> l) F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
788 |
unfolding tendsto_def le_filter_def by fast |
36656
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
789 |
|
31488 | 790 |
lemma topological_tendstoI: |
44195 | 791 |
"(\<And>S. open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F) |
792 |
\<Longrightarrow> (f ---> l) F" |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
793 |
unfolding tendsto_def by auto |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
794 |
|
31488 | 795 |
lemma topological_tendstoD: |
44195 | 796 |
"(f ---> l) F \<Longrightarrow> open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F" |
31488 | 797 |
unfolding tendsto_def by auto |
798 |
||
799 |
lemma tendstoI: |
|
44195 | 800 |
assumes "\<And>e. 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F" |
801 |
shows "(f ---> l) F" |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
802 |
apply (rule topological_tendstoI) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
803 |
apply (simp add: open_dist) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
804 |
apply (drule (1) bspec, clarify) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
805 |
apply (drule assms) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
806 |
apply (erule eventually_elim1, simp) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
807 |
done |
31488 | 808 |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
809 |
lemma tendstoD: |
44195 | 810 |
"(f ---> l) F \<Longrightarrow> 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
811 |
apply (drule_tac S="{x. dist x l < e}" in topological_tendstoD) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
812 |
apply (clarsimp simp add: open_dist) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
813 |
apply (rule_tac x="e - dist x l" in exI, clarsimp) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
814 |
apply (simp only: less_diff_eq) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
815 |
apply (erule le_less_trans [OF dist_triangle]) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
816 |
apply simp |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
817 |
apply simp |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
818 |
done |
31488 | 819 |
|
820 |
lemma tendsto_iff: |
|
44195 | 821 |
"(f ---> l) F \<longleftrightarrow> (\<forall>e>0. eventually (\<lambda>x. dist (f x) l < e) F)" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
822 |
using tendstoI tendstoD by fast |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
823 |
|
44195 | 824 |
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
|
825 |
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
|
826 |
|
45031 | 827 |
lemma tendsto_bot [simp]: "(f ---> a) bot" |
828 |
unfolding tendsto_def by simp |
|
829 |
||
31565 | 830 |
lemma tendsto_ident_at [tendsto_intros]: "((\<lambda>x. x) ---> a) (at a)" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
831 |
unfolding tendsto_def eventually_at_topological by auto |
31565 | 832 |
|
833 |
lemma tendsto_ident_at_within [tendsto_intros]: |
|
36655 | 834 |
"((\<lambda>x. x) ---> a) (at a within S)" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
835 |
unfolding tendsto_def eventually_within eventually_at_topological by auto |
31565 | 836 |
|
44195 | 837 |
lemma tendsto_const [tendsto_intros]: "((\<lambda>x. k) ---> k) F" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
838 |
by (simp add: tendsto_def) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
839 |
|
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
840 |
lemma tendsto_unique: |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
841 |
fixes f :: "'a \<Rightarrow> 'b::t2_space" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
842 |
assumes "\<not> trivial_limit F" and "(f ---> a) F" and "(f ---> b) F" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
843 |
shows "a = b" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
844 |
proof (rule ccontr) |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
845 |
assume "a \<noteq> b" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
846 |
obtain U V where "open U" "open V" "a \<in> U" "b \<in> V" "U \<inter> V = {}" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
847 |
using hausdorff [OF `a \<noteq> b`] by fast |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
848 |
have "eventually (\<lambda>x. f x \<in> U) F" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
849 |
using `(f ---> a) F` `open U` `a \<in> U` by (rule topological_tendstoD) |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
850 |
moreover |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
851 |
have "eventually (\<lambda>x. f x \<in> V) F" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
852 |
using `(f ---> b) F` `open V` `b \<in> V` by (rule topological_tendstoD) |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
853 |
ultimately |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
854 |
have "eventually (\<lambda>x. False) F" |
46887 | 855 |
proof eventually_elim |
856 |
case (elim x) |
|
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
857 |
hence "f x \<in> U \<inter> V" by simp |
46887 | 858 |
with `U \<inter> V = {}` show ?case by simp |
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
859 |
qed |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
860 |
with `\<not> trivial_limit F` show "False" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
861 |
by (simp add: trivial_limit_def) |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
862 |
qed |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
863 |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
864 |
lemma tendsto_const_iff: |
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
865 |
fixes a b :: "'a::t2_space" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
866 |
assumes "\<not> trivial_limit F" shows "((\<lambda>x. a) ---> b) F \<longleftrightarrow> a = b" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
867 |
by (safe intro!: tendsto_const tendsto_unique [OF assms tendsto_const]) |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
868 |
|
50323 | 869 |
lemma tendsto_at_iff_tendsto_nhds: |
870 |
"(g ---> g l) (at l) \<longleftrightarrow> (g ---> g l) (nhds l)" |
|
871 |
unfolding tendsto_def at_def eventually_within |
|
872 |
by (intro ext all_cong imp_cong) (auto elim!: eventually_elim1) |
|
873 |
||
44218 | 874 |
lemma tendsto_compose: |
50323 | 875 |
"(g ---> g l) (at l) \<Longrightarrow> (f ---> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> g l) F" |
876 |
unfolding tendsto_at_iff_tendsto_nhds by (rule filterlim_compose[of g]) |
|
44218 | 877 |
|
44253
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
878 |
lemma tendsto_compose_eventually: |
50325 | 879 |
"(g ---> m) (at l) \<Longrightarrow> (f ---> l) F \<Longrightarrow> eventually (\<lambda>x. f x \<noteq> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> m) F" |
880 |
by (rule filterlim_compose[of g _ "at l"]) (auto simp add: filterlim_at) |
|
44253
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
881 |
|
44251 | 882 |
lemma metric_tendsto_imp_tendsto: |
883 |
assumes f: "(f ---> a) F" |
|
884 |
assumes le: "eventually (\<lambda>x. dist (g x) b \<le> dist (f x) a) F" |
|
885 |
shows "(g ---> b) F" |
|
886 |
proof (rule tendstoI) |
|
887 |
fix e :: real assume "0 < e" |
|
888 |
with f have "eventually (\<lambda>x. dist (f x) a < e) F" by (rule tendstoD) |
|
889 |
with le show "eventually (\<lambda>x. dist (g x) b < e) F" |
|
890 |
using le_less_trans by (rule eventually_elim2) |
|
891 |
qed |
|
892 |
||
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
893 |
subsubsection {* Distance and norms *} |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
894 |
|
31565 | 895 |
lemma tendsto_dist [tendsto_intros]: |
44195 | 896 |
assumes f: "(f ---> l) F" and g: "(g ---> m) F" |
897 |
shows "((\<lambda>x. dist (f x) (g x)) ---> dist l m) F" |
|
31565 | 898 |
proof (rule tendstoI) |
899 |
fix e :: real assume "0 < e" |
|
900 |
hence e2: "0 < e/2" by simp |
|
901 |
from tendstoD [OF f e2] tendstoD [OF g e2] |
|
44195 | 902 |
show "eventually (\<lambda>x. dist (dist (f x) (g x)) (dist l m) < e) F" |
46887 | 903 |
proof (eventually_elim) |
904 |
case (elim x) |
|
31565 | 905 |
then show "dist (dist (f x) (g x)) (dist l m) < e" |
906 |
unfolding dist_real_def |
|
907 |
using dist_triangle2 [of "f x" "g x" "l"] |
|
908 |
using dist_triangle2 [of "g x" "l" "m"] |
|
909 |
using dist_triangle3 [of "l" "m" "f x"] |
|
910 |
using dist_triangle [of "f x" "m" "g x"] |
|
911 |
by arith |
|
912 |
qed |
|
913 |
qed |
|
914 |
||
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
915 |
lemma norm_conv_dist: "norm x = dist x 0" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
916 |
unfolding dist_norm by simp |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
917 |
|
31565 | 918 |
lemma tendsto_norm [tendsto_intros]: |
44195 | 919 |
"(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
|
920 |
unfolding norm_conv_dist by (intro tendsto_intros) |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
921 |
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
922 |
lemma tendsto_norm_zero: |
44195 | 923 |
"(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
|
924 |
by (drule tendsto_norm, simp) |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
925 |
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
926 |
lemma tendsto_norm_zero_cancel: |
44195 | 927 |
"((\<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
|
928 |
unfolding tendsto_iff dist_norm by simp |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
929 |
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
930 |
lemma tendsto_norm_zero_iff: |
44195 | 931 |
"((\<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
|
932 |
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
|
933 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
934 |
lemma tendsto_rabs [tendsto_intros]: |
44195 | 935 |
"(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
|
936 |
by (fold real_norm_def, rule tendsto_norm) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
937 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
938 |
lemma tendsto_rabs_zero: |
44195 | 939 |
"(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
|
940 |
by (fold real_norm_def, rule tendsto_norm_zero) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
941 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
942 |
lemma tendsto_rabs_zero_cancel: |
44195 | 943 |
"((\<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
|
944 |
by (fold real_norm_def, rule tendsto_norm_zero_cancel) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
945 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
946 |
lemma tendsto_rabs_zero_iff: |
44195 | 947 |
"((\<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
|
948 |
by (fold real_norm_def, rule tendsto_norm_zero_iff) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
949 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
950 |
subsubsection {* Addition and subtraction *} |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
951 |
|
31565 | 952 |
lemma tendsto_add [tendsto_intros]: |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
953 |
fixes a b :: "'a::real_normed_vector" |
44195 | 954 |
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
|
955 |
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
|
956 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
957 |
lemma tendsto_add_zero: |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
958 |
fixes f g :: "'a::type \<Rightarrow> 'b::real_normed_vector" |
44195 | 959 |
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
|
960 |
by (drule (1) tendsto_add, simp) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
961 |
|
31565 | 962 |
lemma tendsto_minus [tendsto_intros]: |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
963 |
fixes a :: "'a::real_normed_vector" |
44195 | 964 |
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
|
965 |
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
|
966 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
967 |
lemma tendsto_minus_cancel: |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
968 |
fixes a :: "'a::real_normed_vector" |
44195 | 969 |
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
|
970 |
by (drule tendsto_minus, simp) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
971 |
|
50330
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
972 |
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
|
973 |
"(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
|
974 |
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
|
975 |
by auto |
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
hoelzl
parents:
50327
diff
changeset
|
976 |
|
31565 | 977 |
lemma tendsto_diff [tendsto_intros]: |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
978 |
fixes a b :: "'a::real_normed_vector" |
44195 | 979 |
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
|
980 |
by (simp add: diff_minus tendsto_add tendsto_minus) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
981 |
|
31588 | 982 |
lemma tendsto_setsum [tendsto_intros]: |
983 |
fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::real_normed_vector" |
|
44195 | 984 |
assumes "\<And>i. i \<in> S \<Longrightarrow> (f i ---> a i) F" |
985 |
shows "((\<lambda>x. \<Sum>i\<in>S. f i x) ---> (\<Sum>i\<in>S. a i)) F" |
|
31588 | 986 |
proof (cases "finite S") |
987 |
assume "finite S" thus ?thesis using assms |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
988 |
by (induct, simp add: tendsto_const, simp add: tendsto_add) |
31588 | 989 |
next |
990 |
assume "\<not> finite S" thus ?thesis |
|
991 |
by (simp add: tendsto_const) |
|
992 |
qed |
|
993 |
||
45892 | 994 |
lemma real_tendsto_sandwich: |
995 |
fixes f g h :: "'a \<Rightarrow> real" |
|
996 |
assumes ev: "eventually (\<lambda>n. f n \<le> g n) net" "eventually (\<lambda>n. g n \<le> h n) net" |
|
997 |
assumes lim: "(f ---> c) net" "(h ---> c) net" |
|
998 |
shows "(g ---> c) net" |
|
999 |
proof - |
|
1000 |
have "((\<lambda>n. g n - f n) ---> 0) net" |
|
1001 |
proof (rule metric_tendsto_imp_tendsto) |
|
1002 |
show "eventually (\<lambda>n. dist (g n - f n) 0 \<le> dist (h n - f n) 0) net" |
|
1003 |
using ev by (rule eventually_elim2) (simp add: dist_real_def) |
|
1004 |
show "((\<lambda>n. h n - f n) ---> 0) net" |
|
1005 |
using tendsto_diff[OF lim(2,1)] by simp |
|
1006 |
qed |
|
1007 |
from tendsto_add[OF this lim(1)] show ?thesis by simp |
|
1008 |
qed |
|
1009 |
||
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1010 |
subsubsection {* Linear operators and multiplication *} |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1011 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
1012 |
lemma (in bounded_linear) tendsto: |
44195 | 1013 |
"(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
|
1014 |
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
|
1015 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1016 |
lemma (in bounded_linear) tendsto_zero: |
44195 | 1017 |
"(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
|
1018 |
by (drule tendsto, simp only: zero) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1019 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
1020 |
lemma (in bounded_bilinear) tendsto: |
44195 | 1021 |
"\<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
|
1022 |
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
|
1023 |
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
|
1024 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1025 |
lemma (in bounded_bilinear) tendsto_zero: |
44195 | 1026 |
assumes f: "(f ---> 0) F" |
1027 |
assumes g: "(g ---> 0) F" |
|
1028 |
shows "((\<lambda>x. f x ** g x) ---> 0) F" |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1029 |
using tendsto [OF f g] by (simp add: zero_left) |
31355 | 1030 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1031 |
lemma (in bounded_bilinear) tendsto_left_zero: |
44195 | 1032 |
"(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
|
1033 |
by (rule bounded_linear.tendsto_zero [OF bounded_linear_left]) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1034 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1035 |
lemma (in bounded_bilinear) tendsto_right_zero: |
44195 | 1036 |
"(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
|
1037 |
by (rule bounded_linear.tendsto_zero [OF bounded_linear_right]) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1038 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
1039 |
lemmas tendsto_of_real [tendsto_intros] = |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
1040 |
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
|
1041 |
|
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
1042 |
lemmas tendsto_scaleR [tendsto_intros] = |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
1043 |
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
|
1044 |
|
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
1045 |
lemmas tendsto_mult [tendsto_intros] = |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
1046 |
bounded_bilinear.tendsto [OF bounded_bilinear_mult] |
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1047 |
|
44568
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
1048 |
lemmas tendsto_mult_zero = |
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
1049 |
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
|
1050 |
|
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
1051 |
lemmas tendsto_mult_left_zero = |
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
1052 |
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
|
1053 |
|
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
1054 |
lemmas tendsto_mult_right_zero = |
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
1055 |
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
|
1056 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1057 |
lemma tendsto_power [tendsto_intros]: |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1058 |
fixes f :: "'a \<Rightarrow> 'b::{power,real_normed_algebra}" |
44195 | 1059 |
shows "(f ---> a) F \<Longrightarrow> ((\<lambda>x. f x ^ n) ---> a ^ n) F" |
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1060 |
by (induct n) (simp_all add: tendsto_const tendsto_mult) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1061 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1062 |
lemma tendsto_setprod [tendsto_intros]: |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1063 |
fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::{real_normed_algebra,comm_ring_1}" |
44195 | 1064 |
assumes "\<And>i. i \<in> S \<Longrightarrow> (f i ---> L i) F" |
1065 |
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
|
1066 |
proof (cases "finite S") |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1067 |
assume "finite S" thus ?thesis using assms |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1068 |
by (induct, simp add: tendsto_const, simp add: tendsto_mult) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1069 |
next |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1070 |
assume "\<not> finite S" thus ?thesis |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1071 |
by (simp add: tendsto_const) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1072 |
qed |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1073 |
|
50331 | 1074 |
lemma tendsto_le_const: |
1075 |
fixes f :: "_ \<Rightarrow> real" |
|
1076 |
assumes F: "\<not> trivial_limit F" |
|
1077 |
assumes x: "(f ---> x) F" and a: "eventually (\<lambda>x. a \<le> f x) F" |
|
1078 |
shows "a \<le> x" |
|
1079 |
proof (rule ccontr) |
|
1080 |
assume "\<not> a \<le> x" |
|
1081 |
with x have "eventually (\<lambda>x. f x < a) F" |
|
1082 |
by (auto simp add: tendsto_def elim!: allE[of _ "{..< a}"]) |
|
1083 |
with a have "eventually (\<lambda>x. False) F" |
|
1084 |
by eventually_elim auto |
|
1085 |
with F show False |
|
1086 |
by (simp add: eventually_False) |
|
1087 |
qed |
|
1088 |
||
1089 |
lemma tendsto_le: |
|
1090 |
fixes f g :: "_ \<Rightarrow> real" |
|
1091 |
assumes F: "\<not> trivial_limit F" |
|
1092 |
assumes x: "(f ---> x) F" and y: "(g ---> y) F" |
|
1093 |
assumes ev: "eventually (\<lambda>x. g x \<le> f x) F" |
|
1094 |
shows "y \<le> x" |
|
1095 |
using tendsto_le_const[OF F tendsto_diff[OF x y], of 0] ev |
|
1096 |
by (simp add: sign_simps) |
|
1097 |
||
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1098 |
subsubsection {* Inverse and division *} |
31355 | 1099 |
|
1100 |
lemma (in bounded_bilinear) Zfun_prod_Bfun: |
|
44195 | 1101 |
assumes f: "Zfun f F" |
1102 |
assumes g: "Bfun g F" |
|
1103 |
shows "Zfun (\<lambda>x. f x ** g x) F" |
|
31355 | 1104 |
proof - |
1105 |
obtain K where K: "0 \<le> K" |
|
1106 |
and norm_le: "\<And>x y. norm (x ** y) \<le> norm x * norm y * K" |
|
1107 |
using nonneg_bounded by fast |
|
1108 |
obtain B where B: "0 < B" |
|
44195 | 1109 |
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
|
1110 |
using g by (rule BfunE) |
44195 | 1111 |
have "eventually (\<lambda>x. norm (f x ** g x) \<le> norm (f x) * (B * K)) F" |
46887 | 1112 |
using norm_g proof eventually_elim |
1113 |
case (elim x) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1114 |
have "norm (f x ** g x) \<le> norm (f x) * norm (g x) * K" |
31355 | 1115 |
by (rule norm_le) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1116 |
also have "\<dots> \<le> norm (f x) * B * K" |
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1117 |
by (intro mult_mono' order_refl norm_g norm_ge_zero |
46887 | 1118 |
mult_nonneg_nonneg K elim) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1119 |
also have "\<dots> = norm (f x) * (B * K)" |
31355 | 1120 |
by (rule mult_assoc) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1121 |
finally show "norm (f x ** g x) \<le> norm (f x) * (B * K)" . |
31355 | 1122 |
qed |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1123 |
with f show ?thesis |
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1124 |
by (rule Zfun_imp_Zfun) |
31355 | 1125 |
qed |
1126 |
||
1127 |
lemma (in bounded_bilinear) flip: |
|
1128 |
"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
|
1129 |
apply default |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1130 |
apply (rule add_right) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1131 |
apply (rule add_left) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1132 |
apply (rule scaleR_right) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1133 |
apply (rule scaleR_left) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1134 |
apply (subst mult_commute) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1135 |
using bounded by fast |
31355 | 1136 |
|
1137 |
lemma (in bounded_bilinear) Bfun_prod_Zfun: |
|
44195 | 1138 |
assumes f: "Bfun f F" |
1139 |
assumes g: "Zfun g F" |
|
1140 |
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
|
1141 |
using flip g f by (rule bounded_bilinear.Zfun_prod_Bfun) |
31355 | 1142 |
|
1143 |
lemma Bfun_inverse_lemma: |
|
1144 |
fixes x :: "'a::real_normed_div_algebra" |
|
1145 |
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
|
1146 |
apply (subst nonzero_norm_inverse, clarsimp) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1147 |
apply (erule (1) le_imp_inverse_le) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1148 |
done |
31355 | 1149 |
|
1150 |
lemma Bfun_inverse: |
|
1151 |
fixes a :: "'a::real_normed_div_algebra" |
|
44195 | 1152 |
assumes f: "(f ---> a) F" |
31355 | 1153 |
assumes a: "a \<noteq> 0" |
44195 | 1154 |
shows "Bfun (\<lambda>x. inverse (f x)) F" |
31355 | 1155 |
proof - |
1156 |
from a have "0 < norm a" by simp |
|
1157 |
hence "\<exists>r>0. r < norm a" by (rule dense) |
|
1158 |
then obtain r where r1: "0 < r" and r2: "r < norm a" by fast |
|
44195 | 1159 |
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
|
1160 |
using tendstoD [OF f r1] by fast |
44195 | 1161 |
hence "eventually (\<lambda>x. norm (inverse (f x)) \<le> inverse (norm a - r)) F" |
46887 | 1162 |
proof eventually_elim |
1163 |
case (elim x) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1164 |
hence 1: "norm (f x - a) < r" |
31355 | 1165 |
by (simp add: dist_norm) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1166 |
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
|
1167 |
hence "norm (inverse (f x)) = inverse (norm (f x))" |
31355 | 1168 |
by (rule nonzero_norm_inverse) |
1169 |
also have "\<dots> \<le> inverse (norm a - r)" |
|
1170 |
proof (rule le_imp_inverse_le) |
|
1171 |
show "0 < norm a - r" using r2 by simp |
|
1172 |
next |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1173 |
have "norm a - norm (f x) \<le> norm (a - f x)" |
31355 | 1174 |
by (rule norm_triangle_ineq2) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1175 |
also have "\<dots> = norm (f x - a)" |
31355 | 1176 |
by (rule norm_minus_commute) |
1177 |
also have "\<dots> < r" using 1 . |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1178 |
finally show "norm a - r \<le> norm (f x)" by simp |
31355 | 1179 |
qed |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1180 |
finally show "norm (inverse (f x)) \<le> inverse (norm a - r)" . |
31355 | 1181 |
qed |
1182 |
thus ?thesis by (rule BfunI) |
|
1183 |
qed |
|
1184 |
||
31565 | 1185 |
lemma tendsto_inverse [tendsto_intros]: |
31355 | 1186 |
fixes a :: "'a::real_normed_div_algebra" |
44195 | 1187 |
assumes f: "(f ---> a) F" |
31355 | 1188 |
assumes a: "a \<noteq> 0" |
44195 | 1189 |
shows "((\<lambda>x. inverse (f x)) ---> inverse a) F" |
31355 | 1190 |
proof - |
1191 |
from a have "0 < norm a" by simp |
|
44195 | 1192 |
with f have "eventually (\<lambda>x. dist (f x) a < norm a) F" |
31355 | 1193 |
by (rule tendstoD) |
44195 | 1194 |
then have "eventually (\<lambda>x. f x \<noteq> 0) F" |
31355 | 1195 |
unfolding dist_norm by (auto elim!: eventually_elim1) |
44627 | 1196 |
with a have "eventually (\<lambda>x. inverse (f x) - inverse a = |
1197 |
- (inverse (f x) * (f x - a) * inverse a)) F" |
|
1198 |
by (auto elim!: eventually_elim1 simp: inverse_diff_inverse) |
|
1199 |
moreover have "Zfun (\<lambda>x. - (inverse (f x) * (f x - a) * inverse a)) F" |
|
1200 |
by (intro Zfun_minus Zfun_mult_left |
|
1201 |
bounded_bilinear.Bfun_prod_Zfun [OF bounded_bilinear_mult] |
|
1202 |
Bfun_inverse [OF f a] f [unfolded tendsto_Zfun_iff]) |
|
1203 |
ultimately show ?thesis |
|
1204 |
unfolding tendsto_Zfun_iff by (rule Zfun_ssubst) |
|
31355 | 1205 |
qed |
1206 |
||
31565 | 1207 |
lemma tendsto_divide [tendsto_intros]: |
31355 | 1208 |
fixes a b :: "'a::real_normed_field" |
44195 | 1209 |
shows "\<lbrakk>(f ---> a) F; (g ---> b) F; b \<noteq> 0\<rbrakk> |
1210 |
\<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
|
1211 |
by (simp add: tendsto_mult tendsto_inverse divide_inverse) |
31355 | 1212 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1213 |
lemma tendsto_sgn [tendsto_intros]: |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1214 |
fixes l :: "'a::real_normed_vector" |
44195 | 1215 |
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
|
1216 |
unfolding sgn_div_norm by (simp add: tendsto_intros) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1217 |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1218 |
subsection {* Limits to @{const at_top} and @{const at_bot} *} |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1219 |
|
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
1220 |
lemma filterlim_at_top: |
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
|
1221 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" |
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 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. Z \<le> 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
|
1223 |
by (auto simp: filterlim_iff eventually_at_top_linorder elim!: eventually_elim1) |
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 |
|
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
|
1225 |
lemma filterlim_at_top_dense: |
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1226 |
fixes f :: "'a \<Rightarrow> ('b::dense_linorder)" |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1227 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. Z < f x) F)" |
50346
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
hoelzl
parents:
50331
diff
changeset
|
1228 |
by (metis eventually_elim1[of _ F] eventually_gt_at_top order_less_imp_le |
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
|
1229 |
filterlim_at_top[of f F] filterlim_iff[of f at_top F]) |
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1230 |
|
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
|
1231 |
lemma filterlim_at_top_ge: |
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
|
1232 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" and c :: "'b" |
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
|
1233 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z\<ge>c. eventually (\<lambda>x. Z \<le> f x) F)" |
50323 | 1234 |
unfolding filterlim_at_top |
1235 |
proof safe |
|
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
|
1236 |
fix Z assume *: "\<forall>Z\<ge>c. eventually (\<lambda>x. Z \<le> 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
|
1237 |
with *[THEN spec, of "max Z c"] show "eventually (\<lambda>x. Z \<le> f x) F" |
50323 | 1238 |
by (auto elim!: eventually_elim1) |
1239 |
qed simp |
|
1240 |
||
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
|
1241 |
lemma filterlim_at_top_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
|
1242 |
fixes f :: "'a::linorder \<Rightarrow> 'b::linorder" |
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
|
1243 |
assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
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
|
1244 |
assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)" |
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
|
1245 |
assumes Q: "eventually Q 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
|
1246 |
assumes P: "eventually P 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
|
1247 |
shows "filterlim f at_top 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
|
1248 |
proof - |
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
|
1249 |
from P obtain x where x: "\<And>y. x \<le> y \<Longrightarrow> P y" |
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
|
1250 |
unfolding eventually_at_top_linorder 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
|
1251 |
show ?thesis |
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
|
1252 |
proof (intro filterlim_at_top_ge[THEN iffD2] allI impI) |
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
|
1253 |
fix z assume "x \<le> z" |
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
|
1254 |
with x have "P z" 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
|
1255 |
have "eventually (\<lambda>x. g z \<le> x) 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
|
1256 |
by (rule eventually_ge_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
|
1257 |
with Q show "eventually (\<lambda>x. z \<le> f x) 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
|
1258 |
by eventually_elim (metis mono bij `P z`) |
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
|
1259 |
qed |
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
|
1260 |
qed |
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
|
1261 |
|
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
|
1262 |
lemma filterlim_at_top_gt: |
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
|
1263 |
fixes f :: "'a \<Rightarrow> ('b::dense_linorder)" and c :: "'b" |
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
|
1264 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z>c. eventually (\<lambda>x. Z \<le> 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
|
1265 |
by (metis filterlim_at_top order_less_le_trans gt_ex filterlim_at_top_ge) |
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
|
1266 |
|
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
1267 |
lemma filterlim_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
|
1268 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" |
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
|
1269 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. f x \<le> Z) 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
|
1270 |
by (auto simp: filterlim_iff eventually_at_bot_linorder elim!: eventually_elim1) |
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
|
1271 |
|
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
|
1272 |
lemma filterlim_at_bot_le: |
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
|
1273 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" and c :: "'b" |
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
|
1274 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z\<le>c. eventually (\<lambda>x. Z \<ge> 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
|
1275 |
unfolding filterlim_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
|
1276 |
proof safe |
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
|
1277 |
fix Z assume *: "\<forall>Z\<le>c. eventually (\<lambda>x. Z \<ge> 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
|
1278 |
with *[THEN spec, of "min Z c"] show "eventually (\<lambda>x. Z \<ge> 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
|
1279 |
by (auto elim!: eventually_elim1) |
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
|
1280 |
qed simp |
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1281 |
|
50323 | 1282 |
lemma filterlim_at_bot_lt: |
1283 |
fixes f :: "'a \<Rightarrow> ('b::dense_linorder)" and c :: "'b" |
|
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
|
1284 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z<c. eventually (\<lambda>x. Z \<ge> 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
|
1285 |
by (metis filterlim_at_bot filterlim_at_bot_le lt_ex order_le_less_trans) |
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
|
1286 |
|
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
|
1287 |
lemma filterlim_at_bot_at_right: |
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
|
1288 |
fixes f :: "real \<Rightarrow> 'b::linorder" |
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
|
1289 |
assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
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
|
1290 |
assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)" |
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
|
1291 |
assumes Q: "eventually Q (at_right a)" and bound: "\<And>b. Q b \<Longrightarrow> a < b" |
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
|
1292 |
assumes P: "eventually P 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
|
1293 |
shows "filterlim f at_bot (at_right a)" |
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
|
1294 |
proof - |
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
|
1295 |
from P obtain x where x: "\<And>y. y \<le> x \<Longrightarrow> P y" |
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
|
1296 |
unfolding eventually_at_bot_linorder 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
|
1297 |
show ?thesis |
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
|
1298 |
proof (intro filterlim_at_bot_le[THEN iffD2] allI impI) |
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
|
1299 |
fix z assume "z \<le> x" |
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
|
1300 |
with x have "P z" 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
|
1301 |
have "eventually (\<lambda>x. x \<le> g z) (at_right a)" |
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
|
1302 |
using bound[OF bij(2)[OF `P z`]] |
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
|
1303 |
by (auto simp add: eventually_within_less dist_real_def intro!: exI[of _ "g z - a"]) |
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
|
1304 |
with Q show "eventually (\<lambda>x. f x \<le> z) (at_right a)" |
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
|
1305 |
by eventually_elim (metis bij `P z` mono) |
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
|
1306 |
qed |
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
|
1307 |
qed |
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
|
1308 |
|
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
|
1309 |
lemma filterlim_at_top_at_left: |
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
|
1310 |
fixes f :: "real \<Rightarrow> 'b::linorder" |
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
|
1311 |
assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
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
|
1312 |
assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)" |
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
|
1313 |
assumes Q: "eventually Q (at_left a)" and bound: "\<And>b. Q b \<Longrightarrow> b < a" |
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
|
1314 |
assumes P: "eventually P 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
|
1315 |
shows "filterlim f at_top (at_left a)" |
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
|
1316 |
proof - |
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
|
1317 |
from P obtain x where x: "\<And>y. x \<le> y \<Longrightarrow> P y" |
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
|
1318 |
unfolding eventually_at_top_linorder 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
|
1319 |
show ?thesis |
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
|
1320 |
proof (intro filterlim_at_top_ge[THEN iffD2] allI impI) |
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
|
1321 |
fix z assume "x \<le> z" |
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
|
1322 |
with x have "P z" 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
|
1323 |
have "eventually (\<lambda>x. g z \<le> x) (at_left a)" |
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
|
1324 |
using bound[OF bij(2)[OF `P z`]] |
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
|
1325 |
by (auto simp add: eventually_within_less dist_real_def intro!: exI[of _ "a - g z"]) |
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
|
1326 |
with Q show "eventually (\<lambda>x. z \<le> f x) (at_left a)" |
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
|
1327 |
by eventually_elim (metis bij `P z` mono) |
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
|
1328 |
qed |
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
|
1329 |
qed |
50323 | 1330 |
|
50325 | 1331 |
lemma filterlim_at_infinity: |
1332 |
fixes f :: "_ \<Rightarrow> 'a\<Colon>real_normed_vector" |
|
1333 |
assumes "0 \<le> c" |
|
1334 |
shows "(LIM x F. f x :> at_infinity) \<longleftrightarrow> (\<forall>r>c. eventually (\<lambda>x. r \<le> norm (f x)) F)" |
|
1335 |
unfolding filterlim_iff eventually_at_infinity |
|
1336 |
proof safe |
|
1337 |
fix P :: "'a \<Rightarrow> bool" and b |
|
1338 |
assume *: "\<forall>r>c. eventually (\<lambda>x. r \<le> norm (f x)) F" |
|
1339 |
and P: "\<forall>x. b \<le> norm x \<longrightarrow> P x" |
|
1340 |
have "max b (c + 1) > c" by auto |
|
1341 |
with * have "eventually (\<lambda>x. max b (c + 1) \<le> norm (f x)) F" |
|
1342 |
by auto |
|
1343 |
then show "eventually (\<lambda>x. P (f x)) F" |
|
1344 |
proof eventually_elim |
|
1345 |
fix x assume "max b (c + 1) \<le> norm (f x)" |
|
1346 |
with P show "P (f x)" by auto |
|
1347 |
qed |
|
1348 |
qed force |
|
1349 |
||
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
1350 |
lemma filterlim_real_sequentially: "LIM x sequentially. real x :> at_top" |
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
1351 |
unfolding filterlim_at_top |
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1352 |
apply (intro allI) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1353 |
apply (rule_tac c="natceiling (Z + 1)" in eventually_sequentiallyI) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1354 |
apply (auto simp: natceiling_le_eq) |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1355 |
done |
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1356 |
|
50347 | 1357 |
subsection {* Relate @{const at}, @{const at_left} and @{const at_right} *} |
1358 |
||
1359 |
text {* |
|
1360 |
||
1361 |
This lemmas are useful for conversion between @{term "at x"} to @{term "at_left x"} and |
|
1362 |
@{term "at_right x"} and also @{term "at_right 0"}. |
|
1363 |
||
1364 |
*} |
|
1365 |
||
1366 |
lemma at_eq_sup_left_right: "at (x::real) = sup (at_left x) (at_right x)" |
|
1367 |
by (auto simp: eventually_within at_def filter_eq_iff eventually_sup |
|
1368 |
elim: eventually_elim2 eventually_elim1) |
|
1369 |
||
1370 |
lemma filterlim_split_at_real: |
|
1371 |
"filterlim f F (at_left x) \<Longrightarrow> filterlim f F (at_right x) \<Longrightarrow> filterlim f F (at (x::real))" |
|
1372 |
by (subst at_eq_sup_left_right) (rule filterlim_sup) |
|
50323 | 1373 |
|
50347 | 1374 |
lemma filtermap_nhds_shift: "filtermap (\<lambda>x. x - d) (nhds a) = nhds (a - d::real)" |
1375 |
unfolding filter_eq_iff eventually_filtermap eventually_nhds_metric |
|
1376 |
by (intro allI ex_cong) (auto simp: dist_real_def field_simps) |
|
1377 |
||
1378 |
lemma filtermap_nhds_minus: "filtermap (\<lambda>x. - x) (nhds a) = nhds (- a::real)" |
|
1379 |
unfolding filter_eq_iff eventually_filtermap eventually_nhds_metric |
|
1380 |
apply (intro allI ex_cong) |
|
1381 |
apply (auto simp: dist_real_def field_simps) |
|
1382 |
apply (erule_tac x="-x" in allE) |
|
1383 |
apply simp |
|
1384 |
done |
|
1385 |
||
1386 |
lemma filtermap_at_shift: "filtermap (\<lambda>x. x - d) (at a) = at (a - d::real)" |
|
1387 |
unfolding at_def filtermap_nhds_shift[symmetric] |
|
1388 |
by (simp add: filter_eq_iff eventually_filtermap eventually_within) |
|
1389 |
||
1390 |
lemma filtermap_at_right_shift: "filtermap (\<lambda>x. x - d) (at_right a) = at_right (a - d::real)" |
|
1391 |
unfolding filtermap_at_shift[symmetric] |
|
1392 |
by (simp add: filter_eq_iff eventually_filtermap eventually_within) |
|
50323 | 1393 |
|
50347 | 1394 |
lemma at_right_to_0: "at_right (a::real) = filtermap (\<lambda>x. x + a) (at_right 0)" |
1395 |
using filtermap_at_right_shift[of "-a" 0] by simp |
|
1396 |
||
1397 |
lemma filterlim_at_right_to_0: |
|
1398 |
"filterlim f F (at_right (a::real)) \<longleftrightarrow> filterlim (\<lambda>x. f (x + a)) F (at_right 0)" |
|
1399 |
unfolding filterlim_def filtermap_filtermap at_right_to_0[of a] .. |
|
1400 |
||
1401 |
lemma eventually_at_right_to_0: |
|
1402 |
"eventually P (at_right (a::real)) \<longleftrightarrow> eventually (\<lambda>x. P (x + a)) (at_right 0)" |
|
1403 |
unfolding at_right_to_0[of a] by (simp add: eventually_filtermap) |
|
1404 |
||
1405 |
lemma filtermap_at_minus: "filtermap (\<lambda>x. - x) (at a) = at (- a::real)" |
|
1406 |
unfolding at_def filtermap_nhds_minus[symmetric] |
|
1407 |
by (simp add: filter_eq_iff eventually_filtermap eventually_within) |
|
1408 |
||
1409 |
lemma at_left_minus: "at_left (a::real) = filtermap (\<lambda>x. - x) (at_right (- a))" |
|
1410 |
by (simp add: filter_eq_iff eventually_filtermap eventually_within filtermap_at_minus[symmetric]) |
|
50323 | 1411 |
|
50347 | 1412 |
lemma at_right_minus: "at_right (a::real) = filtermap (\<lambda>x. - x) (at_left (- a))" |
1413 |
by (simp add: filter_eq_iff eventually_filtermap eventually_within filtermap_at_minus[symmetric]) |
|
1414 |
||
1415 |
lemma filterlim_at_left_to_right: |
|
1416 |
"filterlim f F (at_left (a::real)) \<longleftrightarrow> filterlim (\<lambda>x. f (- x)) F (at_right (-a))" |
|
1417 |
unfolding filterlim_def filtermap_filtermap at_left_minus[of a] .. |
|
1418 |
||
1419 |
lemma eventually_at_left_to_right: |
|
1420 |
"eventually P (at_left (a::real)) \<longleftrightarrow> eventually (\<lambda>x. P (- x)) (at_right (-a))" |
|
1421 |
unfolding at_left_minus[of a] by (simp add: eventually_filtermap) |
|
1422 |
||
1423 |
lemma filterlim_at_split: |
|
1424 |
"filterlim f F (at (x::real)) \<longleftrightarrow> filterlim f F (at_left x) \<and> filterlim f F (at_right x)" |
|
1425 |
by (subst at_eq_sup_left_right) (simp add: filterlim_def filtermap_sup) |
|
1426 |
||
1427 |
lemma eventually_at_split: |
|
1428 |
"eventually P (at (x::real)) \<longleftrightarrow> eventually P (at_left x) \<and> eventually P (at_right x)" |
|
1429 |
by (subst at_eq_sup_left_right) (simp add: eventually_sup) |
|
50323 | 1430 |
|
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
|
1431 |
lemma at_top_mirror: "at_top = filtermap uminus (at_bot :: 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
|
1432 |
unfolding filter_eq_iff eventually_filtermap eventually_at_top_linorder eventually_at_bot_linorder |
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
|
1433 |
by (metis le_minus_iff minus_minus) |
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
|
1434 |
|
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
|
1435 |
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
|
1436 |
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
|
1437 |
|
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
|
1438 |
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
|
1439 |
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
|
1440 |
|
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
|
1441 |
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
|
1442 |
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
|
1443 |
|
50323 | 1444 |
lemma filterlim_uminus_at_top_at_bot: "LIM x at_bot. - x :: real :> at_top" |
1445 |
unfolding filterlim_at_top eventually_at_bot_dense |
|
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
|
1446 |
by (metis leI minus_less_iff order_less_asym) |
50323 | 1447 |
|
1448 |
lemma filterlim_uminus_at_bot_at_top: "LIM x at_top. - x :: real :> at_bot" |
|
1449 |
unfolding filterlim_at_bot eventually_at_top_dense |
|
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
|
1450 |
by (metis leI less_minus_iff order_less_asym) |
50323 | 1451 |
|
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
|
1452 |
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
|
1453 |
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
|
1454 |
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
|
1455 |
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
|
1456 |
|
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
|
1457 |
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
|
1458 |
unfolding filterlim_uminus_at_top by simp |
50323 | 1459 |
|
50347 | 1460 |
lemma filterlim_inverse_at_top_right: "LIM x at_right (0::real). inverse x :> at_top" |
1461 |
unfolding filterlim_at_top_gt[where c=0] eventually_within at_def |
|
1462 |
proof safe |
|
1463 |
fix Z :: real assume [arith]: "0 < Z" |
|
1464 |
then have "eventually (\<lambda>x. x < inverse Z) (nhds 0)" |
|
1465 |
by (auto simp add: eventually_nhds_metric dist_real_def intro!: exI[of _ "\<bar>inverse Z\<bar>"]) |
|
1466 |
then show "eventually (\<lambda>x. x \<in> - {0} \<longrightarrow> x \<in> {0<..} \<longrightarrow> Z \<le> inverse x) (nhds 0)" |
|
1467 |
by (auto elim!: eventually_elim1 simp: inverse_eq_divide field_simps) |
|
1468 |
qed |
|
1469 |
||
1470 |
lemma filterlim_inverse_at_top: |
|
1471 |
"(f ---> (0 :: real)) F \<Longrightarrow> eventually (\<lambda>x. 0 < f x) F \<Longrightarrow> LIM x F. inverse (f x) :> at_top" |
|
1472 |
by (intro filterlim_compose[OF filterlim_inverse_at_top_right]) |
|
1473 |
(simp add: filterlim_def eventually_filtermap le_within_iff at_def eventually_elim1) |
|
1474 |
||
1475 |
lemma filterlim_inverse_at_bot_neg: |
|
1476 |
"LIM x (at_left (0::real)). inverse x :> at_bot" |
|
1477 |
by (simp add: filterlim_inverse_at_top_right filterlim_uminus_at_bot filterlim_at_left_to_right) |
|
1478 |
||
1479 |
lemma filterlim_inverse_at_bot: |
|
1480 |
"(f ---> (0 :: real)) F \<Longrightarrow> eventually (\<lambda>x. f x < 0) F \<Longrightarrow> LIM x F. inverse (f x) :> at_bot" |
|
1481 |
unfolding filterlim_uminus_at_bot inverse_minus_eq[symmetric] |
|
1482 |
by (rule filterlim_inverse_at_top) (simp_all add: tendsto_minus_cancel_left[symmetric]) |
|
1483 |
||
50325 | 1484 |
lemma tendsto_inverse_0: |
1485 |
fixes x :: "_ \<Rightarrow> 'a\<Colon>real_normed_div_algebra" |
|
1486 |
shows "(inverse ---> (0::'a)) at_infinity" |
|
1487 |
unfolding tendsto_Zfun_iff diff_0_right Zfun_def eventually_at_infinity |
|
1488 |
proof safe |
|
1489 |
fix r :: real assume "0 < r" |
|
1490 |
show "\<exists>b. \<forall>x. b \<le> norm x \<longrightarrow> norm (inverse x :: 'a) < r" |
|
1491 |
proof (intro exI[of _ "inverse (r / 2)"] allI impI) |
|
1492 |
fix x :: 'a |
|
1493 |
from `0 < r` have "0 < inverse (r / 2)" by simp |
|
1494 |
also assume *: "inverse (r / 2) \<le> norm x" |
|
1495 |
finally show "norm (inverse x) < r" |
|
1496 |
using * `0 < r` by (subst nonzero_norm_inverse) (simp_all add: inverse_eq_divide field_simps) |
|
1497 |
qed |
|
1498 |
qed |
|
1499 |
||
50347 | 1500 |
lemma at_right_to_top: "(at_right (0::real)) = filtermap inverse at_top" |
1501 |
proof (rule antisym) |
|
1502 |
have "(inverse ---> (0::real)) at_top" |
|
1503 |
by (metis tendsto_inverse_0 filterlim_mono at_top_le_at_infinity order_refl) |
|
1504 |
then show "filtermap inverse at_top \<le> at_right (0::real)" |
|
1505 |
unfolding at_within_eq |
|
1506 |
by (intro le_withinI) (simp_all add: eventually_filtermap eventually_gt_at_top filterlim_def) |
|
1507 |
next |
|
1508 |
have "filtermap inverse (filtermap inverse (at_right (0::real))) \<le> filtermap inverse at_top" |
|
1509 |
using filterlim_inverse_at_top_right unfolding filterlim_def by (rule filtermap_mono) |
|
1510 |
then show "at_right (0::real) \<le> filtermap inverse at_top" |
|
1511 |
by (simp add: filtermap_ident filtermap_filtermap) |
|
1512 |
qed |
|
1513 |
||
1514 |
lemma eventually_at_right_to_top: |
|
1515 |
"eventually P (at_right (0::real)) \<longleftrightarrow> eventually (\<lambda>x. P (inverse x)) at_top" |
|
1516 |
unfolding at_right_to_top eventually_filtermap .. |
|
1517 |
||
1518 |
lemma filterlim_at_right_to_top: |
|
1519 |
"filterlim f F (at_right (0::real)) \<longleftrightarrow> (LIM x at_top. f (inverse x) :> F)" |
|
1520 |
unfolding filterlim_def at_right_to_top filtermap_filtermap .. |
|
1521 |
||
1522 |
lemma at_top_to_right: "at_top = filtermap inverse (at_right (0::real))" |
|
1523 |
unfolding at_right_to_top filtermap_filtermap inverse_inverse_eq filtermap_ident .. |
|
1524 |
||
1525 |
lemma eventually_at_top_to_right: |
|
1526 |
"eventually P at_top \<longleftrightarrow> eventually (\<lambda>x. P (inverse x)) (at_right (0::real))" |
|
1527 |
unfolding at_top_to_right eventually_filtermap .. |
|
1528 |
||
1529 |
lemma filterlim_at_top_to_right: |
|
1530 |
"filterlim f F at_top \<longleftrightarrow> (LIM x (at_right (0::real)). f (inverse x) :> F)" |
|
1531 |
unfolding filterlim_def at_top_to_right filtermap_filtermap .. |
|
1532 |
||
50325 | 1533 |
lemma filterlim_inverse_at_infinity: |
1534 |
fixes x :: "_ \<Rightarrow> 'a\<Colon>{real_normed_div_algebra, division_ring_inverse_zero}" |
|
1535 |
shows "filterlim inverse at_infinity (at (0::'a))" |
|
1536 |
unfolding filterlim_at_infinity[OF order_refl] |
|
1537 |
proof safe |
|
1538 |
fix r :: real assume "0 < r" |
|
1539 |
then show "eventually (\<lambda>x::'a. r \<le> norm (inverse x)) (at 0)" |
|
1540 |
unfolding eventually_at norm_inverse |
|
1541 |
by (intro exI[of _ "inverse r"]) |
|
1542 |
(auto simp: norm_conv_dist[symmetric] field_simps inverse_eq_divide) |
|
1543 |
qed |
|
1544 |
||
1545 |
lemma filterlim_inverse_at_iff: |
|
1546 |
fixes g :: "'a \<Rightarrow> 'b\<Colon>{real_normed_div_algebra, division_ring_inverse_zero}" |
|
1547 |
shows "(LIM x F. inverse (g x) :> at 0) \<longleftrightarrow> (LIM x F. g x :> at_infinity)" |
|
1548 |
unfolding filterlim_def filtermap_filtermap[symmetric] |
|
1549 |
proof |
|
1550 |
assume "filtermap g F \<le> at_infinity" |
|
1551 |
then have "filtermap inverse (filtermap g F) \<le> filtermap inverse at_infinity" |
|
1552 |
by (rule filtermap_mono) |
|
1553 |
also have "\<dots> \<le> at 0" |
|
1554 |
using tendsto_inverse_0 |
|
1555 |
by (auto intro!: le_withinI exI[of _ 1] |
|
1556 |
simp: eventually_filtermap eventually_at_infinity filterlim_def at_def) |
|
1557 |
finally show "filtermap inverse (filtermap g F) \<le> at 0" . |
|
1558 |
next |
|
1559 |
assume "filtermap inverse (filtermap g F) \<le> at 0" |
|
1560 |
then have "filtermap inverse (filtermap inverse (filtermap g F)) \<le> filtermap inverse (at 0)" |
|
1561 |
by (rule filtermap_mono) |
|
1562 |
with filterlim_inverse_at_infinity show "filtermap g F \<le> at_infinity" |
|
1563 |
by (auto intro: order_trans simp: filterlim_def filtermap_filtermap) |
|
1564 |
qed |
|
1565 |
||
50419 | 1566 |
lemma tendsto_inverse_0_at_top: |
1567 |
"LIM x F. f x :> at_top \<Longrightarrow> ((\<lambda>x. inverse (f x) :: real) ---> 0) F" |
|
1568 |
by (metis at_top_le_at_infinity filterlim_at filterlim_inverse_at_iff filterlim_mono order_refl) |
|
1569 |
||
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1570 |
text {* |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1571 |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1572 |
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
|
1573 |
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
|
1574 |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1575 |
*} |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1576 |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1577 |
lemma filterlim_tendsto_pos_mult_at_top: |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1578 |
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
|
1579 |
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
|
1580 |
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
|
1581 |
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
|
1582 |
proof safe |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1583 |
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
|
1584 |
from f `0 < c` have "eventually (\<lambda>x. c / 2 < f x) F" |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1585 |
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
|
1586 |
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
|
1587 |
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
|
1588 |
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
|
1589 |
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
|
1590 |
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
|
1591 |
fix x assume "c / 2 < f x" "Z / c * 2 \<le> g x" |
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
hoelzl
parents:
50331
diff
changeset
|
1592 |
with `0 < Z` `0 < c` have "c / 2 * (Z / c * 2) \<le> f x * g x" |
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
hoelzl
parents:
50331
diff
changeset
|
1593 |
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
|
1594 |
with `0 < c` 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
|
1595 |
by simp |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1596 |
qed |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1597 |
qed |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1598 |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1599 |
lemma filterlim_at_top_mult_at_top: |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1600 |
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
|
1601 |
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
|
1602 |
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
|
1603 |
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
|
1604 |
proof safe |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1605 |
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
|
1606 |
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
|
1607 |
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
|
1608 |
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
|
1609 |
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
|
1610 |
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
|
1611 |
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
|
1612 |
fix x assume "1 \<le> f x" "Z \<le> g x" |
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
|
1613 |
with `0 < Z` have "1 * Z \<le> f x * g x" |
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
|
1614 |
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
|
1615 |
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
|
1616 |
by simp |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1617 |
qed |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1618 |
qed |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1619 |
|
50419 | 1620 |
lemma filterlim_tendsto_pos_mult_at_bot: |
1621 |
assumes "(f ---> c) F" "0 < (c::real)" "filterlim g at_bot F" |
|
1622 |
shows "LIM x F. f x * g x :> at_bot" |
|
1623 |
using filterlim_tendsto_pos_mult_at_top[OF assms(1,2), of "\<lambda>x. - g x"] assms(3) |
|
1624 |
unfolding filterlim_uminus_at_bot by simp |
|
1625 |
||
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1626 |
lemma filterlim_tendsto_add_at_top: |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1627 |
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
|
1628 |
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
|
1629 |
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
|
1630 |
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
|
1631 |
proof safe |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1632 |
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
|
1633 |
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
|
1634 |
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
|
1635 |
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
|
1636 |
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
|
1637 |
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
|
1638 |
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
|
1639 |
qed |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1640 |
|
50347 | 1641 |
lemma LIM_at_top_divide: |
1642 |
fixes f g :: "'a \<Rightarrow> real" |
|
1643 |
assumes f: "(f ---> a) F" "0 < a" |
|
1644 |
assumes g: "(g ---> 0) F" "eventually (\<lambda>x. 0 < g x) F" |
|
1645 |
shows "LIM x F. f x / g x :> at_top" |
|
1646 |
unfolding divide_inverse |
|
1647 |
by (rule filterlim_tendsto_pos_mult_at_top[OF f]) (rule filterlim_inverse_at_top[OF g]) |
|
1648 |
||
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1649 |
lemma filterlim_at_top_add_at_top: |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1650 |
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
|
1651 |
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
|
1652 |
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
|
1653 |
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
|
1654 |
proof safe |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1655 |
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
|
1656 |
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
|
1657 |
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
|
1658 |
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
|
1659 |
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
|
1660 |
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
|
1661 |
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
|
1662 |
qed |
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1663 |
|
50331 | 1664 |
lemma tendsto_divide_0: |
1665 |
fixes f :: "_ \<Rightarrow> 'a\<Colon>{real_normed_div_algebra, division_ring_inverse_zero}" |
|
1666 |
assumes f: "(f ---> c) F" |
|
1667 |
assumes g: "LIM x F. g x :> at_infinity" |
|
1668 |
shows "((\<lambda>x. f x / g x) ---> 0) F" |
|
1669 |
using tendsto_mult[OF f filterlim_compose[OF tendsto_inverse_0 g]] by (simp add: divide_inverse) |
|
1670 |
||
1671 |
lemma linear_plus_1_le_power: |
|
1672 |
fixes x :: real |
|
1673 |
assumes x: "0 \<le> x" |
|
1674 |
shows "real n * x + 1 \<le> (x + 1) ^ n" |
|
1675 |
proof (induct n) |
|
1676 |
case (Suc n) |
|
1677 |
have "real (Suc n) * x + 1 \<le> (x + 1) * (real n * x + 1)" |
|
1678 |
by (simp add: field_simps real_of_nat_Suc mult_nonneg_nonneg x) |
|
1679 |
also have "\<dots> \<le> (x + 1)^Suc n" |
|
1680 |
using Suc x by (simp add: mult_left_mono) |
|
1681 |
finally show ?case . |
|
1682 |
qed simp |
|
1683 |
||
1684 |
lemma filterlim_realpow_sequentially_gt1: |
|
1685 |
fixes x :: "'a :: real_normed_div_algebra" |
|
1686 |
assumes x[arith]: "1 < norm x" |
|
1687 |
shows "LIM n sequentially. x ^ n :> at_infinity" |
|
1688 |
proof (intro filterlim_at_infinity[THEN iffD2] allI impI) |
|
1689 |
fix y :: real assume "0 < y" |
|
1690 |
have "0 < norm x - 1" by simp |
|
1691 |
then obtain N::nat where "y < real N * (norm x - 1)" by (blast dest: reals_Archimedean3) |
|
1692 |
also have "\<dots> \<le> real N * (norm x - 1) + 1" by simp |
|
1693 |
also have "\<dots> \<le> (norm x - 1 + 1) ^ N" by (rule linear_plus_1_le_power) simp |
|
1694 |
also have "\<dots> = norm x ^ N" by simp |
|
1695 |
finally have "\<forall>n\<ge>N. y \<le> norm x ^ n" |
|
1696 |
by (metis order_less_le_trans power_increasing order_less_imp_le x) |
|
1697 |
then show "eventually (\<lambda>n. y \<le> norm (x ^ n)) sequentially" |
|
1698 |
unfolding eventually_sequentially |
|
1699 |
by (auto simp: norm_power) |
|
1700 |
qed simp |
|
1701 |
||
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
1702 |
end |
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1703 |