author | huffman |
Mon, 02 Apr 2012 16:06:24 +0200 | |
changeset 47299 | e705ef5ffe95 |
parent 46887 | cb891d9a23c1 |
child 47432 | e1576d13e933 |
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 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
23 |
typedef (open) '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 {* |
115 |
fun ev_elim_tac ctxt thms thm = let |
|
116 |
val thy = Proof_Context.theory_of ctxt |
|
117 |
val mp_thms = thms RL [@{thm eventually_rev_mp}] |
|
118 |
val raw_elim_thm = |
|
119 |
(@{thm allI} RS @{thm always_eventually}) |
|
120 |
|> fold (fn thm1 => fn thm2 => thm2 RS thm1) mp_thms |
|
121 |
|> fold (fn _ => fn thm => @{thm impI} RS thm) thms |
|
122 |
val cases_prop = prop_of (raw_elim_thm RS thm) |
|
123 |
val cases = (Rule_Cases.make_common (thy, cases_prop) [(("elim", []), [])]) |
|
124 |
in |
|
125 |
CASES cases (rtac raw_elim_thm 1) thm |
|
126 |
end |
|
127 |
||
128 |
fun eventually_elim_setup name = |
|
129 |
Method.setup name (Scan.succeed (fn ctxt => METHOD_CASES (ev_elim_tac ctxt))) |
|
130 |
"elimination of eventually quantifiers" |
|
131 |
*} |
|
132 |
||
133 |
setup {* eventually_elim_setup @{binding "eventually_elim"} *} |
|
45892 | 134 |
|
135 |
||
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
136 |
subsection {* Finer-than relation *} |
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
137 |
|
44195 | 138 |
text {* @{term "F \<le> F'"} means that filter @{term F} is finer than |
139 |
filter @{term F'}. *} |
|
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
140 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
141 |
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
|
142 |
begin |
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
143 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
144 |
definition le_filter_def: |
44195 | 145 |
"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
|
146 |
|
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
147 |
definition |
44195 | 148 |
"(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
|
149 |
|
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
150 |
definition |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
151 |
"top = Abs_filter (\<lambda>P. \<forall>x. P x)" |
36630 | 152 |
|
153 |
definition |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
154 |
"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
|
155 |
|
36630 | 156 |
definition |
44195 | 157 |
"sup F F' = Abs_filter (\<lambda>P. eventually P F \<and> eventually P F')" |
36630 | 158 |
|
159 |
definition |
|
44195 | 160 |
"inf F F' = Abs_filter |
161 |
(\<lambda>P. \<exists>Q R. eventually Q F \<and> eventually R F' \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))" |
|
36630 | 162 |
|
163 |
definition |
|
44195 | 164 |
"Sup S = Abs_filter (\<lambda>P. \<forall>F\<in>S. eventually P F)" |
36630 | 165 |
|
166 |
definition |
|
44195 | 167 |
"Inf S = Sup {F::'a filter. \<forall>F'\<in>S. F \<le> F'}" |
36630 | 168 |
|
169 |
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
|
170 |
unfolding top_filter_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
171 |
by (rule eventually_Abs_filter, rule is_filter.intro, auto) |
36630 | 172 |
|
36629
de62713aec6e
swap ordering on nets, so x <= y means 'x is finer than y'
huffman
parents:
36360
diff
changeset
|
173 |
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
|
174 |
unfolding bot_filter_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
175 |
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
|
176 |
|
36630 | 177 |
lemma eventually_sup: |
44195 | 178 |
"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
|
179 |
unfolding sup_filter_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
180 |
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
|
181 |
(auto elim!: eventually_rev_mp) |
36630 | 182 |
|
183 |
lemma eventually_inf: |
|
44195 | 184 |
"eventually P (inf F F') \<longleftrightarrow> |
185 |
(\<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
|
186 |
unfolding inf_filter_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
187 |
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
|
188 |
apply (fast intro: eventually_True) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
189 |
apply clarify |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
190 |
apply (intro exI conjI) |
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 (erule (1) eventually_conj) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
193 |
apply simp |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
194 |
apply auto |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
195 |
done |
36630 | 196 |
|
197 |
lemma eventually_Sup: |
|
44195 | 198 |
"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
|
199 |
unfolding Sup_filter_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
200 |
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
|
201 |
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
|
202 |
done |
36630 | 203 |
|
36360
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
204 |
instance proof |
44195 | 205 |
fix F F' F'' :: "'a filter" and S :: "'a filter set" |
206 |
{ show "F < F' \<longleftrightarrow> F \<le> F' \<and> \<not> F' \<le> F" |
|
207 |
by (rule less_filter_def) } |
|
208 |
{ show "F \<le> F" |
|
209 |
unfolding le_filter_def by simp } |
|
210 |
{ assume "F \<le> F'" and "F' \<le> F''" thus "F \<le> F''" |
|
211 |
unfolding le_filter_def by simp } |
|
212 |
{ assume "F \<le> F'" and "F' \<le> F" thus "F = F'" |
|
213 |
unfolding le_filter_def filter_eq_iff by fast } |
|
214 |
{ show "F \<le> top" |
|
215 |
unfolding le_filter_def eventually_top by (simp add: always_eventually) } |
|
216 |
{ show "bot \<le> F" |
|
217 |
unfolding le_filter_def by simp } |
|
218 |
{ show "F \<le> sup F F'" and "F' \<le> sup F F'" |
|
219 |
unfolding le_filter_def eventually_sup by simp_all } |
|
220 |
{ assume "F \<le> F''" and "F' \<le> F''" thus "sup F F' \<le> F''" |
|
221 |
unfolding le_filter_def eventually_sup by simp } |
|
222 |
{ show "inf F F' \<le> F" and "inf F F' \<le> F'" |
|
223 |
unfolding le_filter_def eventually_inf by (auto intro: eventually_True) } |
|
224 |
{ 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
|
225 |
unfolding le_filter_def eventually_inf |
44195 | 226 |
by (auto elim!: eventually_mono intro: eventually_conj) } |
227 |
{ assume "F \<in> S" thus "F \<le> Sup S" |
|
228 |
unfolding le_filter_def eventually_Sup by simp } |
|
229 |
{ assume "\<And>F. F \<in> S \<Longrightarrow> F \<le> F'" thus "Sup S \<le> F'" |
|
230 |
unfolding le_filter_def eventually_Sup by simp } |
|
231 |
{ assume "F'' \<in> S" thus "Inf S \<le> F''" |
|
232 |
unfolding le_filter_def Inf_filter_def eventually_Sup Ball_def by simp } |
|
233 |
{ assume "\<And>F'. F' \<in> S \<Longrightarrow> F \<le> F'" thus "F \<le> Inf S" |
|
234 |
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
|
235 |
qed |
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
236 |
|
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
237 |
end |
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
238 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
239 |
lemma filter_leD: |
44195 | 240 |
"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
|
241 |
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
|
242 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
243 |
lemma filter_leI: |
44195 | 244 |
"(\<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
|
245 |
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
|
246 |
|
9d8f7efd9289
define finer-than ordering on net type; move some theorems into Limits.thy
huffman
parents:
36358
diff
changeset
|
247 |
lemma eventually_False: |
44195 | 248 |
"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
|
249 |
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
|
250 |
|
44342
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
251 |
abbreviation (input) trivial_limit :: "'a filter \<Rightarrow> bool" |
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
252 |
where "trivial_limit F \<equiv> F = bot" |
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
253 |
|
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
254 |
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
|
255 |
by (rule eventually_False [symmetric]) |
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
256 |
|
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
257 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
258 |
subsection {* Map function for filters *} |
36654 | 259 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
260 |
definition filtermap :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a filter \<Rightarrow> 'b filter" |
44195 | 261 |
where "filtermap f F = Abs_filter (\<lambda>P. eventually (\<lambda>x. P (f x)) F)" |
36654 | 262 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
263 |
lemma eventually_filtermap: |
44195 | 264 |
"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
|
265 |
unfolding filtermap_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
266 |
apply (rule eventually_Abs_filter) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
267 |
apply (rule is_filter.intro) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
268 |
apply (auto elim!: eventually_rev_mp) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
269 |
done |
36654 | 270 |
|
44195 | 271 |
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
|
272 |
by (simp add: filter_eq_iff eventually_filtermap) |
36654 | 273 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
274 |
lemma filtermap_filtermap: |
44195 | 275 |
"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
|
276 |
by (simp add: filter_eq_iff eventually_filtermap) |
36654 | 277 |
|
44195 | 278 |
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
|
279 |
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
|
280 |
|
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
281 |
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
|
282 |
by (simp add: filter_eq_iff eventually_filtermap) |
36654 | 283 |
|
284 |
||
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
285 |
subsection {* Sequentially *} |
31392 | 286 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
287 |
definition sequentially :: "nat filter" |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
288 |
where "sequentially = Abs_filter (\<lambda>P. \<exists>k. \<forall>n\<ge>k. P n)" |
31392 | 289 |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
290 |
lemma eventually_sequentially: |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
291 |
"eventually P sequentially \<longleftrightarrow> (\<exists>N. \<forall>n\<ge>N. P n)" |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
292 |
unfolding sequentially_def |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
293 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
294 |
fix P Q :: "nat \<Rightarrow> bool" |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
295 |
assume "\<exists>i. \<forall>n\<ge>i. P n" and "\<exists>j. \<forall>n\<ge>j. Q n" |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
296 |
then obtain i j where "\<forall>n\<ge>i. P n" and "\<forall>n\<ge>j. Q n" by auto |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
297 |
then have "\<forall>n\<ge>max i j. P n \<and> Q n" by simp |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
298 |
then show "\<exists>k. \<forall>n\<ge>k. P n \<and> Q n" .. |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
299 |
qed auto |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
300 |
|
44342
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
301 |
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
|
302 |
unfolding filter_eq_iff eventually_sequentially by auto |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
303 |
|
44342
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
304 |
lemmas trivial_limit_sequentially = sequentially_bot |
8321948340ea
redefine constant 'trivial_limit' as an abbreviation
huffman
parents:
44282
diff
changeset
|
305 |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
306 |
lemma eventually_False_sequentially [simp]: |
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
307 |
"\<not> eventually (\<lambda>n. False) sequentially" |
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
308 |
by (simp add: eventually_False) |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
309 |
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
310 |
lemma le_sequentially: |
44195 | 311 |
"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
|
312 |
unfolding le_filter_def eventually_sequentially |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
313 |
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
|
314 |
|
45892 | 315 |
lemma eventually_sequentiallyI: |
316 |
assumes "\<And>x. c \<le> x \<Longrightarrow> P x" |
|
317 |
shows "eventually P sequentially" |
|
318 |
using assms by (auto simp: eventually_sequentially) |
|
319 |
||
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
320 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
321 |
subsection {* Standard filters *} |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
322 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
323 |
definition within :: "'a filter \<Rightarrow> 'a set \<Rightarrow> 'a filter" (infixr "within" 70) |
44195 | 324 |
where "F within S = Abs_filter (\<lambda>P. eventually (\<lambda>x. x \<in> S \<longrightarrow> P x) F)" |
31392 | 325 |
|
44206
5e4a1664106e
locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents:
44205
diff
changeset
|
326 |
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
|
327 |
where "nhds a = Abs_filter (\<lambda>P. \<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))" |
36654 | 328 |
|
44206
5e4a1664106e
locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents:
44205
diff
changeset
|
329 |
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
|
330 |
where "at a = nhds a within - {a}" |
31447
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
331 |
|
31392 | 332 |
lemma eventually_within: |
44195 | 333 |
"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
|
334 |
unfolding within_def |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
335 |
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
|
336 |
(auto elim!: eventually_rev_mp) |
31392 | 337 |
|
45031 | 338 |
lemma within_UNIV [simp]: "F within UNIV = F" |
339 |
unfolding filter_eq_iff eventually_within by simp |
|
340 |
||
341 |
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
|
342 |
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
|
343 |
|
36654 | 344 |
lemma eventually_nhds: |
345 |
"eventually P (nhds a) \<longleftrightarrow> (\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x))" |
|
346 |
unfolding nhds_def |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
347 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
36654 | 348 |
have "open UNIV \<and> a \<in> UNIV \<and> (\<forall>x\<in>UNIV. True)" by simp |
349 |
thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. True)" by - rule |
|
36358
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
350 |
next |
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
351 |
fix P Q |
36654 | 352 |
assume "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)" |
353 |
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
|
354 |
then obtain S T where |
36654 | 355 |
"open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x)" |
356 |
"open T \<and> a \<in> T \<and> (\<forall>x\<in>T. Q x)" by auto |
|
357 |
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
|
358 |
by (simp add: open_Int) |
36654 | 359 |
thus "\<exists>S. open S \<and> a \<in> S \<and> (\<forall>x\<in>S. P x \<and> Q x)" by - rule |
36358
246493d61204
define nets directly as filters, instead of as filter bases
huffman
parents:
31902
diff
changeset
|
360 |
qed auto |
31447
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
361 |
|
36656
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
362 |
lemma eventually_nhds_metric: |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
363 |
"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
|
364 |
unfolding eventually_nhds open_dist |
31447
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
365 |
apply safe |
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
366 |
apply fast |
31492
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents:
31488
diff
changeset
|
367 |
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
|
368 |
apply clarsimp |
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
369 |
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
|
370 |
apply (simp only: less_diff_eq) |
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
371 |
apply (erule le_less_trans [OF dist_triangle]) |
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
372 |
done |
97bab1ac463e
generalize type of 'at' to topological_space; generalize some lemmas
huffman
parents:
31392
diff
changeset
|
373 |
|
44571 | 374 |
lemma nhds_neq_bot [simp]: "nhds a \<noteq> bot" |
375 |
unfolding trivial_limit_def eventually_nhds by simp |
|
376 |
||
36656
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
377 |
lemma eventually_at_topological: |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
378 |
"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
|
379 |
unfolding at_def eventually_within eventually_nhds by simp |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
380 |
|
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
381 |
lemma eventually_at: |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
382 |
fixes a :: "'a::metric_space" |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
383 |
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
|
384 |
unfolding at_def eventually_within eventually_nhds_metric by auto |
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
385 |
|
44571 | 386 |
lemma at_eq_bot_iff: "at a = bot \<longleftrightarrow> open {a}" |
387 |
unfolding trivial_limit_def eventually_at_topological |
|
388 |
by (safe, case_tac "S = {a}", simp, fast, fast) |
|
389 |
||
390 |
lemma at_neq_bot [simp]: "at (a::'a::perfect_space) \<noteq> bot" |
|
391 |
by (simp add: at_eq_bot_iff not_open_singleton) |
|
392 |
||
31392 | 393 |
|
31355 | 394 |
subsection {* Boundedness *} |
395 |
||
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
396 |
definition Bfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a filter \<Rightarrow> bool" |
44195 | 397 |
where "Bfun f F = (\<exists>K>0. eventually (\<lambda>x. norm (f x) \<le> K) F)" |
31355 | 398 |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
399 |
lemma BfunI: |
44195 | 400 |
assumes K: "eventually (\<lambda>x. norm (f x) \<le> K) F" shows "Bfun f F" |
31355 | 401 |
unfolding Bfun_def |
402 |
proof (intro exI conjI allI) |
|
403 |
show "0 < max K 1" by simp |
|
404 |
next |
|
44195 | 405 |
show "eventually (\<lambda>x. norm (f x) \<le> max K 1) F" |
31355 | 406 |
using K by (rule eventually_elim1, simp) |
407 |
qed |
|
408 |
||
409 |
lemma BfunE: |
|
44195 | 410 |
assumes "Bfun f F" |
411 |
obtains B where "0 < B" and "eventually (\<lambda>x. norm (f x) \<le> B) F" |
|
31355 | 412 |
using assms unfolding Bfun_def by fast |
413 |
||
414 |
||
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
415 |
subsection {* Convergence to Zero *} |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
416 |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
417 |
definition Zfun :: "('a \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a filter \<Rightarrow> bool" |
44195 | 418 |
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
|
419 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
420 |
lemma ZfunI: |
44195 | 421 |
"(\<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
|
422 |
unfolding Zfun_def by simp |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
423 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
424 |
lemma ZfunD: |
44195 | 425 |
"\<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
|
426 |
unfolding Zfun_def by simp |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
427 |
|
31355 | 428 |
lemma Zfun_ssubst: |
44195 | 429 |
"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
|
430 |
unfolding Zfun_def by (auto elim!: eventually_rev_mp) |
31355 | 431 |
|
44195 | 432 |
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
|
433 |
unfolding Zfun_def by simp |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
434 |
|
44195 | 435 |
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
|
436 |
unfolding Zfun_def by simp |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
437 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
438 |
lemma Zfun_imp_Zfun: |
44195 | 439 |
assumes f: "Zfun f F" |
440 |
assumes g: "eventually (\<lambda>x. norm (g x) \<le> norm (f x) * K) F" |
|
441 |
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
|
442 |
proof (cases) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
443 |
assume K: "0 < K" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
444 |
show ?thesis |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
445 |
proof (rule ZfunI) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
446 |
fix r::real assume "0 < r" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
447 |
hence "0 < r / K" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
448 |
using K by (rule divide_pos_pos) |
44195 | 449 |
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
|
450 |
using ZfunD [OF f] by fast |
44195 | 451 |
with g show "eventually (\<lambda>x. norm (g x) < r) F" |
46887 | 452 |
proof eventually_elim |
453 |
case (elim x) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
454 |
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
|
455 |
by (simp add: pos_less_divide_eq K) |
46887 | 456 |
thus ?case |
457 |
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
|
458 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
459 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
460 |
next |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
461 |
assume "\<not> 0 < K" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
462 |
hence K: "K \<le> 0" by (simp only: not_less) |
31355 | 463 |
show ?thesis |
464 |
proof (rule ZfunI) |
|
465 |
fix r :: real |
|
466 |
assume "0 < r" |
|
44195 | 467 |
from g show "eventually (\<lambda>x. norm (g x) < r) F" |
46887 | 468 |
proof eventually_elim |
469 |
case (elim x) |
|
470 |
also have "norm (f x) * K \<le> norm (f x) * 0" |
|
31355 | 471 |
using K norm_ge_zero by (rule mult_left_mono) |
46887 | 472 |
finally show ?case |
31355 | 473 |
using `0 < r` by simp |
474 |
qed |
|
475 |
qed |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
476 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
477 |
|
44195 | 478 |
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
|
479 |
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
|
480 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
481 |
lemma Zfun_add: |
44195 | 482 |
assumes f: "Zfun f F" and g: "Zfun g F" |
483 |
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
|
484 |
proof (rule ZfunI) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
485 |
fix r::real assume "0 < r" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
486 |
hence r: "0 < r / 2" by simp |
44195 | 487 |
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
|
488 |
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
|
489 |
moreover |
44195 | 490 |
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
|
491 |
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
|
492 |
ultimately |
44195 | 493 |
show "eventually (\<lambda>x. norm (f x + g x) < r) F" |
46887 | 494 |
proof eventually_elim |
495 |
case (elim x) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
496 |
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
|
497 |
by (rule norm_triangle_ineq) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
498 |
also have "\<dots> < r/2 + r/2" |
46887 | 499 |
using elim by (rule add_strict_mono) |
500 |
finally show ?case |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
501 |
by simp |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
502 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
503 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
504 |
|
44195 | 505 |
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
|
506 |
unfolding Zfun_def by simp |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
507 |
|
44195 | 508 |
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
|
509 |
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
|
510 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
511 |
lemma (in bounded_linear) Zfun: |
44195 | 512 |
assumes g: "Zfun g F" |
513 |
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
|
514 |
proof - |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
515 |
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
|
516 |
using bounded by fast |
44195 | 517 |
then have "eventually (\<lambda>x. norm (f (g x)) \<le> norm (g x) * K) F" |
31355 | 518 |
by simp |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
519 |
with g show ?thesis |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
520 |
by (rule Zfun_imp_Zfun) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
521 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
522 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
523 |
lemma (in bounded_bilinear) Zfun: |
44195 | 524 |
assumes f: "Zfun f F" |
525 |
assumes g: "Zfun g F" |
|
526 |
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
|
527 |
proof (rule ZfunI) |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
528 |
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
|
529 |
obtain K where K: "0 < K" |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
530 |
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
|
531 |
using pos_bounded by fast |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
532 |
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
|
533 |
by (rule positive_imp_inverse_positive) |
44195 | 534 |
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
|
535 |
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
|
536 |
moreover |
44195 | 537 |
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
|
538 |
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
|
539 |
ultimately |
44195 | 540 |
show "eventually (\<lambda>x. norm (f x ** g x) < r) F" |
46887 | 541 |
proof eventually_elim |
542 |
case (elim x) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
543 |
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
|
544 |
by (rule norm_le) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
545 |
also have "norm (f x) * norm (g x) * K < r * inverse K * K" |
46887 | 546 |
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
|
547 |
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
|
548 |
by simp |
46887 | 549 |
finally show ?case . |
31349
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 |
qed |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
552 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
553 |
lemma (in bounded_bilinear) Zfun_left: |
44195 | 554 |
"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
|
555 |
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
|
556 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
557 |
lemma (in bounded_bilinear) Zfun_right: |
44195 | 558 |
"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
|
559 |
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
|
560 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
561 |
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
|
562 |
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
|
563 |
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
|
564 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
565 |
|
31902 | 566 |
subsection {* Limits *} |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
567 |
|
44206
5e4a1664106e
locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents:
44205
diff
changeset
|
568 |
definition (in topological_space) |
5e4a1664106e
locale-ize some constant definitions, so complete_space can inherit from metric_space
huffman
parents:
44205
diff
changeset
|
569 |
tendsto :: "('b \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'b filter \<Rightarrow> bool" (infixr "--->" 55) where |
44195 | 570 |
"(f ---> l) F \<longleftrightarrow> (\<forall>S. open S \<longrightarrow> l \<in> S \<longrightarrow> eventually (\<lambda>x. f x \<in> S) F)" |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
571 |
|
45892 | 572 |
definition real_tendsto_inf :: "('a \<Rightarrow> real) \<Rightarrow> 'a filter \<Rightarrow> bool" where |
573 |
"real_tendsto_inf f F \<equiv> \<forall>x. eventually (\<lambda>y. x < f y) F" |
|
574 |
||
31902 | 575 |
ML {* |
576 |
structure Tendsto_Intros = Named_Thms |
|
577 |
( |
|
45294 | 578 |
val name = @{binding tendsto_intros} |
31902 | 579 |
val description = "introduction rules for tendsto" |
580 |
) |
|
31565 | 581 |
*} |
582 |
||
31902 | 583 |
setup Tendsto_Intros.setup |
31565 | 584 |
|
44195 | 585 |
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
|
586 |
unfolding tendsto_def le_filter_def by fast |
36656
fec55067ae9b
add lemmas eventually_nhds_metric and tendsto_mono
huffman
parents:
36655
diff
changeset
|
587 |
|
31488 | 588 |
lemma topological_tendstoI: |
44195 | 589 |
"(\<And>S. open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F) |
590 |
\<Longrightarrow> (f ---> l) F" |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
591 |
unfolding tendsto_def by auto |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
592 |
|
31488 | 593 |
lemma topological_tendstoD: |
44195 | 594 |
"(f ---> l) F \<Longrightarrow> open S \<Longrightarrow> l \<in> S \<Longrightarrow> eventually (\<lambda>x. f x \<in> S) F" |
31488 | 595 |
unfolding tendsto_def by auto |
596 |
||
597 |
lemma tendstoI: |
|
44195 | 598 |
assumes "\<And>e. 0 < e \<Longrightarrow> eventually (\<lambda>x. dist (f x) l < e) F" |
599 |
shows "(f ---> l) F" |
|
44081
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
600 |
apply (rule topological_tendstoI) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
601 |
apply (simp add: open_dist) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
602 |
apply (drule (1) bspec, clarify) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
603 |
apply (drule assms) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
604 |
apply (erule eventually_elim1, simp) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
605 |
done |
31488 | 606 |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
607 |
lemma tendstoD: |
44195 | 608 |
"(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
|
609 |
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
|
610 |
apply (clarsimp simp add: open_dist) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
611 |
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
|
612 |
apply (simp only: less_diff_eq) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
613 |
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
|
614 |
apply simp |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
615 |
apply simp |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
616 |
done |
31488 | 617 |
|
618 |
lemma tendsto_iff: |
|
44195 | 619 |
"(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
|
620 |
using tendstoI tendstoD by fast |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
621 |
|
44195 | 622 |
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
|
623 |
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
|
624 |
|
45031 | 625 |
lemma tendsto_bot [simp]: "(f ---> a) bot" |
626 |
unfolding tendsto_def by simp |
|
627 |
||
31565 | 628 |
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
|
629 |
unfolding tendsto_def eventually_at_topological by auto |
31565 | 630 |
|
631 |
lemma tendsto_ident_at_within [tendsto_intros]: |
|
36655 | 632 |
"((\<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
|
633 |
unfolding tendsto_def eventually_within eventually_at_topological by auto |
31565 | 634 |
|
44195 | 635 |
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
|
636 |
by (simp add: tendsto_def) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
637 |
|
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
638 |
lemma tendsto_unique: |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
639 |
fixes f :: "'a \<Rightarrow> 'b::t2_space" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
640 |
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
|
641 |
shows "a = b" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
642 |
proof (rule ccontr) |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
643 |
assume "a \<noteq> b" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
644 |
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
|
645 |
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
|
646 |
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
|
647 |
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
|
648 |
moreover |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
649 |
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
|
650 |
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
|
651 |
ultimately |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
652 |
have "eventually (\<lambda>x. False) F" |
46887 | 653 |
proof eventually_elim |
654 |
case (elim x) |
|
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
655 |
hence "f x \<in> U \<inter> V" by simp |
46887 | 656 |
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
|
657 |
qed |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
658 |
with `\<not> trivial_limit F` show "False" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
659 |
by (simp add: trivial_limit_def) |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
660 |
qed |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
661 |
|
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
662 |
lemma tendsto_const_iff: |
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
663 |
fixes a b :: "'a::t2_space" |
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
664 |
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
|
665 |
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
|
666 |
|
44218 | 667 |
lemma tendsto_compose: |
668 |
assumes g: "(g ---> g l) (at l)" |
|
669 |
assumes f: "(f ---> l) F" |
|
670 |
shows "((\<lambda>x. g (f x)) ---> g l) F" |
|
671 |
proof (rule topological_tendstoI) |
|
672 |
fix B assume B: "open B" "g l \<in> B" |
|
673 |
obtain A where A: "open A" "l \<in> A" |
|
674 |
and gB: "\<forall>y. y \<in> A \<longrightarrow> g y \<in> B" |
|
675 |
using topological_tendstoD [OF g B] B(2) |
|
676 |
unfolding eventually_at_topological by fast |
|
677 |
hence "\<forall>x. f x \<in> A \<longrightarrow> g (f x) \<in> B" by simp |
|
678 |
from this topological_tendstoD [OF f A] |
|
679 |
show "eventually (\<lambda>x. g (f x) \<in> B) F" |
|
680 |
by (rule eventually_mono) |
|
681 |
qed |
|
682 |
||
44253
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
683 |
lemma tendsto_compose_eventually: |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
684 |
assumes g: "(g ---> m) (at l)" |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
685 |
assumes f: "(f ---> l) F" |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
686 |
assumes inj: "eventually (\<lambda>x. f x \<noteq> l) F" |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
687 |
shows "((\<lambda>x. g (f x)) ---> m) F" |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
688 |
proof (rule topological_tendstoI) |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
689 |
fix B assume B: "open B" "m \<in> B" |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
690 |
obtain A where A: "open A" "l \<in> A" |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
691 |
and gB: "\<And>y. y \<in> A \<Longrightarrow> y \<noteq> l \<Longrightarrow> g y \<in> B" |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
692 |
using topological_tendstoD [OF g B] |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
693 |
unfolding eventually_at_topological by fast |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
694 |
show "eventually (\<lambda>x. g (f x) \<in> B) F" |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
695 |
using topological_tendstoD [OF f A] inj |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
696 |
by (rule eventually_elim2) (simp add: gB) |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
697 |
qed |
c073a0bd8458
add lemma tendsto_compose_eventually; use it to shorten some proofs
huffman
parents:
44251
diff
changeset
|
698 |
|
44251 | 699 |
lemma metric_tendsto_imp_tendsto: |
700 |
assumes f: "(f ---> a) F" |
|
701 |
assumes le: "eventually (\<lambda>x. dist (g x) b \<le> dist (f x) a) F" |
|
702 |
shows "(g ---> b) F" |
|
703 |
proof (rule tendstoI) |
|
704 |
fix e :: real assume "0 < e" |
|
705 |
with f have "eventually (\<lambda>x. dist (f x) a < e) F" by (rule tendstoD) |
|
706 |
with le show "eventually (\<lambda>x. dist (g x) b < e) F" |
|
707 |
using le_less_trans by (rule eventually_elim2) |
|
708 |
qed |
|
709 |
||
45892 | 710 |
lemma real_tendsto_inf_real: "real_tendsto_inf real sequentially" |
711 |
proof (unfold real_tendsto_inf_def, rule allI) |
|
712 |
fix x show "eventually (\<lambda>y. x < real y) sequentially" |
|
713 |
by (rule eventually_sequentiallyI[of "natceiling (x + 1)"]) |
|
714 |
(simp add: natceiling_le_eq) |
|
715 |
qed |
|
716 |
||
717 |
||
718 |
||
44205
18da2a87421c
generalize constant 'lim' and limit uniqueness theorems to class t2_space
huffman
parents:
44195
diff
changeset
|
719 |
subsubsection {* Distance and norms *} |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
720 |
|
31565 | 721 |
lemma tendsto_dist [tendsto_intros]: |
44195 | 722 |
assumes f: "(f ---> l) F" and g: "(g ---> m) F" |
723 |
shows "((\<lambda>x. dist (f x) (g x)) ---> dist l m) F" |
|
31565 | 724 |
proof (rule tendstoI) |
725 |
fix e :: real assume "0 < e" |
|
726 |
hence e2: "0 < e/2" by simp |
|
727 |
from tendstoD [OF f e2] tendstoD [OF g e2] |
|
44195 | 728 |
show "eventually (\<lambda>x. dist (dist (f x) (g x)) (dist l m) < e) F" |
46887 | 729 |
proof (eventually_elim) |
730 |
case (elim x) |
|
31565 | 731 |
then show "dist (dist (f x) (g x)) (dist l m) < e" |
732 |
unfolding dist_real_def |
|
733 |
using dist_triangle2 [of "f x" "g x" "l"] |
|
734 |
using dist_triangle2 [of "g x" "l" "m"] |
|
735 |
using dist_triangle3 [of "l" "m" "f x"] |
|
736 |
using dist_triangle [of "f x" "m" "g x"] |
|
737 |
by arith |
|
738 |
qed |
|
739 |
qed |
|
740 |
||
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
741 |
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
|
742 |
unfolding dist_norm by simp |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
743 |
|
31565 | 744 |
lemma tendsto_norm [tendsto_intros]: |
44195 | 745 |
"(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
|
746 |
unfolding norm_conv_dist by (intro tendsto_intros) |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
747 |
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
748 |
lemma tendsto_norm_zero: |
44195 | 749 |
"(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
|
750 |
by (drule tendsto_norm, simp) |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
751 |
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
752 |
lemma tendsto_norm_zero_cancel: |
44195 | 753 |
"((\<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
|
754 |
unfolding tendsto_iff dist_norm by simp |
36662
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
755 |
|
621122eeb138
generalize types of LIMSEQ and LIM; generalize many lemmas
huffman
parents:
36656
diff
changeset
|
756 |
lemma tendsto_norm_zero_iff: |
44195 | 757 |
"((\<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
|
758 |
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
|
759 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
760 |
lemma tendsto_rabs [tendsto_intros]: |
44195 | 761 |
"(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
|
762 |
by (fold real_norm_def, rule tendsto_norm) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
763 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
764 |
lemma tendsto_rabs_zero: |
44195 | 765 |
"(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
|
766 |
by (fold real_norm_def, rule tendsto_norm_zero) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
767 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
768 |
lemma tendsto_rabs_zero_cancel: |
44195 | 769 |
"((\<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
|
770 |
by (fold real_norm_def, rule tendsto_norm_zero_cancel) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
771 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
772 |
lemma tendsto_rabs_zero_iff: |
44195 | 773 |
"((\<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
|
774 |
by (fold real_norm_def, rule tendsto_norm_zero_iff) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
775 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
776 |
subsubsection {* Addition and subtraction *} |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
777 |
|
31565 | 778 |
lemma tendsto_add [tendsto_intros]: |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
779 |
fixes a b :: "'a::real_normed_vector" |
44195 | 780 |
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
|
781 |
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
|
782 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
783 |
lemma tendsto_add_zero: |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
784 |
fixes f g :: "'a::type \<Rightarrow> 'b::real_normed_vector" |
44195 | 785 |
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
|
786 |
by (drule (1) tendsto_add, simp) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
787 |
|
31565 | 788 |
lemma tendsto_minus [tendsto_intros]: |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
789 |
fixes a :: "'a::real_normed_vector" |
44195 | 790 |
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
|
791 |
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
|
792 |
|
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
793 |
lemma tendsto_minus_cancel: |
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
794 |
fixes a :: "'a::real_normed_vector" |
44195 | 795 |
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
|
796 |
by (drule tendsto_minus, simp) |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
797 |
|
31565 | 798 |
lemma tendsto_diff [tendsto_intros]: |
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
799 |
fixes a b :: "'a::real_normed_vector" |
44195 | 800 |
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
|
801 |
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
|
802 |
|
31588 | 803 |
lemma tendsto_setsum [tendsto_intros]: |
804 |
fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::real_normed_vector" |
|
44195 | 805 |
assumes "\<And>i. i \<in> S \<Longrightarrow> (f i ---> a i) F" |
806 |
shows "((\<lambda>x. \<Sum>i\<in>S. f i x) ---> (\<Sum>i\<in>S. a i)) F" |
|
31588 | 807 |
proof (cases "finite S") |
808 |
assume "finite S" thus ?thesis using assms |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
809 |
by (induct, simp add: tendsto_const, simp add: tendsto_add) |
31588 | 810 |
next |
811 |
assume "\<not> finite S" thus ?thesis |
|
812 |
by (simp add: tendsto_const) |
|
813 |
qed |
|
814 |
||
45892 | 815 |
lemma real_tendsto_sandwich: |
816 |
fixes f g h :: "'a \<Rightarrow> real" |
|
817 |
assumes ev: "eventually (\<lambda>n. f n \<le> g n) net" "eventually (\<lambda>n. g n \<le> h n) net" |
|
818 |
assumes lim: "(f ---> c) net" "(h ---> c) net" |
|
819 |
shows "(g ---> c) net" |
|
820 |
proof - |
|
821 |
have "((\<lambda>n. g n - f n) ---> 0) net" |
|
822 |
proof (rule metric_tendsto_imp_tendsto) |
|
823 |
show "eventually (\<lambda>n. dist (g n - f n) 0 \<le> dist (h n - f n) 0) net" |
|
824 |
using ev by (rule eventually_elim2) (simp add: dist_real_def) |
|
825 |
show "((\<lambda>n. h n - f n) ---> 0) net" |
|
826 |
using tendsto_diff[OF lim(2,1)] by simp |
|
827 |
qed |
|
828 |
from tendsto_add[OF this lim(1)] show ?thesis by simp |
|
829 |
qed |
|
830 |
||
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
831 |
subsubsection {* Linear operators and multiplication *} |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
832 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
833 |
lemma (in bounded_linear) tendsto: |
44195 | 834 |
"(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
|
835 |
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
|
836 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
837 |
lemma (in bounded_linear) tendsto_zero: |
44195 | 838 |
"(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
|
839 |
by (drule tendsto, simp only: zero) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
840 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
841 |
lemma (in bounded_bilinear) tendsto: |
44195 | 842 |
"\<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
|
843 |
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
|
844 |
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
|
845 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
846 |
lemma (in bounded_bilinear) tendsto_zero: |
44195 | 847 |
assumes f: "(f ---> 0) F" |
848 |
assumes g: "(g ---> 0) F" |
|
849 |
shows "((\<lambda>x. f x ** g x) ---> 0) F" |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
850 |
using tendsto [OF f g] by (simp add: zero_left) |
31355 | 851 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
852 |
lemma (in bounded_bilinear) tendsto_left_zero: |
44195 | 853 |
"(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
|
854 |
by (rule bounded_linear.tendsto_zero [OF bounded_linear_left]) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
855 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
856 |
lemma (in bounded_bilinear) tendsto_right_zero: |
44195 | 857 |
"(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
|
858 |
by (rule bounded_linear.tendsto_zero [OF bounded_linear_right]) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
859 |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
860 |
lemmas tendsto_of_real [tendsto_intros] = |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
861 |
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
|
862 |
|
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
863 |
lemmas tendsto_scaleR [tendsto_intros] = |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
864 |
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
|
865 |
|
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
866 |
lemmas tendsto_mult [tendsto_intros] = |
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44253
diff
changeset
|
867 |
bounded_bilinear.tendsto [OF bounded_bilinear_mult] |
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
868 |
|
44568
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
869 |
lemmas tendsto_mult_zero = |
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
870 |
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
|
871 |
|
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
872 |
lemmas tendsto_mult_left_zero = |
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
873 |
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
|
874 |
|
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
875 |
lemmas tendsto_mult_right_zero = |
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44342
diff
changeset
|
876 |
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
|
877 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
878 |
lemma tendsto_power [tendsto_intros]: |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
879 |
fixes f :: "'a \<Rightarrow> 'b::{power,real_normed_algebra}" |
44195 | 880 |
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
|
881 |
by (induct n) (simp_all add: tendsto_const tendsto_mult) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
882 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
883 |
lemma tendsto_setprod [tendsto_intros]: |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
884 |
fixes f :: "'a \<Rightarrow> 'b \<Rightarrow> 'c::{real_normed_algebra,comm_ring_1}" |
44195 | 885 |
assumes "\<And>i. i \<in> S \<Longrightarrow> (f i ---> L i) F" |
886 |
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
|
887 |
proof (cases "finite S") |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
888 |
assume "finite S" thus ?thesis using assms |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
889 |
by (induct, simp add: tendsto_const, simp add: tendsto_mult) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
890 |
next |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
891 |
assume "\<not> finite S" thus ?thesis |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
892 |
by (simp add: tendsto_const) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
893 |
qed |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
894 |
|
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
895 |
subsubsection {* Inverse and division *} |
31355 | 896 |
|
897 |
lemma (in bounded_bilinear) Zfun_prod_Bfun: |
|
44195 | 898 |
assumes f: "Zfun f F" |
899 |
assumes g: "Bfun g F" |
|
900 |
shows "Zfun (\<lambda>x. f x ** g x) F" |
|
31355 | 901 |
proof - |
902 |
obtain K where K: "0 \<le> K" |
|
903 |
and norm_le: "\<And>x y. norm (x ** y) \<le> norm x * norm y * K" |
|
904 |
using nonneg_bounded by fast |
|
905 |
obtain B where B: "0 < B" |
|
44195 | 906 |
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
|
907 |
using g by (rule BfunE) |
44195 | 908 |
have "eventually (\<lambda>x. norm (f x ** g x) \<le> norm (f x) * (B * K)) F" |
46887 | 909 |
using norm_g proof eventually_elim |
910 |
case (elim x) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
911 |
have "norm (f x ** g x) \<le> norm (f x) * norm (g x) * K" |
31355 | 912 |
by (rule norm_le) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
913 |
also have "\<dots> \<le> norm (f x) * B * K" |
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
914 |
by (intro mult_mono' order_refl norm_g norm_ge_zero |
46887 | 915 |
mult_nonneg_nonneg K elim) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
916 |
also have "\<dots> = norm (f x) * (B * K)" |
31355 | 917 |
by (rule mult_assoc) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
918 |
finally show "norm (f x ** g x) \<le> norm (f x) * (B * K)" . |
31355 | 919 |
qed |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
920 |
with f show ?thesis |
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
921 |
by (rule Zfun_imp_Zfun) |
31355 | 922 |
qed |
923 |
||
924 |
lemma (in bounded_bilinear) flip: |
|
925 |
"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
|
926 |
apply default |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
927 |
apply (rule add_right) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
928 |
apply (rule add_left) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
929 |
apply (rule scaleR_right) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
930 |
apply (rule scaleR_left) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
931 |
apply (subst mult_commute) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
932 |
using bounded by fast |
31355 | 933 |
|
934 |
lemma (in bounded_bilinear) Bfun_prod_Zfun: |
|
44195 | 935 |
assumes f: "Bfun f F" |
936 |
assumes g: "Zfun g F" |
|
937 |
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
|
938 |
using flip g f by (rule bounded_bilinear.Zfun_prod_Bfun) |
31355 | 939 |
|
940 |
lemma Bfun_inverse_lemma: |
|
941 |
fixes x :: "'a::real_normed_div_algebra" |
|
942 |
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
|
943 |
apply (subst nonzero_norm_inverse, clarsimp) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
944 |
apply (erule (1) le_imp_inverse_le) |
730f7cced3a6
rename type 'a net to 'a filter, following standard mathematical terminology
huffman
parents:
44079
diff
changeset
|
945 |
done |
31355 | 946 |
|
947 |
lemma Bfun_inverse: |
|
948 |
fixes a :: "'a::real_normed_div_algebra" |
|
44195 | 949 |
assumes f: "(f ---> a) F" |
31355 | 950 |
assumes a: "a \<noteq> 0" |
44195 | 951 |
shows "Bfun (\<lambda>x. inverse (f x)) F" |
31355 | 952 |
proof - |
953 |
from a have "0 < norm a" by simp |
|
954 |
hence "\<exists>r>0. r < norm a" by (rule dense) |
|
955 |
then obtain r where r1: "0 < r" and r2: "r < norm a" by fast |
|
44195 | 956 |
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
|
957 |
using tendstoD [OF f r1] by fast |
44195 | 958 |
hence "eventually (\<lambda>x. norm (inverse (f x)) \<le> inverse (norm a - r)) F" |
46887 | 959 |
proof eventually_elim |
960 |
case (elim x) |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
961 |
hence 1: "norm (f x - a) < r" |
31355 | 962 |
by (simp add: dist_norm) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
963 |
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
|
964 |
hence "norm (inverse (f x)) = inverse (norm (f x))" |
31355 | 965 |
by (rule nonzero_norm_inverse) |
966 |
also have "\<dots> \<le> inverse (norm a - r)" |
|
967 |
proof (rule le_imp_inverse_le) |
|
968 |
show "0 < norm a - r" using r2 by simp |
|
969 |
next |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
970 |
have "norm a - norm (f x) \<le> norm (a - f x)" |
31355 | 971 |
by (rule norm_triangle_ineq2) |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
972 |
also have "\<dots> = norm (f x - a)" |
31355 | 973 |
by (rule norm_minus_commute) |
974 |
also have "\<dots> < r" using 1 . |
|
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
975 |
finally show "norm a - r \<le> norm (f x)" by simp |
31355 | 976 |
qed |
31487
93938cafc0e6
put syntax for tendsto in Limits.thy; rename variables
huffman
parents:
31447
diff
changeset
|
977 |
finally show "norm (inverse (f x)) \<le> inverse (norm a - r)" . |
31355 | 978 |
qed |
979 |
thus ?thesis by (rule BfunI) |
|
980 |
qed |
|
981 |
||
31565 | 982 |
lemma tendsto_inverse [tendsto_intros]: |
31355 | 983 |
fixes a :: "'a::real_normed_div_algebra" |
44195 | 984 |
assumes f: "(f ---> a) F" |
31355 | 985 |
assumes a: "a \<noteq> 0" |
44195 | 986 |
shows "((\<lambda>x. inverse (f x)) ---> inverse a) F" |
31355 | 987 |
proof - |
988 |
from a have "0 < norm a" by simp |
|
44195 | 989 |
with f have "eventually (\<lambda>x. dist (f x) a < norm a) F" |
31355 | 990 |
by (rule tendstoD) |
44195 | 991 |
then have "eventually (\<lambda>x. f x \<noteq> 0) F" |
31355 | 992 |
unfolding dist_norm by (auto elim!: eventually_elim1) |
44627 | 993 |
with a have "eventually (\<lambda>x. inverse (f x) - inverse a = |
994 |
- (inverse (f x) * (f x - a) * inverse a)) F" |
|
995 |
by (auto elim!: eventually_elim1 simp: inverse_diff_inverse) |
|
996 |
moreover have "Zfun (\<lambda>x. - (inverse (f x) * (f x - a) * inverse a)) F" |
|
997 |
by (intro Zfun_minus Zfun_mult_left |
|
998 |
bounded_bilinear.Bfun_prod_Zfun [OF bounded_bilinear_mult] |
|
999 |
Bfun_inverse [OF f a] f [unfolded tendsto_Zfun_iff]) |
|
1000 |
ultimately show ?thesis |
|
1001 |
unfolding tendsto_Zfun_iff by (rule Zfun_ssubst) |
|
31355 | 1002 |
qed |
1003 |
||
31565 | 1004 |
lemma tendsto_divide [tendsto_intros]: |
31355 | 1005 |
fixes a b :: "'a::real_normed_field" |
44195 | 1006 |
shows "\<lbrakk>(f ---> a) F; (g ---> b) F; b \<noteq> 0\<rbrakk> |
1007 |
\<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
|
1008 |
by (simp add: tendsto_mult tendsto_inverse divide_inverse) |
31355 | 1009 |
|
44194
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1010 |
lemma tendsto_sgn [tendsto_intros]: |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1011 |
fixes l :: "'a::real_normed_vector" |
44195 | 1012 |
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
|
1013 |
unfolding sgn_div_norm by (simp add: tendsto_intros) |
0639898074ae
generalize lemmas about LIM and LIMSEQ to tendsto
huffman
parents:
44081
diff
changeset
|
1014 |
|
31349
2261c8781f73
new theory of filters and limits; prove LIMSEQ and LIM lemmas using filters
huffman
parents:
diff
changeset
|
1015 |
end |