| author | hoelzl |
| Mon, 03 Dec 2012 18:19:04 +0100 | |
| changeset 50325 | 5e40ad9f212a |
| parent 50324 | 0a1242d5e7d4 |
| child 50326 | b5afeccab2db |
| 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 |
|
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
283 |
subsection {* Order filters *}
|
| 31392 | 284 |
|
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
285 |
definition at_top :: "('a::order) filter"
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
286 |
where "at_top = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<ge>k. P n)" |
| 31392 | 287 |
|
|
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
288 |
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
|
289 |
unfolding at_top_def |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
290 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
291 |
fix P Q :: "'a \<Rightarrow> bool" |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
292 |
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
|
293 |
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
|
294 |
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
|
295 |
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
|
296 |
qed auto |
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
297 |
|
|
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
298 |
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
|
299 |
unfolding eventually_at_top_linorder |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
300 |
proof safe |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
301 |
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
|
302 |
next |
|
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
303 |
fix N assume "\<forall>n>N. P n" |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
304 |
moreover from gt_ex[of N] guess y .. |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
305 |
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
|
306 |
qed |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
307 |
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
308 |
definition at_bot :: "('a::order) filter"
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
309 |
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
|
310 |
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
311 |
lemma eventually_at_bot_linorder: |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
312 |
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
|
313 |
unfolding at_bot_def |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
314 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
315 |
fix P Q :: "'a \<Rightarrow> bool" |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
316 |
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
|
317 |
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
|
318 |
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
|
319 |
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
|
320 |
qed auto |
|
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_dense: |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
323 |
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
|
324 |
unfolding eventually_at_bot_linorder |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
325 |
proof safe |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
326 |
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
|
327 |
next |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
328 |
fix N assume "\<forall>n<N. P n" |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
329 |
moreover from lt_ex[of N] guess y .. |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
330 |
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
|
331 |
qed |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
332 |
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
333 |
subsection {* Sequentially *}
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
334 |
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
335 |
abbreviation sequentially :: "nat filter" |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
336 |
where "sequentially == at_top" |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
337 |
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
338 |
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
|
339 |
unfolding at_top_def by simp |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
340 |
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
341 |
lemma eventually_sequentially: |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
342 |
"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
|
343 |
by (rule eventually_at_top_linorder) |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
344 |
|
|
44342
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
345 |
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
|
346 |
unfolding filter_eq_iff eventually_sequentially by auto |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
347 |
|
|
44342
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
348 |
lemmas trivial_limit_sequentially = sequentially_bot |
|
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
349 |
|
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
350 |
lemma eventually_False_sequentially [simp]: |
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
351 |
"\<not> eventually (\<lambda>n. False) sequentially" |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
352 |
by (simp add: eventually_False) |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
353 |
|
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
354 |
lemma le_sequentially: |
| 44195 | 355 |
"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
|
356 |
unfolding le_filter_def eventually_sequentially |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
357 |
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
|
358 |
|
| 45892 | 359 |
lemma eventually_sequentiallyI: |
360 |
assumes "\<And>x. c \<le> x \<Longrightarrow> P x" |
|
361 |
shows "eventually P sequentially" |
|
362 |
using assms by (auto simp: eventually_sequentially) |
|
363 |
||
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
364 |
|
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
365 |
subsection {* Standard filters *}
|
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
366 |
|
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
367 |
definition within :: "'a filter \<Rightarrow> 'a set \<Rightarrow> 'a filter" (infixr "within" 70) |
| 44195 | 368 |
where "F within S = Abs_filter (\<lambda>P. eventually (\<lambda>x. x \<in> S \<longrightarrow> P x) F)" |
| 31392 | 369 |
|
|
44206
5e4a1664106e
locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents:
44205
diff
changeset
|
370 |
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
|
371 |
where "nhds a = Abs_filter (\<lambda>P. \<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))" |
| 36654 | 372 |
|
|
44206
5e4a1664106e
locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents:
44205
diff
changeset
|
373 |
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
|
374 |
where "at a = nhds a within - {a}"
|
|
31447
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
375 |
|
|
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
376 |
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
|
377 |
"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
|
378 |
|
| 31392 | 379 |
lemma eventually_within: |
| 44195 | 380 |
"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
|
381 |
unfolding within_def |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
382 |
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
|
383 |
(auto elim!: eventually_rev_mp) |
| 31392 | 384 |
|
| 45031 | 385 |
lemma within_UNIV [simp]: "F within UNIV = F" |
386 |
unfolding filter_eq_iff eventually_within by simp |
|
387 |
||
388 |
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
|
389 |
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
|
390 |
|
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
391 |
lemma within_le: "F within S \<le> F" |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
392 |
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
|
393 |
|
| 50323 | 394 |
lemma le_withinI: "F \<le> F' \<Longrightarrow> eventually (\<lambda>x. x \<in> S) F \<Longrightarrow> F \<le> F' within S" |
395 |
unfolding le_filter_def eventually_within by (auto elim: eventually_elim2) |
|
396 |
||
397 |
lemma le_within_iff: "eventually (\<lambda>x. x \<in> S) F \<Longrightarrow> F \<le> F' within S \<longleftrightarrow> F \<le> F'" |
|
398 |
by (blast intro: within_le le_withinI order_trans) |
|
399 |
||
| 36654 | 400 |
lemma eventually_nhds: |
401 |
"eventually P (nhds a) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))" |
|
402 |
unfolding nhds_def |
|
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
403 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
| 36654 | 404 |
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
|
405 |
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
|
406 |
next |
|
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
407 |
fix P Q |
| 36654 | 408 |
assume "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)" |
409 |
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
|
410 |
then obtain S T where |
| 36654 | 411 |
"open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)" |
412 |
"open T \<and> a \<in> T \<and> (\<forall>x\<in>T. Q x)" by auto |
|
413 |
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
|
414 |
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
|
415 |
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
|
416 |
qed auto |
|
31447
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
417 |
|
|
36656
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
418 |
lemma eventually_nhds_metric: |
|
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
419 |
"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
|
420 |
unfolding eventually_nhds open_dist |
|
31447
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
421 |
apply safe |
|
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
422 |
apply fast |
|
31492
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents:
31488
diff
changeset
|
423 |
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
|
424 |
apply clarsimp |
|
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
425 |
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
|
426 |
apply (simp only: less_diff_eq) |
|
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
427 |
apply (erule le_less_trans [OF dist_triangle]) |
|
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
428 |
done |
|
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
429 |
|
| 44571 | 430 |
lemma nhds_neq_bot [simp]: "nhds a \<noteq> bot" |
431 |
unfolding trivial_limit_def eventually_nhds by simp |
|
432 |
||
|
36656
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
433 |
lemma eventually_at_topological: |
|
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
434 |
"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
|
435 |
unfolding at_def eventually_within eventually_nhds by simp |
|
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
436 |
|
|
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
437 |
lemma eventually_at: |
|
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
438 |
fixes a :: "'a::metric_space" |
|
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
439 |
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
|
440 |
unfolding at_def eventually_within eventually_nhds_metric by auto |
|
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
441 |
|
| 44571 | 442 |
lemma at_eq_bot_iff: "at a = bot \<longleftrightarrow> open {a}"
|
443 |
unfolding trivial_limit_def eventually_at_topological |
|
444 |
by (safe, case_tac "S = {a}", simp, fast, fast)
|
|
445 |
||
446 |
lemma at_neq_bot [simp]: "at (a::'a::perfect_space) \<noteq> bot" |
|
447 |
by (simp add: at_eq_bot_iff not_open_singleton) |
|
448 |
||
|
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
449 |
lemma eventually_at_infinity: |
| 50325 | 450 |
"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
|
451 |
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
|
452 |
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
|
453 |
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
|
454 |
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
|
455 |
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
|
456 |
"\<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
|
457 |
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
|
458 |
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
|
459 |
qed auto |
| 31392 | 460 |
|
| 50325 | 461 |
lemma at_infinity_eq_at_top_bot: |
462 |
"(at_infinity \<Colon> real filter) = sup at_top at_bot" |
|
463 |
unfolding sup_filter_def at_infinity_def eventually_at_top_linorder eventually_at_bot_linorder |
|
464 |
proof (intro arg_cong[where f=Abs_filter] ext iffI) |
|
465 |
fix P :: "real \<Rightarrow> bool" assume "\<exists>r. \<forall>x. r \<le> norm x \<longrightarrow> P x" |
|
466 |
then guess r .. |
|
467 |
then have "(\<forall>x\<ge>r. P x) \<and> (\<forall>x\<le>-r. P x)" by auto |
|
468 |
then show "(\<exists>r. \<forall>x\<ge>r. P x) \<and> (\<exists>r. \<forall>x\<le>r. P x)" by auto |
|
469 |
next |
|
470 |
fix P :: "real \<Rightarrow> bool" assume "(\<exists>r. \<forall>x\<ge>r. P x) \<and> (\<exists>r. \<forall>x\<le>r. P x)" |
|
471 |
then obtain p q where "\<forall>x\<ge>p. P x" "\<forall>x\<le>q. P x" by auto |
|
472 |
then show "\<exists>r. \<forall>x. r \<le> norm x \<longrightarrow> P x" |
|
473 |
by (intro exI[of _ "max p (-q)"]) |
|
474 |
(auto simp: abs_real_def) |
|
475 |
qed |
|
476 |
||
477 |
lemma at_top_le_at_infinity: |
|
478 |
"at_top \<le> (at_infinity :: real filter)" |
|
479 |
unfolding at_infinity_eq_at_top_bot by simp |
|
480 |
||
481 |
lemma at_bot_le_at_infinity: |
|
482 |
"at_bot \<le> (at_infinity :: real filter)" |
|
483 |
unfolding at_infinity_eq_at_top_bot by simp |
|
484 |
||
| 31355 | 485 |
subsection {* Boundedness *}
|
486 |
||
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
487 |
definition Bfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a filter \<Rightarrow> bool"
|
| 44195 | 488 |
where "Bfun f F = (\<exists>K>0. eventually (\<lambda>x. norm (f x) \<le> K) F)" |
| 31355 | 489 |
|
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
490 |
lemma BfunI: |
| 44195 | 491 |
assumes K: "eventually (\<lambda>x. norm (f x) \<le> K) F" shows "Bfun f F" |
| 31355 | 492 |
unfolding Bfun_def |
493 |
proof (intro exI conjI allI) |
|
494 |
show "0 < max K 1" by simp |
|
495 |
next |
|
| 44195 | 496 |
show "eventually (\<lambda>x. norm (f x) \<le> max K 1) F" |
| 31355 | 497 |
using K by (rule eventually_elim1, simp) |
498 |
qed |
|
499 |
||
500 |
lemma BfunE: |
|
| 44195 | 501 |
assumes "Bfun f F" |
502 |
obtains B where "0 < B" and "eventually (\<lambda>x. norm (f x) \<le> B) F" |
|
| 31355 | 503 |
using assms unfolding Bfun_def by fast |
504 |
||
505 |
||
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
506 |
subsection {* Convergence to Zero *}
|
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
507 |
|
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
508 |
definition Zfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a filter \<Rightarrow> bool"
|
| 44195 | 509 |
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
|
510 |
|
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
511 |
lemma ZfunI: |
| 44195 | 512 |
"(\<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
|
513 |
unfolding Zfun_def by simp |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
514 |
|
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
515 |
lemma ZfunD: |
| 44195 | 516 |
"\<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
|
517 |
unfolding Zfun_def by simp |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
518 |
|
| 31355 | 519 |
lemma Zfun_ssubst: |
| 44195 | 520 |
"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
|
521 |
unfolding Zfun_def by (auto elim!: eventually_rev_mp) |
| 31355 | 522 |
|
| 44195 | 523 |
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
|
524 |
unfolding Zfun_def by simp |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
525 |
|
| 44195 | 526 |
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
|
527 |
unfolding Zfun_def by simp |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
528 |
|
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
529 |
lemma Zfun_imp_Zfun: |
| 44195 | 530 |
assumes f: "Zfun f F" |
531 |
assumes g: "eventually (\<lambda>x. norm (g x) \<le> norm (f x) * K) F" |
|
532 |
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
|
533 |
proof (cases) |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
534 |
assume K: "0 < K" |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
535 |
show ?thesis |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
536 |
proof (rule ZfunI) |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
537 |
fix r::real assume "0 < r" |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
538 |
hence "0 < r / K" |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
539 |
using K by (rule divide_pos_pos) |
| 44195 | 540 |
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
|
541 |
using ZfunD [OF f] by fast |
| 44195 | 542 |
with g show "eventually (\<lambda>x. norm (g x) < r) F" |
| 46887 | 543 |
proof eventually_elim |
544 |
case (elim x) |
|
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
545 |
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
|
546 |
by (simp add: pos_less_divide_eq K) |
| 46887 | 547 |
thus ?case |
548 |
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
|
549 |
qed |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
550 |
qed |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
551 |
next |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
552 |
assume "\<not> 0 < K" |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
553 |
hence K: "K \<le> 0" by (simp only: not_less) |
| 31355 | 554 |
show ?thesis |
555 |
proof (rule ZfunI) |
|
556 |
fix r :: real |
|
557 |
assume "0 < r" |
|
| 44195 | 558 |
from g show "eventually (\<lambda>x. norm (g x) < r) F" |
| 46887 | 559 |
proof eventually_elim |
560 |
case (elim x) |
|
561 |
also have "norm (f x) * K \<le> norm (f x) * 0" |
|
| 31355 | 562 |
using K norm_ge_zero by (rule mult_left_mono) |
| 46887 | 563 |
finally show ?case |
| 31355 | 564 |
using `0 < r` by simp |
565 |
qed |
|
566 |
qed |
|
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
567 |
qed |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
568 |
|
| 44195 | 569 |
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
|
570 |
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
|
571 |
|
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
572 |
lemma Zfun_add: |
| 44195 | 573 |
assumes f: "Zfun f F" and g: "Zfun g F" |
574 |
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
|
575 |
proof (rule ZfunI) |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
576 |
fix r::real assume "0 < r" |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
577 |
hence r: "0 < r / 2" by simp |
| 44195 | 578 |
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
|
579 |
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
|
580 |
moreover |
| 44195 | 581 |
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
|
582 |
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
|
583 |
ultimately |
| 44195 | 584 |
show "eventually (\<lambda>x. norm (f x + g x) < r) F" |
| 46887 | 585 |
proof eventually_elim |
586 |
case (elim x) |
|
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
587 |
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
|
588 |
by (rule norm_triangle_ineq) |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
589 |
also have "\<dots> < r/2 + r/2" |
| 46887 | 590 |
using elim by (rule add_strict_mono) |
591 |
finally show ?case |
|
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
592 |
by simp |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
593 |
qed |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
594 |
qed |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
595 |
|
| 44195 | 596 |
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
|
597 |
unfolding Zfun_def by simp |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
598 |
|
| 44195 | 599 |
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
|
600 |
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
|
601 |
|
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
602 |
lemma (in bounded_linear) Zfun: |
| 44195 | 603 |
assumes g: "Zfun g F" |
604 |
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
|
605 |
proof - |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
606 |
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
|
607 |
using bounded by fast |
| 44195 | 608 |
then have "eventually (\<lambda>x. norm (f (g x)) \<le> norm (g x) * K) F" |
| 31355 | 609 |
by simp |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
610 |
with g show ?thesis |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
611 |
by (rule Zfun_imp_Zfun) |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
612 |
qed |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
613 |
|
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
614 |
lemma (in bounded_bilinear) Zfun: |
| 44195 | 615 |
assumes f: "Zfun f F" |
616 |
assumes g: "Zfun g F" |
|
617 |
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
|
618 |
proof (rule ZfunI) |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
619 |
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
|
620 |
obtain K where K: "0 < K" |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
621 |
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
|
622 |
using pos_bounded by fast |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
623 |
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
|
624 |
by (rule positive_imp_inverse_positive) |
| 44195 | 625 |
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
|
626 |
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
|
627 |
moreover |
| 44195 | 628 |
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
|
629 |
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
|
630 |
ultimately |
| 44195 | 631 |
show "eventually (\<lambda>x. norm (f x ** g x) < r) F" |
| 46887 | 632 |
proof eventually_elim |
633 |
case (elim x) |
|
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
634 |
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
|
635 |
by (rule norm_le) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
636 |
also have "norm (f x) * norm (g x) * K < r * inverse K * K" |
| 46887 | 637 |
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
|
638 |
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
|
639 |
by simp |
| 46887 | 640 |
finally show ?case . |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
641 |
qed |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
642 |
qed |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
643 |
|
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
644 |
lemma (in bounded_bilinear) Zfun_left: |
| 44195 | 645 |
"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
|
646 |
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
|
647 |
|
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
648 |
lemma (in bounded_bilinear) Zfun_right: |
| 44195 | 649 |
"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
|
650 |
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
|
651 |
|
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
652 |
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
|
653 |
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
|
654 |
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
|
655 |
|
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
656 |
|
| 31902 | 657 |
subsection {* Limits *}
|
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
658 |
|
|
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
659 |
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
|
660 |
"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
|
661 |
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
662 |
syntax |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
663 |
"_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
|
664 |
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
665 |
translations |
|
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
666 |
"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
|
667 |
|
| 50325 | 668 |
lemma filterlim_iff: |
669 |
"(LIM x F1. f x :> F2) \<longleftrightarrow> (\<forall>P. eventually P F2 \<longrightarrow> eventually (\<lambda>x. P (f x)) F1)" |
|
670 |
unfolding filterlim_def le_filter_def eventually_filtermap .. |
|
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
671 |
|
| 50323 | 672 |
lemma filterlim_compose: |
673 |
"filterlim g F3 F2 \<Longrightarrow> filterlim f F2 F1 \<Longrightarrow> filterlim (\<lambda>x. g (f x)) F3 F1" |
|
674 |
unfolding filterlim_def filtermap_filtermap[symmetric] by (metis filtermap_mono order_trans) |
|
675 |
||
676 |
lemma filterlim_mono: |
|
677 |
"filterlim f F2 F1 \<Longrightarrow> F2 \<le> F2' \<Longrightarrow> F1' \<le> F1 \<Longrightarrow> filterlim f F2' F1'" |
|
678 |
unfolding filterlim_def by (metis filtermap_mono order_trans) |
|
679 |
||
| 50325 | 680 |
lemma filterlim_within: |
681 |
"(LIM x F1. f x :> F2 within S) \<longleftrightarrow> (eventually (\<lambda>x. f x \<in> S) F1 \<and> (LIM x F1. f x :> F2))" |
|
682 |
unfolding filterlim_def |
|
683 |
proof safe |
|
684 |
assume "filtermap f F1 \<le> F2 within S" then show "eventually (\<lambda>x. f x \<in> S) F1" |
|
685 |
by (auto simp: le_filter_def eventually_filtermap eventually_within elim!: allE[of _ "\<lambda>x. x \<in> S"]) |
|
686 |
qed (auto intro: within_le order_trans simp: le_within_iff eventually_filtermap) |
|
687 |
||
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
688 |
abbreviation (in topological_space) |
|
44206
5e4a1664106e
locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents:
44205
diff
changeset
|
689 |
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
|
690 |
"(f ---> l) F \<equiv> filterlim f (nhds l) F" |
| 45892 | 691 |
|
| 31902 | 692 |
ML {*
|
693 |
structure Tendsto_Intros = Named_Thms |
|
694 |
( |
|
| 45294 | 695 |
val name = @{binding tendsto_intros}
|
| 31902 | 696 |
val description = "introduction rules for tendsto" |
697 |
) |
|
| 31565 | 698 |
*} |
699 |
||
| 31902 | 700 |
setup Tendsto_Intros.setup |
| 31565 | 701 |
|
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
702 |
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
|
703 |
unfolding filterlim_def |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
704 |
proof safe |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
705 |
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
|
706 |
then show "eventually (\<lambda>x. f x \<in> S) F" |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
707 |
unfolding eventually_nhds eventually_filtermap le_filter_def |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
708 |
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
|
709 |
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
|
710 |
|
| 50325 | 711 |
lemma filterlim_at: |
712 |
"(LIM x F. f x :> at b) \<longleftrightarrow> (eventually (\<lambda>x. f x \<noteq> b) F \<and> (f ---> b) F)" |
|
713 |
by (simp add: at_def filterlim_within) |
|
714 |
||
| 44195 | 715 |
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
|
716 |
unfolding tendsto_def le_filter_def by fast |
|
36656
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
717 |
|
| 31488 | 718 |
lemma topological_tendstoI: |
| 44195 | 719 |
"(\<And>S. open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F) |
720 |
\<Longrightarrow> (f ---> l) F" |
|
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
721 |
unfolding tendsto_def by auto |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
722 |
|
| 31488 | 723 |
lemma topological_tendstoD: |
| 44195 | 724 |
"(f ---> l) F \<Longrightarrow> open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F" |
| 31488 | 725 |
unfolding tendsto_def by auto |
726 |
||
727 |
lemma tendstoI: |
|
| 44195 | 728 |
assumes "\<And>e. 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F" |
729 |
shows "(f ---> l) F" |
|
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
730 |
apply (rule topological_tendstoI) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
731 |
apply (simp add: open_dist) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
732 |
apply (drule (1) bspec, clarify) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
733 |
apply (drule assms) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
734 |
apply (erule eventually_elim1, simp) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
735 |
done |
| 31488 | 736 |
|
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
737 |
lemma tendstoD: |
| 44195 | 738 |
"(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
|
739 |
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
|
740 |
apply (clarsimp simp add: open_dist) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
741 |
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
|
742 |
apply (simp only: less_diff_eq) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
743 |
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
|
744 |
apply simp |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
745 |
apply simp |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
746 |
done |
| 31488 | 747 |
|
748 |
lemma tendsto_iff: |
|
| 44195 | 749 |
"(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
|
750 |
using tendstoI tendstoD by fast |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
751 |
|
| 44195 | 752 |
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
|
753 |
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
|
754 |
|
| 45031 | 755 |
lemma tendsto_bot [simp]: "(f ---> a) bot" |
756 |
unfolding tendsto_def by simp |
|
757 |
||
| 31565 | 758 |
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
|
759 |
unfolding tendsto_def eventually_at_topological by auto |
| 31565 | 760 |
|
761 |
lemma tendsto_ident_at_within [tendsto_intros]: |
|
| 36655 | 762 |
"((\<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
|
763 |
unfolding tendsto_def eventually_within eventually_at_topological by auto |
| 31565 | 764 |
|
| 44195 | 765 |
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
|
766 |
by (simp add: tendsto_def) |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
767 |
|
|
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
768 |
lemma tendsto_unique: |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
769 |
fixes f :: "'a \<Rightarrow> 'b::t2_space" |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
770 |
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
|
771 |
shows "a = b" |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
772 |
proof (rule ccontr) |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
773 |
assume "a \<noteq> b" |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
774 |
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
|
775 |
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
|
776 |
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
|
777 |
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
|
778 |
moreover |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
779 |
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
|
780 |
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
|
781 |
ultimately |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
782 |
have "eventually (\<lambda>x. False) F" |
| 46887 | 783 |
proof eventually_elim |
784 |
case (elim x) |
|
|
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
785 |
hence "f x \<in> U \<inter> V" by simp |
| 46887 | 786 |
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
|
787 |
qed |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
788 |
with `\<not> trivial_limit F` show "False" |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
789 |
by (simp add: trivial_limit_def) |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
790 |
qed |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
791 |
|
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
792 |
lemma tendsto_const_iff: |
|
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
793 |
fixes a b :: "'a::t2_space" |
|
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
794 |
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
|
795 |
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
|
796 |
|
| 50323 | 797 |
lemma tendsto_at_iff_tendsto_nhds: |
798 |
"(g ---> g l) (at l) \<longleftrightarrow> (g ---> g l) (nhds l)" |
|
799 |
unfolding tendsto_def at_def eventually_within |
|
800 |
by (intro ext all_cong imp_cong) (auto elim!: eventually_elim1) |
|
801 |
||
| 44218 | 802 |
lemma tendsto_compose: |
| 50323 | 803 |
"(g ---> g l) (at l) \<Longrightarrow> (f ---> l) F \<Longrightarrow> ((\<lambda>x. g (f x)) ---> g l) F" |
804 |
unfolding tendsto_at_iff_tendsto_nhds by (rule filterlim_compose[of g]) |
|
| 44218 | 805 |
|
|
44253
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
806 |
lemma tendsto_compose_eventually: |
| 50325 | 807 |
"(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" |
808 |
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
|
809 |
|
| 44251 | 810 |
lemma metric_tendsto_imp_tendsto: |
811 |
assumes f: "(f ---> a) F" |
|
812 |
assumes le: "eventually (\<lambda>x. dist (g x) b \<le> dist (f x) a) F" |
|
813 |
shows "(g ---> b) F" |
|
814 |
proof (rule tendstoI) |
|
815 |
fix e :: real assume "0 < e" |
|
816 |
with f have "eventually (\<lambda>x. dist (f x) a < e) F" by (rule tendstoD) |
|
817 |
with le show "eventually (\<lambda>x. dist (g x) b < e) F" |
|
818 |
using le_less_trans by (rule eventually_elim2) |
|
819 |
qed |
|
820 |
||
|
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
821 |
subsubsection {* Distance and norms *}
|
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
822 |
|
| 31565 | 823 |
lemma tendsto_dist [tendsto_intros]: |
| 44195 | 824 |
assumes f: "(f ---> l) F" and g: "(g ---> m) F" |
825 |
shows "((\<lambda>x. dist (f x) (g x)) ---> dist l m) F" |
|
| 31565 | 826 |
proof (rule tendstoI) |
827 |
fix e :: real assume "0 < e" |
|
828 |
hence e2: "0 < e/2" by simp |
|
829 |
from tendstoD [OF f e2] tendstoD [OF g e2] |
|
| 44195 | 830 |
show "eventually (\<lambda>x. dist (dist (f x) (g x)) (dist l m) < e) F" |
| 46887 | 831 |
proof (eventually_elim) |
832 |
case (elim x) |
|
| 31565 | 833 |
then show "dist (dist (f x) (g x)) (dist l m) < e" |
834 |
unfolding dist_real_def |
|
835 |
using dist_triangle2 [of "f x" "g x" "l"] |
|
836 |
using dist_triangle2 [of "g x" "l" "m"] |
|
837 |
using dist_triangle3 [of "l" "m" "f x"] |
|
838 |
using dist_triangle [of "f x" "m" "g x"] |
|
839 |
by arith |
|
840 |
qed |
|
841 |
qed |
|
842 |
||
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
843 |
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
|
844 |
unfolding dist_norm by simp |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
845 |
|
| 31565 | 846 |
lemma tendsto_norm [tendsto_intros]: |
| 44195 | 847 |
"(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
|
848 |
unfolding norm_conv_dist by (intro tendsto_intros) |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
849 |
|
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
850 |
lemma tendsto_norm_zero: |
| 44195 | 851 |
"(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
|
852 |
by (drule tendsto_norm, simp) |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
853 |
|
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
854 |
lemma tendsto_norm_zero_cancel: |
| 44195 | 855 |
"((\<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
|
856 |
unfolding tendsto_iff dist_norm by simp |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
857 |
|
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
858 |
lemma tendsto_norm_zero_iff: |
| 44195 | 859 |
"((\<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
|
860 |
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
|
861 |
|
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
862 |
lemma tendsto_rabs [tendsto_intros]: |
| 44195 | 863 |
"(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
|
864 |
by (fold real_norm_def, rule tendsto_norm) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
865 |
|
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
866 |
lemma tendsto_rabs_zero: |
| 44195 | 867 |
"(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
|
868 |
by (fold real_norm_def, rule tendsto_norm_zero) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
869 |
|
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
870 |
lemma tendsto_rabs_zero_cancel: |
| 44195 | 871 |
"((\<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
|
872 |
by (fold real_norm_def, rule tendsto_norm_zero_cancel) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
873 |
|
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
874 |
lemma tendsto_rabs_zero_iff: |
| 44195 | 875 |
"((\<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
|
876 |
by (fold real_norm_def, rule tendsto_norm_zero_iff) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
877 |
|
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
878 |
subsubsection {* Addition and subtraction *}
|
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
879 |
|
| 31565 | 880 |
lemma tendsto_add [tendsto_intros]: |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
881 |
fixes a b :: "'a::real_normed_vector" |
| 44195 | 882 |
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
|
883 |
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
|
884 |
|
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
885 |
lemma tendsto_add_zero: |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
886 |
fixes f g :: "'a::type \<Rightarrow> 'b::real_normed_vector" |
| 44195 | 887 |
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
|
888 |
by (drule (1) tendsto_add, simp) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
889 |
|
| 31565 | 890 |
lemma tendsto_minus [tendsto_intros]: |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
891 |
fixes a :: "'a::real_normed_vector" |
| 44195 | 892 |
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
|
893 |
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
|
894 |
|
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
895 |
lemma tendsto_minus_cancel: |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
896 |
fixes a :: "'a::real_normed_vector" |
| 44195 | 897 |
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
|
898 |
by (drule tendsto_minus, simp) |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
899 |
|
| 31565 | 900 |
lemma tendsto_diff [tendsto_intros]: |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
901 |
fixes a b :: "'a::real_normed_vector" |
| 44195 | 902 |
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
|
903 |
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
|
904 |
|
| 31588 | 905 |
lemma tendsto_setsum [tendsto_intros]: |
906 |
fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::real_normed_vector" |
|
| 44195 | 907 |
assumes "\<And>i. i \<in> S \<Longrightarrow> (f i ---> a i) F" |
908 |
shows "((\<lambda>x. \<Sum>i\<in>S. f i x) ---> (\<Sum>i\<in>S. a i)) F" |
|
| 31588 | 909 |
proof (cases "finite S") |
910 |
assume "finite S" thus ?thesis using assms |
|
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
911 |
by (induct, simp add: tendsto_const, simp add: tendsto_add) |
| 31588 | 912 |
next |
913 |
assume "\<not> finite S" thus ?thesis |
|
914 |
by (simp add: tendsto_const) |
|
915 |
qed |
|
916 |
||
| 45892 | 917 |
lemma real_tendsto_sandwich: |
918 |
fixes f g h :: "'a \<Rightarrow> real" |
|
919 |
assumes ev: "eventually (\<lambda>n. f n \<le> g n) net" "eventually (\<lambda>n. g n \<le> h n) net" |
|
920 |
assumes lim: "(f ---> c) net" "(h ---> c) net" |
|
921 |
shows "(g ---> c) net" |
|
922 |
proof - |
|
923 |
have "((\<lambda>n. g n - f n) ---> 0) net" |
|
924 |
proof (rule metric_tendsto_imp_tendsto) |
|
925 |
show "eventually (\<lambda>n. dist (g n - f n) 0 \<le> dist (h n - f n) 0) net" |
|
926 |
using ev by (rule eventually_elim2) (simp add: dist_real_def) |
|
927 |
show "((\<lambda>n. h n - f n) ---> 0) net" |
|
928 |
using tendsto_diff[OF lim(2,1)] by simp |
|
929 |
qed |
|
930 |
from tendsto_add[OF this lim(1)] show ?thesis by simp |
|
931 |
qed |
|
932 |
||
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
933 |
subsubsection {* Linear operators and multiplication *}
|
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
934 |
|
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
935 |
lemma (in bounded_linear) tendsto: |
| 44195 | 936 |
"(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
|
937 |
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
|
938 |
|
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
939 |
lemma (in bounded_linear) tendsto_zero: |
| 44195 | 940 |
"(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
|
941 |
by (drule tendsto, simp only: zero) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
942 |
|
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
943 |
lemma (in bounded_bilinear) tendsto: |
| 44195 | 944 |
"\<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
|
945 |
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
|
946 |
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
|
947 |
|
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
948 |
lemma (in bounded_bilinear) tendsto_zero: |
| 44195 | 949 |
assumes f: "(f ---> 0) F" |
950 |
assumes g: "(g ---> 0) F" |
|
951 |
shows "((\<lambda>x. f x ** g x) ---> 0) F" |
|
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
952 |
using tendsto [OF f g] by (simp add: zero_left) |
| 31355 | 953 |
|
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
954 |
lemma (in bounded_bilinear) tendsto_left_zero: |
| 44195 | 955 |
"(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
|
956 |
by (rule bounded_linear.tendsto_zero [OF bounded_linear_left]) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
957 |
|
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
958 |
lemma (in bounded_bilinear) tendsto_right_zero: |
| 44195 | 959 |
"(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
|
960 |
by (rule bounded_linear.tendsto_zero [OF bounded_linear_right]) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
961 |
|
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
962 |
lemmas tendsto_of_real [tendsto_intros] = |
|
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
963 |
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
|
964 |
|
|
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
965 |
lemmas tendsto_scaleR [tendsto_intros] = |
|
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
966 |
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
|
967 |
|
|
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
968 |
lemmas tendsto_mult [tendsto_intros] = |
|
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
969 |
bounded_bilinear.tendsto [OF bounded_bilinear_mult] |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
970 |
|
|
44568
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
971 |
lemmas tendsto_mult_zero = |
|
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
972 |
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
|
973 |
|
|
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
974 |
lemmas tendsto_mult_left_zero = |
|
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
975 |
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
|
976 |
|
|
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
977 |
lemmas tendsto_mult_right_zero = |
|
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
978 |
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
|
979 |
|
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
980 |
lemma tendsto_power [tendsto_intros]: |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
981 |
fixes f :: "'a \<Rightarrow> 'b::{power,real_normed_algebra}"
|
| 44195 | 982 |
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
|
983 |
by (induct n) (simp_all add: tendsto_const tendsto_mult) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
984 |
|
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
985 |
lemma tendsto_setprod [tendsto_intros]: |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
986 |
fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::{real_normed_algebra,comm_ring_1}"
|
| 44195 | 987 |
assumes "\<And>i. i \<in> S \<Longrightarrow> (f i ---> L i) F" |
988 |
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
|
989 |
proof (cases "finite S") |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
990 |
assume "finite S" thus ?thesis using assms |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
991 |
by (induct, simp add: tendsto_const, simp add: tendsto_mult) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
992 |
next |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
993 |
assume "\<not> finite S" thus ?thesis |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
994 |
by (simp add: tendsto_const) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
995 |
qed |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
996 |
|
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
997 |
subsubsection {* Inverse and division *}
|
| 31355 | 998 |
|
999 |
lemma (in bounded_bilinear) Zfun_prod_Bfun: |
|
| 44195 | 1000 |
assumes f: "Zfun f F" |
1001 |
assumes g: "Bfun g F" |
|
1002 |
shows "Zfun (\<lambda>x. f x ** g x) F" |
|
| 31355 | 1003 |
proof - |
1004 |
obtain K where K: "0 \<le> K" |
|
1005 |
and norm_le: "\<And>x y. norm (x ** y) \<le> norm x * norm y * K" |
|
1006 |
using nonneg_bounded by fast |
|
1007 |
obtain B where B: "0 < B" |
|
| 44195 | 1008 |
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
|
1009 |
using g by (rule BfunE) |
| 44195 | 1010 |
have "eventually (\<lambda>x. norm (f x ** g x) \<le> norm (f x) * (B * K)) F" |
| 46887 | 1011 |
using norm_g proof eventually_elim |
1012 |
case (elim x) |
|
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1013 |
have "norm (f x ** g x) \<le> norm (f x) * norm (g x) * K" |
| 31355 | 1014 |
by (rule norm_le) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1015 |
also have "\<dots> \<le> norm (f x) * B * K" |
|
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1016 |
by (intro mult_mono' order_refl norm_g norm_ge_zero |
| 46887 | 1017 |
mult_nonneg_nonneg K elim) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1018 |
also have "\<dots> = norm (f x) * (B * K)" |
| 31355 | 1019 |
by (rule mult_assoc) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1020 |
finally show "norm (f x ** g x) \<le> norm (f x) * (B * K)" . |
| 31355 | 1021 |
qed |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1022 |
with f show ?thesis |
|
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1023 |
by (rule Zfun_imp_Zfun) |
| 31355 | 1024 |
qed |
1025 |
||
1026 |
lemma (in bounded_bilinear) flip: |
|
1027 |
"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
|
1028 |
apply default |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1029 |
apply (rule add_right) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1030 |
apply (rule add_left) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1031 |
apply (rule scaleR_right) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1032 |
apply (rule scaleR_left) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1033 |
apply (subst mult_commute) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1034 |
using bounded by fast |
| 31355 | 1035 |
|
1036 |
lemma (in bounded_bilinear) Bfun_prod_Zfun: |
|
| 44195 | 1037 |
assumes f: "Bfun f F" |
1038 |
assumes g: "Zfun g F" |
|
1039 |
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
|
1040 |
using flip g f by (rule bounded_bilinear.Zfun_prod_Bfun) |
| 31355 | 1041 |
|
1042 |
lemma Bfun_inverse_lemma: |
|
1043 |
fixes x :: "'a::real_normed_div_algebra" |
|
1044 |
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
|
1045 |
apply (subst nonzero_norm_inverse, clarsimp) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1046 |
apply (erule (1) le_imp_inverse_le) |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
1047 |
done |
| 31355 | 1048 |
|
1049 |
lemma Bfun_inverse: |
|
1050 |
fixes a :: "'a::real_normed_div_algebra" |
|
| 44195 | 1051 |
assumes f: "(f ---> a) F" |
| 31355 | 1052 |
assumes a: "a \<noteq> 0" |
| 44195 | 1053 |
shows "Bfun (\<lambda>x. inverse (f x)) F" |
| 31355 | 1054 |
proof - |
1055 |
from a have "0 < norm a" by simp |
|
1056 |
hence "\<exists>r>0. r < norm a" by (rule dense) |
|
1057 |
then obtain r where r1: "0 < r" and r2: "r < norm a" by fast |
|
| 44195 | 1058 |
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
|
1059 |
using tendstoD [OF f r1] by fast |
| 44195 | 1060 |
hence "eventually (\<lambda>x. norm (inverse (f x)) \<le> inverse (norm a - r)) F" |
| 46887 | 1061 |
proof eventually_elim |
1062 |
case (elim x) |
|
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1063 |
hence 1: "norm (f x - a) < r" |
| 31355 | 1064 |
by (simp add: dist_norm) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1065 |
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
|
1066 |
hence "norm (inverse (f x)) = inverse (norm (f x))" |
| 31355 | 1067 |
by (rule nonzero_norm_inverse) |
1068 |
also have "\<dots> \<le> inverse (norm a - r)" |
|
1069 |
proof (rule le_imp_inverse_le) |
|
1070 |
show "0 < norm a - r" using r2 by simp |
|
1071 |
next |
|
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1072 |
have "norm a - norm (f x) \<le> norm (a - f x)" |
| 31355 | 1073 |
by (rule norm_triangle_ineq2) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1074 |
also have "\<dots> = norm (f x - a)" |
| 31355 | 1075 |
by (rule norm_minus_commute) |
1076 |
also have "\<dots> < r" using 1 . |
|
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1077 |
finally show "norm a - r \<le> norm (f x)" by simp |
| 31355 | 1078 |
qed |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
1079 |
finally show "norm (inverse (f x)) \<le> inverse (norm a - r)" . |
| 31355 | 1080 |
qed |
1081 |
thus ?thesis by (rule BfunI) |
|
1082 |
qed |
|
1083 |
||
| 31565 | 1084 |
lemma tendsto_inverse [tendsto_intros]: |
| 31355 | 1085 |
fixes a :: "'a::real_normed_div_algebra" |
| 44195 | 1086 |
assumes f: "(f ---> a) F" |
| 31355 | 1087 |
assumes a: "a \<noteq> 0" |
| 44195 | 1088 |
shows "((\<lambda>x. inverse (f x)) ---> inverse a) F" |
| 31355 | 1089 |
proof - |
1090 |
from a have "0 < norm a" by simp |
|
| 44195 | 1091 |
with f have "eventually (\<lambda>x. dist (f x) a < norm a) F" |
| 31355 | 1092 |
by (rule tendstoD) |
| 44195 | 1093 |
then have "eventually (\<lambda>x. f x \<noteq> 0) F" |
| 31355 | 1094 |
unfolding dist_norm by (auto elim!: eventually_elim1) |
| 44627 | 1095 |
with a have "eventually (\<lambda>x. inverse (f x) - inverse a = |
1096 |
- (inverse (f x) * (f x - a) * inverse a)) F" |
|
1097 |
by (auto elim!: eventually_elim1 simp: inverse_diff_inverse) |
|
1098 |
moreover have "Zfun (\<lambda>x. - (inverse (f x) * (f x - a) * inverse a)) F" |
|
1099 |
by (intro Zfun_minus Zfun_mult_left |
|
1100 |
bounded_bilinear.Bfun_prod_Zfun [OF bounded_bilinear_mult] |
|
1101 |
Bfun_inverse [OF f a] f [unfolded tendsto_Zfun_iff]) |
|
1102 |
ultimately show ?thesis |
|
1103 |
unfolding tendsto_Zfun_iff by (rule Zfun_ssubst) |
|
| 31355 | 1104 |
qed |
1105 |
||
| 31565 | 1106 |
lemma tendsto_divide [tendsto_intros]: |
| 31355 | 1107 |
fixes a b :: "'a::real_normed_field" |
| 44195 | 1108 |
shows "\<lbrakk>(f ---> a) F; (g ---> b) F; b \<noteq> 0\<rbrakk> |
1109 |
\<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
|
1110 |
by (simp add: tendsto_mult tendsto_inverse divide_inverse) |
| 31355 | 1111 |
|
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1112 |
lemma tendsto_sgn [tendsto_intros]: |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1113 |
fixes l :: "'a::real_normed_vector" |
| 44195 | 1114 |
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
|
1115 |
unfolding sgn_div_norm by (simp add: tendsto_intros) |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1116 |
|
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1117 |
subsection {* Limits to @{const at_top} and @{const at_bot} *}
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1118 |
|
|
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
1119 |
lemma filterlim_at_top: |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1120 |
fixes f :: "'a \<Rightarrow> ('b::dense_linorder)"
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1121 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. Z < f x) F)" |
| 50325 | 1122 |
by (auto simp: filterlim_iff eventually_at_top_dense elim!: eventually_elim1) |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1123 |
|
| 50323 | 1124 |
lemma filterlim_at_top_gt: |
1125 |
fixes f :: "'a \<Rightarrow> ('b::dense_linorder)" and c :: "'b"
|
|
1126 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z>c. eventually (\<lambda>x. Z < f x) F)" |
|
1127 |
unfolding filterlim_at_top |
|
1128 |
proof safe |
|
1129 |
fix Z assume *: "\<forall>Z>c. eventually (\<lambda>x. Z < f x) F" |
|
1130 |
from gt_ex[of "max Z c"] guess x .. |
|
1131 |
with *[THEN spec, of x] show "eventually (\<lambda>x. Z < f x) F" |
|
1132 |
by (auto elim!: eventually_elim1) |
|
1133 |
qed simp |
|
1134 |
||
|
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
1135 |
lemma filterlim_at_bot: |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1136 |
fixes f :: "'a \<Rightarrow> ('b::dense_linorder)"
|
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1137 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. f x < Z) F)" |
| 50325 | 1138 |
by (auto simp: filterlim_iff eventually_at_bot_dense elim!: eventually_elim1) |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1139 |
|
| 50323 | 1140 |
lemma filterlim_at_bot_lt: |
1141 |
fixes f :: "'a \<Rightarrow> ('b::dense_linorder)" and c :: "'b"
|
|
1142 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z<c. eventually (\<lambda>x. Z > f x) F)" |
|
1143 |
unfolding filterlim_at_bot |
|
1144 |
proof safe |
|
1145 |
fix Z assume *: "\<forall>Z<c. eventually (\<lambda>x. Z > f x) F" |
|
1146 |
from lt_ex[of "min Z c"] guess x .. |
|
1147 |
with *[THEN spec, of x] show "eventually (\<lambda>x. Z > f x) F" |
|
1148 |
by (auto elim!: eventually_elim1) |
|
1149 |
qed simp |
|
1150 |
||
| 50325 | 1151 |
lemma filterlim_at_infinity: |
1152 |
fixes f :: "_ \<Rightarrow> 'a\<Colon>real_normed_vector" |
|
1153 |
assumes "0 \<le> c" |
|
1154 |
shows "(LIM x F. f x :> at_infinity) \<longleftrightarrow> (\<forall>r>c. eventually (\<lambda>x. r \<le> norm (f x)) F)" |
|
1155 |
unfolding filterlim_iff eventually_at_infinity |
|
1156 |
proof safe |
|
1157 |
fix P :: "'a \<Rightarrow> bool" and b |
|
1158 |
assume *: "\<forall>r>c. eventually (\<lambda>x. r \<le> norm (f x)) F" |
|
1159 |
and P: "\<forall>x. b \<le> norm x \<longrightarrow> P x" |
|
1160 |
have "max b (c + 1) > c" by auto |
|
1161 |
with * have "eventually (\<lambda>x. max b (c + 1) \<le> norm (f x)) F" |
|
1162 |
by auto |
|
1163 |
then show "eventually (\<lambda>x. P (f x)) F" |
|
1164 |
proof eventually_elim |
|
1165 |
fix x assume "max b (c + 1) \<le> norm (f x)" |
|
1166 |
with P show "P (f x)" by auto |
|
1167 |
qed |
|
1168 |
qed force |
|
1169 |
||
|
50322
b06b95a5fda2
rename filter_lim to filterlim to be consistent with filtermap
hoelzl
parents:
50247
diff
changeset
|
1170 |
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
|
1171 |
unfolding filterlim_at_top |
|
50247
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1172 |
apply (intro allI) |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1173 |
apply (rule_tac c="natceiling (Z + 1)" in eventually_sequentiallyI) |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1174 |
apply (auto simp: natceiling_le_eq) |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1175 |
done |
|
491c5c81c2e8
introduce filter_lim as a generatlization of tendsto
hoelzl
parents:
49834
diff
changeset
|
1176 |
|
| 50323 | 1177 |
lemma filterlim_inverse_at_top_pos: |
1178 |
"LIM x (nhds 0 within {0::real <..}). inverse x :> at_top"
|
|
1179 |
unfolding filterlim_at_top_gt[where c=0] eventually_within |
|
1180 |
proof safe |
|
1181 |
fix Z :: real assume [arith]: "0 < Z" |
|
1182 |
then have "eventually (\<lambda>x. x < inverse Z) (nhds 0)" |
|
1183 |
by (auto simp add: eventually_nhds_metric dist_real_def intro!: exI[of _ "\<bar>inverse Z\<bar>"]) |
|
1184 |
then show "eventually (\<lambda>x. x \<in> {0<..} \<longrightarrow> Z < inverse x) (nhds 0)"
|
|
1185 |
by (auto elim!: eventually_elim1 simp: inverse_eq_divide field_simps) |
|
1186 |
qed |
|
1187 |
||
1188 |
lemma filterlim_inverse_at_top: |
|
1189 |
"(f ---> (0 :: real)) F \<Longrightarrow> eventually (\<lambda>x. 0 < f x) F \<Longrightarrow> LIM x F. inverse (f x) :> at_top" |
|
1190 |
by (intro filterlim_compose[OF filterlim_inverse_at_top_pos]) |
|
1191 |
(simp add: filterlim_def eventually_filtermap le_within_iff) |
|
1192 |
||
1193 |
lemma filterlim_inverse_at_bot_neg: |
|
1194 |
"LIM x (nhds 0 within {..< 0::real}). inverse x :> at_bot"
|
|
1195 |
unfolding filterlim_at_bot_lt[where c=0] eventually_within |
|
1196 |
proof safe |
|
1197 |
fix Z :: real assume [arith]: "Z < 0" |
|
1198 |
have "eventually (\<lambda>x. inverse Z < x) (nhds 0)" |
|
1199 |
by (auto simp add: eventually_nhds_metric dist_real_def intro!: exI[of _ "\<bar>inverse Z\<bar>"]) |
|
1200 |
then show "eventually (\<lambda>x. x \<in> {..< 0} \<longrightarrow> inverse x < Z) (nhds 0)"
|
|
1201 |
by (auto elim!: eventually_elim1 simp: inverse_eq_divide field_simps) |
|
1202 |
qed |
|
1203 |
||
1204 |
lemma filterlim_inverse_at_bot: |
|
1205 |
"(f ---> (0 :: real)) F \<Longrightarrow> eventually (\<lambda>x. f x < 0) F \<Longrightarrow> LIM x F. inverse (f x) :> at_bot" |
|
1206 |
by (intro filterlim_compose[OF filterlim_inverse_at_bot_neg]) |
|
1207 |
(simp add: filterlim_def eventually_filtermap le_within_iff) |
|
1208 |
||
1209 |
lemma filterlim_uminus_at_top_at_bot: "LIM x at_bot. - x :: real :> at_top" |
|
1210 |
unfolding filterlim_at_top eventually_at_bot_dense |
|
1211 |
by (blast intro: less_minus_iff[THEN iffD1]) |
|
1212 |
||
1213 |
lemma filterlim_uminus_at_top: "LIM x F. f x :> at_bot \<Longrightarrow> LIM x F. - (f x) :: real :> at_top" |
|
1214 |
by (rule filterlim_compose[OF filterlim_uminus_at_top_at_bot]) |
|
1215 |
||
1216 |
lemma filterlim_uminus_at_bot_at_top: "LIM x at_top. - x :: real :> at_bot" |
|
1217 |
unfolding filterlim_at_bot eventually_at_top_dense |
|
1218 |
by (blast intro: minus_less_iff[THEN iffD1]) |
|
1219 |
||
1220 |
lemma filterlim_uminus_at_bot: "LIM x F. f x :> at_top \<Longrightarrow> LIM x F. - (f x) :: real :> at_bot" |
|
1221 |
by (rule filterlim_compose[OF filterlim_uminus_at_bot_at_top]) |
|
1222 |
||
| 50325 | 1223 |
lemma tendsto_inverse_0: |
1224 |
fixes x :: "_ \<Rightarrow> 'a\<Colon>real_normed_div_algebra" |
|
1225 |
shows "(inverse ---> (0::'a)) at_infinity" |
|
1226 |
unfolding tendsto_Zfun_iff diff_0_right Zfun_def eventually_at_infinity |
|
1227 |
proof safe |
|
1228 |
fix r :: real assume "0 < r" |
|
1229 |
show "\<exists>b. \<forall>x. b \<le> norm x \<longrightarrow> norm (inverse x :: 'a) < r" |
|
1230 |
proof (intro exI[of _ "inverse (r / 2)"] allI impI) |
|
1231 |
fix x :: 'a |
|
1232 |
from `0 < r` have "0 < inverse (r / 2)" by simp |
|
1233 |
also assume *: "inverse (r / 2) \<le> norm x" |
|
1234 |
finally show "norm (inverse x) < r" |
|
1235 |
using * `0 < r` by (subst nonzero_norm_inverse) (simp_all add: inverse_eq_divide field_simps) |
|
1236 |
qed |
|
1237 |
qed |
|
1238 |
||
1239 |
lemma filterlim_inverse_at_infinity: |
|
1240 |
fixes x :: "_ \<Rightarrow> 'a\<Colon>{real_normed_div_algebra, division_ring_inverse_zero}"
|
|
1241 |
shows "filterlim inverse at_infinity (at (0::'a))" |
|
1242 |
unfolding filterlim_at_infinity[OF order_refl] |
|
1243 |
proof safe |
|
1244 |
fix r :: real assume "0 < r" |
|
1245 |
then show "eventually (\<lambda>x::'a. r \<le> norm (inverse x)) (at 0)" |
|
1246 |
unfolding eventually_at norm_inverse |
|
1247 |
by (intro exI[of _ "inverse r"]) |
|
1248 |
(auto simp: norm_conv_dist[symmetric] field_simps inverse_eq_divide) |
|
1249 |
qed |
|
1250 |
||
1251 |
lemma filterlim_inverse_at_iff: |
|
1252 |
fixes g :: "'a \<Rightarrow> 'b\<Colon>{real_normed_div_algebra, division_ring_inverse_zero}"
|
|
1253 |
shows "(LIM x F. inverse (g x) :> at 0) \<longleftrightarrow> (LIM x F. g x :> at_infinity)" |
|
1254 |
unfolding filterlim_def filtermap_filtermap[symmetric] |
|
1255 |
proof |
|
1256 |
assume "filtermap g F \<le> at_infinity" |
|
1257 |
then have "filtermap inverse (filtermap g F) \<le> filtermap inverse at_infinity" |
|
1258 |
by (rule filtermap_mono) |
|
1259 |
also have "\<dots> \<le> at 0" |
|
1260 |
using tendsto_inverse_0 |
|
1261 |
by (auto intro!: le_withinI exI[of _ 1] |
|
1262 |
simp: eventually_filtermap eventually_at_infinity filterlim_def at_def) |
|
1263 |
finally show "filtermap inverse (filtermap g F) \<le> at 0" . |
|
1264 |
next |
|
1265 |
assume "filtermap inverse (filtermap g F) \<le> at 0" |
|
1266 |
then have "filtermap inverse (filtermap inverse (filtermap g F)) \<le> filtermap inverse (at 0)" |
|
1267 |
by (rule filtermap_mono) |
|
1268 |
with filterlim_inverse_at_infinity show "filtermap g F \<le> at_infinity" |
|
1269 |
by (auto intro: order_trans simp: filterlim_def filtermap_filtermap) |
|
1270 |
qed |
|
1271 |
||
|
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1272 |
text {*
|
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1273 |
|
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1274 |
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
|
1275 |
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
|
1276 |
|
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1277 |
*} |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1278 |
|
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1279 |
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
|
1280 |
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
|
1281 |
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
|
1282 |
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
|
1283 |
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
|
1284 |
proof safe |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1285 |
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
|
1286 |
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
|
1287 |
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
|
1288 |
simp: dist_real_def abs_real_def split: split_if_asm) |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1289 |
moreover from g have "eventually (\<lambda>x. (Z / c * 2) < g x) F" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1290 |
unfolding filterlim_at_top by auto |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1291 |
ultimately show "eventually (\<lambda>x. Z < f x * g x) F" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1292 |
proof eventually_elim |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1293 |
fix x assume "c / 2 < f x" "Z / c * 2 < g x" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1294 |
with `0 < Z` `0 < c` have "c / 2 * (Z / c * 2) < f x * g x" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1295 |
by (intro mult_strict_mono) (auto simp: zero_le_divide_iff) |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1296 |
with `0 < c` show "Z < f x * g x" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1297 |
by simp |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1298 |
qed |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1299 |
qed |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1300 |
|
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1301 |
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
|
1302 |
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
|
1303 |
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
|
1304 |
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
|
1305 |
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
|
1306 |
proof safe |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1307 |
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
|
1308 |
from f have "eventually (\<lambda>x. 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
|
1309 |
unfolding filterlim_at_top by auto |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1310 |
moreover from g have "eventually (\<lambda>x. Z < g x) F" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1311 |
unfolding filterlim_at_top by auto |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1312 |
ultimately show "eventually (\<lambda>x. Z < f x * g x) F" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1313 |
proof eventually_elim |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1314 |
fix x assume "1 < f x" "Z < g x" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1315 |
with `0 < Z` have "1 * Z < f x * g x" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1316 |
by (intro mult_strict_mono) (auto simp: zero_le_divide_iff) |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1317 |
then show "Z < f x * g x" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1318 |
by simp |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1319 |
qed |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1320 |
qed |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1321 |
|
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1322 |
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
|
1323 |
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
|
1324 |
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
|
1325 |
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
|
1326 |
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
|
1327 |
proof safe |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1328 |
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
|
1329 |
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
|
1330 |
by (auto dest!: tendstoD[where e=1] elim!: eventually_elim1 simp: dist_real_def) |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1331 |
moreover from g have "eventually (\<lambda>x. Z - (c - 1) < g x) F" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1332 |
unfolding filterlim_at_top by auto |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1333 |
ultimately show "eventually (\<lambda>x. Z < f x + g x) F" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1334 |
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
|
1335 |
qed |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1336 |
|
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1337 |
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
|
1338 |
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
|
1339 |
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
|
1340 |
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
|
1341 |
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
|
1342 |
proof safe |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1343 |
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
|
1344 |
from f have "eventually (\<lambda>x. 0 < f x) F" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1345 |
unfolding filterlim_at_top by auto |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1346 |
moreover from g have "eventually (\<lambda>x. Z < g x) F" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1347 |
unfolding filterlim_at_top by auto |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1348 |
ultimately show "eventually (\<lambda>x. Z < f x + g x) F" |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1349 |
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
|
1350 |
qed |
|
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1351 |
|
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
1352 |
end |
|
50324
0a1242d5e7d4
add filterlim rules for diverging multiplication and addition; move at_infinity to the HOL image
hoelzl
parents:
50323
diff
changeset
|
1353 |