author | huffman |
Thu, 28 Sep 2006 04:03:43 +0200 | |
changeset 20755 | 956a0377a408 |
parent 20754 | 9c053a494dc6 |
child 20756 | fec7f5834ffe |
permissions | -rw-r--r-- |
10751 | 1 |
(* Title : Lim.thy |
14477 | 2 |
ID : $Id$ |
10751 | 3 |
Author : Jacques D. Fleuriot |
4 |
Copyright : 1998 University of Cambridge |
|
14477 | 5 |
Conversion to Isar and new proofs by Lawrence C Paulson, 2004 |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
6 |
GMVT by Benjamin Porter, 2005 |
10751 | 7 |
*) |
8 |
||
14477 | 9 |
header{*Limits, Continuity and Differentiation*} |
10751 | 10 |
|
15131 | 11 |
theory Lim |
15360 | 12 |
imports SEQ |
15131 | 13 |
begin |
14477 | 14 |
|
15 |
text{*Standard and Nonstandard Definitions*} |
|
10751 | 16 |
|
19765 | 17 |
definition |
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
18 |
LIM :: "['a::real_normed_vector => 'b::real_normed_vector, 'a, 'b] => bool" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
19 |
("((_)/ -- (_)/ --> (_))" [60, 0, 60] 60) |
19765 | 20 |
"f -- a --> L = |
20563 | 21 |
(\<forall>r > 0. \<exists>s > 0. \<forall>x. x \<noteq> a & norm (x - a) < s |
22 |
--> norm (f x - L) < r)" |
|
10751 | 23 |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
24 |
NSLIM :: "['a::real_normed_vector => 'b::real_normed_vector, 'a, 'b] => bool" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
25 |
("((_)/ -- (_)/ --NS> (_))" [60, 0, 60] 60) |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
26 |
"f -- a --NS> L = |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
27 |
(\<forall>x. (x \<noteq> star_of a & x @= star_of a --> ( *f* f) x @= star_of L))" |
10751 | 28 |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
29 |
isCont :: "['a::real_normed_vector => 'b::real_normed_vector, 'a] => bool" |
19765 | 30 |
"isCont f a = (f -- a --> (f a))" |
10751 | 31 |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
32 |
isNSCont :: "['a::real_normed_vector => 'b::real_normed_vector, 'a] => bool" |
15228 | 33 |
--{*NS definition dispenses with limit notions*} |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
34 |
"isNSCont f a = (\<forall>y. y @= star_of a --> |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
35 |
( *f* f) y @= star_of (f a))" |
10751 | 36 |
|
14477 | 37 |
deriv:: "[real=>real,real,real] => bool" |
15228 | 38 |
--{*Differentiation: D is derivative of function f at x*} |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
39 |
("(DERIV (_)/ (_)/ :> (_))" [1000, 1000, 60] 60) |
20563 | 40 |
"DERIV f x :> D = ((%h. (f(x + h) - f x)/h) -- 0 --> D)" |
10751 | 41 |
|
14477 | 42 |
nsderiv :: "[real=>real,real,real] => bool" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
43 |
("(NSDERIV (_)/ (_)/ :> (_))" [1000, 1000, 60] 60) |
19765 | 44 |
"NSDERIV f x :> D = (\<forall>h \<in> Infinitesimal - {0}. |
20563 | 45 |
(( *f* f)(hypreal_of_real x + h) |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
46 |
- hypreal_of_real (f x))/h @= hypreal_of_real D)" |
10751 | 47 |
|
14477 | 48 |
differentiable :: "[real=>real,real] => bool" (infixl "differentiable" 60) |
19765 | 49 |
"f differentiable x = (\<exists>D. DERIV f x :> D)" |
10751 | 50 |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
51 |
NSdifferentiable :: "[real=>real,real] => bool" |
14477 | 52 |
(infixl "NSdifferentiable" 60) |
19765 | 53 |
"f NSdifferentiable x = (\<exists>D. NSDERIV f x :> D)" |
10751 | 54 |
|
14477 | 55 |
increment :: "[real=>real,real,hypreal] => hypreal" |
19765 | 56 |
"increment f x h = (@inc. f NSdifferentiable x & |
20563 | 57 |
inc = ( *f* f)(hypreal_of_real x + h) - hypreal_of_real (f x))" |
10751 | 58 |
|
20752 | 59 |
isUCont :: "['a::real_normed_vector => 'b::real_normed_vector] => bool" |
60 |
"isUCont f = (\<forall>r>0. \<exists>s>0. \<forall>x y. norm (x - y) < s \<longrightarrow> norm (f x - f y) < r)" |
|
10751 | 61 |
|
20752 | 62 |
isNSUCont :: "['a::real_normed_vector => 'b::real_normed_vector] => bool" |
19765 | 63 |
"isNSUCont f = (\<forall>x y. x @= y --> ( *f* f) x @= ( *f* f) y)" |
10751 | 64 |
|
65 |
||
66 |
consts |
|
67 |
Bolzano_bisect :: "[real*real=>bool, real, real, nat] => (real*real)" |
|
68 |
primrec |
|
69 |
"Bolzano_bisect P a b 0 = (a,b)" |
|
70 |
"Bolzano_bisect P a b (Suc n) = |
|
71 |
(let (x,y) = Bolzano_bisect P a b n |
|
11704
3c50a2cd6f00
* sane numerals (stage 2): plain "num" syntax (removed "#");
wenzelm
parents:
11701
diff
changeset
|
72 |
in if P(x, (x+y)/2) then ((x+y)/2, y) |
14477 | 73 |
else (x, (x+y)/2))" |
74 |
||
75 |
||
20755 | 76 |
subsection {* Limits of Functions *} |
14477 | 77 |
|
20755 | 78 |
subsubsection {* Purely standard proofs *} |
14477 | 79 |
|
80 |
lemma LIM_eq: |
|
81 |
"f -- a --> L = |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
82 |
(\<forall>r>0.\<exists>s>0.\<forall>x. x \<noteq> a & norm (x-a) < s --> norm (f x - L) < r)" |
14477 | 83 |
by (simp add: LIM_def diff_minus) |
84 |
||
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
85 |
lemma LIM_I: |
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
86 |
"(!!r. 0<r ==> \<exists>s>0.\<forall>x. x \<noteq> a & norm (x-a) < s --> norm (f x - L) < r) |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
87 |
==> f -- a --> L" |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
88 |
by (simp add: LIM_eq) |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
89 |
|
14477 | 90 |
lemma LIM_D: |
91 |
"[| f -- a --> L; 0<r |] |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
92 |
==> \<exists>s>0.\<forall>x. x \<noteq> a & norm (x-a) < s --> norm (f x - L) < r" |
14477 | 93 |
by (simp add: LIM_eq) |
94 |
||
15228 | 95 |
lemma LIM_const [simp]: "(%x. k) -- x --> k" |
14477 | 96 |
by (simp add: LIM_def) |
97 |
||
98 |
lemma LIM_add: |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
99 |
fixes f g :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
14477 | 100 |
assumes f: "f -- a --> L" and g: "g -- a --> M" |
101 |
shows "(%x. f x + g(x)) -- a --> (L + M)" |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
102 |
proof (rule LIM_I) |
14477 | 103 |
fix r :: real |
20409 | 104 |
assume r: "0 < r" |
14477 | 105 |
from LIM_D [OF f half_gt_zero [OF r]] |
106 |
obtain fs |
|
107 |
where fs: "0 < fs" |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
108 |
and fs_lt: "\<forall>x. x \<noteq> a & norm (x-a) < fs --> norm (f x - L) < r/2" |
14477 | 109 |
by blast |
110 |
from LIM_D [OF g half_gt_zero [OF r]] |
|
111 |
obtain gs |
|
112 |
where gs: "0 < gs" |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
113 |
and gs_lt: "\<forall>x. x \<noteq> a & norm (x-a) < gs --> norm (g x - M) < r/2" |
14477 | 114 |
by blast |
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
115 |
show "\<exists>s>0.\<forall>x. x \<noteq> a \<and> norm (x-a) < s \<longrightarrow> norm (f x + g x - (L + M)) < r" |
14477 | 116 |
proof (intro exI conjI strip) |
117 |
show "0 < min fs gs" by (simp add: fs gs) |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
118 |
fix x :: 'a |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
119 |
assume "x \<noteq> a \<and> norm (x-a) < min fs gs" |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
120 |
hence "x \<noteq> a \<and> norm (x-a) < fs \<and> norm (x-a) < gs" by simp |
14477 | 121 |
with fs_lt gs_lt |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
122 |
have "norm (f x - L) < r/2" and "norm (g x - M) < r/2" by blast+ |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
123 |
hence "norm (f x - L) + norm (g x - M) < r" by arith |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
124 |
thus "norm (f x + g x - (L + M)) < r" |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
125 |
by (blast intro: norm_diff_triangle_ineq order_le_less_trans) |
14477 | 126 |
qed |
127 |
qed |
|
128 |
||
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
129 |
lemma minus_diff_minus: |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
130 |
fixes a b :: "'a::ab_group_add" |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
131 |
shows "(- a) - (- b) = - (a - b)" |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
132 |
by simp |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
133 |
|
14477 | 134 |
lemma LIM_minus: "f -- a --> L ==> (%x. -f(x)) -- a --> -L" |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
135 |
by (simp only: LIM_eq minus_diff_minus norm_minus_cancel) |
14477 | 136 |
|
137 |
lemma LIM_add_minus: |
|
138 |
"[| f -- x --> l; g -- x --> m |] ==> (%x. f(x) + -g(x)) -- x --> (l + -m)" |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
139 |
by (intro LIM_add LIM_minus) |
14477 | 140 |
|
141 |
lemma LIM_diff: |
|
142 |
"[| f -- x --> l; g -- x --> m |] ==> (%x. f(x) - g(x)) -- x --> l-m" |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
143 |
by (simp only: diff_minus LIM_add LIM_minus) |
14477 | 144 |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
145 |
lemma LIM_const_not_eq: |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
146 |
fixes a :: "'a::real_normed_div_algebra" |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
147 |
shows "k \<noteq> L ==> ~ ((%x. k) -- a --> L)" |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
148 |
apply (simp add: LIM_eq) |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
149 |
apply (rule_tac x="norm (k - L)" in exI, simp, safe) |
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
150 |
apply (rule_tac x="a + of_real (s/2)" in exI, simp add: norm_of_real) |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
151 |
done |
14477 | 152 |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
153 |
lemma LIM_const_eq: |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
154 |
fixes a :: "'a::real_normed_div_algebra" |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
155 |
shows "(%x. k) -- a --> L ==> k = L" |
14477 | 156 |
apply (rule ccontr) |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
157 |
apply (blast dest: LIM_const_not_eq) |
14477 | 158 |
done |
159 |
||
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
160 |
lemma LIM_unique: |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
161 |
fixes a :: "'a::real_normed_div_algebra" |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
162 |
shows "[| f -- a --> L; f -- a --> M |] ==> L = M" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
163 |
apply (drule LIM_diff, assumption) |
14477 | 164 |
apply (auto dest!: LIM_const_eq) |
165 |
done |
|
166 |
||
167 |
lemma LIM_mult_zero: |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
168 |
fixes f g :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_algebra" |
14477 | 169 |
assumes f: "f -- a --> 0" and g: "g -- a --> 0" |
170 |
shows "(%x. f(x) * g(x)) -- a --> 0" |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
171 |
proof (rule LIM_I, simp) |
14477 | 172 |
fix r :: real |
173 |
assume r: "0<r" |
|
174 |
from LIM_D [OF f zero_less_one] |
|
175 |
obtain fs |
|
176 |
where fs: "0 < fs" |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
177 |
and fs_lt: "\<forall>x. x \<noteq> a & norm (x-a) < fs --> norm (f x) < 1" |
14477 | 178 |
by auto |
179 |
from LIM_D [OF g r] |
|
180 |
obtain gs |
|
181 |
where gs: "0 < gs" |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
182 |
and gs_lt: "\<forall>x. x \<noteq> a & norm (x-a) < gs --> norm (g x) < r" |
14477 | 183 |
by auto |
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
184 |
show "\<exists>s. 0 < s \<and> (\<forall>x. x \<noteq> a \<and> norm (x-a) < s \<longrightarrow> norm (f x * g x) < r)" |
14477 | 185 |
proof (intro exI conjI strip) |
186 |
show "0 < min fs gs" by (simp add: fs gs) |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
187 |
fix x :: 'a |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
188 |
assume "x \<noteq> a \<and> norm (x-a) < min fs gs" |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
189 |
hence "x \<noteq> a \<and> norm (x-a) < fs \<and> norm (x-a) < gs" by simp |
14477 | 190 |
with fs_lt gs_lt |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
191 |
have "norm (f x) < 1" and "norm (g x) < r" by blast+ |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
192 |
hence "norm (f x) * norm (g x) < 1*r" |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
193 |
by (rule mult_strict_mono' [OF _ _ norm_ge_zero norm_ge_zero]) |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
194 |
thus "norm (f x * g x) < r" |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
195 |
by (simp add: order_le_less_trans [OF norm_mult_ineq]) |
14477 | 196 |
qed |
197 |
qed |
|
198 |
||
199 |
lemma LIM_self: "(%x. x) -- a --> a" |
|
200 |
by (auto simp add: LIM_def) |
|
201 |
||
202 |
text{*Limits are equal for functions equal except at limit point*} |
|
203 |
lemma LIM_equal: |
|
204 |
"[| \<forall>x. x \<noteq> a --> (f x = g x) |] ==> (f -- a --> l) = (g -- a --> l)" |
|
205 |
by (simp add: LIM_def) |
|
206 |
||
207 |
text{*Two uses in Hyperreal/Transcendental.ML*} |
|
208 |
lemma LIM_trans: |
|
209 |
"[| (%x. f(x) + -g(x)) -- a --> 0; g -- a --> l |] ==> f -- a --> l" |
|
210 |
apply (drule LIM_add, assumption) |
|
211 |
apply (auto simp add: add_assoc) |
|
212 |
done |
|
213 |
||
20755 | 214 |
subsubsection {* Purely nonstandard proofs *} |
14477 | 215 |
|
20754
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
216 |
lemma NSLIM_I: |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
217 |
"(\<And>x. \<lbrakk>x \<noteq> star_of a; x \<approx> star_of a\<rbrakk> \<Longrightarrow> starfun f x \<approx> star_of L) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
218 |
\<Longrightarrow> f -- a --NS> L" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
219 |
by (simp add: NSLIM_def) |
14477 | 220 |
|
20754
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
221 |
lemma NSLIM_D: |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
222 |
"\<lbrakk>f -- a --NS> L; x \<noteq> star_of a; x \<approx> star_of a\<rbrakk> |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
223 |
\<Longrightarrow> starfun f x \<approx> star_of L" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
224 |
by (simp add: NSLIM_def) |
14477 | 225 |
|
20755 | 226 |
text{*Proving properties of limits using nonstandard definition. |
227 |
The properties hold for standard limits as well!*} |
|
228 |
||
229 |
lemma NSLIM_mult: |
|
230 |
fixes l m :: "'a::real_normed_algebra" |
|
231 |
shows "[| f -- x --NS> l; g -- x --NS> m |] |
|
232 |
==> (%x. f(x) * g(x)) -- x --NS> (l * m)" |
|
233 |
by (auto simp add: NSLIM_def intro!: approx_mult_HFinite) |
|
234 |
||
235 |
lemma NSLIM_add: |
|
236 |
"[| f -- x --NS> l; g -- x --NS> m |] |
|
237 |
==> (%x. f(x) + g(x)) -- x --NS> (l + m)" |
|
238 |
by (auto simp add: NSLIM_def intro!: approx_add) |
|
239 |
||
240 |
lemma NSLIM_const [simp]: "(%x. k) -- x --NS> k" |
|
241 |
by (simp add: NSLIM_def) |
|
242 |
||
243 |
lemma NSLIM_minus: "f -- a --NS> L ==> (%x. -f(x)) -- a --NS> -L" |
|
244 |
by (simp add: NSLIM_def) |
|
245 |
||
246 |
lemma NSLIM_add_minus: "[| f -- x --NS> l; g -- x --NS> m |] ==> (%x. f(x) + -g(x)) -- x --NS> (l + -m)" |
|
247 |
by (simp only: NSLIM_add NSLIM_minus) |
|
248 |
||
249 |
lemma NSLIM_inverse: |
|
250 |
fixes L :: "'a::real_normed_div_algebra" |
|
251 |
shows "[| f -- a --NS> L; L \<noteq> 0 |] |
|
252 |
==> (%x. inverse(f(x))) -- a --NS> (inverse L)" |
|
253 |
apply (simp add: NSLIM_def, clarify) |
|
254 |
apply (drule spec) |
|
255 |
apply (auto simp add: star_of_approx_inverse) |
|
256 |
done |
|
257 |
||
258 |
lemma NSLIM_zero: |
|
259 |
assumes f: "f -- a --NS> l" shows "(%x. f(x) + -l) -- a --NS> 0" |
|
260 |
proof - |
|
261 |
have "(\<lambda>x. f x + - l) -- a --NS> l + -l" |
|
262 |
by (rule NSLIM_add_minus [OF f NSLIM_const]) |
|
263 |
thus ?thesis by simp |
|
264 |
qed |
|
265 |
||
266 |
lemma NSLIM_zero_cancel: "(%x. f(x) - l) -- x --NS> 0 ==> f -- x --NS> l" |
|
267 |
apply (drule_tac g = "%x. l" and m = l in NSLIM_add) |
|
268 |
apply (auto simp add: diff_minus add_assoc) |
|
269 |
done |
|
270 |
||
271 |
lemma NSLIM_const_not_eq: |
|
272 |
fixes a :: real (* TODO: generalize to real_normed_div_algebra *) |
|
273 |
shows "k \<noteq> L ==> ~ ((%x. k) -- a --NS> L)" |
|
274 |
apply (simp add: NSLIM_def) |
|
275 |
apply (rule_tac x="star_of a + epsilon" in exI) |
|
276 |
apply (auto intro: Infinitesimal_add_approx_self [THEN approx_sym] |
|
277 |
simp add: hypreal_epsilon_not_zero) |
|
278 |
done |
|
279 |
||
280 |
lemma NSLIM_not_zero: |
|
281 |
fixes a :: real |
|
282 |
shows "k \<noteq> 0 ==> ~ ((%x. k) -- a --NS> 0)" |
|
283 |
by (rule NSLIM_const_not_eq) |
|
284 |
||
285 |
lemma NSLIM_const_eq: |
|
286 |
fixes a :: real |
|
287 |
shows "(%x. k) -- a --NS> L ==> k = L" |
|
288 |
apply (rule ccontr) |
|
289 |
apply (blast dest: NSLIM_const_not_eq) |
|
290 |
done |
|
291 |
||
292 |
text{* can actually be proved more easily by unfolding the definition!*} |
|
293 |
lemma NSLIM_unique: |
|
294 |
fixes a :: real |
|
295 |
shows "[| f -- a --NS> L; f -- a --NS> M |] ==> L = M" |
|
296 |
apply (drule NSLIM_minus) |
|
297 |
apply (drule NSLIM_add, assumption) |
|
298 |
apply (auto dest!: NSLIM_const_eq [symmetric]) |
|
299 |
apply (simp add: diff_def [symmetric]) |
|
300 |
done |
|
301 |
||
302 |
lemma NSLIM_mult_zero: |
|
303 |
fixes f g :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_algebra" |
|
304 |
shows "[| f -- x --NS> 0; g -- x --NS> 0 |] ==> (%x. f(x)*g(x)) -- x --NS> 0" |
|
305 |
by (drule NSLIM_mult, auto) |
|
306 |
||
307 |
lemma NSLIM_self: "(%x. x) -- a --NS> a" |
|
308 |
by (simp add: NSLIM_def) |
|
309 |
||
310 |
subsubsection {* Equivalence of @{term LIM} and @{term NSLIM} *} |
|
311 |
||
20754
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
312 |
lemma LIM_NSLIM: |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
313 |
assumes f: "f -- a --> L" shows "f -- a --NS> L" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
314 |
proof (rule NSLIM_I) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
315 |
fix x |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
316 |
assume neq: "x \<noteq> star_of a" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
317 |
assume approx: "x \<approx> star_of a" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
318 |
have "starfun f x - star_of L \<in> Infinitesimal" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
319 |
proof (rule InfinitesimalI2) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
320 |
fix r::real assume r: "0 < r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
321 |
from LIM_D [OF f r] |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
322 |
obtain s where s: "0 < s" and |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
323 |
less_r: "\<And>x. \<lbrakk>x \<noteq> a; norm (x - a) < s\<rbrakk> \<Longrightarrow> norm (f x - L) < r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
324 |
by fast |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
325 |
from less_r have less_r': |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
326 |
"\<And>x. \<lbrakk>x \<noteq> star_of a; hnorm (x - star_of a) < star_of s\<rbrakk> |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
327 |
\<Longrightarrow> hnorm (starfun f x - star_of L) < star_of r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
328 |
by transfer |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
329 |
from approx have "x - star_of a \<in> Infinitesimal" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
330 |
by (unfold approx_def) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
331 |
hence "hnorm (x - star_of a) < star_of s" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
332 |
using s by (rule InfinitesimalD2) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
333 |
with neq show "hnorm (starfun f x - star_of L) < star_of r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
334 |
by (rule less_r') |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
335 |
qed |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
336 |
thus "starfun f x \<approx> star_of L" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
337 |
by (unfold approx_def) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
338 |
qed |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
339 |
|
20754
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
340 |
lemma NSLIM_LIM: |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
341 |
assumes f: "f -- a --NS> L" shows "f -- a --> L" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
342 |
proof (rule LIM_I) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
343 |
fix r::real assume r: "0 < r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
344 |
have "\<exists>s>0. \<forall>x. x \<noteq> star_of a \<and> hnorm (x - star_of a) < s |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
345 |
\<longrightarrow> hnorm (starfun f x - star_of L) < star_of r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
346 |
proof (rule exI, safe) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
347 |
show "0 < epsilon" by (rule hypreal_epsilon_gt_zero) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
348 |
next |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
349 |
fix x assume neq: "x \<noteq> star_of a" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
350 |
assume "hnorm (x - star_of a) < epsilon" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
351 |
with Infinitesimal_epsilon |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
352 |
have "x - star_of a \<in> Infinitesimal" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
353 |
by (rule hnorm_less_Infinitesimal) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
354 |
hence "x \<approx> star_of a" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
355 |
by (unfold approx_def) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
356 |
with f neq have "starfun f x \<approx> star_of L" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
357 |
by (rule NSLIM_D) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
358 |
hence "starfun f x - star_of L \<in> Infinitesimal" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
359 |
by (unfold approx_def) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
360 |
thus "hnorm (starfun f x - star_of L) < star_of r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
361 |
using r by (rule InfinitesimalD2) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
362 |
qed |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
363 |
thus "\<exists>s>0. \<forall>x. x \<noteq> a \<and> norm (x - a) < s \<longrightarrow> norm (f x - L) < r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
364 |
by transfer |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
365 |
qed |
14477 | 366 |
|
15228 | 367 |
theorem LIM_NSLIM_iff: "(f -- x --> L) = (f -- x --NS> L)" |
14477 | 368 |
by (blast intro: LIM_NSLIM NSLIM_LIM) |
369 |
||
20755 | 370 |
subsubsection {* Derived theorems about @{term LIM} *} |
14477 | 371 |
|
15228 | 372 |
lemma LIM_mult2: |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
373 |
fixes l m :: "'a::real_normed_algebra" |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
374 |
shows "[| f -- x --> l; g -- x --> m |] |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
375 |
==> (%x. f(x) * g(x)) -- x --> (l * m)" |
14477 | 376 |
by (simp add: LIM_NSLIM_iff NSLIM_mult) |
377 |
||
15228 | 378 |
lemma LIM_add2: |
379 |
"[| f -- x --> l; g -- x --> m |] ==> (%x. f(x) + g(x)) -- x --> (l + m)" |
|
14477 | 380 |
by (simp add: LIM_NSLIM_iff NSLIM_add) |
381 |
||
382 |
lemma LIM_const2: "(%x. k) -- x --> k" |
|
383 |
by (simp add: LIM_NSLIM_iff) |
|
384 |
||
385 |
lemma LIM_minus2: "f -- a --> L ==> (%x. -f(x)) -- a --> -L" |
|
386 |
by (simp add: LIM_NSLIM_iff NSLIM_minus) |
|
387 |
||
388 |
lemma LIM_add_minus2: "[| f -- x --> l; g -- x --> m |] ==> (%x. f(x) + -g(x)) -- x --> (l + -m)" |
|
389 |
by (simp add: LIM_NSLIM_iff NSLIM_add_minus) |
|
390 |
||
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
391 |
lemma LIM_inverse: |
20653
24cda2c5fd40
removed division_by_zero class requirements from several lemmas
huffman
parents:
20635
diff
changeset
|
392 |
fixes L :: "'a::real_normed_div_algebra" |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
393 |
shows "[| f -- a --> L; L \<noteq> 0 |] |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
394 |
==> (%x. inverse(f(x))) -- a --> (inverse L)" |
14477 | 395 |
by (simp add: LIM_NSLIM_iff NSLIM_inverse) |
396 |
||
397 |
lemma LIM_zero2: "f -- a --> l ==> (%x. f(x) + -l) -- a --> 0" |
|
398 |
by (simp add: LIM_NSLIM_iff NSLIM_zero) |
|
399 |
||
400 |
lemma LIM_zero_cancel: "(%x. f(x) - l) -- x --> 0 ==> f -- x --> l" |
|
401 |
apply (drule_tac g = "%x. l" and M = l in LIM_add) |
|
402 |
apply (auto simp add: diff_minus add_assoc) |
|
403 |
done |
|
404 |
||
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
405 |
lemma LIM_unique2: |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
406 |
fixes a :: real |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
407 |
shows "[| f -- a --> L; f -- a --> M |] ==> L = M" |
14477 | 408 |
by (simp add: LIM_NSLIM_iff NSLIM_unique) |
409 |
||
410 |
(* we can use the corresponding thm LIM_mult2 *) |
|
411 |
(* for standard definition of limit *) |
|
412 |
||
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
413 |
lemma LIM_mult_zero2: |
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
414 |
fixes f g :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_algebra" |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
415 |
shows "[| f -- x --> 0; g -- x --> 0 |] ==> (%x. f(x)*g(x)) -- x --> 0" |
14477 | 416 |
by (drule LIM_mult2, auto) |
417 |
||
418 |
||
20755 | 419 |
subsection {* Continuity *} |
14477 | 420 |
|
421 |
lemma isNSContD: "[| isNSCont f a; y \<approx> hypreal_of_real a |] ==> ( *f* f) y \<approx> hypreal_of_real (f a)" |
|
422 |
by (simp add: isNSCont_def) |
|
423 |
||
424 |
lemma isNSCont_NSLIM: "isNSCont f a ==> f -- a --NS> (f a) " |
|
425 |
by (simp add: isNSCont_def NSLIM_def) |
|
426 |
||
427 |
lemma NSLIM_isNSCont: "f -- a --NS> (f a) ==> isNSCont f a" |
|
428 |
apply (simp add: isNSCont_def NSLIM_def, auto) |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
429 |
apply (case_tac "y = star_of a", auto) |
14477 | 430 |
done |
431 |
||
15228 | 432 |
text{*NS continuity can be defined using NS Limit in |
433 |
similar fashion to standard def of continuity*} |
|
14477 | 434 |
lemma isNSCont_NSLIM_iff: "(isNSCont f a) = (f -- a --NS> (f a))" |
435 |
by (blast intro: isNSCont_NSLIM NSLIM_isNSCont) |
|
436 |
||
15228 | 437 |
text{*Hence, NS continuity can be given |
438 |
in terms of standard limit*} |
|
14477 | 439 |
lemma isNSCont_LIM_iff: "(isNSCont f a) = (f -- a --> (f a))" |
440 |
by (simp add: LIM_NSLIM_iff isNSCont_NSLIM_iff) |
|
441 |
||
15228 | 442 |
text{*Moreover, it's trivial now that NS continuity |
443 |
is equivalent to standard continuity*} |
|
14477 | 444 |
lemma isNSCont_isCont_iff: "(isNSCont f a) = (isCont f a)" |
445 |
apply (simp add: isCont_def) |
|
446 |
apply (rule isNSCont_LIM_iff) |
|
447 |
done |
|
448 |
||
15228 | 449 |
text{*Standard continuity ==> NS continuity*} |
14477 | 450 |
lemma isCont_isNSCont: "isCont f a ==> isNSCont f a" |
451 |
by (erule isNSCont_isCont_iff [THEN iffD2]) |
|
452 |
||
15228 | 453 |
text{*NS continuity ==> Standard continuity*} |
14477 | 454 |
lemma isNSCont_isCont: "isNSCont f a ==> isCont f a" |
455 |
by (erule isNSCont_isCont_iff [THEN iffD1]) |
|
456 |
||
457 |
text{*Alternative definition of continuity*} |
|
458 |
(* Prove equivalence between NS limits - *) |
|
459 |
(* seems easier than using standard def *) |
|
460 |
lemma NSLIM_h_iff: "(f -- a --NS> L) = ((%h. f(a + h)) -- 0 --NS> L)" |
|
461 |
apply (simp add: NSLIM_def, auto) |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
462 |
apply (drule_tac x = "star_of a + x" in spec) |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
463 |
apply (drule_tac [2] x = "- star_of a + x" in spec, safe, simp) |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
464 |
apply (erule mem_infmal_iff [THEN iffD2, THEN Infinitesimal_add_approx_self [THEN approx_sym]]) |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
465 |
apply (erule_tac [3] approx_minus_iff2 [THEN iffD1]) |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
466 |
prefer 2 apply (simp add: add_commute diff_def [symmetric]) |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
467 |
apply (rule_tac x = x in star_cases) |
17318
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17298
diff
changeset
|
468 |
apply (rule_tac [2] x = x in star_cases) |
bc1c75855f3d
starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents:
17298
diff
changeset
|
469 |
apply (auto simp add: starfun star_of_def star_n_minus star_n_add add_assoc approx_refl star_n_zero_num) |
14477 | 470 |
done |
471 |
||
472 |
lemma NSLIM_isCont_iff: "(f -- a --NS> f a) = ((%h. f(a + h)) -- 0 --NS> f a)" |
|
473 |
by (rule NSLIM_h_iff) |
|
474 |
||
475 |
lemma LIM_isCont_iff: "(f -- a --> f a) = ((%h. f(a + h)) -- 0 --> f(a))" |
|
476 |
by (simp add: LIM_NSLIM_iff NSLIM_isCont_iff) |
|
477 |
||
478 |
lemma isCont_iff: "(isCont f x) = ((%h. f(x + h)) -- 0 --> f(x))" |
|
479 |
by (simp add: isCont_def LIM_isCont_iff) |
|
480 |
||
15228 | 481 |
text{*Immediate application of nonstandard criterion for continuity can offer |
482 |
very simple proofs of some standard property of continuous functions*} |
|
14477 | 483 |
text{*sum continuous*} |
484 |
lemma isCont_add: "[| isCont f a; isCont g a |] ==> isCont (%x. f(x) + g(x)) a" |
|
485 |
by (auto intro: approx_add simp add: isNSCont_isCont_iff [symmetric] isNSCont_def) |
|
486 |
||
487 |
text{*mult continuous*} |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
488 |
lemma isCont_mult: |
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
489 |
fixes f g :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_algebra" |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
490 |
shows "[| isCont f a; isCont g a |] ==> isCont (%x. f(x) * g(x)) a" |
15228 | 491 |
by (auto intro!: starfun_mult_HFinite_approx |
492 |
simp del: starfun_mult [symmetric] |
|
14477 | 493 |
simp add: isNSCont_isCont_iff [symmetric] isNSCont_def) |
494 |
||
15228 | 495 |
text{*composition of continuous functions |
496 |
Note very short straightforard proof!*} |
|
14477 | 497 |
lemma isCont_o: "[| isCont f a; isCont g (f a) |] ==> isCont (g o f) a" |
498 |
by (auto simp add: isNSCont_isCont_iff [symmetric] isNSCont_def starfun_o [symmetric]) |
|
499 |
||
500 |
lemma isCont_o2: "[| isCont f a; isCont g (f a) |] ==> isCont (%x. g (f x)) a" |
|
501 |
by (auto dest: isCont_o simp add: o_def) |
|
502 |
||
503 |
lemma isNSCont_minus: "isNSCont f a ==> isNSCont (%x. - f x) a" |
|
504 |
by (simp add: isNSCont_def) |
|
505 |
||
506 |
lemma isCont_minus: "isCont f a ==> isCont (%x. - f x) a" |
|
507 |
by (auto simp add: isNSCont_isCont_iff [symmetric] isNSCont_minus) |
|
508 |
||
509 |
lemma isCont_inverse: |
|
20653
24cda2c5fd40
removed division_by_zero class requirements from several lemmas
huffman
parents:
20635
diff
changeset
|
510 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_div_algebra" |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
511 |
shows "[| isCont f x; f x \<noteq> 0 |] ==> isCont (%x. inverse (f x)) x" |
14477 | 512 |
apply (simp add: isCont_def) |
513 |
apply (blast intro: LIM_inverse) |
|
514 |
done |
|
515 |
||
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
516 |
lemma isNSCont_inverse: |
20653
24cda2c5fd40
removed division_by_zero class requirements from several lemmas
huffman
parents:
20635
diff
changeset
|
517 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_div_algebra" |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
518 |
shows "[| isNSCont f x; f x \<noteq> 0 |] ==> isNSCont (%x. inverse (f x)) x" |
14477 | 519 |
by (auto intro: isCont_inverse simp add: isNSCont_isCont_iff) |
520 |
||
521 |
lemma isCont_diff: |
|
522 |
"[| isCont f a; isCont g a |] ==> isCont (%x. f(x) - g(x)) a" |
|
523 |
apply (simp add: diff_minus) |
|
524 |
apply (auto intro: isCont_add isCont_minus) |
|
525 |
done |
|
526 |
||
15228 | 527 |
lemma isCont_const [simp]: "isCont (%x. k) a" |
14477 | 528 |
by (simp add: isCont_def) |
529 |
||
15228 | 530 |
lemma isNSCont_const [simp]: "isNSCont (%x. k) a" |
14477 | 531 |
by (simp add: isNSCont_def) |
532 |
||
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
533 |
lemma isNSCont_abs [simp]: "isNSCont abs (a::real)" |
14477 | 534 |
apply (simp add: isNSCont_def) |
535 |
apply (auto intro: approx_hrabs simp add: hypreal_of_real_hrabs [symmetric] starfun_rabs_hrabs) |
|
536 |
done |
|
537 |
||
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
538 |
lemma isCont_abs [simp]: "isCont abs (a::real)" |
14477 | 539 |
by (auto simp add: isNSCont_isCont_iff [symmetric]) |
15228 | 540 |
|
14477 | 541 |
|
542 |
(**************************************************************** |
|
543 |
(%* Leave as commented until I add topology theory or remove? *%) |
|
544 |
(%*------------------------------------------------------------ |
|
545 |
Elementary topology proof for a characterisation of |
|
546 |
continuity now: a function f is continuous if and only |
|
547 |
if the inverse image, {x. f(x) \<in> A}, of any open set A |
|
548 |
is always an open set |
|
549 |
------------------------------------------------------------*%) |
|
550 |
Goal "[| isNSopen A; \<forall>x. isNSCont f x |] |
|
551 |
==> isNSopen {x. f x \<in> A}" |
|
552 |
by (auto_tac (claset(),simpset() addsimps [isNSopen_iff1])); |
|
553 |
by (dtac (mem_monad_approx RS approx_sym); |
|
554 |
by (dres_inst_tac [("x","a")] spec 1); |
|
555 |
by (dtac isNSContD 1 THEN assume_tac 1) |
|
556 |
by (dtac bspec 1 THEN assume_tac 1) |
|
557 |
by (dres_inst_tac [("x","( *f* f) x")] approx_mem_monad2 1); |
|
558 |
by (blast_tac (claset() addIs [starfun_mem_starset]); |
|
559 |
qed "isNSCont_isNSopen"; |
|
560 |
||
561 |
Goalw [isNSCont_def] |
|
562 |
"\<forall>A. isNSopen A --> isNSopen {x. f x \<in> A} \ |
|
563 |
\ ==> isNSCont f x"; |
|
564 |
by (auto_tac (claset() addSIs [(mem_infmal_iff RS iffD1) RS |
|
565 |
(approx_minus_iff RS iffD2)],simpset() addsimps |
|
566 |
[Infinitesimal_def,SReal_iff])); |
|
567 |
by (dres_inst_tac [("x","{z. abs(z + -f(x)) < ya}")] spec 1); |
|
568 |
by (etac (isNSopen_open_interval RSN (2,impE)); |
|
569 |
by (auto_tac (claset(),simpset() addsimps [isNSopen_def,isNSnbhd_def])); |
|
570 |
by (dres_inst_tac [("x","x")] spec 1); |
|
571 |
by (auto_tac (claset() addDs [approx_sym RS approx_mem_monad], |
|
572 |
simpset() addsimps [hypreal_of_real_zero RS sym,STAR_starfun_rabs_add_minus])); |
|
573 |
qed "isNSopen_isNSCont"; |
|
574 |
||
575 |
Goal "(\<forall>x. isNSCont f x) = \ |
|
576 |
\ (\<forall>A. isNSopen A --> isNSopen {x. f(x) \<in> A})"; |
|
577 |
by (blast_tac (claset() addIs [isNSCont_isNSopen, |
|
578 |
isNSopen_isNSCont]); |
|
579 |
qed "isNSCont_isNSopen_iff"; |
|
580 |
||
581 |
(%*------- Standard version of same theorem --------*%) |
|
582 |
Goal "(\<forall>x. isCont f x) = \ |
|
583 |
\ (\<forall>A. isopen A --> isopen {x. f(x) \<in> A})"; |
|
584 |
by (auto_tac (claset() addSIs [isNSCont_isNSopen_iff], |
|
585 |
simpset() addsimps [isNSopen_isopen_iff RS sym, |
|
586 |
isNSCont_isCont_iff RS sym])); |
|
587 |
qed "isCont_isopen_iff"; |
|
588 |
*******************************************************************) |
|
589 |
||
20755 | 590 |
subsection {* Uniform Continuity *} |
591 |
||
14477 | 592 |
lemma isNSUContD: "[| isNSUCont f; x \<approx> y|] ==> ( *f* f) x \<approx> ( *f* f) y" |
593 |
by (simp add: isNSUCont_def) |
|
594 |
||
595 |
lemma isUCont_isCont: "isUCont f ==> isCont f x" |
|
596 |
by (simp add: isUCont_def isCont_def LIM_def, meson) |
|
597 |
||
20754
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
598 |
lemma isUCont_isNSUCont: |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
599 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
600 |
assumes f: "isUCont f" shows "isNSUCont f" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
601 |
proof (unfold isNSUCont_def, safe) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
602 |
fix x y :: "'a star" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
603 |
assume approx: "x \<approx> y" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
604 |
have "starfun f x - starfun f y \<in> Infinitesimal" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
605 |
proof (rule InfinitesimalI2) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
606 |
fix r::real assume r: "0 < r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
607 |
with f obtain s where s: "0 < s" and |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
608 |
less_r: "\<And>x y. norm (x - y) < s \<Longrightarrow> norm (f x - f y) < r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
609 |
by (auto simp add: isUCont_def) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
610 |
from less_r have less_r': |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
611 |
"\<And>x y. hnorm (x - y) < star_of s |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
612 |
\<Longrightarrow> hnorm (starfun f x - starfun f y) < star_of r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
613 |
by transfer |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
614 |
from approx have "x - y \<in> Infinitesimal" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
615 |
by (unfold approx_def) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
616 |
hence "hnorm (x - y) < star_of s" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
617 |
using s by (rule InfinitesimalD2) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
618 |
thus "hnorm (starfun f x - starfun f y) < star_of r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
619 |
by (rule less_r') |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
620 |
qed |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
621 |
thus "starfun f x \<approx> starfun f y" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
622 |
by (unfold approx_def) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
623 |
qed |
14477 | 624 |
|
625 |
lemma isNSUCont_isUCont: |
|
20754
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
626 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
627 |
assumes f: "isNSUCont f" shows "isUCont f" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
628 |
proof (unfold isUCont_def, safe) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
629 |
fix r::real assume r: "0 < r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
630 |
have "\<exists>s>0. \<forall>x y. hnorm (x - y) < s |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
631 |
\<longrightarrow> hnorm (starfun f x - starfun f y) < star_of r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
632 |
proof (rule exI, safe) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
633 |
show "0 < epsilon" by (rule hypreal_epsilon_gt_zero) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
634 |
next |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
635 |
fix x y :: "'a star" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
636 |
assume "hnorm (x - y) < epsilon" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
637 |
with Infinitesimal_epsilon |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
638 |
have "x - y \<in> Infinitesimal" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
639 |
by (rule hnorm_less_Infinitesimal) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
640 |
hence "x \<approx> y" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
641 |
by (unfold approx_def) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
642 |
with f have "starfun f x \<approx> starfun f y" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
643 |
by (simp add: isNSUCont_def) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
644 |
hence "starfun f x - starfun f y \<in> Infinitesimal" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
645 |
by (unfold approx_def) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
646 |
thus "hnorm (starfun f x - starfun f y) < star_of r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
647 |
using r by (rule InfinitesimalD2) |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
648 |
qed |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
649 |
thus "\<exists>s>0. \<forall>x y. norm (x - y) < s \<longrightarrow> norm (f x - f y) < r" |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
650 |
by transfer |
9c053a494dc6
add intro/dest rules for NSLIM; rewrite equivalence proofs using transfer
huffman
parents:
20752
diff
changeset
|
651 |
qed |
14477 | 652 |
|
20755 | 653 |
subsection {* Derivatives *} |
654 |
||
20563 | 655 |
lemma DERIV_iff: "(DERIV f x :> D) = ((%h. (f(x + h) - f(x))/h) -- 0 --> D)" |
14477 | 656 |
by (simp add: deriv_def) |
657 |
||
658 |
lemma DERIV_NS_iff: |
|
20563 | 659 |
"(DERIV f x :> D) = ((%h. (f(x + h) - f(x))/h) -- 0 --NS> D)" |
14477 | 660 |
by (simp add: deriv_def LIM_NSLIM_iff) |
661 |
||
20563 | 662 |
lemma DERIV_D: "DERIV f x :> D ==> (%h. (f(x + h) - f(x))/h) -- 0 --> D" |
14477 | 663 |
by (simp add: deriv_def) |
664 |
||
20563 | 665 |
lemma NS_DERIV_D: "DERIV f x :> D ==> (%h. (f(x + h) - f(x))/h) -- 0 --NS> D" |
14477 | 666 |
by (simp add: deriv_def LIM_NSLIM_iff) |
667 |
||
668 |
subsubsection{*Uniqueness*} |
|
669 |
||
670 |
lemma DERIV_unique: |
|
671 |
"[| DERIV f x :> D; DERIV f x :> E |] ==> D = E" |
|
672 |
apply (simp add: deriv_def) |
|
673 |
apply (blast intro: LIM_unique) |
|
674 |
done |
|
675 |
||
676 |
lemma NSDeriv_unique: |
|
677 |
"[| NSDERIV f x :> D; NSDERIV f x :> E |] ==> D = E" |
|
678 |
apply (simp add: nsderiv_def) |
|
679 |
apply (cut_tac Infinitesimal_epsilon hypreal_epsilon_not_zero) |
|
15228 | 680 |
apply (auto dest!: bspec [where x=epsilon] |
681 |
intro!: inj_hypreal_of_real [THEN injD] |
|
14477 | 682 |
dest: approx_trans3) |
683 |
done |
|
684 |
||
685 |
subsubsection{*Alternative definition for differentiability*} |
|
686 |
||
687 |
lemma DERIV_LIM_iff: |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
688 |
"((%h::real. (f(a + h) - f(a)) / h) -- 0 --> D) = |
14477 | 689 |
((%x. (f(x)-f(a)) / (x-a)) -- a --> D)" |
690 |
proof (intro iffI LIM_I) |
|
691 |
fix r::real |
|
692 |
assume r: "0<r" |
|
693 |
assume "(\<lambda>h. (f (a + h) - f a) / h) -- 0 --> D" |
|
694 |
from LIM_D [OF this r] |
|
695 |
obtain s |
|
696 |
where s: "0 < s" |
|
697 |
and s_lt: "\<forall>x. x \<noteq> 0 & \<bar>x\<bar> < s --> \<bar>(f (a + x) - f a) / x - D\<bar> < r" |
|
698 |
by auto |
|
699 |
show "\<exists>s. 0 < s \<and> |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
700 |
(\<forall>x. x \<noteq> a \<and> norm (x-a) < s \<longrightarrow> norm ((f x - f a) / (x-a) - D) < r)" |
14477 | 701 |
proof (intro exI conjI strip) |
702 |
show "0 < s" by (rule s) |
|
703 |
next |
|
704 |
fix x::real |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
705 |
assume "x \<noteq> a \<and> norm (x-a) < s" |
14477 | 706 |
with s_lt [THEN spec [where x="x-a"]] |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
707 |
show "norm ((f x - f a) / (x-a) - D) < r" by auto |
14477 | 708 |
qed |
709 |
next |
|
710 |
fix r::real |
|
711 |
assume r: "0<r" |
|
712 |
assume "(\<lambda>x. (f x - f a) / (x-a)) -- a --> D" |
|
713 |
from LIM_D [OF this r] |
|
714 |
obtain s |
|
715 |
where s: "0 < s" |
|
716 |
and s_lt: "\<forall>x. x \<noteq> a & \<bar>x-a\<bar> < s --> \<bar>(f x - f a)/(x-a) - D\<bar> < r" |
|
717 |
by auto |
|
718 |
show "\<exists>s. 0 < s \<and> |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
719 |
(\<forall>x. x \<noteq> 0 & norm (x - 0) < s --> norm ((f (a + x) - f a) / x - D) < r)" |
14477 | 720 |
proof (intro exI conjI strip) |
721 |
show "0 < s" by (rule s) |
|
722 |
next |
|
723 |
fix x::real |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
724 |
assume "x \<noteq> 0 \<and> norm (x - 0) < s" |
14477 | 725 |
with s_lt [THEN spec [where x="x+a"]] |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
726 |
show "norm ((f (a + x) - f a) / x - D) < r" by (auto simp add: add_ac) |
14477 | 727 |
qed |
728 |
qed |
|
729 |
||
730 |
lemma DERIV_iff2: "(DERIV f x :> D) = ((%z. (f(z) - f(x)) / (z-x)) -- x --> D)" |
|
731 |
by (simp add: deriv_def diff_minus [symmetric] DERIV_LIM_iff) |
|
732 |
||
733 |
||
20755 | 734 |
subsubsection{*Equivalence of NS and standard definitions of differentiation*} |
14477 | 735 |
|
20755 | 736 |
text {*First NSDERIV in terms of NSLIM*} |
14477 | 737 |
|
15228 | 738 |
text{*first equivalence *} |
14477 | 739 |
lemma NSDERIV_NSLIM_iff: |
20563 | 740 |
"(NSDERIV f x :> D) = ((%h. (f(x + h) - f(x))/h) -- 0 --NS> D)" |
14477 | 741 |
apply (simp add: nsderiv_def NSLIM_def, auto) |
742 |
apply (drule_tac x = xa in bspec) |
|
743 |
apply (rule_tac [3] ccontr) |
|
744 |
apply (drule_tac [3] x = h in spec) |
|
745 |
apply (auto simp add: mem_infmal_iff starfun_lambda_cancel) |
|
746 |
done |
|
747 |
||
15228 | 748 |
text{*second equivalence *} |
14477 | 749 |
lemma NSDERIV_NSLIM_iff2: |
750 |
"(NSDERIV f x :> D) = ((%z. (f(z) - f(x)) / (z-x)) -- x --NS> D)" |
|
15228 | 751 |
by (simp add: NSDERIV_NSLIM_iff DERIV_LIM_iff diff_minus [symmetric] |
14477 | 752 |
LIM_NSLIM_iff [symmetric]) |
753 |
||
754 |
(* while we're at it! *) |
|
755 |
lemma NSDERIV_iff2: |
|
756 |
"(NSDERIV f x :> D) = |
|
757 |
(\<forall>w. |
|
758 |
w \<noteq> hypreal_of_real x & w \<approx> hypreal_of_real x --> |
|
759 |
( *f* (%z. (f z - f x) / (z-x))) w \<approx> hypreal_of_real D)" |
|
760 |
by (simp add: NSDERIV_NSLIM_iff2 NSLIM_def) |
|
761 |
||
762 |
(*FIXME DELETE*) |
|
20563 | 763 |
lemma hypreal_not_eq_minus_iff: "(x \<noteq> a) = (x - a \<noteq> (0::hypreal))" |
14477 | 764 |
by (auto dest: hypreal_eq_minus_iff [THEN iffD2]) |
765 |
||
766 |
lemma NSDERIVD5: |
|
767 |
"(NSDERIV f x :> D) ==> |
|
768 |
(\<forall>u. u \<approx> hypreal_of_real x --> |
|
769 |
( *f* (%z. f z - f x)) u \<approx> hypreal_of_real D * (u - hypreal_of_real x))" |
|
770 |
apply (auto simp add: NSDERIV_iff2) |
|
771 |
apply (case_tac "u = hypreal_of_real x", auto) |
|
772 |
apply (drule_tac x = u in spec, auto) |
|
773 |
apply (drule_tac c = "u - hypreal_of_real x" and b = "hypreal_of_real D" in approx_mult1) |
|
774 |
apply (drule_tac [!] hypreal_not_eq_minus_iff [THEN iffD1]) |
|
775 |
apply (subgoal_tac [2] "( *f* (%z. z-x)) u \<noteq> (0::hypreal) ") |
|
20563 | 776 |
apply (auto simp add: |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
777 |
approx_minus_iff [THEN iffD1, THEN mem_infmal_iff [THEN iffD2]] |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
778 |
Infinitesimal_subset_HFinite [THEN subsetD]) |
14477 | 779 |
done |
780 |
||
781 |
lemma NSDERIVD4: |
|
782 |
"(NSDERIV f x :> D) ==> |
|
783 |
(\<forall>h \<in> Infinitesimal. |
|
784 |
(( *f* f)(hypreal_of_real x + h) - |
|
785 |
hypreal_of_real (f x))\<approx> (hypreal_of_real D) * h)" |
|
786 |
apply (auto simp add: nsderiv_def) |
|
787 |
apply (case_tac "h = (0::hypreal) ") |
|
788 |
apply (auto simp add: diff_minus) |
|
789 |
apply (drule_tac x = h in bspec) |
|
790 |
apply (drule_tac [2] c = h in approx_mult1) |
|
791 |
apply (auto intro: Infinitesimal_subset_HFinite [THEN subsetD] |
|
15539 | 792 |
simp add: diff_minus) |
14477 | 793 |
done |
794 |
||
795 |
lemma NSDERIVD3: |
|
796 |
"(NSDERIV f x :> D) ==> |
|
797 |
(\<forall>h \<in> Infinitesimal - {0}. |
|
798 |
(( *f* f)(hypreal_of_real x + h) - |
|
799 |
hypreal_of_real (f x))\<approx> (hypreal_of_real D) * h)" |
|
800 |
apply (auto simp add: nsderiv_def) |
|
801 |
apply (rule ccontr, drule_tac x = h in bspec) |
|
802 |
apply (drule_tac [2] c = h in approx_mult1) |
|
803 |
apply (auto intro: Infinitesimal_subset_HFinite [THEN subsetD] |
|
15539 | 804 |
simp add: mult_assoc diff_minus) |
14477 | 805 |
done |
806 |
||
807 |
text{*Now equivalence between NSDERIV and DERIV*} |
|
808 |
lemma NSDERIV_DERIV_iff: "(NSDERIV f x :> D) = (DERIV f x :> D)" |
|
809 |
by (simp add: deriv_def NSDERIV_NSLIM_iff LIM_NSLIM_iff) |
|
810 |
||
15228 | 811 |
text{*Differentiability implies continuity |
812 |
nice and simple "algebraic" proof*} |
|
14477 | 813 |
lemma NSDERIV_isNSCont: "NSDERIV f x :> D ==> isNSCont f x" |
814 |
apply (auto simp add: nsderiv_def isNSCont_NSLIM_iff NSLIM_def) |
|
815 |
apply (drule approx_minus_iff [THEN iffD1]) |
|
816 |
apply (drule hypreal_not_eq_minus_iff [THEN iffD1]) |
|
20563 | 817 |
apply (drule_tac x = "xa - hypreal_of_real x" in bspec) |
15228 | 818 |
prefer 2 apply (simp add: add_assoc [symmetric]) |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
819 |
apply (auto simp add: mem_infmal_iff [symmetric] add_commute) |
20563 | 820 |
apply (drule_tac c = "xa - hypreal_of_real x" in approx_mult1) |
14477 | 821 |
apply (auto intro: Infinitesimal_subset_HFinite [THEN subsetD] |
822 |
simp add: mult_assoc) |
|
823 |
apply (drule_tac x3=D in |
|
824 |
HFinite_hypreal_of_real [THEN [2] Infinitesimal_HFinite_mult, |
|
825 |
THEN mem_infmal_iff [THEN iffD1]]) |
|
15539 | 826 |
apply (auto simp add: mult_commute |
14477 | 827 |
intro: approx_trans approx_minus_iff [THEN iffD2]) |
828 |
done |
|
829 |
||
830 |
text{*Now Sandard proof*} |
|
831 |
lemma DERIV_isCont: "DERIV f x :> D ==> isCont f x" |
|
15228 | 832 |
by (simp add: NSDERIV_DERIV_iff [symmetric] isNSCont_isCont_iff [symmetric] |
14477 | 833 |
NSDERIV_isNSCont) |
834 |
||
20755 | 835 |
subsubsection {* Derivatives of various functions *} |
14477 | 836 |
|
15228 | 837 |
text{*Differentiation rules for combinations of functions |
14477 | 838 |
follow from clear, straightforard, algebraic |
15228 | 839 |
manipulations*} |
14477 | 840 |
text{*Constant function*} |
841 |
||
842 |
(* use simple constant nslimit theorem *) |
|
15228 | 843 |
lemma NSDERIV_const [simp]: "(NSDERIV (%x. k) x :> 0)" |
14477 | 844 |
by (simp add: NSDERIV_NSLIM_iff) |
845 |
||
15228 | 846 |
lemma DERIV_const [simp]: "(DERIV (%x. k) x :> 0)" |
14477 | 847 |
by (simp add: NSDERIV_DERIV_iff [symmetric]) |
848 |
||
15228 | 849 |
text{*Sum of functions- proved easily*} |
14477 | 850 |
|
851 |
||
852 |
lemma NSDERIV_add: "[| NSDERIV f x :> Da; NSDERIV g x :> Db |] |
|
853 |
==> NSDERIV (%x. f x + g x) x :> Da + Db" |
|
854 |
apply (auto simp add: NSDERIV_NSLIM_iff NSLIM_def) |
|
20563 | 855 |
apply (auto simp add: add_divide_distrib diff_divide_distrib dest!: spec) |
14477 | 856 |
apply (drule_tac b = "hypreal_of_real Da" and d = "hypreal_of_real Db" in approx_add) |
20563 | 857 |
apply (auto simp add: diff_def add_ac) |
14477 | 858 |
done |
859 |
||
860 |
(* Standard theorem *) |
|
861 |
lemma DERIV_add: "[| DERIV f x :> Da; DERIV g x :> Db |] |
|
862 |
==> DERIV (%x. f x + g x) x :> Da + Db" |
|
863 |
apply (simp add: NSDERIV_add NSDERIV_DERIV_iff [symmetric]) |
|
864 |
done |
|
865 |
||
15228 | 866 |
text{*Product of functions - Proof is trivial but tedious |
867 |
and long due to rearrangement of terms*} |
|
14477 | 868 |
|
20563 | 869 |
lemma lemma_nsderiv1: "((a::hypreal)*b) - (c*d) = (b*(a - c)) + (c*(b - d))" |
870 |
by (simp add: right_diff_distrib) |
|
14477 | 871 |
|
20563 | 872 |
lemma lemma_nsderiv2: "[| (x - y) / z = hypreal_of_real D + yb; z \<noteq> 0; |
14477 | 873 |
z \<in> Infinitesimal; yb \<in> Infinitesimal |] |
20563 | 874 |
==> x - y \<approx> 0" |
14477 | 875 |
apply (frule_tac c1 = z in hypreal_mult_right_cancel [THEN iffD2], assumption) |
20563 | 876 |
apply (erule_tac V = "(x - y) / z = hypreal_of_real D + yb" in thin_rl) |
14477 | 877 |
apply (auto intro!: Infinitesimal_HFinite_mult2 HFinite_add |
15539 | 878 |
simp add: mult_assoc mem_infmal_iff [symmetric]) |
14477 | 879 |
apply (erule Infinitesimal_subset_HFinite [THEN subsetD]) |
880 |
done |
|
881 |
||
882 |
||
883 |
lemma NSDERIV_mult: "[| NSDERIV f x :> Da; NSDERIV g x :> Db |] |
|
884 |
==> NSDERIV (%x. f x * g x) x :> (Da * g(x)) + (Db * f(x))" |
|
885 |
apply (auto simp add: NSDERIV_NSLIM_iff NSLIM_def) |
|
886 |
apply (auto dest!: spec |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
887 |
simp add: starfun_lambda_cancel lemma_nsderiv1) |
20563 | 888 |
apply (simp (no_asm) add: add_divide_distrib diff_divide_distrib) |
14477 | 889 |
apply (drule bex_Infinitesimal_iff2 [THEN iffD2])+ |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
890 |
apply (auto simp add: times_divide_eq_right [symmetric] |
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
891 |
simp del: times_divide_eq) |
20563 | 892 |
apply (drule_tac D = Db in lemma_nsderiv2, assumption+) |
893 |
apply (drule_tac |
|
15228 | 894 |
approx_minus_iff [THEN iffD2, THEN bex_Infinitesimal_iff2 [THEN iffD2]]) |
895 |
apply (auto intro!: approx_add_mono1 |
|
14477 | 896 |
simp add: left_distrib right_distrib mult_commute add_assoc) |
15228 | 897 |
apply (rule_tac b1 = "hypreal_of_real Db * hypreal_of_real (f x)" |
14477 | 898 |
in add_commute [THEN subst]) |
15228 | 899 |
apply (auto intro!: Infinitesimal_add_approx_self2 [THEN approx_sym] |
900 |
Infinitesimal_add Infinitesimal_mult |
|
901 |
Infinitesimal_hypreal_of_real_mult |
|
14477 | 902 |
Infinitesimal_hypreal_of_real_mult2 |
903 |
simp add: add_assoc [symmetric]) |
|
904 |
done |
|
905 |
||
906 |
lemma DERIV_mult: |
|
15228 | 907 |
"[| DERIV f x :> Da; DERIV g x :> Db |] |
14477 | 908 |
==> DERIV (%x. f x * g x) x :> (Da * g(x)) + (Db * f(x))" |
909 |
by (simp add: NSDERIV_mult NSDERIV_DERIV_iff [symmetric]) |
|
910 |
||
911 |
text{*Multiplying by a constant*} |
|
912 |
lemma NSDERIV_cmult: "NSDERIV f x :> D |
|
913 |
==> NSDERIV (%x. c * f x) x :> c*D" |
|
15228 | 914 |
apply (simp only: times_divide_eq_right [symmetric] NSDERIV_NSLIM_iff |
20563 | 915 |
minus_mult_right right_diff_distrib [symmetric]) |
14477 | 916 |
apply (erule NSLIM_const [THEN NSLIM_mult]) |
917 |
done |
|
918 |
||
919 |
(* let's do the standard proof though theorem *) |
|
920 |
(* LIM_mult2 follows from a NS proof *) |
|
921 |
||
922 |
lemma DERIV_cmult: |
|
923 |
"DERIV f x :> D ==> DERIV (%x. c * f x) x :> c*D" |
|
15228 | 924 |
apply (simp only: deriv_def times_divide_eq_right [symmetric] |
20563 | 925 |
NSDERIV_NSLIM_iff minus_mult_right right_diff_distrib [symmetric]) |
14477 | 926 |
apply (erule LIM_const [THEN LIM_mult2]) |
927 |
done |
|
928 |
||
929 |
text{*Negation of function*} |
|
930 |
lemma NSDERIV_minus: "NSDERIV f x :> D ==> NSDERIV (%x. -(f x)) x :> -D" |
|
931 |
proof (simp add: NSDERIV_NSLIM_iff) |
|
20563 | 932 |
assume "(\<lambda>h. (f (x + h) - f x) / h) -- 0 --NS> D" |
933 |
hence deriv: "(\<lambda>h. - ((f(x+h) - f x) / h)) -- 0 --NS> - D" |
|
14477 | 934 |
by (rule NSLIM_minus) |
20563 | 935 |
have "\<forall>h. - ((f (x + h) - f x) / h) = (- f (x + h) + f x) / h" |
15228 | 936 |
by (simp add: minus_divide_left) |
14477 | 937 |
with deriv |
938 |
show "(\<lambda>h. (- f (x + h) + f x) / h) -- 0 --NS> - D" by simp |
|
939 |
qed |
|
940 |
||
941 |
||
942 |
lemma DERIV_minus: "DERIV f x :> D ==> DERIV (%x. -(f x)) x :> -D" |
|
943 |
by (simp add: NSDERIV_minus NSDERIV_DERIV_iff [symmetric]) |
|
944 |
||
945 |
text{*Subtraction*} |
|
946 |
lemma NSDERIV_add_minus: "[| NSDERIV f x :> Da; NSDERIV g x :> Db |] ==> NSDERIV (%x. f x + -g x) x :> Da + -Db" |
|
947 |
by (blast dest: NSDERIV_add NSDERIV_minus) |
|
948 |
||
949 |
lemma DERIV_add_minus: "[| DERIV f x :> Da; DERIV g x :> Db |] ==> DERIV (%x. f x + -g x) x :> Da + -Db" |
|
950 |
by (blast dest: DERIV_add DERIV_minus) |
|
951 |
||
952 |
lemma NSDERIV_diff: |
|
953 |
"[| NSDERIV f x :> Da; NSDERIV g x :> Db |] |
|
954 |
==> NSDERIV (%x. f x - g x) x :> Da-Db" |
|
955 |
apply (simp add: diff_minus) |
|
956 |
apply (blast intro: NSDERIV_add_minus) |
|
957 |
done |
|
958 |
||
959 |
lemma DERIV_diff: |
|
960 |
"[| DERIV f x :> Da; DERIV g x :> Db |] |
|
961 |
==> DERIV (%x. f x - g x) x :> Da-Db" |
|
962 |
apply (simp add: diff_minus) |
|
963 |
apply (blast intro: DERIV_add_minus) |
|
964 |
done |
|
965 |
||
966 |
text{* Similarly to the above, the chain rule admits an entirely |
|
967 |
straightforward derivation. Compare this with Harrison's |
|
968 |
HOL proof of the chain rule, which proved to be trickier and |
|
969 |
required an alternative characterisation of differentiability- |
|
970 |
the so-called Carathedory derivative. Our main problem is |
|
971 |
manipulation of terms.*} |
|
972 |
||
973 |
||
974 |
(* lemmas *) |
|
975 |
lemma NSDERIV_zero: |
|
976 |
"[| NSDERIV g x :> D; |
|
977 |
( *f* g) (hypreal_of_real(x) + xa) = hypreal_of_real(g x); |
|
978 |
xa \<in> Infinitesimal; |
|
979 |
xa \<noteq> 0 |
|
980 |
|] ==> D = 0" |
|
981 |
apply (simp add: nsderiv_def) |
|
982 |
apply (drule bspec, auto) |
|
983 |
done |
|
984 |
||
985 |
(* can be proved differently using NSLIM_isCont_iff *) |
|
986 |
lemma NSDERIV_approx: |
|
987 |
"[| NSDERIV f x :> D; h \<in> Infinitesimal; h \<noteq> 0 |] |
|
20563 | 988 |
==> ( *f* f) (hypreal_of_real(x) + h) - hypreal_of_real(f x) \<approx> 0" |
14477 | 989 |
apply (simp add: nsderiv_def) |
990 |
apply (simp add: mem_infmal_iff [symmetric]) |
|
991 |
apply (rule Infinitesimal_ratio) |
|
992 |
apply (rule_tac [3] approx_hypreal_of_real_HFinite, auto) |
|
993 |
done |
|
994 |
||
995 |
(*--------------------------------------------------------------- |
|
996 |
from one version of differentiability |
|
997 |
||
998 |
f(x) - f(a) |
|
999 |
--------------- \<approx> Db |
|
1000 |
x - a |
|
1001 |
---------------------------------------------------------------*) |
|
1002 |
lemma NSDERIVD1: "[| NSDERIV f (g x) :> Da; |
|
1003 |
( *f* g) (hypreal_of_real(x) + xa) \<noteq> hypreal_of_real (g x); |
|
1004 |
( *f* g) (hypreal_of_real(x) + xa) \<approx> hypreal_of_real (g x) |
|
1005 |
|] ==> (( *f* f) (( *f* g) (hypreal_of_real(x) + xa)) |
|
20563 | 1006 |
- hypreal_of_real (f (g x))) |
1007 |
/ (( *f* g) (hypreal_of_real(x) + xa) - hypreal_of_real (g x)) |
|
14477 | 1008 |
\<approx> hypreal_of_real(Da)" |
1009 |
by (auto simp add: NSDERIV_NSLIM_iff2 NSLIM_def diff_minus [symmetric]) |
|
1010 |
||
1011 |
(*-------------------------------------------------------------- |
|
1012 |
from other version of differentiability |
|
1013 |
||
1014 |
f(x + h) - f(x) |
|
1015 |
----------------- \<approx> Db |
|
1016 |
h |
|
1017 |
--------------------------------------------------------------*) |
|
1018 |
lemma NSDERIVD2: "[| NSDERIV g x :> Db; xa \<in> Infinitesimal; xa \<noteq> 0 |] |
|
20563 | 1019 |
==> (( *f* g) (hypreal_of_real(x) + xa) - hypreal_of_real(g x)) / xa |
14477 | 1020 |
\<approx> hypreal_of_real(Db)" |
1021 |
by (auto simp add: NSDERIV_NSLIM_iff NSLIM_def mem_infmal_iff starfun_lambda_cancel) |
|
1022 |
||
1023 |
lemma lemma_chain: "(z::hypreal) \<noteq> 0 ==> x*y = (x*inverse(z))*(z*y)" |
|
1024 |
by auto |
|
1025 |
||
15228 | 1026 |
text{*This proof uses both definitions of differentiability.*} |
14477 | 1027 |
lemma NSDERIV_chain: "[| NSDERIV f (g x) :> Da; NSDERIV g x :> Db |] |
1028 |
==> NSDERIV (f o g) x :> Da * Db" |
|
1029 |
apply (simp (no_asm_simp) add: NSDERIV_NSLIM_iff NSLIM_def |
|
1030 |
mem_infmal_iff [symmetric]) |
|
1031 |
apply clarify |
|
1032 |
apply (frule_tac f = g in NSDERIV_approx) |
|
1033 |
apply (auto simp add: starfun_lambda_cancel2 starfun_o [symmetric]) |
|
1034 |
apply (case_tac "( *f* g) (hypreal_of_real (x) + xa) = hypreal_of_real (g x) ") |
|
1035 |
apply (drule_tac g = g in NSDERIV_zero) |
|
1036 |
apply (auto simp add: divide_inverse) |
|
20563 | 1037 |
apply (rule_tac z1 = "( *f* g) (hypreal_of_real (x) + xa) - hypreal_of_real (g x) " and y1 = "inverse xa" in lemma_chain [THEN ssubst]) |
14477 | 1038 |
apply (erule hypreal_not_eq_minus_iff [THEN iffD1]) |
1039 |
apply (rule approx_mult_hypreal_of_real) |
|
1040 |
apply (simp_all add: divide_inverse [symmetric]) |
|
1041 |
apply (blast intro: NSDERIVD1 approx_minus_iff [THEN iffD2]) |
|
1042 |
apply (blast intro: NSDERIVD2) |
|
1043 |
done |
|
1044 |
||
1045 |
(* standard version *) |
|
1046 |
lemma DERIV_chain: "[| DERIV f (g x) :> Da; DERIV g x :> Db |] ==> DERIV (f o g) x :> Da * Db" |
|
1047 |
by (simp add: NSDERIV_DERIV_iff [symmetric] NSDERIV_chain) |
|
1048 |
||
1049 |
lemma DERIV_chain2: "[| DERIV f (g x) :> Da; DERIV g x :> Db |] ==> DERIV (%x. f (g x)) x :> Da * Db" |
|
1050 |
by (auto dest: DERIV_chain simp add: o_def) |
|
1051 |
||
1052 |
text{*Differentiation of natural number powers*} |
|
15228 | 1053 |
lemma NSDERIV_Id [simp]: "NSDERIV (%x. x) x :> 1" |
1054 |
by (simp add: NSDERIV_NSLIM_iff NSLIM_def divide_self del: divide_self_if) |
|
14477 | 1055 |
|
1056 |
(*derivative of the identity function*) |
|
15228 | 1057 |
lemma DERIV_Id [simp]: "DERIV (%x. x) x :> 1" |
14477 | 1058 |
by (simp add: NSDERIV_DERIV_iff [symmetric]) |
1059 |
||
1060 |
lemmas isCont_Id = DERIV_Id [THEN DERIV_isCont, standard] |
|
1061 |
||
1062 |
(*derivative of linear multiplication*) |
|
15228 | 1063 |
lemma DERIV_cmult_Id [simp]: "DERIV (op * c) x :> c" |
14477 | 1064 |
by (cut_tac c = c and x = x in DERIV_Id [THEN DERIV_cmult], simp) |
1065 |
||
15228 | 1066 |
lemma NSDERIV_cmult_Id [simp]: "NSDERIV (op * c) x :> c" |
14477 | 1067 |
by (simp add: NSDERIV_DERIV_iff) |
1068 |
||
1069 |
lemma DERIV_pow: "DERIV (%x. x ^ n) x :> real n * (x ^ (n - Suc 0))" |
|
15251 | 1070 |
apply (induct "n") |
14477 | 1071 |
apply (drule_tac [2] DERIV_Id [THEN DERIV_mult]) |
1072 |
apply (auto simp add: real_of_nat_Suc left_distrib) |
|
1073 |
apply (case_tac "0 < n") |
|
1074 |
apply (drule_tac x = x in realpow_minus_mult) |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1075 |
apply (auto simp add: mult_assoc add_commute) |
14477 | 1076 |
done |
1077 |
||
1078 |
(* NS version *) |
|
1079 |
lemma NSDERIV_pow: "NSDERIV (%x. x ^ n) x :> real n * (x ^ (n - Suc 0))" |
|
1080 |
by (simp add: NSDERIV_DERIV_iff DERIV_pow) |
|
1081 |
||
15228 | 1082 |
text{*Power of -1*} |
14477 | 1083 |
|
1084 |
(*Can't get rid of x \<noteq> 0 because it isn't continuous at zero*) |
|
1085 |
lemma NSDERIV_inverse: |
|
1086 |
"x \<noteq> 0 ==> NSDERIV (%x. inverse(x)) x :> (- (inverse x ^ Suc (Suc 0)))" |
|
1087 |
apply (simp add: nsderiv_def) |
|
15228 | 1088 |
apply (rule ballI, simp, clarify) |
20563 | 1089 |
apply (frule (1) Infinitesimal_add_not_zero) |
1090 |
apply (simp add: add_commute) |
|
1091 |
(*apply (auto simp add: starfun_inverse_inverse realpow_two |
|
1092 |
simp del: minus_mult_left [symmetric] minus_mult_right [symmetric])*) |
|
14477 | 1093 |
apply (simp add: inverse_add inverse_mult_distrib [symmetric] |
20563 | 1094 |
inverse_minus_eq [symmetric] add_ac mult_ac diff_def |
15228 | 1095 |
del: inverse_mult_distrib inverse_minus_eq |
14477 | 1096 |
minus_mult_left [symmetric] minus_mult_right [symmetric]) |
1097 |
apply (simp (no_asm_simp) add: mult_assoc [symmetric] right_distrib |
|
1098 |
del: minus_mult_left [symmetric] minus_mult_right [symmetric]) |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1099 |
apply (rule_tac y = "inverse (- hypreal_of_real x * hypreal_of_real x)" in approx_trans) |
14477 | 1100 |
apply (rule inverse_add_Infinitesimal_approx2) |
15228 | 1101 |
apply (auto dest!: hypreal_of_real_HFinite_diff_Infinitesimal |
14477 | 1102 |
simp add: inverse_minus_eq [symmetric] HFinite_minus_iff) |
1103 |
apply (rule Infinitesimal_HFinite_mult2, auto) |
|
1104 |
done |
|
1105 |
||
1106 |
||
1107 |
||
1108 |
||
1109 |
lemma DERIV_inverse: "x \<noteq> 0 ==> DERIV (%x. inverse(x)) x :> (-(inverse x ^ Suc (Suc 0)))" |
|
1110 |
by (simp add: NSDERIV_inverse NSDERIV_DERIV_iff [symmetric] del: realpow_Suc) |
|
1111 |
||
1112 |
text{*Derivative of inverse*} |
|
1113 |
lemma DERIV_inverse_fun: "[| DERIV f x :> d; f(x) \<noteq> 0 |] |
|
1114 |
==> DERIV (%x. inverse(f x)) x :> (- (d * inverse(f(x) ^ Suc (Suc 0))))" |
|
1115 |
apply (simp only: mult_commute [of d] minus_mult_left power_inverse) |
|
1116 |
apply (fold o_def) |
|
1117 |
apply (blast intro!: DERIV_chain DERIV_inverse) |
|
1118 |
done |
|
1119 |
||
1120 |
lemma NSDERIV_inverse_fun: "[| NSDERIV f x :> d; f(x) \<noteq> 0 |] |
|
1121 |
==> NSDERIV (%x. inverse(f x)) x :> (- (d * inverse(f(x) ^ Suc (Suc 0))))" |
|
1122 |
by (simp add: NSDERIV_DERIV_iff DERIV_inverse_fun del: realpow_Suc) |
|
1123 |
||
1124 |
text{*Derivative of quotient*} |
|
1125 |
lemma DERIV_quotient: "[| DERIV f x :> d; DERIV g x :> e; g(x) \<noteq> 0 |] |
|
20563 | 1126 |
==> DERIV (%y. f(y) / (g y)) x :> (d*g(x) - (e*f(x))) / (g(x) ^ Suc (Suc 0))" |
14477 | 1127 |
apply (drule_tac f = g in DERIV_inverse_fun) |
1128 |
apply (drule_tac [2] DERIV_mult) |
|
1129 |
apply (assumption+) |
|
1130 |
apply (simp add: divide_inverse right_distrib power_inverse minus_mult_left |
|
20563 | 1131 |
mult_ac diff_def |
14477 | 1132 |
del: realpow_Suc minus_mult_right [symmetric] minus_mult_left [symmetric]) |
1133 |
done |
|
1134 |
||
1135 |
lemma NSDERIV_quotient: "[| NSDERIV f x :> d; DERIV g x :> e; g(x) \<noteq> 0 |] |
|
1136 |
==> NSDERIV (%y. f(y) / (g y)) x :> (d*g(x) |
|
20563 | 1137 |
- (e*f(x))) / (g(x) ^ Suc (Suc 0))" |
14477 | 1138 |
by (simp add: NSDERIV_DERIV_iff DERIV_quotient del: realpow_Suc) |
1139 |
||
1140 |
(* ------------------------------------------------------------------------ *) |
|
1141 |
(* Caratheodory formulation of derivative at a point: standard proof *) |
|
1142 |
(* ------------------------------------------------------------------------ *) |
|
1143 |
||
1144 |
lemma CARAT_DERIV: |
|
1145 |
"(DERIV f x :> l) = |
|
1146 |
(\<exists>g. (\<forall>z. f z - f x = g z * (z-x)) & isCont g x & g x = l)" |
|
1147 |
(is "?lhs = ?rhs") |
|
1148 |
proof |
|
1149 |
assume der: "DERIV f x :> l" |
|
1150 |
show "\<exists>g. (\<forall>z. f z - f x = g z * (z-x)) \<and> isCont g x \<and> g x = l" |
|
1151 |
proof (intro exI conjI) |
|
1152 |
let ?g = "(%z. if z = x then l else (f z - f x) / (z-x))" |
|
15539 | 1153 |
show "\<forall>z. f z - f x = ?g z * (z-x)" by (simp) |
15228 | 1154 |
show "isCont ?g x" using der |
1155 |
by (simp add: isCont_iff DERIV_iff diff_minus |
|
14477 | 1156 |
cong: LIM_equal [rule_format]) |
1157 |
show "?g x = l" by simp |
|
1158 |
qed |
|
1159 |
next |
|
1160 |
assume "?rhs" |
|
15228 | 1161 |
then obtain g where |
14477 | 1162 |
"(\<forall>z. f z - f x = g z * (z-x))" and "isCont g x" and "g x = l" by blast |
15228 | 1163 |
thus "(DERIV f x :> l)" |
1164 |
by (auto simp add: isCont_iff DERIV_iff diff_minus |
|
14477 | 1165 |
cong: LIM_equal [rule_format]) |
1166 |
qed |
|
1167 |
||
1168 |
||
1169 |
lemma CARAT_NSDERIV: "NSDERIV f x :> l ==> |
|
1170 |
\<exists>g. (\<forall>z. f z - f x = g z * (z-x)) & isNSCont g x & g x = l" |
|
1171 |
by (auto simp add: NSDERIV_DERIV_iff isNSCont_isCont_iff CARAT_DERIV) |
|
1172 |
||
1173 |
lemma hypreal_eq_minus_iff3: "(x = y + z) = (x + -z = (y::hypreal))" |
|
1174 |
by auto |
|
1175 |
||
1176 |
lemma CARAT_DERIVD: |
|
1177 |
assumes all: "\<forall>z. f z - f x = g z * (z-x)" |
|
1178 |
and nsc: "isNSCont g x" |
|
1179 |
shows "NSDERIV f x :> g x" |
|
1180 |
proof - |
|
1181 |
from nsc |
|
1182 |
have "\<forall>w. w \<noteq> hypreal_of_real x \<and> w \<approx> hypreal_of_real x \<longrightarrow> |
|
1183 |
( *f* g) w * (w - hypreal_of_real x) / (w - hypreal_of_real x) \<approx> |
|
15228 | 1184 |
hypreal_of_real (g x)" |
14477 | 1185 |
by (simp add: diff_minus isNSCont_def) |
1186 |
thus ?thesis using all |
|
15228 | 1187 |
by (simp add: NSDERIV_iff2 starfun_if_eq cong: if_cong) |
14477 | 1188 |
qed |
1189 |
||
20755 | 1190 |
subsubsection {* Differentiability predicate *} |
1191 |
||
1192 |
lemma differentiableD: "f differentiable x ==> \<exists>D. DERIV f x :> D" |
|
1193 |
by (simp add: differentiable_def) |
|
1194 |
||
1195 |
lemma differentiableI: "DERIV f x :> D ==> f differentiable x" |
|
1196 |
by (force simp add: differentiable_def) |
|
1197 |
||
1198 |
lemma NSdifferentiableD: "f NSdifferentiable x ==> \<exists>D. NSDERIV f x :> D" |
|
1199 |
by (simp add: NSdifferentiable_def) |
|
1200 |
||
1201 |
lemma NSdifferentiableI: "NSDERIV f x :> D ==> f NSdifferentiable x" |
|
1202 |
by (force simp add: NSdifferentiable_def) |
|
1203 |
||
1204 |
lemma differentiable_const: "(\<lambda>z. a) differentiable x" |
|
1205 |
apply (unfold differentiable_def) |
|
1206 |
apply (rule_tac x=0 in exI) |
|
1207 |
apply simp |
|
1208 |
done |
|
1209 |
||
1210 |
lemma differentiable_sum: |
|
1211 |
assumes "f differentiable x" |
|
1212 |
and "g differentiable x" |
|
1213 |
shows "(\<lambda>x. f x + g x) differentiable x" |
|
1214 |
proof - |
|
1215 |
from prems have "\<exists>D. DERIV f x :> D" by (unfold differentiable_def) |
|
1216 |
then obtain df where "DERIV f x :> df" .. |
|
1217 |
moreover from prems have "\<exists>D. DERIV g x :> D" by (unfold differentiable_def) |
|
1218 |
then obtain dg where "DERIV g x :> dg" .. |
|
1219 |
ultimately have "DERIV (\<lambda>x. f x + g x) x :> df + dg" by (rule DERIV_add) |
|
1220 |
hence "\<exists>D. DERIV (\<lambda>x. f x + g x) x :> D" by auto |
|
1221 |
thus ?thesis by (fold differentiable_def) |
|
1222 |
qed |
|
1223 |
||
1224 |
lemma differentiable_diff: |
|
1225 |
assumes "f differentiable x" |
|
1226 |
and "g differentiable x" |
|
1227 |
shows "(\<lambda>x. f x - g x) differentiable x" |
|
1228 |
proof - |
|
1229 |
from prems have "f differentiable x" by simp |
|
1230 |
moreover |
|
1231 |
from prems have "\<exists>D. DERIV g x :> D" by (unfold differentiable_def) |
|
1232 |
then obtain dg where "DERIV g x :> dg" .. |
|
1233 |
then have "DERIV (\<lambda>x. - g x) x :> -dg" by (rule DERIV_minus) |
|
1234 |
hence "\<exists>D. DERIV (\<lambda>x. - g x) x :> D" by auto |
|
1235 |
hence "(\<lambda>x. - g x) differentiable x" by (fold differentiable_def) |
|
1236 |
ultimately |
|
1237 |
show ?thesis |
|
1238 |
by (auto simp: real_diff_def dest: differentiable_sum) |
|
1239 |
qed |
|
1240 |
||
1241 |
lemma differentiable_mult: |
|
1242 |
assumes "f differentiable x" |
|
1243 |
and "g differentiable x" |
|
1244 |
shows "(\<lambda>x. f x * g x) differentiable x" |
|
1245 |
proof - |
|
1246 |
from prems have "\<exists>D. DERIV f x :> D" by (unfold differentiable_def) |
|
1247 |
then obtain df where "DERIV f x :> df" .. |
|
1248 |
moreover from prems have "\<exists>D. DERIV g x :> D" by (unfold differentiable_def) |
|
1249 |
then obtain dg where "DERIV g x :> dg" .. |
|
1250 |
ultimately have "DERIV (\<lambda>x. f x * g x) x :> df * g x + dg * f x" by (simp add: DERIV_mult) |
|
1251 |
hence "\<exists>D. DERIV (\<lambda>x. f x * g x) x :> D" by auto |
|
1252 |
thus ?thesis by (fold differentiable_def) |
|
1253 |
qed |
|
1254 |
||
1255 |
subsection {*(NS) Increment*} |
|
1256 |
lemma incrementI: |
|
1257 |
"f NSdifferentiable x ==> |
|
1258 |
increment f x h = ( *f* f) (hypreal_of_real(x) + h) - |
|
1259 |
hypreal_of_real (f x)" |
|
1260 |
by (simp add: increment_def) |
|
1261 |
||
1262 |
lemma incrementI2: "NSDERIV f x :> D ==> |
|
1263 |
increment f x h = ( *f* f) (hypreal_of_real(x) + h) - |
|
1264 |
hypreal_of_real (f x)" |
|
1265 |
apply (erule NSdifferentiableI [THEN incrementI]) |
|
1266 |
done |
|
1267 |
||
1268 |
(* The Increment theorem -- Keisler p. 65 *) |
|
1269 |
lemma increment_thm: "[| NSDERIV f x :> D; h \<in> Infinitesimal; h \<noteq> 0 |] |
|
1270 |
==> \<exists>e \<in> Infinitesimal. increment f x h = hypreal_of_real(D)*h + e*h" |
|
1271 |
apply (frule_tac h = h in incrementI2, simp add: nsderiv_def) |
|
1272 |
apply (drule bspec, auto) |
|
1273 |
apply (drule bex_Infinitesimal_iff2 [THEN iffD2], clarify) |
|
1274 |
apply (frule_tac b1 = "hypreal_of_real (D) + y" |
|
1275 |
in hypreal_mult_right_cancel [THEN iffD2]) |
|
1276 |
apply (erule_tac [2] V = "(( *f* f) (hypreal_of_real (x) + h) - hypreal_of_real (f x)) / h = hypreal_of_real (D) + y" in thin_rl) |
|
1277 |
apply assumption |
|
1278 |
apply (simp add: times_divide_eq_right [symmetric]) |
|
1279 |
apply (auto simp add: left_distrib) |
|
1280 |
done |
|
1281 |
||
1282 |
lemma increment_thm2: |
|
1283 |
"[| NSDERIV f x :> D; h \<approx> 0; h \<noteq> 0 |] |
|
1284 |
==> \<exists>e \<in> Infinitesimal. increment f x h = |
|
1285 |
hypreal_of_real(D)*h + e*h" |
|
1286 |
by (blast dest!: mem_infmal_iff [THEN iffD2] intro!: increment_thm) |
|
1287 |
||
1288 |
||
1289 |
lemma increment_approx_zero: "[| NSDERIV f x :> D; h \<approx> 0; h \<noteq> 0 |] |
|
1290 |
==> increment f x h \<approx> 0" |
|
1291 |
apply (drule increment_thm2, |
|
1292 |
auto intro!: Infinitesimal_HFinite_mult2 HFinite_add simp add: left_distrib [symmetric] mem_infmal_iff [symmetric]) |
|
1293 |
apply (erule Infinitesimal_subset_HFinite [THEN subsetD]) |
|
1294 |
done |
|
1295 |
||
1296 |
subsection {* Nested Intervals and Bisection *} |
|
1297 |
||
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1298 |
text{*Lemmas about nested intervals and proof by bisection (cf.Harrison). |
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1299 |
All considerably tidied by lcp.*} |
14477 | 1300 |
|
1301 |
lemma lemma_f_mono_add [rule_format (no_asm)]: "(\<forall>n. (f::nat=>real) n \<le> f (Suc n)) --> f m \<le> f(m + no)" |
|
15251 | 1302 |
apply (induct "no") |
14477 | 1303 |
apply (auto intro: order_trans) |
1304 |
done |
|
1305 |
||
1306 |
lemma f_inc_g_dec_Beq_f: "[| \<forall>n. f(n) \<le> f(Suc n); |
|
1307 |
\<forall>n. g(Suc n) \<le> g(n); |
|
1308 |
\<forall>n. f(n) \<le> g(n) |] |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
1309 |
==> Bseq (f :: nat \<Rightarrow> real)" |
14477 | 1310 |
apply (rule_tac k = "f 0" and K = "g 0" in BseqI2, rule allI) |
1311 |
apply (induct_tac "n") |
|
1312 |
apply (auto intro: order_trans) |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1313 |
apply (rule_tac y = "g (Suc na)" in order_trans) |
14477 | 1314 |
apply (induct_tac [2] "na") |
1315 |
apply (auto intro: order_trans) |
|
1316 |
done |
|
1317 |
||
1318 |
lemma f_inc_g_dec_Beq_g: "[| \<forall>n. f(n) \<le> f(Suc n); |
|
1319 |
\<forall>n. g(Suc n) \<le> g(n); |
|
1320 |
\<forall>n. f(n) \<le> g(n) |] |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
1321 |
==> Bseq (g :: nat \<Rightarrow> real)" |
14477 | 1322 |
apply (subst Bseq_minus_iff [symmetric]) |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1323 |
apply (rule_tac g = "%x. - (f x)" in f_inc_g_dec_Beq_f) |
14477 | 1324 |
apply auto |
1325 |
done |
|
1326 |
||
20693 | 1327 |
lemma f_inc_imp_le_lim: |
1328 |
fixes f :: "nat \<Rightarrow> real" |
|
1329 |
shows "\<lbrakk>\<forall>n. f n \<le> f (Suc n); convergent f\<rbrakk> \<Longrightarrow> f n \<le> lim f" |
|
14477 | 1330 |
apply (rule linorder_not_less [THEN iffD1]) |
1331 |
apply (auto simp add: convergent_LIMSEQ_iff LIMSEQ_iff monoseq_Suc) |
|
1332 |
apply (drule real_less_sum_gt_zero) |
|
1333 |
apply (drule_tac x = "f n + - lim f" in spec, safe) |
|
1334 |
apply (drule_tac P = "%na. no\<le>na --> ?Q na" and x = "no + n" in spec, auto) |
|
1335 |
apply (subgoal_tac "lim f \<le> f (no + n) ") |
|
1336 |
apply (drule_tac no=no and m=n in lemma_f_mono_add) |
|
1337 |
apply (auto simp add: add_commute) |
|
20254
58b71535ed00
lin_arith_prover splits certain operators (e.g. min, max, abs)
webertj
parents:
20217
diff
changeset
|
1338 |
apply (induct_tac "no") |
58b71535ed00
lin_arith_prover splits certain operators (e.g. min, max, abs)
webertj
parents:
20217
diff
changeset
|
1339 |
apply simp |
58b71535ed00
lin_arith_prover splits certain operators (e.g. min, max, abs)
webertj
parents:
20217
diff
changeset
|
1340 |
apply (auto intro: order_trans simp add: diff_minus abs_if) |
14477 | 1341 |
done |
1342 |
||
1343 |
lemma lim_uminus: "convergent g ==> lim (%x. - g x) = - (lim g)" |
|
1344 |
apply (rule LIMSEQ_minus [THEN limI]) |
|
1345 |
apply (simp add: convergent_LIMSEQ_iff) |
|
1346 |
done |
|
1347 |
||
20693 | 1348 |
lemma g_dec_imp_lim_le: |
1349 |
fixes g :: "nat \<Rightarrow> real" |
|
1350 |
shows "\<lbrakk>\<forall>n. g (Suc n) \<le> g(n); convergent g\<rbrakk> \<Longrightarrow> lim g \<le> g n" |
|
14477 | 1351 |
apply (subgoal_tac "- (g n) \<le> - (lim g) ") |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1352 |
apply (cut_tac [2] f = "%x. - (g x)" in f_inc_imp_le_lim) |
14477 | 1353 |
apply (auto simp add: lim_uminus convergent_minus_iff [symmetric]) |
1354 |
done |
|
1355 |
||
1356 |
lemma lemma_nest: "[| \<forall>n. f(n) \<le> f(Suc n); |
|
1357 |
\<forall>n. g(Suc n) \<le> g(n); |
|
1358 |
\<forall>n. f(n) \<le> g(n) |] |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
1359 |
==> \<exists>l m :: real. l \<le> m & ((\<forall>n. f(n) \<le> l) & f ----> l) & |
14477 | 1360 |
((\<forall>n. m \<le> g(n)) & g ----> m)" |
1361 |
apply (subgoal_tac "monoseq f & monoseq g") |
|
1362 |
prefer 2 apply (force simp add: LIMSEQ_iff monoseq_Suc) |
|
1363 |
apply (subgoal_tac "Bseq f & Bseq g") |
|
1364 |
prefer 2 apply (blast intro: f_inc_g_dec_Beq_f f_inc_g_dec_Beq_g) |
|
1365 |
apply (auto dest!: Bseq_monoseq_convergent simp add: convergent_LIMSEQ_iff) |
|
1366 |
apply (rule_tac x = "lim f" in exI) |
|
1367 |
apply (rule_tac x = "lim g" in exI) |
|
1368 |
apply (auto intro: LIMSEQ_le) |
|
1369 |
apply (auto simp add: f_inc_imp_le_lim g_dec_imp_lim_le convergent_LIMSEQ_iff) |
|
1370 |
done |
|
1371 |
||
1372 |
lemma lemma_nest_unique: "[| \<forall>n. f(n) \<le> f(Suc n); |
|
1373 |
\<forall>n. g(Suc n) \<le> g(n); |
|
1374 |
\<forall>n. f(n) \<le> g(n); |
|
1375 |
(%n. f(n) - g(n)) ----> 0 |] |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
1376 |
==> \<exists>l::real. ((\<forall>n. f(n) \<le> l) & f ----> l) & |
14477 | 1377 |
((\<forall>n. l \<le> g(n)) & g ----> l)" |
1378 |
apply (drule lemma_nest, auto) |
|
1379 |
apply (subgoal_tac "l = m") |
|
1380 |
apply (drule_tac [2] X = f in LIMSEQ_diff) |
|
1381 |
apply (auto intro: LIMSEQ_unique) |
|
1382 |
done |
|
1383 |
||
1384 |
text{*The universal quantifiers below are required for the declaration |
|
1385 |
of @{text Bolzano_nest_unique} below.*} |
|
1386 |
||
1387 |
lemma Bolzano_bisect_le: |
|
1388 |
"a \<le> b ==> \<forall>n. fst (Bolzano_bisect P a b n) \<le> snd (Bolzano_bisect P a b n)" |
|
1389 |
apply (rule allI) |
|
1390 |
apply (induct_tac "n") |
|
1391 |
apply (auto simp add: Let_def split_def) |
|
1392 |
done |
|
1393 |
||
1394 |
lemma Bolzano_bisect_fst_le_Suc: "a \<le> b ==> |
|
1395 |
\<forall>n. fst(Bolzano_bisect P a b n) \<le> fst (Bolzano_bisect P a b (Suc n))" |
|
1396 |
apply (rule allI) |
|
1397 |
apply (induct_tac "n") |
|
1398 |
apply (auto simp add: Bolzano_bisect_le Let_def split_def) |
|
1399 |
done |
|
1400 |
||
1401 |
lemma Bolzano_bisect_Suc_le_snd: "a \<le> b ==> |
|
1402 |
\<forall>n. snd(Bolzano_bisect P a b (Suc n)) \<le> snd (Bolzano_bisect P a b n)" |
|
1403 |
apply (rule allI) |
|
1404 |
apply (induct_tac "n") |
|
15539 | 1405 |
apply (auto simp add: Bolzano_bisect_le Let_def split_def) |
14477 | 1406 |
done |
1407 |
||
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1408 |
lemma eq_divide_2_times_iff: "((x::real) = y / (2 * z)) = (2 * x = y/z)" |
15539 | 1409 |
apply (auto) |
14477 | 1410 |
apply (drule_tac f = "%u. (1/2) *u" in arg_cong) |
15539 | 1411 |
apply (simp) |
14477 | 1412 |
done |
1413 |
||
1414 |
lemma Bolzano_bisect_diff: |
|
1415 |
"a \<le> b ==> |
|
1416 |
snd(Bolzano_bisect P a b n) - fst(Bolzano_bisect P a b n) = |
|
1417 |
(b-a) / (2 ^ n)" |
|
15251 | 1418 |
apply (induct "n") |
14477 | 1419 |
apply (auto simp add: eq_divide_2_times_iff add_divide_distrib Let_def split_def) |
1420 |
done |
|
1421 |
||
1422 |
lemmas Bolzano_nest_unique = |
|
1423 |
lemma_nest_unique |
|
1424 |
[OF Bolzano_bisect_fst_le_Suc Bolzano_bisect_Suc_le_snd Bolzano_bisect_le] |
|
1425 |
||
1426 |
||
1427 |
lemma not_P_Bolzano_bisect: |
|
1428 |
assumes P: "!!a b c. [| P(a,b); P(b,c); a \<le> b; b \<le> c|] ==> P(a,c)" |
|
1429 |
and notP: "~ P(a,b)" |
|
1430 |
and le: "a \<le> b" |
|
1431 |
shows "~ P(fst(Bolzano_bisect P a b n), snd(Bolzano_bisect P a b n))" |
|
1432 |
proof (induct n) |
|
1433 |
case 0 thus ?case by simp |
|
1434 |
next |
|
1435 |
case (Suc n) |
|
1436 |
thus ?case |
|
15228 | 1437 |
by (auto simp del: surjective_pairing [symmetric] |
1438 |
simp add: Let_def split_def Bolzano_bisect_le [OF le] |
|
1439 |
P [of "fst (Bolzano_bisect P a b n)" _ "snd (Bolzano_bisect P a b n)"]) |
|
14477 | 1440 |
qed |
1441 |
||
1442 |
(*Now we re-package P_prem as a formula*) |
|
1443 |
lemma not_P_Bolzano_bisect': |
|
1444 |
"[| \<forall>a b c. P(a,b) & P(b,c) & a \<le> b & b \<le> c --> P(a,c); |
|
1445 |
~ P(a,b); a \<le> b |] ==> |
|
1446 |
\<forall>n. ~ P(fst(Bolzano_bisect P a b n), snd(Bolzano_bisect P a b n))" |
|
1447 |
by (blast elim!: not_P_Bolzano_bisect [THEN [2] rev_notE]) |
|
1448 |
||
1449 |
||
1450 |
||
1451 |
lemma lemma_BOLZANO: |
|
1452 |
"[| \<forall>a b c. P(a,b) & P(b,c) & a \<le> b & b \<le> c --> P(a,c); |
|
1453 |
\<forall>x. \<exists>d::real. 0 < d & |
|
1454 |
(\<forall>a b. a \<le> x & x \<le> b & (b-a) < d --> P(a,b)); |
|
1455 |
a \<le> b |] |
|
1456 |
==> P(a,b)" |
|
1457 |
apply (rule Bolzano_nest_unique [where P1=P, THEN exE], assumption+) |
|
1458 |
apply (rule LIMSEQ_minus_cancel) |
|
1459 |
apply (simp (no_asm_simp) add: Bolzano_bisect_diff LIMSEQ_divide_realpow_zero) |
|
1460 |
apply (rule ccontr) |
|
1461 |
apply (drule not_P_Bolzano_bisect', assumption+) |
|
1462 |
apply (rename_tac "l") |
|
1463 |
apply (drule_tac x = l in spec, clarify) |
|
1464 |
apply (simp add: LIMSEQ_def) |
|
1465 |
apply (drule_tac P = "%r. 0<r --> ?Q r" and x = "d/2" in spec) |
|
1466 |
apply (drule_tac P = "%r. 0<r --> ?Q r" and x = "d/2" in spec) |
|
15228 | 1467 |
apply (drule real_less_half_sum, auto) |
14477 | 1468 |
apply (drule_tac x = "fst (Bolzano_bisect P a b (no + noa))" in spec) |
1469 |
apply (drule_tac x = "snd (Bolzano_bisect P a b (no + noa))" in spec) |
|
1470 |
apply safe |
|
1471 |
apply (simp_all (no_asm_simp)) |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1472 |
apply (rule_tac y = "abs (fst (Bolzano_bisect P a b (no + noa)) - l) + abs (snd (Bolzano_bisect P a b (no + noa)) - l)" in order_le_less_trans) |
14477 | 1473 |
apply (simp (no_asm_simp) add: abs_if) |
1474 |
apply (rule real_sum_of_halves [THEN subst]) |
|
1475 |
apply (rule add_strict_mono) |
|
1476 |
apply (simp_all add: diff_minus [symmetric]) |
|
1477 |
done |
|
1478 |
||
1479 |
||
1480 |
lemma lemma_BOLZANO2: "((\<forall>a b c. (a \<le> b & b \<le> c & P(a,b) & P(b,c)) --> P(a,c)) & |
|
1481 |
(\<forall>x. \<exists>d::real. 0 < d & |
|
1482 |
(\<forall>a b. a \<le> x & x \<le> b & (b-a) < d --> P(a,b)))) |
|
1483 |
--> (\<forall>a b. a \<le> b --> P(a,b))" |
|
1484 |
apply clarify |
|
1485 |
apply (blast intro: lemma_BOLZANO) |
|
1486 |
done |
|
1487 |
||
1488 |
||
20755 | 1489 |
subsection {* Intermediate Value Theorem *} |
1490 |
||
1491 |
text {*Prove Contrapositive by Bisection*} |
|
14477 | 1492 |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
1493 |
lemma IVT: "[| f(a::real) \<le> (y::real); y \<le> f(b); |
14477 | 1494 |
a \<le> b; |
1495 |
(\<forall>x. a \<le> x & x \<le> b --> isCont f x) |] |
|
1496 |
==> \<exists>x. a \<le> x & x \<le> b & f(x) = y" |
|
1497 |
apply (rule contrapos_pp, assumption) |
|
1498 |
apply (cut_tac P = "% (u,v) . a \<le> u & u \<le> v & v \<le> b --> ~ (f (u) \<le> y & y \<le> f (v))" in lemma_BOLZANO2) |
|
1499 |
apply safe |
|
1500 |
apply simp_all |
|
1501 |
apply (simp add: isCont_iff LIM_def) |
|
1502 |
apply (rule ccontr) |
|
1503 |
apply (subgoal_tac "a \<le> x & x \<le> b") |
|
1504 |
prefer 2 |
|
15228 | 1505 |
apply simp |
14477 | 1506 |
apply (drule_tac P = "%d. 0<d --> ?P d" and x = 1 in spec, arith) |
1507 |
apply (drule_tac x = x in spec)+ |
|
1508 |
apply simp |
|
15360 | 1509 |
apply (drule_tac P = "%r. ?P r --> (\<exists>s>0. ?Q r s) " and x = "\<bar>y - f x\<bar>" in spec) |
14477 | 1510 |
apply safe |
1511 |
apply simp |
|
1512 |
apply (drule_tac x = s in spec, clarify) |
|
1513 |
apply (cut_tac x = "f x" and y = y in linorder_less_linear, safe) |
|
1514 |
apply (drule_tac x = "ba-x" in spec) |
|
1515 |
apply (simp_all add: abs_if) |
|
1516 |
apply (drule_tac x = "aa-x" in spec) |
|
1517 |
apply (case_tac "x \<le> aa", simp_all) |
|
1518 |
done |
|
1519 |
||
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
1520 |
lemma IVT2: "[| f(b::real) \<le> (y::real); y \<le> f(a); |
14477 | 1521 |
a \<le> b; |
1522 |
(\<forall>x. a \<le> x & x \<le> b --> isCont f x) |
|
1523 |
|] ==> \<exists>x. a \<le> x & x \<le> b & f(x) = y" |
|
15228 | 1524 |
apply (subgoal_tac "- f a \<le> -y & -y \<le> - f b", clarify) |
14477 | 1525 |
apply (drule IVT [where f = "%x. - f x"], assumption) |
1526 |
apply (auto intro: isCont_minus) |
|
1527 |
done |
|
1528 |
||
1529 |
(*HOL style here: object-level formulations*) |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
1530 |
lemma IVT_objl: "(f(a::real) \<le> (y::real) & y \<le> f(b) & a \<le> b & |
14477 | 1531 |
(\<forall>x. a \<le> x & x \<le> b --> isCont f x)) |
1532 |
--> (\<exists>x. a \<le> x & x \<le> b & f(x) = y)" |
|
1533 |
apply (blast intro: IVT) |
|
1534 |
done |
|
1535 |
||
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
1536 |
lemma IVT2_objl: "(f(b::real) \<le> (y::real) & y \<le> f(a) & a \<le> b & |
14477 | 1537 |
(\<forall>x. a \<le> x & x \<le> b --> isCont f x)) |
1538 |
--> (\<exists>x. a \<le> x & x \<le> b & f(x) = y)" |
|
1539 |
apply (blast intro: IVT2) |
|
1540 |
done |
|
1541 |
||
20755 | 1542 |
text{*By bisection, function continuous on closed interval is bounded above*} |
14477 | 1543 |
|
1544 |
lemma isCont_bounded: |
|
1545 |
"[| a \<le> b; \<forall>x. a \<le> x & x \<le> b --> isCont f x |] |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
1546 |
==> \<exists>M::real. \<forall>x::real. a \<le> x & x \<le> b --> f(x) \<le> M" |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1547 |
apply (cut_tac P = "% (u,v) . a \<le> u & u \<le> v & v \<le> b --> (\<exists>M. \<forall>x. u \<le> x & x \<le> v --> f x \<le> M)" in lemma_BOLZANO2) |
14477 | 1548 |
apply safe |
1549 |
apply simp_all |
|
1550 |
apply (rename_tac x xa ya M Ma) |
|
1551 |
apply (cut_tac x = M and y = Ma in linorder_linear, safe) |
|
1552 |
apply (rule_tac x = Ma in exI, clarify) |
|
1553 |
apply (cut_tac x = xb and y = xa in linorder_linear, force) |
|
1554 |
apply (rule_tac x = M in exI, clarify) |
|
1555 |
apply (cut_tac x = xb and y = xa in linorder_linear, force) |
|
1556 |
apply (case_tac "a \<le> x & x \<le> b") |
|
1557 |
apply (rule_tac [2] x = 1 in exI) |
|
1558 |
prefer 2 apply force |
|
1559 |
apply (simp add: LIM_def isCont_iff) |
|
1560 |
apply (drule_tac x = x in spec, auto) |
|
1561 |
apply (erule_tac V = "\<forall>M. \<exists>x. a \<le> x & x \<le> b & ~ f x \<le> M" in thin_rl) |
|
1562 |
apply (drule_tac x = 1 in spec, auto) |
|
1563 |
apply (rule_tac x = s in exI, clarify) |
|
1564 |
apply (rule_tac x = "\<bar>f x\<bar> + 1" in exI, clarify) |
|
1565 |
apply (drule_tac x = "xa-x" in spec) |
|
20217
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents:
19765
diff
changeset
|
1566 |
apply (auto simp add: abs_ge_self) |
14477 | 1567 |
done |
1568 |
||
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1569 |
text{*Refine the above to existence of least upper bound*} |
14477 | 1570 |
|
1571 |
lemma lemma_reals_complete: "((\<exists>x. x \<in> S) & (\<exists>y. isUb UNIV S (y::real))) --> |
|
1572 |
(\<exists>t. isLub UNIV S t)" |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1573 |
by (blast intro: reals_complete) |
14477 | 1574 |
|
1575 |
lemma isCont_has_Ub: "[| a \<le> b; \<forall>x. a \<le> x & x \<le> b --> isCont f x |] |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
1576 |
==> \<exists>M::real. (\<forall>x::real. a \<le> x & x \<le> b --> f(x) \<le> M) & |
14477 | 1577 |
(\<forall>N. N < M --> (\<exists>x. a \<le> x & x \<le> b & N < f(x)))" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1578 |
apply (cut_tac S = "Collect (%y. \<exists>x. a \<le> x & x \<le> b & y = f x)" |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1579 |
in lemma_reals_complete) |
14477 | 1580 |
apply auto |
1581 |
apply (drule isCont_bounded, assumption) |
|
1582 |
apply (auto simp add: isUb_def leastP_def isLub_def setge_def setle_def) |
|
1583 |
apply (rule exI, auto) |
|
15228 | 1584 |
apply (auto dest!: spec simp add: linorder_not_less) |
14477 | 1585 |
done |
1586 |
||
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1587 |
text{*Now show that it attains its upper bound*} |
14477 | 1588 |
|
1589 |
lemma isCont_eq_Ub: |
|
1590 |
assumes le: "a \<le> b" |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
1591 |
and con: "\<forall>x::real. a \<le> x & x \<le> b --> isCont f x" |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
1592 |
shows "\<exists>M::real. (\<forall>x. a \<le> x & x \<le> b --> f(x) \<le> M) & |
14477 | 1593 |
(\<exists>x. a \<le> x & x \<le> b & f(x) = M)" |
1594 |
proof - |
|
1595 |
from isCont_has_Ub [OF le con] |
|
1596 |
obtain M where M1: "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> f x \<le> M" |
|
1597 |
and M2: "!!N. N<M ==> \<exists>x. a \<le> x \<and> x \<le> b \<and> N < f x" by blast |
|
1598 |
show ?thesis |
|
1599 |
proof (intro exI, intro conjI) |
|
1600 |
show " \<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> f x \<le> M" by (rule M1) |
|
15228 | 1601 |
show "\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = M" |
14477 | 1602 |
proof (rule ccontr) |
1603 |
assume "\<not> (\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = M)" |
|
1604 |
with M1 have M3: "\<forall>x. a \<le> x & x \<le> b --> f x < M" |
|
15195 | 1605 |
by (fastsimp simp add: linorder_not_le [symmetric]) |
14477 | 1606 |
hence "\<forall>x. a \<le> x & x \<le> b --> isCont (%x. inverse (M - f x)) x" |
1607 |
by (auto simp add: isCont_inverse isCont_diff con) |
|
1608 |
from isCont_bounded [OF le this] |
|
1609 |
obtain k where k: "!!x. a \<le> x & x \<le> b --> inverse (M - f x) \<le> k" by auto |
|
1610 |
have Minv: "!!x. a \<le> x & x \<le> b --> 0 < inverse (M - f (x))" |
|
15228 | 1611 |
by (simp add: M3 compare_rls) |
1612 |
have "!!x. a \<le> x & x \<le> b --> inverse (M - f x) < k+1" using k |
|
1613 |
by (auto intro: order_le_less_trans [of _ k]) |
|
1614 |
with Minv |
|
1615 |
have "!!x. a \<le> x & x \<le> b --> inverse(k+1) < inverse(inverse(M - f x))" |
|
14477 | 1616 |
by (intro strip less_imp_inverse_less, simp_all) |
15228 | 1617 |
hence invlt: "!!x. a \<le> x & x \<le> b --> inverse(k+1) < M - f x" |
14477 | 1618 |
by simp |
15228 | 1619 |
have "M - inverse (k+1) < M" using k [of a] Minv [of a] le |
14477 | 1620 |
by (simp, arith) |
1621 |
from M2 [OF this] |
|
1622 |
obtain x where ax: "a \<le> x & x \<le> b & M - inverse(k+1) < f x" .. |
|
1623 |
thus False using invlt [of x] by force |
|
1624 |
qed |
|
1625 |
qed |
|
1626 |
qed |
|
1627 |
||
1628 |
||
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1629 |
text{*Same theorem for lower bound*} |
14477 | 1630 |
|
1631 |
lemma isCont_eq_Lb: "[| a \<le> b; \<forall>x. a \<le> x & x \<le> b --> isCont f x |] |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
1632 |
==> \<exists>M::real. (\<forall>x::real. a \<le> x & x \<le> b --> M \<le> f(x)) & |
14477 | 1633 |
(\<exists>x. a \<le> x & x \<le> b & f(x) = M)" |
1634 |
apply (subgoal_tac "\<forall>x. a \<le> x & x \<le> b --> isCont (%x. - (f x)) x") |
|
1635 |
prefer 2 apply (blast intro: isCont_minus) |
|
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1636 |
apply (drule_tac f = "(%x. - (f x))" in isCont_eq_Ub) |
14477 | 1637 |
apply safe |
1638 |
apply auto |
|
1639 |
done |
|
1640 |
||
1641 |
||
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1642 |
text{*Another version.*} |
14477 | 1643 |
|
1644 |
lemma isCont_Lb_Ub: "[|a \<le> b; \<forall>x. a \<le> x & x \<le> b --> isCont f x |] |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
1645 |
==> \<exists>L M::real. (\<forall>x::real. a \<le> x & x \<le> b --> L \<le> f(x) & f(x) \<le> M) & |
14477 | 1646 |
(\<forall>y. L \<le> y & y \<le> M --> (\<exists>x. a \<le> x & x \<le> b & (f(x) = y)))" |
1647 |
apply (frule isCont_eq_Lb) |
|
1648 |
apply (frule_tac [2] isCont_eq_Ub) |
|
1649 |
apply (assumption+, safe) |
|
1650 |
apply (rule_tac x = "f x" in exI) |
|
1651 |
apply (rule_tac x = "f xa" in exI, simp, safe) |
|
1652 |
apply (cut_tac x = x and y = xa in linorder_linear, safe) |
|
1653 |
apply (cut_tac f = f and a = x and b = xa and y = y in IVT_objl) |
|
1654 |
apply (cut_tac [2] f = f and a = xa and b = x and y = y in IVT2_objl, safe) |
|
1655 |
apply (rule_tac [2] x = xb in exI) |
|
1656 |
apply (rule_tac [4] x = xb in exI, simp_all) |
|
1657 |
done |
|
1658 |
||
15003 | 1659 |
|
20755 | 1660 |
text{*If @{term "0 < f'(x)"} then @{term x} is Locally Strictly Increasing At The Right*} |
14477 | 1661 |
|
1662 |
lemma DERIV_left_inc: |
|
15003 | 1663 |
assumes der: "DERIV f x :> l" |
1664 |
and l: "0 < l" |
|
15360 | 1665 |
shows "\<exists>d > 0. \<forall>h > 0. h < d --> f(x) < f(x + h)" |
15003 | 1666 |
proof - |
1667 |
from l der [THEN DERIV_D, THEN LIM_D [where r = "l"]] |
|
15360 | 1668 |
have "\<exists>s > 0. (\<forall>z. z \<noteq> 0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>(f(x+z) - f x) / z - l\<bar> < l)" |
15003 | 1669 |
by (simp add: diff_minus) |
1670 |
then obtain s |
|
15228 | 1671 |
where s: "0 < s" |
15003 | 1672 |
and all: "!!z. z \<noteq> 0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>(f(x+z) - f x) / z - l\<bar> < l" |
1673 |
by auto |
|
1674 |
thus ?thesis |
|
1675 |
proof (intro exI conjI strip) |
|
1676 |
show "0<s" . |
|
1677 |
fix h::real |
|
15360 | 1678 |
assume "0 < h" "h < s" |
15228 | 1679 |
with all [of h] show "f x < f (x+h)" |
1680 |
proof (simp add: abs_if pos_less_divide_eq diff_minus [symmetric] |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1681 |
split add: split_if_asm) |
15228 | 1682 |
assume "~ (f (x+h) - f x) / h < l" and h: "0 < h" |
1683 |
with l |
|
15003 | 1684 |
have "0 < (f (x+h) - f x) / h" by arith |
1685 |
thus "f x < f (x+h)" |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1686 |
by (simp add: pos_less_divide_eq h) |
15003 | 1687 |
qed |
1688 |
qed |
|
1689 |
qed |
|
14477 | 1690 |
|
1691 |
lemma DERIV_left_dec: |
|
1692 |
assumes der: "DERIV f x :> l" |
|
1693 |
and l: "l < 0" |
|
15360 | 1694 |
shows "\<exists>d > 0. \<forall>h > 0. h < d --> f(x) < f(x-h)" |
14477 | 1695 |
proof - |
1696 |
from l der [THEN DERIV_D, THEN LIM_D [where r = "-l"]] |
|
15360 | 1697 |
have "\<exists>s > 0. (\<forall>z. z \<noteq> 0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>(f(x+z) - f x) / z - l\<bar> < -l)" |
14477 | 1698 |
by (simp add: diff_minus) |
1699 |
then obtain s |
|
15228 | 1700 |
where s: "0 < s" |
14477 | 1701 |
and all: "!!z. z \<noteq> 0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>(f(x+z) - f x) / z - l\<bar> < -l" |
1702 |
by auto |
|
1703 |
thus ?thesis |
|
1704 |
proof (intro exI conjI strip) |
|
1705 |
show "0<s" . |
|
1706 |
fix h::real |
|
15360 | 1707 |
assume "0 < h" "h < s" |
15228 | 1708 |
with all [of "-h"] show "f x < f (x-h)" |
1709 |
proof (simp add: abs_if pos_less_divide_eq diff_minus [symmetric] |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1710 |
split add: split_if_asm) |
15228 | 1711 |
assume " - ((f (x-h) - f x) / h) < l" and h: "0 < h" |
1712 |
with l |
|
14477 | 1713 |
have "0 < (f (x-h) - f x) / h" by arith |
1714 |
thus "f x < f (x-h)" |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1715 |
by (simp add: pos_less_divide_eq h) |
14477 | 1716 |
qed |
1717 |
qed |
|
1718 |
qed |
|
1719 |
||
15228 | 1720 |
lemma DERIV_local_max: |
14477 | 1721 |
assumes der: "DERIV f x :> l" |
1722 |
and d: "0 < d" |
|
1723 |
and le: "\<forall>y. \<bar>x-y\<bar> < d --> f(y) \<le> f(x)" |
|
1724 |
shows "l = 0" |
|
1725 |
proof (cases rule: linorder_cases [of l 0]) |
|
1726 |
case equal show ?thesis . |
|
1727 |
next |
|
1728 |
case less |
|
1729 |
from DERIV_left_dec [OF der less] |
|
1730 |
obtain d' where d': "0 < d'" |
|
15360 | 1731 |
and lt: "\<forall>h > 0. h < d' \<longrightarrow> f x < f (x-h)" by blast |
14477 | 1732 |
from real_lbound_gt_zero [OF d d'] |
1733 |
obtain e where "0 < e \<and> e < d \<and> e < d'" .. |
|
15228 | 1734 |
with lt le [THEN spec [where x="x-e"]] |
14477 | 1735 |
show ?thesis by (auto simp add: abs_if) |
1736 |
next |
|
1737 |
case greater |
|
1738 |
from DERIV_left_inc [OF der greater] |
|
1739 |
obtain d' where d': "0 < d'" |
|
15360 | 1740 |
and lt: "\<forall>h > 0. h < d' \<longrightarrow> f x < f (x + h)" by blast |
14477 | 1741 |
from real_lbound_gt_zero [OF d d'] |
1742 |
obtain e where "0 < e \<and> e < d \<and> e < d'" .. |
|
1743 |
with lt le [THEN spec [where x="x+e"]] |
|
1744 |
show ?thesis by (auto simp add: abs_if) |
|
1745 |
qed |
|
1746 |
||
1747 |
||
1748 |
text{*Similar theorem for a local minimum*} |
|
1749 |
lemma DERIV_local_min: |
|
1750 |
"[| DERIV f x :> l; 0 < d; \<forall>y. \<bar>x-y\<bar> < d --> f(x) \<le> f(y) |] ==> l = 0" |
|
1751 |
by (drule DERIV_minus [THEN DERIV_local_max], auto) |
|
1752 |
||
1753 |
||
1754 |
text{*In particular, if a function is locally flat*} |
|
1755 |
lemma DERIV_local_const: |
|
1756 |
"[| DERIV f x :> l; 0 < d; \<forall>y. \<bar>x-y\<bar> < d --> f(x) = f(y) |] ==> l = 0" |
|
1757 |
by (auto dest!: DERIV_local_max) |
|
1758 |
||
1759 |
text{*Lemma about introducing open ball in open interval*} |
|
1760 |
lemma lemma_interval_lt: |
|
15228 | 1761 |
"[| a < x; x < b |] |
14477 | 1762 |
==> \<exists>d::real. 0 < d & (\<forall>y. \<bar>x-y\<bar> < d --> a < y & y < b)" |
1763 |
apply (simp add: abs_interval_iff) |
|
1764 |
apply (insert linorder_linear [of "x-a" "b-x"], safe) |
|
1765 |
apply (rule_tac x = "x-a" in exI) |
|
1766 |
apply (rule_tac [2] x = "b-x" in exI, auto) |
|
1767 |
done |
|
1768 |
||
1769 |
lemma lemma_interval: "[| a < x; x < b |] ==> |
|
1770 |
\<exists>d::real. 0 < d & (\<forall>y. \<bar>x-y\<bar> < d --> a \<le> y & y \<le> b)" |
|
1771 |
apply (drule lemma_interval_lt, auto) |
|
1772 |
apply (auto intro!: exI) |
|
1773 |
done |
|
1774 |
||
1775 |
text{*Rolle's Theorem. |
|
15228 | 1776 |
If @{term f} is defined and continuous on the closed interval |
1777 |
@{text "[a,b]"} and differentiable on the open interval @{text "(a,b)"}, |
|
14477 | 1778 |
and @{term "f(a) = f(b)"}, |
1779 |
then there exists @{text "x0 \<in> (a,b)"} such that @{term "f'(x0) = 0"}*} |
|
15228 | 1780 |
theorem Rolle: |
14477 | 1781 |
assumes lt: "a < b" |
1782 |
and eq: "f(a) = f(b)" |
|
1783 |
and con: "\<forall>x. a \<le> x & x \<le> b --> isCont f x" |
|
1784 |
and dif [rule_format]: "\<forall>x. a < x & x < b --> f differentiable x" |
|
1785 |
shows "\<exists>z. a < z & z < b & DERIV f z :> 0" |
|
1786 |
proof - |
|
1787 |
have le: "a \<le> b" using lt by simp |
|
1788 |
from isCont_eq_Ub [OF le con] |
|
15228 | 1789 |
obtain x where x_max: "\<forall>z. a \<le> z \<and> z \<le> b \<longrightarrow> f z \<le> f x" |
1790 |
and alex: "a \<le> x" and xleb: "x \<le> b" |
|
14477 | 1791 |
by blast |
1792 |
from isCont_eq_Lb [OF le con] |
|
15228 | 1793 |
obtain x' where x'_min: "\<forall>z. a \<le> z \<and> z \<le> b \<longrightarrow> f x' \<le> f z" |
1794 |
and alex': "a \<le> x'" and x'leb: "x' \<le> b" |
|
14477 | 1795 |
by blast |
1796 |
show ?thesis |
|
1797 |
proof cases |
|
1798 |
assume axb: "a < x & x < b" |
|
1799 |
--{*@{term f} attains its maximum within the interval*} |
|
1800 |
hence ax: "a<x" and xb: "x<b" by auto |
|
1801 |
from lemma_interval [OF ax xb] |
|
1802 |
obtain d where d: "0<d" and bound: "\<forall>y. \<bar>x-y\<bar> < d \<longrightarrow> a \<le> y \<and> y \<le> b" |
|
1803 |
by blast |
|
1804 |
hence bound': "\<forall>y. \<bar>x-y\<bar> < d \<longrightarrow> f y \<le> f x" using x_max |
|
1805 |
by blast |
|
1806 |
from differentiableD [OF dif [OF axb]] |
|
1807 |
obtain l where der: "DERIV f x :> l" .. |
|
15228 | 1808 |
have "l=0" by (rule DERIV_local_max [OF der d bound']) |
14477 | 1809 |
--{*the derivative at a local maximum is zero*} |
1810 |
thus ?thesis using ax xb der by auto |
|
1811 |
next |
|
1812 |
assume notaxb: "~ (a < x & x < b)" |
|
1813 |
hence xeqab: "x=a | x=b" using alex xleb by arith |
|
15228 | 1814 |
hence fb_eq_fx: "f b = f x" by (auto simp add: eq) |
14477 | 1815 |
show ?thesis |
1816 |
proof cases |
|
1817 |
assume ax'b: "a < x' & x' < b" |
|
1818 |
--{*@{term f} attains its minimum within the interval*} |
|
1819 |
hence ax': "a<x'" and x'b: "x'<b" by auto |
|
1820 |
from lemma_interval [OF ax' x'b] |
|
1821 |
obtain d where d: "0<d" and bound: "\<forall>y. \<bar>x'-y\<bar> < d \<longrightarrow> a \<le> y \<and> y \<le> b" |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1822 |
by blast |
14477 | 1823 |
hence bound': "\<forall>y. \<bar>x'-y\<bar> < d \<longrightarrow> f x' \<le> f y" using x'_min |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1824 |
by blast |
14477 | 1825 |
from differentiableD [OF dif [OF ax'b]] |
1826 |
obtain l where der: "DERIV f x' :> l" .. |
|
15228 | 1827 |
have "l=0" by (rule DERIV_local_min [OF der d bound']) |
14477 | 1828 |
--{*the derivative at a local minimum is zero*} |
1829 |
thus ?thesis using ax' x'b der by auto |
|
1830 |
next |
|
1831 |
assume notax'b: "~ (a < x' & x' < b)" |
|
1832 |
--{*@{term f} is constant througout the interval*} |
|
1833 |
hence x'eqab: "x'=a | x'=b" using alex' x'leb by arith |
|
15228 | 1834 |
hence fb_eq_fx': "f b = f x'" by (auto simp add: eq) |
14477 | 1835 |
from dense [OF lt] |
1836 |
obtain r where ar: "a < r" and rb: "r < b" by blast |
|
1837 |
from lemma_interval [OF ar rb] |
|
1838 |
obtain d where d: "0<d" and bound: "\<forall>y. \<bar>r-y\<bar> < d \<longrightarrow> a \<le> y \<and> y \<le> b" |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1839 |
by blast |
15228 | 1840 |
have eq_fb: "\<forall>z. a \<le> z --> z \<le> b --> f z = f b" |
1841 |
proof (clarify) |
|
14477 | 1842 |
fix z::real |
1843 |
assume az: "a \<le> z" and zb: "z \<le> b" |
|
1844 |
show "f z = f b" |
|
1845 |
proof (rule order_antisym) |
|
15195 | 1846 |
show "f z \<le> f b" by (simp add: fb_eq_fx x_max az zb) |
1847 |
show "f b \<le> f z" by (simp add: fb_eq_fx' x'_min az zb) |
|
14477 | 1848 |
qed |
1849 |
qed |
|
1850 |
have bound': "\<forall>y. \<bar>r-y\<bar> < d \<longrightarrow> f r = f y" |
|
1851 |
proof (intro strip) |
|
1852 |
fix y::real |
|
1853 |
assume lt: "\<bar>r-y\<bar> < d" |
|
15228 | 1854 |
hence "f y = f b" by (simp add: eq_fb bound) |
14477 | 1855 |
thus "f r = f y" by (simp add: eq_fb ar rb order_less_imp_le) |
1856 |
qed |
|
1857 |
from differentiableD [OF dif [OF conjI [OF ar rb]]] |
|
1858 |
obtain l where der: "DERIV f r :> l" .. |
|
15228 | 1859 |
have "l=0" by (rule DERIV_local_const [OF der d bound']) |
14477 | 1860 |
--{*the derivative of a constant function is zero*} |
1861 |
thus ?thesis using ar rb der by auto |
|
1862 |
qed |
|
1863 |
qed |
|
1864 |
qed |
|
1865 |
||
1866 |
||
1867 |
subsection{*Mean Value Theorem*} |
|
1868 |
||
1869 |
lemma lemma_MVT: |
|
1870 |
"f a - (f b - f a)/(b-a) * a = f b - (f b - f a)/(b-a) * (b::real)" |
|
1871 |
proof cases |
|
1872 |
assume "a=b" thus ?thesis by simp |
|
1873 |
next |
|
15228 | 1874 |
assume "a\<noteq>b" |
14477 | 1875 |
hence ba: "b-a \<noteq> 0" by arith |
1876 |
show ?thesis |
|
1877 |
by (rule real_mult_left_cancel [OF ba, THEN iffD1], |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1878 |
simp add: right_diff_distrib, |
15234
ec91a90c604e
simplification tweaks for better arithmetic reasoning
paulson
parents:
15228
diff
changeset
|
1879 |
simp add: left_diff_distrib) |
14477 | 1880 |
qed |
1881 |
||
15228 | 1882 |
theorem MVT: |
14477 | 1883 |
assumes lt: "a < b" |
1884 |
and con: "\<forall>x. a \<le> x & x \<le> b --> isCont f x" |
|
1885 |
and dif [rule_format]: "\<forall>x. a < x & x < b --> f differentiable x" |
|
1886 |
shows "\<exists>l z. a < z & z < b & DERIV f z :> l & |
|
1887 |
(f(b) - f(a) = (b-a) * l)" |
|
1888 |
proof - |
|
1889 |
let ?F = "%x. f x - ((f b - f a) / (b-a)) * x" |
|
1890 |
have contF: "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont ?F x" using con |
|
15228 | 1891 |
by (fast intro: isCont_diff isCont_const isCont_mult isCont_Id) |
14477 | 1892 |
have difF: "\<forall>x. a < x \<and> x < b \<longrightarrow> ?F differentiable x" |
1893 |
proof (clarify) |
|
1894 |
fix x::real |
|
1895 |
assume ax: "a < x" and xb: "x < b" |
|
1896 |
from differentiableD [OF dif [OF conjI [OF ax xb]]] |
|
1897 |
obtain l where der: "DERIV f x :> l" .. |
|
1898 |
show "?F differentiable x" |
|
1899 |
by (rule differentiableI [where D = "l - (f b - f a)/(b-a)"], |
|
15228 | 1900 |
blast intro: DERIV_diff DERIV_cmult_Id der) |
1901 |
qed |
|
14477 | 1902 |
from Rolle [where f = ?F, OF lt lemma_MVT contF difF] |
15228 | 1903 |
obtain z where az: "a < z" and zb: "z < b" and der: "DERIV ?F z :> 0" |
14477 | 1904 |
by blast |
1905 |
have "DERIV (%x. ((f b - f a)/(b-a)) * x) z :> (f b - f a)/(b-a)" |
|
1906 |
by (rule DERIV_cmult_Id) |
|
15228 | 1907 |
hence derF: "DERIV (\<lambda>x. ?F x + (f b - f a) / (b - a) * x) z |
14477 | 1908 |
:> 0 + (f b - f a) / (b - a)" |
1909 |
by (rule DERIV_add [OF der]) |
|
15228 | 1910 |
show ?thesis |
14477 | 1911 |
proof (intro exI conjI) |
1912 |
show "a < z" . |
|
1913 |
show "z < b" . |
|
15539 | 1914 |
show "f b - f a = (b - a) * ((f b - f a)/(b-a))" by (simp) |
14477 | 1915 |
show "DERIV f z :> ((f b - f a)/(b-a))" using derF by simp |
1916 |
qed |
|
1917 |
qed |
|
1918 |
||
1919 |
||
1920 |
text{*A function is constant if its derivative is 0 over an interval.*} |
|
1921 |
||
1922 |
lemma DERIV_isconst_end: "[| a < b; |
|
1923 |
\<forall>x. a \<le> x & x \<le> b --> isCont f x; |
|
1924 |
\<forall>x. a < x & x < b --> DERIV f x :> 0 |] |
|
15360 | 1925 |
==> f b = f a" |
14477 | 1926 |
apply (drule MVT, assumption) |
1927 |
apply (blast intro: differentiableI) |
|
1928 |
apply (auto dest!: DERIV_unique simp add: diff_eq_eq) |
|
1929 |
done |
|
1930 |
||
1931 |
lemma DERIV_isconst1: "[| a < b; |
|
1932 |
\<forall>x. a \<le> x & x \<le> b --> isCont f x; |
|
1933 |
\<forall>x. a < x & x < b --> DERIV f x :> 0 |] |
|
1934 |
==> \<forall>x. a \<le> x & x \<le> b --> f x = f a" |
|
1935 |
apply safe |
|
1936 |
apply (drule_tac x = a in order_le_imp_less_or_eq, safe) |
|
1937 |
apply (drule_tac b = x in DERIV_isconst_end, auto) |
|
1938 |
done |
|
1939 |
||
1940 |
lemma DERIV_isconst2: "[| a < b; |
|
1941 |
\<forall>x. a \<le> x & x \<le> b --> isCont f x; |
|
1942 |
\<forall>x. a < x & x < b --> DERIV f x :> 0; |
|
1943 |
a \<le> x; x \<le> b |] |
|
1944 |
==> f x = f a" |
|
1945 |
apply (blast dest: DERIV_isconst1) |
|
1946 |
done |
|
1947 |
||
1948 |
lemma DERIV_isconst_all: "\<forall>x. DERIV f x :> 0 ==> f(x) = f(y)" |
|
1949 |
apply (rule linorder_cases [of x y]) |
|
1950 |
apply (blast intro: sym DERIV_isCont DERIV_isconst_end)+ |
|
1951 |
done |
|
1952 |
||
1953 |
lemma DERIV_const_ratio_const: |
|
1954 |
"[|a \<noteq> b; \<forall>x. DERIV f x :> k |] ==> (f(b) - f(a)) = (b-a) * k" |
|
1955 |
apply (rule linorder_cases [of a b], auto) |
|
1956 |
apply (drule_tac [!] f = f in MVT) |
|
1957 |
apply (auto dest: DERIV_isCont DERIV_unique simp add: differentiable_def) |
|
1958 |
apply (auto dest: DERIV_unique simp add: left_distrib diff_minus) |
|
1959 |
done |
|
1960 |
||
1961 |
lemma DERIV_const_ratio_const2: |
|
1962 |
"[|a \<noteq> b; \<forall>x. DERIV f x :> k |] ==> (f(b) - f(a))/(b-a) = k" |
|
1963 |
apply (rule_tac c1 = "b-a" in real_mult_right_cancel [THEN iffD1]) |
|
15539 | 1964 |
apply (auto dest!: DERIV_const_ratio_const simp add: mult_assoc) |
14477 | 1965 |
done |
1966 |
||
15228 | 1967 |
lemma real_average_minus_first [simp]: "((a + b) /2 - a) = (b-a)/(2::real)" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1968 |
by (simp) |
14477 | 1969 |
|
15228 | 1970 |
lemma real_average_minus_second [simp]: "((b + a)/2 - a) = (b-a)/(2::real)" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
1971 |
by (simp) |
14477 | 1972 |
|
1973 |
text{*Gallileo's "trick": average velocity = av. of end velocities*} |
|
1974 |
||
1975 |
lemma DERIV_const_average: |
|
1976 |
assumes neq: "a \<noteq> (b::real)" |
|
1977 |
and der: "\<forall>x. DERIV v x :> k" |
|
1978 |
shows "v ((a + b)/2) = (v a + v b)/2" |
|
1979 |
proof (cases rule: linorder_cases [of a b]) |
|
1980 |
case equal with neq show ?thesis by simp |
|
1981 |
next |
|
1982 |
case less |
|
1983 |
have "(v b - v a) / (b - a) = k" |
|
1984 |
by (rule DERIV_const_ratio_const2 [OF neq der]) |
|
15228 | 1985 |
hence "(b-a) * ((v b - v a) / (b-a)) = (b-a) * k" by simp |
14477 | 1986 |
moreover have "(v ((a + b) / 2) - v a) / ((a + b) / 2 - a) = k" |
1987 |
by (rule DERIV_const_ratio_const2 [OF _ der], simp add: neq) |
|
1988 |
ultimately show ?thesis using neq by force |
|
1989 |
next |
|
1990 |
case greater |
|
1991 |
have "(v b - v a) / (b - a) = k" |
|
1992 |
by (rule DERIV_const_ratio_const2 [OF neq der]) |
|
15228 | 1993 |
hence "(b-a) * ((v b - v a) / (b-a)) = (b-a) * k" by simp |
14477 | 1994 |
moreover have " (v ((b + a) / 2) - v a) / ((b + a) / 2 - a) = k" |
1995 |
by (rule DERIV_const_ratio_const2 [OF _ der], simp add: neq) |
|
15228 | 1996 |
ultimately show ?thesis using neq by (force simp add: add_commute) |
14477 | 1997 |
qed |
1998 |
||
1999 |
||
2000 |
text{*Dull lemma: an continuous injection on an interval must have a |
|
2001 |
strict maximum at an end point, not in the middle.*} |
|
2002 |
||
2003 |
lemma lemma_isCont_inj: |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
2004 |
fixes f :: "real \<Rightarrow> real" |
14477 | 2005 |
assumes d: "0 < d" |
2006 |
and inj [rule_format]: "\<forall>z. \<bar>z-x\<bar> \<le> d --> g(f z) = z" |
|
2007 |
and cont: "\<forall>z. \<bar>z-x\<bar> \<le> d --> isCont f z" |
|
2008 |
shows "\<exists>z. \<bar>z-x\<bar> \<le> d & f x < f z" |
|
2009 |
proof (rule ccontr) |
|
2010 |
assume "~ (\<exists>z. \<bar>z-x\<bar> \<le> d & f x < f z)" |
|
15228 | 2011 |
hence all [rule_format]: "\<forall>z. \<bar>z - x\<bar> \<le> d --> f z \<le> f x" by auto |
14477 | 2012 |
show False |
2013 |
proof (cases rule: linorder_le_cases [of "f(x-d)" "f(x+d)"]) |
|
2014 |
case le |
|
2015 |
from d cont all [of "x+d"] |
|
15228 | 2016 |
have flef: "f(x+d) \<le> f x" |
2017 |
and xlex: "x - d \<le> x" |
|
2018 |
and cont': "\<forall>z. x - d \<le> z \<and> z \<le> x \<longrightarrow> isCont f z" |
|
14477 | 2019 |
by (auto simp add: abs_if) |
2020 |
from IVT [OF le flef xlex cont'] |
|
2021 |
obtain x' where "x-d \<le> x'" "x' \<le> x" "f x' = f(x+d)" by blast |
|
2022 |
moreover |
|
2023 |
hence "g(f x') = g (f(x+d))" by simp |
|
2024 |
ultimately show False using d inj [of x'] inj [of "x+d"] |
|
2025 |
by (simp add: abs_le_interval_iff) |
|
2026 |
next |
|
2027 |
case ge |
|
2028 |
from d cont all [of "x-d"] |
|
15228 | 2029 |
have flef: "f(x-d) \<le> f x" |
2030 |
and xlex: "x \<le> x+d" |
|
2031 |
and cont': "\<forall>z. x \<le> z \<and> z \<le> x+d \<longrightarrow> isCont f z" |
|
14477 | 2032 |
by (auto simp add: abs_if) |
2033 |
from IVT2 [OF ge flef xlex cont'] |
|
2034 |
obtain x' where "x \<le> x'" "x' \<le> x+d" "f x' = f(x-d)" by blast |
|
2035 |
moreover |
|
2036 |
hence "g(f x') = g (f(x-d))" by simp |
|
2037 |
ultimately show False using d inj [of x'] inj [of "x-d"] |
|
2038 |
by (simp add: abs_le_interval_iff) |
|
2039 |
qed |
|
2040 |
qed |
|
2041 |
||
2042 |
||
2043 |
text{*Similar version for lower bound.*} |
|
2044 |
||
2045 |
lemma lemma_isCont_inj2: |
|
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
2046 |
fixes f g :: "real \<Rightarrow> real" |
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
2047 |
shows "[|0 < d; \<forall>z. \<bar>z-x\<bar> \<le> d --> g(f z) = z; |
14477 | 2048 |
\<forall>z. \<bar>z-x\<bar> \<le> d --> isCont f z |] |
2049 |
==> \<exists>z. \<bar>z-x\<bar> \<le> d & f z < f x" |
|
2050 |
apply (insert lemma_isCont_inj |
|
2051 |
[where f = "%x. - f x" and g = "%y. g(-y)" and x = x and d = d]) |
|
15228 | 2052 |
apply (simp add: isCont_minus linorder_not_le) |
14477 | 2053 |
done |
2054 |
||
15228 | 2055 |
text{*Show there's an interval surrounding @{term "f(x)"} in |
14477 | 2056 |
@{text "f[[x - d, x + d]]"} .*} |
2057 |
||
15228 | 2058 |
lemma isCont_inj_range: |
20552
2c31dd358c21
generalized types of many constants to work over arbitrary vector spaces;
huffman
parents:
20432
diff
changeset
|
2059 |
fixes f :: "real \<Rightarrow> real" |
14477 | 2060 |
assumes d: "0 < d" |
2061 |
and inj: "\<forall>z. \<bar>z-x\<bar> \<le> d --> g(f z) = z" |
|
2062 |
and cont: "\<forall>z. \<bar>z-x\<bar> \<le> d --> isCont f z" |
|
15360 | 2063 |
shows "\<exists>e>0. \<forall>y. \<bar>y - f x\<bar> \<le> e --> (\<exists>z. \<bar>z-x\<bar> \<le> d & f z = y)" |
14477 | 2064 |
proof - |
2065 |
have "x-d \<le> x+d" "\<forall>z. x-d \<le> z \<and> z \<le> x+d \<longrightarrow> isCont f z" using cont d |
|
2066 |
by (auto simp add: abs_le_interval_iff) |
|
2067 |
from isCont_Lb_Ub [OF this] |
|
15228 | 2068 |
obtain L M |
14477 | 2069 |
where all1 [rule_format]: "\<forall>z. x-d \<le> z \<and> z \<le> x+d \<longrightarrow> L \<le> f z \<and> f z \<le> M" |
2070 |
and all2 [rule_format]: |
|
2071 |
"\<forall>y. L \<le> y \<and> y \<le> M \<longrightarrow> (\<exists>z. x-d \<le> z \<and> z \<le> x+d \<and> f z = y)" |
|
2072 |
by auto |
|
2073 |
with d have "L \<le> f x & f x \<le> M" by simp |
|
2074 |
moreover have "L \<noteq> f x" |
|
2075 |
proof - |
|
2076 |
from lemma_isCont_inj2 [OF d inj cont] |
|
2077 |
obtain u where "\<bar>u - x\<bar> \<le> d" "f u < f x" by auto |
|
2078 |
thus ?thesis using all1 [of u] by arith |
|
2079 |
qed |
|
2080 |
moreover have "f x \<noteq> M" |
|
2081 |
proof - |
|
2082 |
from lemma_isCont_inj [OF d inj cont] |
|
2083 |
obtain u where "\<bar>u - x\<bar> \<le> d" "f x < f u" by auto |
|
2084 |
thus ?thesis using all1 [of u] by arith |
|
2085 |
qed |
|
2086 |
ultimately have "L < f x & f x < M" by arith |
|
2087 |
hence "0 < f x - L" "0 < M - f x" by arith+ |
|
2088 |
from real_lbound_gt_zero [OF this] |
|
2089 |
obtain e where e: "0 < e" "e < f x - L" "e < M - f x" by auto |
|
2090 |
thus ?thesis |
|
2091 |
proof (intro exI conjI) |
|
2092 |
show "0<e" . |
|
2093 |
show "\<forall>y. \<bar>y - f x\<bar> \<le> e \<longrightarrow> (\<exists>z. \<bar>z - x\<bar> \<le> d \<and> f z = y)" |
|
2094 |
proof (intro strip) |
|
2095 |
fix y::real |
|
2096 |
assume "\<bar>y - f x\<bar> \<le> e" |
|
2097 |
with e have "L \<le> y \<and> y \<le> M" by arith |
|
2098 |
from all2 [OF this] |
|
2099 |
obtain z where "x - d \<le> z" "z \<le> x + d" "f z = y" by blast |
|
15228 | 2100 |
thus "\<exists>z. \<bar>z - x\<bar> \<le> d \<and> f z = y" |
14477 | 2101 |
by (force simp add: abs_le_interval_iff) |
2102 |
qed |
|
2103 |
qed |
|
2104 |
qed |
|
2105 |
||
2106 |
||
2107 |
text{*Continuity of inverse function*} |
|
2108 |
||
2109 |
lemma isCont_inverse_function: |
|
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
2110 |
fixes f g :: "real \<Rightarrow> real" |
14477 | 2111 |
assumes d: "0 < d" |
2112 |
and inj: "\<forall>z. \<bar>z-x\<bar> \<le> d --> g(f z) = z" |
|
2113 |
and cont: "\<forall>z. \<bar>z-x\<bar> \<le> d --> isCont f z" |
|
2114 |
shows "isCont g (f x)" |
|
2115 |
proof (simp add: isCont_iff LIM_eq) |
|
2116 |
show "\<forall>r. 0 < r \<longrightarrow> |
|
15360 | 2117 |
(\<exists>s>0. \<forall>z. z\<noteq>0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>g(f x + z) - g(f x)\<bar> < r)" |
14477 | 2118 |
proof (intro strip) |
2119 |
fix r::real |
|
2120 |
assume r: "0<r" |
|
2121 |
from real_lbound_gt_zero [OF r d] |
|
2122 |
obtain e where e: "0 < e" and e_lt: "e < r \<and> e < d" by blast |
|
2123 |
with inj cont |
|
15228 | 2124 |
have e_simps: "\<forall>z. \<bar>z-x\<bar> \<le> e --> g (f z) = z" |
14477 | 2125 |
"\<forall>z. \<bar>z-x\<bar> \<le> e --> isCont f z" by auto |
2126 |
from isCont_inj_range [OF e this] |
|
15228 | 2127 |
obtain e' where e': "0 < e'" |
14477 | 2128 |
and all: "\<forall>y. \<bar>y - f x\<bar> \<le> e' \<longrightarrow> (\<exists>z. \<bar>z - x\<bar> \<le> e \<and> f z = y)" |
2129 |
by blast |
|
15360 | 2130 |
show "\<exists>s>0. \<forall>z. z\<noteq>0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>g(f x + z) - g(f x)\<bar> < r" |
14477 | 2131 |
proof (intro exI conjI) |
2132 |
show "0<e'" . |
|
2133 |
show "\<forall>z. z \<noteq> 0 \<and> \<bar>z\<bar> < e' \<longrightarrow> \<bar>g (f x + z) - g (f x)\<bar> < r" |
|
2134 |
proof (intro strip) |
|
2135 |
fix z::real |
|
2136 |
assume z: "z \<noteq> 0 \<and> \<bar>z\<bar> < e'" |
|
2137 |
with e e_lt e_simps all [rule_format, of "f x + z"] |
|
2138 |
show "\<bar>g (f x + z) - g (f x)\<bar> < r" by force |
|
2139 |
qed |
|
2140 |
qed |
|
2141 |
qed |
|
15228 | 2142 |
qed |
14477 | 2143 |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2144 |
theorem GMVT: |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2145 |
assumes alb: "a < b" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2146 |
and fc: "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2147 |
and fd: "\<forall>x. a < x \<and> x < b \<longrightarrow> f differentiable x" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2148 |
and gc: "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont g x" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2149 |
and gd: "\<forall>x. a < x \<and> x < b \<longrightarrow> g differentiable x" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2150 |
shows "\<exists>g'c f'c c. DERIV g c :> g'c \<and> DERIV f c :> f'c \<and> a < c \<and> c < b \<and> ((f b - f a) * g'c) = ((g b - g a) * f'c)" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2151 |
proof - |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2152 |
let ?h = "\<lambda>x. (f b - f a)*(g x) - (g b - g a)*(f x)" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2153 |
from prems have "a < b" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2154 |
moreover have "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont ?h x" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2155 |
proof - |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2156 |
have "\<forall>x. a <= x \<and> x <= b \<longrightarrow> isCont (\<lambda>x. f b - f a) x" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2157 |
with gc have "\<forall>x. a <= x \<and> x <= b \<longrightarrow> isCont (\<lambda>x. (f b - f a) * g x) x" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2158 |
by (auto intro: isCont_mult) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2159 |
moreover |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2160 |
have "\<forall>x. a <= x \<and> x <= b \<longrightarrow> isCont (\<lambda>x. g b - g a) x" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2161 |
with fc have "\<forall>x. a <= x \<and> x <= b \<longrightarrow> isCont (\<lambda>x. (g b - g a) * f x) x" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2162 |
by (auto intro: isCont_mult) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2163 |
ultimately show ?thesis |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2164 |
by (fastsimp intro: isCont_diff) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2165 |
qed |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2166 |
moreover |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2167 |
have "\<forall>x. a < x \<and> x < b \<longrightarrow> ?h differentiable x" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2168 |
proof - |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2169 |
have "\<forall>x. a < x \<and> x < b \<longrightarrow> (\<lambda>x. f b - f a) differentiable x" by (simp add: differentiable_const) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2170 |
with gd have "\<forall>x. a < x \<and> x < b \<longrightarrow> (\<lambda>x. (f b - f a) * g x) differentiable x" by (simp add: differentiable_mult) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2171 |
moreover |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2172 |
have "\<forall>x. a < x \<and> x < b \<longrightarrow> (\<lambda>x. g b - g a) differentiable x" by (simp add: differentiable_const) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2173 |
with fd have "\<forall>x. a < x \<and> x < b \<longrightarrow> (\<lambda>x. (g b - g a) * f x) differentiable x" by (simp add: differentiable_mult) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2174 |
ultimately show ?thesis by (simp add: differentiable_diff) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2175 |
qed |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2176 |
ultimately have "\<exists>l z. a < z \<and> z < b \<and> DERIV ?h z :> l \<and> ?h b - ?h a = (b - a) * l" by (rule MVT) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2177 |
then obtain l where ldef: "\<exists>z. a < z \<and> z < b \<and> DERIV ?h z :> l \<and> ?h b - ?h a = (b - a) * l" .. |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2178 |
then obtain c where cdef: "a < c \<and> c < b \<and> DERIV ?h c :> l \<and> ?h b - ?h a = (b - a) * l" .. |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2179 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2180 |
from cdef have cint: "a < c \<and> c < b" by auto |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2181 |
with gd have "g differentiable c" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2182 |
hence "\<exists>D. DERIV g c :> D" by (rule differentiableD) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2183 |
then obtain g'c where g'cdef: "DERIV g c :> g'c" .. |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2184 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2185 |
from cdef have "a < c \<and> c < b" by auto |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2186 |
with fd have "f differentiable c" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2187 |
hence "\<exists>D. DERIV f c :> D" by (rule differentiableD) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2188 |
then obtain f'c where f'cdef: "DERIV f c :> f'c" .. |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2189 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2190 |
from cdef have "DERIV ?h c :> l" by auto |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2191 |
moreover |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2192 |
{ |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2193 |
from g'cdef have "DERIV (\<lambda>x. (f b - f a) * g x) c :> g'c * (f b - f a)" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2194 |
apply (insert DERIV_const [where k="f b - f a"]) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2195 |
apply (drule meta_spec [of _ c]) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2196 |
apply (drule DERIV_mult [where f="(\<lambda>x. f b - f a)" and g=g]) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2197 |
by simp_all |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2198 |
moreover from f'cdef have "DERIV (\<lambda>x. (g b - g a) * f x) c :> f'c * (g b - g a)" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2199 |
apply (insert DERIV_const [where k="g b - g a"]) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2200 |
apply (drule meta_spec [of _ c]) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2201 |
apply (drule DERIV_mult [where f="(\<lambda>x. g b - g a)" and g=f]) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2202 |
by simp_all |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2203 |
ultimately have "DERIV ?h c :> g'c * (f b - f a) - f'c * (g b - g a)" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2204 |
by (simp add: DERIV_diff) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2205 |
} |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2206 |
ultimately have leq: "l = g'c * (f b - f a) - f'c * (g b - g a)" by (rule DERIV_unique) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2207 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2208 |
{ |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2209 |
from cdef have "?h b - ?h a = (b - a) * l" by auto |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2210 |
also with leq have "\<dots> = (b - a) * (g'c * (f b - f a) - f'c * (g b - g a))" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2211 |
finally have "?h b - ?h a = (b - a) * (g'c * (f b - f a) - f'c * (g b - g a))" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2212 |
} |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2213 |
moreover |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2214 |
{ |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2215 |
have "?h b - ?h a = |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2216 |
((f b)*(g b) - (f a)*(g b) - (g b)*(f b) + (g a)*(f b)) - |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2217 |
((f b)*(g a) - (f a)*(g a) - (g b)*(f a) + (g a)*(f a))" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2218 |
by (simp add: mult_ac add_ac real_diff_mult_distrib) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2219 |
hence "?h b - ?h a = 0" by auto |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2220 |
} |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2221 |
ultimately have "(b - a) * (g'c * (f b - f a) - f'c * (g b - g a)) = 0" by auto |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2222 |
with alb have "g'c * (f b - f a) - f'c * (g b - g a) = 0" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2223 |
hence "g'c * (f b - f a) = f'c * (g b - g a)" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2224 |
hence "(f b - f a) * g'c = (g b - g a) * f'c" by (simp add: mult_ac) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2225 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2226 |
with g'cdef f'cdef cint show ?thesis by auto |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2227 |
qed |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2228 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2229 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2230 |
lemma LIMSEQ_SEQ_conv1: |
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
2231 |
fixes a :: real |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2232 |
assumes "X -- a --> L" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2233 |
shows "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> a \<longrightarrow> (\<lambda>n. X (S n)) ----> L" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2234 |
proof - |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2235 |
{ |
20563 | 2236 |
from prems have Xdef: "\<forall>r > 0. \<exists>s > 0. \<forall>x. x \<noteq> a & norm (x - a) < s --> norm (X x - L) < r" by (unfold LIM_def) |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2237 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2238 |
fix S |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2239 |
assume as: "(\<forall>n. S n \<noteq> a) \<and> S ----> a" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2240 |
then have "S ----> a" by auto |
20563 | 2241 |
then have Sdef: "(\<forall>r. 0 < r --> (\<exists>no. \<forall>n. no \<le> n --> norm (S n - a) < r))" by (unfold LIMSEQ_def) |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2242 |
{ |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2243 |
fix r |
20563 | 2244 |
from Xdef have Xdef2: "0 < r --> (\<exists>s > 0. \<forall>x. x \<noteq> a \<and> \<bar>x - a\<bar> < s --> norm (X x - L) < r)" by simp |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2245 |
{ |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2246 |
assume rgz: "0 < r" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2247 |
|
20563 | 2248 |
from Xdef2 rgz have "\<exists>s > 0. \<forall>x. x \<noteq> a \<and> \<bar>x - a\<bar> < s --> norm (X x - L) < r" by simp |
2249 |
then obtain s where sdef: "s > 0 \<and> (\<forall>x. x\<noteq>a \<and> \<bar>x - a\<bar> < s \<longrightarrow> norm (X x - L) < r)" by auto |
|
2250 |
then have aux: "\<forall>x. x\<noteq>a \<and> \<bar>x - a\<bar> < s \<longrightarrow> norm (X x - L) < r" by auto |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2251 |
{ |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2252 |
fix n |
20563 | 2253 |
from aux have "S n \<noteq> a \<and> \<bar>S n - a\<bar> < s \<longrightarrow> norm (X (S n) - L) < r" by simp |
2254 |
with as have imp2: "\<bar>S n - a\<bar> < s --> norm (X (S n) - L) < r" by auto |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2255 |
} |
20563 | 2256 |
hence "\<forall>n. \<bar>S n - a\<bar> < s --> norm (X (S n) - L) < r" .. |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2257 |
moreover |
20563 | 2258 |
from Sdef sdef have imp1: "\<exists>no. \<forall>n. no \<le> n --> \<bar>S n - a\<bar> < s" by auto |
2259 |
then obtain no where "\<forall>n. no \<le> n --> \<bar>S n - a\<bar> < s" by auto |
|
2260 |
ultimately have "\<forall>n. no \<le> n \<longrightarrow> norm (X (S n) - L) < r" by simp |
|
2261 |
hence "\<exists>no. \<forall>n. no \<le> n \<longrightarrow> norm (X (S n) - L) < r" by auto |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2262 |
} |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2263 |
} |
20563 | 2264 |
hence "(\<forall>r. 0 < r --> (\<exists>no. \<forall>n. no \<le> n --> norm (X (S n) - L) < r))" by simp |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2265 |
hence "(\<lambda>n. X (S n)) ----> L" by (fold LIMSEQ_def) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2266 |
} |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2267 |
thus ?thesis by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2268 |
qed |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2269 |
|
20432
07ec57376051
lin_arith_prover: splitting reverted because of performance loss
webertj
parents:
20409
diff
changeset
|
2270 |
ML {* fast_arith_split_limit := 0; *} (* FIXME *) |
20217
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents:
19765
diff
changeset
|
2271 |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2272 |
lemma LIMSEQ_SEQ_conv2: |
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
2273 |
fixes a :: real |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2274 |
assumes "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> a \<longrightarrow> (\<lambda>n. X (S n)) ----> L" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2275 |
shows "X -- a --> L" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2276 |
proof (rule ccontr) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2277 |
assume "\<not> (X -- a --> L)" |
20563 | 2278 |
hence "\<not> (\<forall>r > 0. \<exists>s > 0. \<forall>x. x \<noteq> a & norm (x - a) < s --> norm (X x - L) < r)" by (unfold LIM_def) |
2279 |
hence "\<exists>r > 0. \<forall>s > 0. \<exists>x. \<not>(x \<noteq> a \<and> \<bar>x - a\<bar> < s --> norm (X x - L) < r)" by simp |
|
2280 |
hence "\<exists>r > 0. \<forall>s > 0. \<exists>x. (x \<noteq> a \<and> \<bar>x - a\<bar> < s \<and> norm (X x - L) \<ge> r)" by (simp add: linorder_not_less) |
|
2281 |
then obtain r where rdef: "r > 0 \<and> (\<forall>s > 0. \<exists>x. (x \<noteq> a \<and> \<bar>x - a\<bar> < s \<and> norm (X x - L) \<ge> r))" by auto |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2282 |
|
20563 | 2283 |
let ?F = "\<lambda>n::nat. SOME x. x\<noteq>a \<and> \<bar>x - a\<bar> < inverse (real (Suc n)) \<and> norm (X x - L) \<ge> r" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2284 |
have "?F ----> a" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2285 |
proof - |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2286 |
{ |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2287 |
fix e::real |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2288 |
assume "0 < e" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2289 |
(* choose no such that inverse (real (Suc n)) < e *) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2290 |
have "\<exists>no. inverse (real (Suc no)) < e" by (rule reals_Archimedean) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2291 |
then obtain m where nodef: "inverse (real (Suc m)) < e" by auto |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2292 |
{ |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2293 |
fix n |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2294 |
assume mlen: "m \<le> n" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2295 |
then have |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2296 |
"inverse (real (Suc n)) \<le> inverse (real (Suc m))" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2297 |
by auto |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2298 |
moreover have |
20563 | 2299 |
"\<bar>?F n - a\<bar> < inverse (real (Suc n))" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2300 |
proof - |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2301 |
from rdef have |
20563 | 2302 |
"\<exists>x. x\<noteq>a \<and> \<bar>x - a\<bar> < inverse (real (Suc n)) \<and> norm (X x - L) \<ge> r" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2303 |
by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2304 |
hence |
20563 | 2305 |
"(?F n)\<noteq>a \<and> \<bar>(?F n) - a\<bar> < inverse (real (Suc n)) \<and> norm (X (?F n) - L) \<ge> r" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2306 |
by (simp add: some_eq_ex [symmetric]) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2307 |
thus ?thesis by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2308 |
qed |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2309 |
moreover from nodef have |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2310 |
"inverse (real (Suc m)) < e" . |
20563 | 2311 |
ultimately have "\<bar>?F n - a\<bar> < e" by arith |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2312 |
} |
20563 | 2313 |
then have "\<exists>no. \<forall>n. no \<le> n --> \<bar>?F n - a\<bar> < e" by auto |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2314 |
} |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2315 |
thus ?thesis by (unfold LIMSEQ_def, simp) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2316 |
qed |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2317 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2318 |
moreover have "\<forall>n. ?F n \<noteq> a" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2319 |
proof - |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2320 |
{ |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2321 |
fix n |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2322 |
from rdef have |
20563 | 2323 |
"\<exists>x. x\<noteq>a \<and> \<bar>x - a\<bar> < inverse (real (Suc n)) \<and> norm (X x - L) \<ge> r" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2324 |
by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2325 |
hence "?F n \<noteq> a" by (simp add: some_eq_ex [symmetric]) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2326 |
} |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2327 |
thus ?thesis .. |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2328 |
qed |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2329 |
moreover from prems have "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> a \<longrightarrow> (\<lambda>n. X (S n)) ----> L" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2330 |
ultimately have "(\<lambda>n. X (?F n)) ----> L" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2331 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2332 |
moreover have "\<not> ((\<lambda>n. X (?F n)) ----> L)" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2333 |
proof - |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2334 |
{ |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2335 |
fix no::nat |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2336 |
obtain n where "n = no + 1" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2337 |
then have nolen: "no \<le> n" by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2338 |
(* We prove this by showing that for any m there is an n\<ge>m such that |X (?F n) - L| \<ge> r *) |
20563 | 2339 |
from rdef have "\<forall>s > 0. \<exists>x. (x \<noteq> a \<and> \<bar>x - a\<bar> < s \<and> norm (X x - L) \<ge> r)" .. |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2340 |
|
20563 | 2341 |
then have "\<exists>x. x\<noteq>a \<and> \<bar>x - a\<bar> < inverse (real (Suc n)) \<and> norm (X x - L) \<ge> r" by simp |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2342 |
|
20563 | 2343 |
hence "norm (X (?F n) - L) \<ge> r" by (simp add: some_eq_ex [symmetric]) |
2344 |
with nolen have "\<exists>n. no \<le> n \<and> norm (X (?F n) - L) \<ge> r" by auto |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2345 |
} |
20563 | 2346 |
then have "(\<forall>no. \<exists>n. no \<le> n \<and> norm (X (?F n) - L) \<ge> r)" by simp |
2347 |
with rdef have "\<exists>e>0. (\<forall>no. \<exists>n. no \<le> n \<and> norm (X (?F n) - L) \<ge> e)" by auto |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2348 |
thus ?thesis by (unfold LIMSEQ_def, auto simp add: linorder_not_less) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2349 |
qed |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2350 |
ultimately show False by simp |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2351 |
qed |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2352 |
|
20432
07ec57376051
lin_arith_prover: splitting reverted because of performance loss
webertj
parents:
20409
diff
changeset
|
2353 |
ML {* fast_arith_split_limit := 9; *} (* FIXME *) |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2354 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2355 |
lemma LIMSEQ_SEQ_conv: |
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
2356 |
"(\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> (a::real) \<longrightarrow> (\<lambda>n. X (S n)) ----> L) = |
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
2357 |
(X -- a --> L)" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2358 |
proof |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2359 |
assume "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> a \<longrightarrow> (\<lambda>n. X (S n)) ----> L" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2360 |
show "X -- a --> L" by (rule LIMSEQ_SEQ_conv2) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2361 |
next |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2362 |
assume "(X -- a --> L)" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2363 |
show "\<forall>S. (\<forall>n. S n \<noteq> a) \<and> S ----> a \<longrightarrow> (\<lambda>n. X (S n)) ----> L" by (rule LIMSEQ_SEQ_conv1) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2364 |
qed |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2365 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2366 |
lemma real_sqz: |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2367 |
fixes a::real |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2368 |
assumes "a < c" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2369 |
shows "\<exists>b. a < b \<and> b < c" |
20563 | 2370 |
by (rule dense) |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2371 |
|
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2372 |
lemma LIM_offset: |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2373 |
assumes "(\<lambda>x. f x) -- a --> L" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2374 |
shows "(\<lambda>x. f (x+c)) -- (a-c) --> L" |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2375 |
proof - |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2376 |
have "f -- a --> L" . |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2377 |
hence |
20563 | 2378 |
fd: "\<forall>r > 0. \<exists>s > 0. \<forall>x. x \<noteq> a & norm (x - a) < s --> norm (f x - L) < r" |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2379 |
by (unfold LIM_def) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2380 |
{ |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2381 |
fix r::real |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2382 |
assume rgz: "0 < r" |
20563 | 2383 |
with fd have "\<exists>s > 0. \<forall>x. x\<noteq>a \<and> norm (x - a) < s --> norm (f x - L) < r" by simp |
2384 |
then obtain s where sgz: "s > 0" and ax: "\<forall>x. x\<noteq>a \<and> norm (x - a) < s \<longrightarrow> norm (f x - L) < r" by auto |
|
2385 |
from ax have ax2: "\<forall>x. (x+c)\<noteq>a \<and> norm ((x+c) - a) < s \<longrightarrow> norm (f (x+c) - L) < r" by auto |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2386 |
{ |
20561
6a6d8004322f
generalize type of (NS)LIM to work on functions with vector space domain types
huffman
parents:
20552
diff
changeset
|
2387 |
fix x |
20563 | 2388 |
from ax2 have nt: "(x+c)\<noteq>a \<and> norm ((x+c) - a) < s \<longrightarrow> norm (f (x+c) - L) < r" .. |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2389 |
moreover have "((x+c)\<noteq>a) = (x\<noteq>(a-c))" by auto |
20563 | 2390 |
moreover have "((x+c) - a) = (x - (a-c))" by simp |
2391 |
ultimately have "x\<noteq>(a-c) \<and> norm (x - (a-c)) < s \<longrightarrow> norm (f (x+c) - L) < r" by simp |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2392 |
} |
20563 | 2393 |
then have "\<forall>x. x\<noteq>(a-c) \<and> norm (x - (a-c)) < s \<longrightarrow> norm (f (x+c) - L) < r" .. |
2394 |
with sgz have "\<exists>s > 0. \<forall>x. x\<noteq>(a-c) \<and> norm (x - (a-c)) < s \<longrightarrow> norm (f (x+c) - L) < r" by auto |
|
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2395 |
} |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2396 |
then have |
20563 | 2397 |
"\<forall>r > 0. \<exists>s > 0. \<forall>x. x \<noteq> (a-c) & norm (x - (a-c)) < s --> norm (f (x+c) - L) < r" by simp |
19023
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2398 |
thus ?thesis by (fold LIM_def) |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2399 |
qed |
5652a536b7e8
* include generalised MVT in HyperReal (contributed by Benjamin Porter)
kleing
parents:
17318
diff
changeset
|
2400 |
|
10751 | 2401 |
end |