author | hoelzl |
Fri, 30 Sep 2016 16:08:38 +0200 | |
changeset 64008 | 17a20ca86d62 |
parent 63955 | 51a3d38d2281 |
child 64240 | eabf80376aab |
permissions | -rw-r--r-- |
63627 | 1 |
(* Title: HOL/Analysis/Derivative.thy |
53781 | 2 |
Author: John Harrison |
3 |
Author: Robert Himmelmann, TU Muenchen (translation from HOL Light) |
|
36350 | 4 |
*) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
5 |
|
60420 | 6 |
section \<open>Multivariate calculus in Euclidean space\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
7 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
8 |
theory Derivative |
62207 | 9 |
imports Brouwer_Fixpoint Operator_Norm Uniform_Limit Bounded_Linear_Function |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
10 |
begin |
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
11 |
|
63938 | 12 |
declare bounded_linear_inner_left [intro] |
61915
e9812a95d108
theory for type of bounded linear functions; differentiation under the integral sign
immler
parents:
61907
diff
changeset
|
13 |
|
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
14 |
declare has_derivative_bounded_linear[dest] |
44137 | 15 |
|
60420 | 16 |
subsection \<open>Derivatives\<close> |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
17 |
|
60420 | 18 |
subsubsection \<open>Combining theorems.\<close> |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
19 |
|
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
20 |
lemmas has_derivative_id = has_derivative_ident |
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
21 |
lemmas has_derivative_neg = has_derivative_minus |
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
22 |
lemmas has_derivative_sub = has_derivative_diff |
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
23 |
lemmas scaleR_right_has_derivative = has_derivative_scaleR_right |
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
24 |
lemmas scaleR_left_has_derivative = has_derivative_scaleR_left |
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
25 |
lemmas inner_right_has_derivative = has_derivative_inner_right |
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
26 |
lemmas inner_left_has_derivative = has_derivative_inner_left |
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
27 |
lemmas mult_right_has_derivative = has_derivative_mult_right |
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
28 |
lemmas mult_left_has_derivative = has_derivative_mult_left |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
29 |
|
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
30 |
lemma has_derivative_add_const: |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
31 |
"(f has_derivative f') net \<Longrightarrow> ((\<lambda>x. f x + c) has_derivative f') net" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
32 |
by (intro derivative_eq_intros) auto |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
33 |
|
53781 | 34 |
|
60420 | 35 |
subsection \<open>Derivative with composed bilinear function.\<close> |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
36 |
|
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
37 |
lemma has_derivative_bilinear_within: |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
38 |
assumes "(f has_derivative f') (at x within s)" |
53781 | 39 |
and "(g has_derivative g') (at x within s)" |
40 |
and "bounded_bilinear h" |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
41 |
shows "((\<lambda>x. h (f x) (g x)) has_derivative (\<lambda>d. h (f x) (g' d) + h (f' d) (g x))) (at x within s)" |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
42 |
using bounded_bilinear.FDERIV[OF assms(3,1,2)] . |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
43 |
|
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
44 |
lemma has_derivative_bilinear_at: |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
45 |
assumes "(f has_derivative f') (at x)" |
53781 | 46 |
and "(g has_derivative g') (at x)" |
47 |
and "bounded_bilinear h" |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
48 |
shows "((\<lambda>x. h (f x) (g x)) has_derivative (\<lambda>d. h (f x) (g' d) + h (f' d) (g x))) (at x)" |
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
49 |
using has_derivative_bilinear_within[of f f' x UNIV g g' h] assms by simp |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
50 |
|
60420 | 51 |
text \<open>These are the only cases we'll care about, probably.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
52 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
53 |
lemma has_derivative_within: "(f has_derivative f') (at x within s) \<longleftrightarrow> |
61973 | 54 |
bounded_linear f' \<and> ((\<lambda>y. (1 / norm(y - x)) *\<^sub>R (f y - (f x + f' (y - x)))) \<longlongrightarrow> 0) (at x within s)" |
53781 | 55 |
unfolding has_derivative_def Lim |
57865 | 56 |
by (auto simp add: netlimit_within field_simps) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
57 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
58 |
lemma has_derivative_at: "(f has_derivative f') (at x) \<longleftrightarrow> |
61973 | 59 |
bounded_linear f' \<and> ((\<lambda>y. (1 / (norm(y - x))) *\<^sub>R (f y - (f x + f' (y - x)))) \<longlongrightarrow> 0) (at x)" |
53781 | 60 |
using has_derivative_within [of f f' x UNIV] |
61 |
by simp |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
62 |
|
60420 | 63 |
text \<open>More explicit epsilon-delta forms.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
64 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
65 |
lemma has_derivative_within': |
53781 | 66 |
"(f has_derivative f')(at x within s) \<longleftrightarrow> |
67 |
bounded_linear f' \<and> |
|
68 |
(\<forall>e>0. \<exists>d>0. \<forall>x'\<in>s. 0 < norm (x' - x) \<and> norm (x' - x) < d \<longrightarrow> |
|
69 |
norm (f x' - f x - f'(x' - x)) / norm (x' - x) < e)" |
|
36587 | 70 |
unfolding has_derivative_within Lim_within dist_norm |
53781 | 71 |
unfolding diff_0_right |
72 |
by (simp add: diff_diff_eq) |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
73 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
74 |
lemma has_derivative_at': |
53781 | 75 |
"(f has_derivative f') (at x) \<longleftrightarrow> bounded_linear f' \<and> |
76 |
(\<forall>e>0. \<exists>d>0. \<forall>x'. 0 < norm (x' - x) \<and> norm (x' - x) < d \<longrightarrow> |
|
77 |
norm (f x' - f x - f'(x' - x)) / norm (x' - x) < e)" |
|
78 |
using has_derivative_within' [of f f' x UNIV] |
|
79 |
by simp |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
80 |
|
53781 | 81 |
lemma has_derivative_at_within: |
82 |
"(f has_derivative f') (at x) \<Longrightarrow> (f has_derivative f') (at x within s)" |
|
83 |
unfolding has_derivative_within' has_derivative_at' |
|
84 |
by blast |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
85 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
86 |
lemma has_derivative_within_open: |
53781 | 87 |
"a \<in> s \<Longrightarrow> open s \<Longrightarrow> |
88 |
(f has_derivative f') (at a within s) \<longleftrightarrow> (f has_derivative f') (at a)" |
|
37730 | 89 |
by (simp only: at_within_interior interior_open) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
90 |
|
43338 | 91 |
lemma has_derivative_right: |
53781 | 92 |
fixes f :: "real \<Rightarrow> real" |
93 |
and y :: "real" |
|
43338 | 94 |
shows "(f has_derivative (op * y)) (at x within ({x <..} \<inter> I)) \<longleftrightarrow> |
61973 | 95 |
((\<lambda>t. (f x - f t) / (x - t)) \<longlongrightarrow> y) (at x within ({x <..} \<inter> I))" |
43338 | 96 |
proof - |
61973 | 97 |
have "((\<lambda>t. (f t - (f x + y * (t - x))) / \<bar>t - x\<bar>) \<longlongrightarrow> 0) (at x within ({x<..} \<inter> I)) \<longleftrightarrow> |
98 |
((\<lambda>t. (f t - f x) / (t - x) - y) \<longlongrightarrow> 0) (at x within ({x<..} \<inter> I))" |
|
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44140
diff
changeset
|
99 |
by (intro Lim_cong_within) (auto simp add: diff_divide_distrib add_divide_distrib) |
61973 | 100 |
also have "\<dots> \<longleftrightarrow> ((\<lambda>t. (f t - f x) / (t - x)) \<longlongrightarrow> y) (at x within ({x<..} \<inter> I))" |
43338 | 101 |
by (simp add: Lim_null[symmetric]) |
61973 | 102 |
also have "\<dots> \<longleftrightarrow> ((\<lambda>t. (f x - f t) / (x - t)) \<longlongrightarrow> y) (at x within ({x<..} \<inter> I))" |
44140
2c10c35dd4be
remove several redundant and unused theorems about derivatives
huffman
parents:
44137
diff
changeset
|
103 |
by (intro Lim_cong_within) (simp_all add: field_simps) |
43338 | 104 |
finally show ?thesis |
44282
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents:
44140
diff
changeset
|
105 |
by (simp add: bounded_linear_mult_right has_derivative_within) |
43338 | 106 |
qed |
107 |
||
60420 | 108 |
subsubsection \<open>Caratheodory characterization\<close> |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
109 |
|
63079 | 110 |
lemmas DERIV_within_iff = has_field_derivative_iff |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
111 |
|
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
112 |
lemma DERIV_caratheodory_within: |
61104
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
113 |
"(f has_field_derivative l) (at x within s) \<longleftrightarrow> |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
114 |
(\<exists>g. (\<forall>z. f z - f x = g z * (z - x)) \<and> continuous (at x within s) g \<and> g x = l)" |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
115 |
(is "?lhs = ?rhs") |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
116 |
proof |
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
117 |
assume ?lhs |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
118 |
show ?rhs |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
119 |
proof (intro exI conjI) |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
120 |
let ?g = "(%z. if z = x then l else (f z - f x) / (z-x))" |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
121 |
show "\<forall>z. f z - f x = ?g z * (z-x)" by simp |
60420 | 122 |
show "continuous (at x within s) ?g" using \<open>?lhs\<close> |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
123 |
by (auto simp add: continuous_within DERIV_within_iff cong: Lim_cong_within) |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
124 |
show "?g x = l" by simp |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
125 |
qed |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
126 |
next |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
127 |
assume ?rhs |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
128 |
then obtain g where |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
129 |
"(\<forall>z. f z - f x = g z * (z-x))" and "continuous (at x within s) g" and "g x = l" by blast |
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
130 |
thus ?lhs |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
131 |
by (auto simp add: continuous_within DERIV_within_iff cong: Lim_cong_within) |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
132 |
qed |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
133 |
|
60420 | 134 |
subsubsection \<open>Limit transformation for derivatives\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
135 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
136 |
lemma has_derivative_transform_within: |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
137 |
assumes "(f has_derivative f') (at x within s)" |
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
138 |
and "0 < d" |
53781 | 139 |
and "x \<in> s" |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
140 |
and "\<And>x'. \<lbrakk>x' \<in> s; dist x' x < d\<rbrakk> \<Longrightarrow> f x' = g x'" |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
141 |
shows "(g has_derivative f') (at x within s)" |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
142 |
using assms |
63627 | 143 |
unfolding has_derivative_within |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
144 |
by (force simp add: intro: Lim_transform_within) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
145 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
146 |
lemma has_derivative_transform_within_open: |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
147 |
assumes "(f has_derivative f') (at x)" |
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
148 |
and "open s" |
53781 | 149 |
and "x \<in> s" |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
150 |
and "\<And>x. x\<in>s \<Longrightarrow> f x = g x" |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
151 |
shows "(g has_derivative f') (at x)" |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
152 |
using assms unfolding has_derivative_at |
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
153 |
by (force simp add: intro: Lim_transform_within_open) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
154 |
|
60420 | 155 |
subsection \<open>Differentiability\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
156 |
|
53781 | 157 |
definition |
158 |
differentiable_on :: "('a::real_normed_vector \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a set \<Rightarrow> bool" |
|
56182
528fae0816ea
update syntax of has_*derivative to infix 50; fixed proofs
hoelzl
parents:
56181
diff
changeset
|
159 |
(infix "differentiable'_on" 50) |
53781 | 160 |
where "f differentiable_on s \<longleftrightarrow> (\<forall>x\<in>s. f differentiable (at x within s))" |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
161 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
162 |
lemma differentiableI: "(f has_derivative f') net \<Longrightarrow> f differentiable net" |
53781 | 163 |
unfolding differentiable_def |
164 |
by auto |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
165 |
|
62533
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62408
diff
changeset
|
166 |
lemma differentiable_onD: "\<lbrakk>f differentiable_on S; x \<in> S\<rbrakk> \<Longrightarrow> f differentiable (at x within S)" |
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62408
diff
changeset
|
167 |
using differentiable_on_def by blast |
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
paulson <lp15@cam.ac.uk>
parents:
62408
diff
changeset
|
168 |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
169 |
lemma differentiable_at_withinI: "f differentiable (at x) \<Longrightarrow> f differentiable (at x within s)" |
53781 | 170 |
unfolding differentiable_def |
171 |
using has_derivative_at_within |
|
172 |
by blast |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
173 |
|
61104
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
174 |
lemma differentiable_at_imp_differentiable_on: |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
175 |
"(\<And>x. x \<in> s \<Longrightarrow> f differentiable at x) \<Longrightarrow> f differentiable_on s" |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
176 |
by (metis differentiable_at_withinI differentiable_on_def) |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
177 |
|
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
178 |
corollary differentiable_iff_scaleR: |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
179 |
fixes f :: "real \<Rightarrow> 'a::real_normed_vector" |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
180 |
shows "f differentiable F \<longleftrightarrow> (\<exists>d. (f has_derivative (\<lambda>x. x *\<^sub>R d)) F)" |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
181 |
by (auto simp: differentiable_def dest: has_derivative_linear linear_imp_scaleR) |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
182 |
|
44123 | 183 |
lemma differentiable_on_eq_differentiable_at: |
53781 | 184 |
"open s \<Longrightarrow> f differentiable_on s \<longleftrightarrow> (\<forall>x\<in>s. f differentiable at x)" |
44123 | 185 |
unfolding differentiable_on_def |
51641
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
hoelzl
parents:
51478
diff
changeset
|
186 |
by (metis at_within_interior interior_open) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
187 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
188 |
lemma differentiable_transform_within: |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
189 |
assumes "f differentiable (at x within s)" |
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
190 |
and "0 < d" |
53781 | 191 |
and "x \<in> s" |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
192 |
and "\<And>x'. \<lbrakk>x'\<in>s; dist x' x < d\<rbrakk> \<Longrightarrow> f x' = g x'" |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
193 |
shows "g differentiable (at x within s)" |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
194 |
using assms has_derivative_transform_within unfolding differentiable_def |
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
195 |
by blast |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
196 |
|
63469
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
197 |
lemma differentiable_on_ident [simp, derivative_intros]: "(\<lambda>x. x) differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
198 |
by (simp add: differentiable_at_imp_differentiable_on) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
199 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
200 |
lemma differentiable_on_id [simp, derivative_intros]: "id differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
201 |
by (simp add: id_def) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
202 |
|
63955 | 203 |
lemma differentiable_on_const [simp, derivative_intros]: "(\<lambda>z. c) differentiable_on S" |
204 |
by (simp add: differentiable_on_def) |
|
205 |
||
206 |
lemma differentiable_on_mult [simp, derivative_intros]: |
|
207 |
fixes f :: "'M::real_normed_vector \<Rightarrow> 'a::real_normed_algebra" |
|
208 |
shows "\<lbrakk>f differentiable_on S; g differentiable_on S\<rbrakk> \<Longrightarrow> (\<lambda>z. f z * g z) differentiable_on S" |
|
209 |
apply (simp add: differentiable_on_def differentiable_def) |
|
210 |
using differentiable_def differentiable_mult by blast |
|
211 |
||
63469
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
212 |
lemma differentiable_on_compose: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
213 |
"\<lbrakk>g differentiable_on S; f differentiable_on (g ` S)\<rbrakk> \<Longrightarrow> (\<lambda>x. f (g x)) differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
214 |
by (simp add: differentiable_in_compose differentiable_on_def) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
215 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
216 |
lemma bounded_linear_imp_differentiable_on: "bounded_linear f \<Longrightarrow> f differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
217 |
by (simp add: differentiable_on_def bounded_linear_imp_differentiable) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
218 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
219 |
lemma linear_imp_differentiable_on: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
220 |
fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
221 |
shows "linear f \<Longrightarrow> f differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
222 |
by (simp add: differentiable_on_def linear_imp_differentiable) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
223 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
224 |
lemma differentiable_on_minus [simp, derivative_intros]: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
225 |
"f differentiable_on S \<Longrightarrow> (\<lambda>z. -(f z)) differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
226 |
by (simp add: differentiable_on_def) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
227 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
228 |
lemma differentiable_on_add [simp, derivative_intros]: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
229 |
"\<lbrakk>f differentiable_on S; g differentiable_on S\<rbrakk> \<Longrightarrow> (\<lambda>z. f z + g z) differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
230 |
by (simp add: differentiable_on_def) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
231 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
232 |
lemma differentiable_on_diff [simp, derivative_intros]: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
233 |
"\<lbrakk>f differentiable_on S; g differentiable_on S\<rbrakk> \<Longrightarrow> (\<lambda>z. f z - g z) differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
234 |
by (simp add: differentiable_on_def) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
235 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
236 |
lemma differentiable_on_inverse [simp, derivative_intros]: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
237 |
fixes f :: "'a :: real_normed_vector \<Rightarrow> 'b :: real_normed_field" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
238 |
shows "f differentiable_on S \<Longrightarrow> (\<And>x. x \<in> S \<Longrightarrow> f x \<noteq> 0) \<Longrightarrow> (\<lambda>x. inverse (f x)) differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
239 |
by (simp add: differentiable_on_def) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
240 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
241 |
lemma differentiable_on_scaleR [derivative_intros, simp]: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
242 |
"\<lbrakk>f differentiable_on S; g differentiable_on S\<rbrakk> \<Longrightarrow> (\<lambda>x. f x *\<^sub>R g x) differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
243 |
unfolding differentiable_on_def |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
244 |
by (blast intro: differentiable_scaleR) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
245 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
246 |
lemma has_derivative_sqnorm_at [derivative_intros, simp]: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
247 |
"((\<lambda>x. (norm x)\<^sup>2) has_derivative (\<lambda>x. 2 *\<^sub>R (a \<bullet> x))) (at a)" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
248 |
using has_derivative_bilinear_at [of id id a id id "op \<bullet>"] |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
249 |
by (auto simp: inner_commute dot_square_norm bounded_bilinear_inner) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
250 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
251 |
lemma differentiable_sqnorm_at [derivative_intros, simp]: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
252 |
fixes a :: "'a :: {real_normed_vector,real_inner}" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
253 |
shows "(\<lambda>x. (norm x)\<^sup>2) differentiable (at a)" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
254 |
by (force simp add: differentiable_def intro: has_derivative_sqnorm_at) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
255 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
256 |
lemma differentiable_on_sqnorm [derivative_intros, simp]: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
257 |
fixes S :: "'a :: {real_normed_vector,real_inner} set" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
258 |
shows "(\<lambda>x. (norm x)\<^sup>2) differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
259 |
by (simp add: differentiable_at_imp_differentiable_on) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
260 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
261 |
lemma differentiable_norm_at [derivative_intros, simp]: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
262 |
fixes a :: "'a :: {real_normed_vector,real_inner}" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
263 |
shows "a \<noteq> 0 \<Longrightarrow> norm differentiable (at a)" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
264 |
using differentiableI has_derivative_norm by blast |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
265 |
|
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
266 |
lemma differentiable_on_norm [derivative_intros, simp]: |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
267 |
fixes S :: "'a :: {real_normed_vector,real_inner} set" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
268 |
shows "0 \<notin> S \<Longrightarrow> norm differentiable_on S" |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
269 |
by (metis differentiable_at_imp_differentiable_on differentiable_norm_at) |
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
270 |
|
53781 | 271 |
|
60420 | 272 |
subsection \<open>Frechet derivative and Jacobian matrix\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
273 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
274 |
definition "frechet_derivative f net = (SOME f'. (f has_derivative f') net)" |
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
275 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
276 |
lemma frechet_derivative_works: |
53781 | 277 |
"f differentiable net \<longleftrightarrow> (f has_derivative (frechet_derivative f net)) net" |
278 |
unfolding frechet_derivative_def differentiable_def |
|
279 |
unfolding some_eq_ex[of "\<lambda> f' . (f has_derivative f') net"] .. |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
280 |
|
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
281 |
lemma linear_frechet_derivative: "f differentiable net \<Longrightarrow> linear (frechet_derivative f net)" |
44123 | 282 |
unfolding frechet_derivative_works has_derivative_def |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
283 |
by (auto intro: bounded_linear.linear) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
284 |
|
53781 | 285 |
|
60420 | 286 |
subsection \<open>Differentiability implies continuity\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
287 |
|
44123 | 288 |
lemma differentiable_imp_continuous_within: |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
289 |
"f differentiable (at x within s) \<Longrightarrow> continuous (at x within s) f" |
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
290 |
by (auto simp: differentiable_def intro: has_derivative_continuous) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
291 |
|
44123 | 292 |
lemma differentiable_imp_continuous_on: |
293 |
"f differentiable_on s \<Longrightarrow> continuous_on s f" |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
294 |
unfolding differentiable_on_def continuous_on_eq_continuous_within |
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
295 |
using differentiable_imp_continuous_within by blast |
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
296 |
|
44123 | 297 |
lemma differentiable_on_subset: |
298 |
"f differentiable_on t \<Longrightarrow> s \<subseteq> t \<Longrightarrow> f differentiable_on s" |
|
53781 | 299 |
unfolding differentiable_on_def |
300 |
using differentiable_within_subset |
|
301 |
by blast |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
302 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
303 |
lemma differentiable_on_empty: "f differentiable_on {}" |
53781 | 304 |
unfolding differentiable_on_def |
305 |
by auto |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
306 |
|
60420 | 307 |
text \<open>Results about neighborhoods filter.\<close> |
56151 | 308 |
|
309 |
lemma eventually_nhds_metric_le: |
|
310 |
"eventually P (nhds a) = (\<exists>d>0. \<forall>x. dist x a \<le> d \<longrightarrow> P x)" |
|
311 |
unfolding eventually_nhds_metric by (safe, rule_tac x="d / 2" in exI, auto) |
|
312 |
||
313 |
lemma le_nhds: "F \<le> nhds a \<longleftrightarrow> (\<forall>S. open S \<and> a \<in> S \<longrightarrow> eventually (\<lambda>x. x \<in> S) F)" |
|
61810 | 314 |
unfolding le_filter_def eventually_nhds by (fast elim: eventually_mono) |
56151 | 315 |
|
316 |
lemma le_nhds_metric: "F \<le> nhds a \<longleftrightarrow> (\<forall>e>0. eventually (\<lambda>x. dist x a < e) F)" |
|
61810 | 317 |
unfolding le_filter_def eventually_nhds_metric by (fast elim: eventually_mono) |
56151 | 318 |
|
319 |
lemma le_nhds_metric_le: "F \<le> nhds a \<longleftrightarrow> (\<forall>e>0. eventually (\<lambda>x. dist x a \<le> e) F)" |
|
61810 | 320 |
unfolding le_filter_def eventually_nhds_metric_le by (fast elim: eventually_mono) |
56151 | 321 |
|
60420 | 322 |
text \<open>Several results are easier using a "multiplied-out" variant. |
323 |
(I got this idea from Dieudonne's proof of the chain rule).\<close> |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
324 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
325 |
lemma has_derivative_within_alt: |
53781 | 326 |
"(f has_derivative f') (at x within s) \<longleftrightarrow> bounded_linear f' \<and> |
327 |
(\<forall>e>0. \<exists>d>0. \<forall>y\<in>s. norm(y - x) < d \<longrightarrow> norm (f y - f x - f' (y - x)) \<le> e * norm (y - x))" |
|
56151 | 328 |
unfolding has_derivative_within filterlim_def le_nhds_metric_le eventually_filtermap |
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59558
diff
changeset
|
329 |
eventually_at dist_norm diff_diff_eq |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
330 |
by (force simp add: linear_0 bounded_linear.linear pos_divide_le_eq) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
331 |
|
56320 | 332 |
lemma has_derivative_within_alt2: |
333 |
"(f has_derivative f') (at x within s) \<longleftrightarrow> bounded_linear f' \<and> |
|
334 |
(\<forall>e>0. eventually (\<lambda>y. norm (f y - f x - f' (y - x)) \<le> e * norm (y - x)) (at x within s))" |
|
335 |
unfolding has_derivative_within filterlim_def le_nhds_metric_le eventually_filtermap |
|
59815
cce82e360c2f
explicit commutative additive inverse operation;
haftmann
parents:
59558
diff
changeset
|
336 |
eventually_at dist_norm diff_diff_eq |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
337 |
by (force simp add: linear_0 bounded_linear.linear pos_divide_le_eq) |
56320 | 338 |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
339 |
lemma has_derivative_at_alt: |
53781 | 340 |
"(f has_derivative f') (at x) \<longleftrightarrow> |
341 |
bounded_linear f' \<and> |
|
342 |
(\<forall>e>0. \<exists>d>0. \<forall>y. norm(y - x) < d \<longrightarrow> norm (f y - f x - f'(y - x)) \<le> e * norm (y - x))" |
|
343 |
using has_derivative_within_alt[where s=UNIV] |
|
344 |
by simp |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
345 |
|
53781 | 346 |
|
60420 | 347 |
subsection \<open>The chain rule\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
348 |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
349 |
lemma diff_chain_within[derivative_intros]: |
44123 | 350 |
assumes "(f has_derivative f') (at x within s)" |
53781 | 351 |
and "(g has_derivative g') (at (f x) within (f ` s))" |
352 |
shows "((g \<circ> f) has_derivative (g' \<circ> f'))(at x within s)" |
|
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
353 |
using has_derivative_in_compose[OF assms] |
53781 | 354 |
by (simp add: comp_def) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
355 |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
356 |
lemma diff_chain_at[derivative_intros]: |
53781 | 357 |
"(f has_derivative f') (at x) \<Longrightarrow> |
358 |
(g has_derivative g') (at (f x)) \<Longrightarrow> ((g \<circ> f) has_derivative (g' \<circ> f')) (at x)" |
|
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
359 |
using has_derivative_compose[of f f' x UNIV g g'] |
53781 | 360 |
by (simp add: comp_def) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
361 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
362 |
|
60420 | 363 |
subsection \<open>Composition rules stated just for differentiability\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
364 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
365 |
lemma differentiable_chain_at: |
53781 | 366 |
"f differentiable (at x) \<Longrightarrow> |
367 |
g differentiable (at (f x)) \<Longrightarrow> (g \<circ> f) differentiable (at x)" |
|
368 |
unfolding differentiable_def |
|
369 |
by (meson diff_chain_at) |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
370 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
371 |
lemma differentiable_chain_within: |
53781 | 372 |
"f differentiable (at x within s) \<Longrightarrow> |
373 |
g differentiable (at(f x) within (f ` s)) \<Longrightarrow> (g \<circ> f) differentiable (at x within s)" |
|
374 |
unfolding differentiable_def |
|
375 |
by (meson diff_chain_within) |
|
376 |
||
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
377 |
|
60420 | 378 |
subsection \<open>Uniqueness of derivative\<close> |
37730 | 379 |
|
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
380 |
|
60420 | 381 |
text \<open> |
37730 | 382 |
The general result is a bit messy because we need approachability of the |
383 |
limit point from any direction. But OK for nontrivial intervals etc. |
|
60420 | 384 |
\<close> |
51363
d4d00c804645
changed has_derivative_intros into a named theorems collection
hoelzl
parents:
50939
diff
changeset
|
385 |
|
44123 | 386 |
lemma frechet_derivative_unique_within: |
387 |
fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector" |
|
388 |
assumes "(f has_derivative f') (at x within s)" |
|
53781 | 389 |
and "(f has_derivative f'') (at x within s)" |
61945 | 390 |
and "\<forall>i\<in>Basis. \<forall>e>0. \<exists>d. 0 < \<bar>d\<bar> \<and> \<bar>d\<bar> < e \<and> (x + d *\<^sub>R i) \<in> s" |
44123 | 391 |
shows "f' = f''" |
53781 | 392 |
proof - |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
393 |
note as = assms(1,2)[unfolded has_derivative_def] |
44123 | 394 |
then interpret f': bounded_linear f' by auto |
395 |
from as interpret f'': bounded_linear f'' by auto |
|
396 |
have "x islimpt s" unfolding islimpt_approachable |
|
53781 | 397 |
proof (rule, rule) |
398 |
fix e :: real |
|
399 |
assume "e > 0" |
|
55665 | 400 |
obtain d where "0 < \<bar>d\<bar>" and "\<bar>d\<bar> < e" and "x + d *\<^sub>R (SOME i. i \<in> Basis) \<in> s" |
60420 | 401 |
using assms(3) SOME_Basis \<open>e>0\<close> by blast |
53781 | 402 |
then show "\<exists>x'\<in>s. x' \<noteq> x \<and> dist x' x < e" |
403 |
apply (rule_tac x="x + d *\<^sub>R (SOME i. i \<in> Basis)" in bexI) |
|
404 |
unfolding dist_norm |
|
405 |
apply (auto simp: SOME_Basis nonzero_Basis) |
|
406 |
done |
|
44123 | 407 |
qed |
53781 | 408 |
then have *: "netlimit (at x within s) = x" |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
409 |
apply (auto intro!: netlimit_within) |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
410 |
by (metis trivial_limit_within) |
53781 | 411 |
show ?thesis |
412 |
apply (rule linear_eq_stdbasis) |
|
44123 | 413 |
unfolding linear_conv_bounded_linear |
53781 | 414 |
apply (rule as(1,2)[THEN conjunct1])+ |
415 |
proof (rule, rule ccontr) |
|
416 |
fix i :: 'a |
|
417 |
assume i: "i \<in> Basis" |
|
63040 | 418 |
define e where "e = norm (f' i - f'' i)" |
50526
899c9c4e4a4c
Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents:
50418
diff
changeset
|
419 |
assume "f' i \<noteq> f'' i" |
53781 | 420 |
then have "e > 0" |
421 |
unfolding e_def by auto |
|
55665 | 422 |
obtain d where d: |
423 |
"0 < d" |
|
424 |
"(\<And>xa. xa\<in>s \<longrightarrow> 0 < dist xa x \<and> dist xa x < d \<longrightarrow> |
|
425 |
dist ((f xa - f x - f' (xa - x)) /\<^sub>R norm (xa - x) - |
|
426 |
(f xa - f x - f'' (xa - x)) /\<^sub>R norm (xa - x)) (0 - 0) < e)" |
|
427 |
using tendsto_diff [OF as(1,2)[THEN conjunct2]] |
|
428 |
unfolding * Lim_within |
|
60420 | 429 |
using \<open>e>0\<close> by blast |
55665 | 430 |
obtain c where c: "0 < \<bar>c\<bar>" "\<bar>c\<bar> < d \<and> x + c *\<^sub>R i \<in> s" |
431 |
using assms(3) i d(1) by blast |
|
53781 | 432 |
have *: "norm (- ((1 / \<bar>c\<bar>) *\<^sub>R f' (c *\<^sub>R i)) + (1 / \<bar>c\<bar>) *\<^sub>R f'' (c *\<^sub>R i)) = |
61945 | 433 |
norm ((1 / \<bar>c\<bar>) *\<^sub>R (- (f' (c *\<^sub>R i)) + f'' (c *\<^sub>R i)))" |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
434 |
unfolding scaleR_right_distrib by auto |
61945 | 435 |
also have "\<dots> = norm ((1 / \<bar>c\<bar>) *\<^sub>R (c *\<^sub>R (- (f' i) + f'' i)))" |
44123 | 436 |
unfolding f'.scaleR f''.scaleR |
53781 | 437 |
unfolding scaleR_right_distrib scaleR_minus_right |
438 |
by auto |
|
439 |
also have "\<dots> = e" |
|
440 |
unfolding e_def |
|
55665 | 441 |
using c(1) |
50526
899c9c4e4a4c
Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents:
50418
diff
changeset
|
442 |
using norm_minus_cancel[of "f' i - f'' i"] |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53799
diff
changeset
|
443 |
by auto |
53781 | 444 |
finally show False |
445 |
using c |
|
55665 | 446 |
using d(2)[of "x + c *\<^sub>R i"] |
44123 | 447 |
unfolding dist_norm |
448 |
unfolding f'.scaleR f''.scaleR f'.add f''.add f'.diff f''.diff |
|
449 |
scaleR_scaleR scaleR_right_diff_distrib scaleR_right_distrib |
|
53781 | 450 |
using i |
451 |
by (auto simp: inverse_eq_divide) |
|
44123 | 452 |
qed |
453 |
qed |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
454 |
|
37730 | 455 |
lemma frechet_derivative_unique_at: |
53781 | 456 |
"(f has_derivative f') (at x) \<Longrightarrow> (f has_derivative f'') (at x) \<Longrightarrow> f' = f''" |
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
457 |
by (rule has_derivative_unique) |
41829 | 458 |
|
44123 | 459 |
lemma frechet_derivative_unique_within_closed_interval: |
56188 | 460 |
fixes f::"'a::euclidean_space \<Rightarrow> 'b::real_normed_vector" |
53781 | 461 |
assumes "\<forall>i\<in>Basis. a\<bullet>i < b\<bullet>i" |
56188 | 462 |
and "x \<in> cbox a b" |
463 |
and "(f has_derivative f' ) (at x within cbox a b)" |
|
464 |
and "(f has_derivative f'') (at x within cbox a b)" |
|
44123 | 465 |
shows "f' = f''" |
466 |
apply(rule frechet_derivative_unique_within) |
|
467 |
apply(rule assms(3,4))+ |
|
53781 | 468 |
proof (rule, rule, rule) |
469 |
fix e :: real |
|
470 |
fix i :: 'a |
|
471 |
assume "e > 0" and i: "i \<in> Basis" |
|
56188 | 472 |
then show "\<exists>d. 0 < \<bar>d\<bar> \<and> \<bar>d\<bar> < e \<and> x + d *\<^sub>R i \<in> cbox a b" |
53781 | 473 |
proof (cases "x\<bullet>i = a\<bullet>i") |
474 |
case True |
|
475 |
then show ?thesis |
|
476 |
apply (rule_tac x="(min (b\<bullet>i - a\<bullet>i) e) / 2" in exI) |
|
60420 | 477 |
using assms(1)[THEN bspec[where x=i]] and \<open>e>0\<close> and assms(2) |
56188 | 478 |
unfolding mem_box |
53781 | 479 |
using i |
480 |
apply (auto simp add: field_simps inner_simps inner_Basis) |
|
481 |
done |
|
482 |
next |
|
56188 | 483 |
note * = assms(2)[unfolded mem_box, THEN bspec, OF i] |
53781 | 484 |
case False |
485 |
moreover have "a \<bullet> i < x \<bullet> i" |
|
486 |
using False * by auto |
|
44123 | 487 |
moreover { |
50526
899c9c4e4a4c
Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents:
50418
diff
changeset
|
488 |
have "a \<bullet> i * 2 + min (x \<bullet> i - a \<bullet> i) e \<le> a\<bullet>i *2 + x\<bullet>i - a\<bullet>i" |
44123 | 489 |
by auto |
53781 | 490 |
also have "\<dots> = a\<bullet>i + x\<bullet>i" |
491 |
by auto |
|
492 |
also have "\<dots> \<le> 2 * (x\<bullet>i)" |
|
493 |
using * by auto |
|
494 |
finally have "a \<bullet> i * 2 + min (x \<bullet> i - a \<bullet> i) e \<le> x \<bullet> i * 2" |
|
495 |
by auto |
|
44123 | 496 |
} |
53781 | 497 |
moreover have "min (x \<bullet> i - a \<bullet> i) e \<ge> 0" |
60420 | 498 |
using * and \<open>e>0\<close> by auto |
53781 | 499 |
then have "x \<bullet> i * 2 \<le> b \<bullet> i * 2 + min (x \<bullet> i - a \<bullet> i) e" |
500 |
using * by auto |
|
44123 | 501 |
ultimately show ?thesis |
53781 | 502 |
apply (rule_tac x="- (min (x\<bullet>i - a\<bullet>i) e) / 2" in exI) |
60420 | 503 |
using assms(1)[THEN bspec, OF i] and \<open>e>0\<close> and assms(2) |
56188 | 504 |
unfolding mem_box |
53781 | 505 |
using i |
506 |
apply (auto simp add: field_simps inner_simps inner_Basis) |
|
507 |
done |
|
44123 | 508 |
qed |
509 |
qed |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
510 |
|
44123 | 511 |
lemma frechet_derivative_unique_within_open_interval: |
56188 | 512 |
fixes f::"'a::euclidean_space \<Rightarrow> 'b::real_normed_vector" |
54775
2d3df8633dad
prefer box over greaterThanLessThan on euclidean_space
immler
parents:
54230
diff
changeset
|
513 |
assumes "x \<in> box a b" |
2d3df8633dad
prefer box over greaterThanLessThan on euclidean_space
immler
parents:
54230
diff
changeset
|
514 |
and "(f has_derivative f' ) (at x within box a b)" |
2d3df8633dad
prefer box over greaterThanLessThan on euclidean_space
immler
parents:
54230
diff
changeset
|
515 |
and "(f has_derivative f'') (at x within box a b)" |
37650 | 516 |
shows "f' = f''" |
517 |
proof - |
|
54775
2d3df8633dad
prefer box over greaterThanLessThan on euclidean_space
immler
parents:
54230
diff
changeset
|
518 |
from assms(1) have *: "at x within box a b = at x" |
56188 | 519 |
by (metis at_within_interior interior_open open_box) |
37650 | 520 |
from assms(2,3) [unfolded *] show "f' = f''" |
521 |
by (rule frechet_derivative_unique_at) |
|
522 |
qed |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
523 |
|
37730 | 524 |
lemma frechet_derivative_at: |
53781 | 525 |
"(f has_derivative f') (at x) \<Longrightarrow> f' = frechet_derivative f (at x)" |
526 |
apply (rule frechet_derivative_unique_at[of f]) |
|
527 |
apply assumption |
|
528 |
unfolding frechet_derivative_works[symmetric] |
|
529 |
using differentiable_def |
|
530 |
apply auto |
|
531 |
done |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
532 |
|
56188 | 533 |
lemma frechet_derivative_within_cbox: |
534 |
fixes f :: "'a::euclidean_space \<Rightarrow> 'b::real_normed_vector" |
|
53781 | 535 |
assumes "\<forall>i\<in>Basis. a\<bullet>i < b\<bullet>i" |
56188 | 536 |
and "x \<in> cbox a b" |
537 |
and "(f has_derivative f') (at x within cbox a b)" |
|
538 |
shows "frechet_derivative f (at x within cbox a b) = f'" |
|
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
539 |
using assms |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
540 |
by (metis Derivative.differentiableI frechet_derivative_unique_within_closed_interval frechet_derivative_works) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
541 |
|
53781 | 542 |
|
60420 | 543 |
subsection \<open>The traditional Rolle theorem in one dimension\<close> |
37489
44e42d392c6e
Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
36844
diff
changeset
|
544 |
|
60420 | 545 |
text \<open>Derivatives of local minima and maxima are zero.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
546 |
|
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
547 |
lemma has_derivative_local_min: |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
548 |
fixes f :: "'a::real_normed_vector \<Rightarrow> real" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
549 |
assumes deriv: "(f has_derivative f') (at x)" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
550 |
assumes min: "eventually (\<lambda>y. f x \<le> f y) (at x)" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
551 |
shows "f' = (\<lambda>h. 0)" |
37489
44e42d392c6e
Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
36844
diff
changeset
|
552 |
proof |
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
553 |
fix h :: 'a |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
554 |
interpret f': bounded_linear f' |
56182
528fae0816ea
update syntax of has_*derivative to infix 50; fixed proofs
hoelzl
parents:
56181
diff
changeset
|
555 |
using deriv by (rule has_derivative_bounded_linear) |
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
556 |
show "f' h = 0" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
557 |
proof (cases "h = 0") |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
558 |
assume "h \<noteq> 0" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
559 |
from min obtain d where d1: "0 < d" and d2: "\<forall>y\<in>ball x d. f x \<le> f y" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
560 |
unfolding eventually_at by (force simp: dist_commute) |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
561 |
have "FDERIV (\<lambda>r. x + r *\<^sub>R h) 0 :> (\<lambda>r. r *\<^sub>R h)" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
562 |
by (intro derivative_eq_intros) auto |
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
563 |
then have "FDERIV (\<lambda>r. f (x + r *\<^sub>R h)) 0 :> (\<lambda>k. f' (k *\<^sub>R h))" |
56182
528fae0816ea
update syntax of has_*derivative to infix 50; fixed proofs
hoelzl
parents:
56181
diff
changeset
|
564 |
by (rule has_derivative_compose, simp add: deriv) |
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
565 |
then have "DERIV (\<lambda>r. f (x + r *\<^sub>R h)) 0 :> f' h" |
56182
528fae0816ea
update syntax of has_*derivative to infix 50; fixed proofs
hoelzl
parents:
56181
diff
changeset
|
566 |
unfolding has_field_derivative_def by (simp add: f'.scaleR mult_commute_abs) |
60420 | 567 |
moreover have "0 < d / norm h" using d1 and \<open>h \<noteq> 0\<close> by simp |
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
568 |
moreover have "\<forall>y. \<bar>0 - y\<bar> < d / norm h \<longrightarrow> f (x + 0 *\<^sub>R h) \<le> f (x + y *\<^sub>R h)" |
60420 | 569 |
using \<open>h \<noteq> 0\<close> by (auto simp add: d2 dist_norm pos_less_divide_eq) |
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
570 |
ultimately show "f' h = 0" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
571 |
by (rule DERIV_local_min) |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
572 |
qed (simp add: f'.zero) |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
573 |
qed |
37489
44e42d392c6e
Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
36844
diff
changeset
|
574 |
|
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
575 |
lemma has_derivative_local_max: |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
576 |
fixes f :: "'a::real_normed_vector \<Rightarrow> real" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
577 |
assumes "(f has_derivative f') (at x)" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
578 |
assumes "eventually (\<lambda>y. f y \<le> f x) (at x)" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
579 |
shows "f' = (\<lambda>h. 0)" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
580 |
using has_derivative_local_min [of "\<lambda>x. - f x" "\<lambda>h. - f' h" "x"] |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
581 |
using assms unfolding fun_eq_iff by simp |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
582 |
|
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
583 |
lemma differential_zero_maxmin: |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
584 |
fixes f::"'a::real_normed_vector \<Rightarrow> real" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
585 |
assumes "x \<in> s" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
586 |
and "open s" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
587 |
and deriv: "(f has_derivative f') (at x)" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
588 |
and mono: "(\<forall>y\<in>s. f y \<le> f x) \<or> (\<forall>y\<in>s. f x \<le> f y)" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
589 |
shows "f' = (\<lambda>v. 0)" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
590 |
using mono |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
591 |
proof |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
592 |
assume "\<forall>y\<in>s. f y \<le> f x" |
60420 | 593 |
with \<open>x \<in> s\<close> and \<open>open s\<close> have "eventually (\<lambda>y. f y \<le> f x) (at x)" |
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
594 |
unfolding eventually_at_topological by auto |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
595 |
with deriv show ?thesis |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
596 |
by (rule has_derivative_local_max) |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
597 |
next |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
598 |
assume "\<forall>y\<in>s. f x \<le> f y" |
60420 | 599 |
with \<open>x \<in> s\<close> and \<open>open s\<close> have "eventually (\<lambda>y. f x \<le> f y) (at x)" |
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
600 |
unfolding eventually_at_topological by auto |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
601 |
with deriv show ?thesis |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
602 |
by (rule has_derivative_local_min) |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
603 |
qed |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
604 |
|
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
605 |
lemma differential_zero_maxmin_component: (* TODO: delete? *) |
37489
44e42d392c6e
Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
36844
diff
changeset
|
606 |
fixes f :: "'a::euclidean_space \<Rightarrow> 'b::euclidean_space" |
50526
899c9c4e4a4c
Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents:
50418
diff
changeset
|
607 |
assumes k: "k \<in> Basis" |
53781 | 608 |
and ball: "0 < e" "(\<forall>y \<in> ball x e. (f y)\<bullet>k \<le> (f x)\<bullet>k) \<or> (\<forall>y\<in>ball x e. (f x)\<bullet>k \<le> (f y)\<bullet>k)" |
37489
44e42d392c6e
Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
36844
diff
changeset
|
609 |
and diff: "f differentiable (at x)" |
50526
899c9c4e4a4c
Remove the indexed basis from the definition of euclidean spaces and only use the set of Basis vectors
hoelzl
parents:
50418
diff
changeset
|
610 |
shows "(\<Sum>j\<in>Basis. (frechet_derivative f (at x) j \<bullet> k) *\<^sub>R j) = (0::'a)" (is "?D k = 0") |
37489
44e42d392c6e
Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
36844
diff
changeset
|
611 |
proof - |
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
612 |
let ?f' = "frechet_derivative f (at x)" |
60420 | 613 |
have "x \<in> ball x e" using \<open>0 < e\<close> by simp |
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
614 |
moreover have "open (ball x e)" by simp |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
615 |
moreover have "((\<lambda>x. f x \<bullet> k) has_derivative (\<lambda>h. ?f' h \<bullet> k)) (at x)" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
616 |
using bounded_linear_inner_left diff[unfolded frechet_derivative_works] |
56182
528fae0816ea
update syntax of has_*derivative to infix 50; fixed proofs
hoelzl
parents:
56181
diff
changeset
|
617 |
by (rule bounded_linear.has_derivative) |
56133
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
618 |
ultimately have "(\<lambda>h. frechet_derivative f (at x) h \<bullet> k) = (\<lambda>v. 0)" |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
619 |
using ball(2) by (rule differential_zero_maxmin) |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
620 |
then show ?thesis |
304e37faf1ac
generalization of differential_zero_maxmin to class real_normed_vector
huffman
parents:
56117
diff
changeset
|
621 |
unfolding fun_eq_iff by simp |
37489
44e42d392c6e
Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
36844
diff
changeset
|
622 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
623 |
|
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
624 |
lemma rolle: |
53781 | 625 |
fixes f :: "real \<Rightarrow> real" |
626 |
assumes "a < b" |
|
627 |
and "f a = f b" |
|
56188 | 628 |
and "continuous_on {a .. b} f" |
629 |
and "\<forall>x\<in>{a <..< b}. (f has_derivative f' x) (at x)" |
|
630 |
shows "\<exists>x\<in>{a <..< b}. f' x = (\<lambda>v. 0)" |
|
53781 | 631 |
proof - |
54775
2d3df8633dad
prefer box over greaterThanLessThan on euclidean_space
immler
parents:
54230
diff
changeset
|
632 |
have "\<exists>x\<in>box a b. (\<forall>y\<in>box a b. f x \<le> f y) \<or> (\<forall>y\<in>box a b. f y \<le> f x)" |
53781 | 633 |
proof - |
634 |
have "(a + b) / 2 \<in> {a .. b}" |
|
635 |
using assms(1) by auto |
|
56188 | 636 |
then have *: "{a .. b} \<noteq> {}" |
53781 | 637 |
by auto |
55665 | 638 |
obtain d where d: |
56188 | 639 |
"d \<in>cbox a b" |
640 |
"\<forall>y\<in>cbox a b. f y \<le> f d" |
|
641 |
using continuous_attains_sup[OF compact_Icc * assms(3)] by auto |
|
55665 | 642 |
obtain c where c: |
56188 | 643 |
"c \<in> cbox a b" |
644 |
"\<forall>y\<in>cbox a b. f c \<le> f y" |
|
645 |
using continuous_attains_inf[OF compact_Icc * assms(3)] by auto |
|
44123 | 646 |
show ?thesis |
54775
2d3df8633dad
prefer box over greaterThanLessThan on euclidean_space
immler
parents:
54230
diff
changeset
|
647 |
proof (cases "d \<in> box a b \<or> c \<in> box a b") |
53781 | 648 |
case True |
649 |
then show ?thesis |
|
56188 | 650 |
by (metis c(2) d(2) box_subset_cbox subset_iff) |
44123 | 651 |
next |
63040 | 652 |
define e where "e = (a + b) /2" |
53781 | 653 |
case False |
654 |
then have "f d = f c" |
|
56188 | 655 |
using d c assms(2) by auto |
53781 | 656 |
then have "\<And>x. x \<in> {a..b} \<Longrightarrow> f x = f d" |
657 |
using c d |
|
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
658 |
by force |
53781 | 659 |
then show ?thesis |
660 |
apply (rule_tac x=e in bexI) |
|
661 |
unfolding e_def |
|
662 |
using assms(1) |
|
56188 | 663 |
apply auto |
53781 | 664 |
done |
44123 | 665 |
qed |
666 |
qed |
|
56188 | 667 |
then obtain x where x: "x \<in> {a <..< b}" "(\<forall>y\<in>{a <..< b}. f x \<le> f y) \<or> (\<forall>y\<in>{a <..< b}. f y \<le> f x)" |
668 |
by auto |
|
53781 | 669 |
then have "f' x = (\<lambda>v. 0)" |
54775
2d3df8633dad
prefer box over greaterThanLessThan on euclidean_space
immler
parents:
54230
diff
changeset
|
670 |
apply (rule_tac differential_zero_maxmin[of x "box a b" f "f' x"]) |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
671 |
using assms |
53781 | 672 |
apply auto |
673 |
done |
|
674 |
then show ?thesis |
|
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
675 |
by (metis x(1)) |
44123 | 676 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
677 |
|
53781 | 678 |
|
60420 | 679 |
subsection \<open>One-dimensional mean value theorem\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
680 |
|
53781 | 681 |
lemma mvt: |
682 |
fixes f :: "real \<Rightarrow> real" |
|
683 |
assumes "a < b" |
|
684 |
and "continuous_on {a..b} f" |
|
44123 | 685 |
assumes "\<forall>x\<in>{a<..<b}. (f has_derivative (f' x)) (at x)" |
53781 | 686 |
shows "\<exists>x\<in>{a<..<b}. f b - f a = (f' x) (b - a)" |
687 |
proof - |
|
56188 | 688 |
have "\<exists>x\<in>{a <..< b}. (\<lambda>xa. f' x xa - (f b - f a) / (b - a) * xa) = (\<lambda>v. 0)" |
51478
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
hoelzl
parents:
51363
diff
changeset
|
689 |
proof (intro rolle[OF assms(1), of "\<lambda>x. f x - (f b - f a) / (b - a) * x"] ballI) |
53781 | 690 |
fix x |
56188 | 691 |
assume x: "x \<in> {a <..< b}" |
53781 | 692 |
show "((\<lambda>x. f x - (f b - f a) / (b - a) * x) has_derivative |
693 |
(\<lambda>xa. f' x xa - (f b - f a) / (b - a) * xa)) (at x)" |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
694 |
by (intro derivative_intros assms(3)[rule_format,OF x]) |
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56370
diff
changeset
|
695 |
qed (insert assms(1,2), auto intro!: continuous_intros simp: field_simps) |
55665 | 696 |
then obtain x where |
56188 | 697 |
"x \<in> {a <..< b}" |
55665 | 698 |
"(\<lambda>xa. f' x xa - (f b - f a) / (b - a) * xa) = (\<lambda>v. 0)" .. |
53781 | 699 |
then show ?thesis |
61762
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents:
61649
diff
changeset
|
700 |
by (metis (hide_lams) assms(1) diff_gt_0_iff_gt eq_iff_diff_eq_0 |
59558
5d9f0ace9af0
got rid of linordered_field_class.sign_simps(41) !
paulson <lp15@cam.ac.uk>
parents:
58877
diff
changeset
|
701 |
zero_less_mult_iff nonzero_mult_divide_cancel_right not_real_square_gt_zero |
56188 | 702 |
times_divide_eq_left) |
44123 | 703 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
704 |
|
44123 | 705 |
lemma mvt_simple: |
53781 | 706 |
fixes f :: "real \<Rightarrow> real" |
707 |
assumes "a < b" |
|
708 |
and "\<forall>x\<in>{a..b}. (f has_derivative f' x) (at x within {a..b})" |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
709 |
shows "\<exists>x\<in>{a<..<b}. f b - f a = f' x (b - a)" |
56264 | 710 |
proof (rule mvt) |
711 |
have "f differentiable_on {a..b}" |
|
712 |
using assms(2) unfolding differentiable_on_def differentiable_def by fast |
|
713 |
then show "continuous_on {a..b} f" |
|
714 |
by (rule differentiable_imp_continuous_on) |
|
715 |
show "\<forall>x\<in>{a<..<b}. (f has_derivative f' x) (at x)" |
|
716 |
proof |
|
717 |
fix x |
|
718 |
assume x: "x \<in> {a <..< b}" |
|
719 |
show "(f has_derivative f' x) (at x)" |
|
720 |
unfolding at_within_open[OF x open_greaterThanLessThan,symmetric] |
|
721 |
apply (rule has_derivative_within_subset) |
|
722 |
apply (rule assms(2)[rule_format]) |
|
723 |
using x |
|
724 |
apply auto |
|
725 |
done |
|
726 |
qed |
|
727 |
qed (rule assms(1)) |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
728 |
|
44123 | 729 |
lemma mvt_very_simple: |
53781 | 730 |
fixes f :: "real \<Rightarrow> real" |
731 |
assumes "a \<le> b" |
|
56188 | 732 |
and "\<forall>x\<in>{a .. b}. (f has_derivative f' x) (at x within {a .. b})" |
733 |
shows "\<exists>x\<in>{a .. b}. f b - f a = f' x (b - a)" |
|
44123 | 734 |
proof (cases "a = b") |
53781 | 735 |
interpret bounded_linear "f' b" |
736 |
using assms(2) assms(1) by auto |
|
737 |
case True |
|
738 |
then show ?thesis |
|
739 |
apply (rule_tac x=a in bexI) |
|
740 |
using assms(2)[THEN bspec[where x=a]] |
|
741 |
unfolding has_derivative_def |
|
742 |
unfolding True |
|
743 |
using zero |
|
744 |
apply auto |
|
745 |
done |
|
746 |
next |
|
747 |
case False |
|
748 |
then show ?thesis |
|
749 |
using mvt_simple[OF _ assms(2)] |
|
750 |
using assms(1) |
|
751 |
by auto |
|
44123 | 752 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
753 |
|
60420 | 754 |
text \<open>A nice generalization (see Havin's proof of 5.19 from Rudin's book).\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
755 |
|
44123 | 756 |
lemma mvt_general: |
56223
7696903b9e61
generalize theory of operator norms to work with class real_normed_vector
huffman
parents:
56217
diff
changeset
|
757 |
fixes f :: "real \<Rightarrow> 'a::real_inner" |
53781 | 758 |
assumes "a < b" |
56188 | 759 |
and "continuous_on {a .. b} f" |
53781 | 760 |
and "\<forall>x\<in>{a<..<b}. (f has_derivative f'(x)) (at x)" |
761 |
shows "\<exists>x\<in>{a<..<b}. norm (f b - f a) \<le> norm (f' x (b - a))" |
|
762 |
proof - |
|
56264 | 763 |
have "\<exists>x\<in>{a<..<b}. (f b - f a) \<bullet> f b - (f b - f a) \<bullet> f a = (f b - f a) \<bullet> f' x (b - a)" |
53781 | 764 |
apply (rule mvt) |
765 |
apply (rule assms(1)) |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56370
diff
changeset
|
766 |
apply (intro continuous_intros assms(2)) |
53781 | 767 |
using assms(3) |
56264 | 768 |
apply (fast intro: has_derivative_inner_right) |
53781 | 769 |
done |
55665 | 770 |
then obtain x where x: |
771 |
"x \<in> {a<..<b}" |
|
56264 | 772 |
"(f b - f a) \<bullet> f b - (f b - f a) \<bullet> f a = (f b - f a) \<bullet> f' x (b - a)" .. |
53781 | 773 |
show ?thesis |
774 |
proof (cases "f a = f b") |
|
36844 | 775 |
case False |
53077 | 776 |
have "norm (f b - f a) * norm (f b - f a) = (norm (f b - f a))\<^sup>2" |
44123 | 777 |
by (simp add: power2_eq_square) |
53781 | 778 |
also have "\<dots> = (f b - f a) \<bullet> (f b - f a)" |
779 |
unfolding power2_norm_eq_inner .. |
|
44123 | 780 |
also have "\<dots> = (f b - f a) \<bullet> f' x (b - a)" |
56264 | 781 |
using x(2) by (simp only: inner_diff_right) |
44123 | 782 |
also have "\<dots> \<le> norm (f b - f a) * norm (f' x (b - a))" |
783 |
by (rule norm_cauchy_schwarz) |
|
53781 | 784 |
finally show ?thesis |
785 |
using False x(1) |
|
56217
dc429a5b13c4
Some rationalisation of basic lemmas
paulson <lp15@cam.ac.uk>
parents:
56196
diff
changeset
|
786 |
by (auto simp add: mult_left_cancel) |
44123 | 787 |
next |
53781 | 788 |
case True |
789 |
then show ?thesis |
|
790 |
using assms(1) |
|
791 |
apply (rule_tac x="(a + b) /2" in bexI) |
|
792 |
apply auto |
|
793 |
done |
|
44123 | 794 |
qed |
795 |
qed |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
796 |
|
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
797 |
|
60420 | 798 |
subsection \<open>More general bound theorems\<close> |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
799 |
|
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
800 |
lemma differentiable_bound_general: |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
801 |
fixes f :: "real \<Rightarrow> 'a::real_normed_vector" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
802 |
assumes "a < b" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
803 |
and f_cont: "continuous_on {a .. b} f" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
804 |
and phi_cont: "continuous_on {a .. b} \<phi>" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
805 |
and f': "\<And>x. a < x \<Longrightarrow> x < b \<Longrightarrow> (f has_vector_derivative f' x) (at x)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
806 |
and phi': "\<And>x. a < x \<Longrightarrow> x < b \<Longrightarrow> (\<phi> has_vector_derivative \<phi>' x) (at x)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
807 |
and bnd: "\<And>x. a < x \<Longrightarrow> x < b \<Longrightarrow> norm (f' x) \<le> \<phi>' x" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
808 |
shows "norm (f b - f a) \<le> \<phi> b - \<phi> a" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
809 |
proof - |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
810 |
{ |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
811 |
fix x assume x: "a < x" "x < b" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
812 |
have "0 \<le> norm (f' x)" by simp |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
813 |
also have "\<dots> \<le> \<phi>' x" using x by (auto intro!: bnd) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
814 |
finally have "0 \<le> \<phi>' x" . |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
815 |
} note phi'_nonneg = this |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
816 |
note f_tendsto = assms(2)[simplified continuous_on_def, rule_format] |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
817 |
note phi_tendsto = assms(3)[simplified continuous_on_def, rule_format] |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
818 |
{ |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
819 |
fix e::real assume "e > 0" |
63040 | 820 |
define e2 where "e2 = e / 2" |
821 |
with \<open>e > 0\<close> have "e2 > 0" by simp |
|
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
822 |
let ?le = "\<lambda>x1. norm (f x1 - f a) \<le> \<phi> x1 - \<phi> a + e * (x1 - a) + e" |
63040 | 823 |
define A where "A = {x2. a \<le> x2 \<and> x2 \<le> b \<and> (\<forall>x1\<in>{a ..< x2}. ?le x1)}" |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
824 |
have A_subset: "A \<subseteq> {a .. b}" by (auto simp: A_def) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
825 |
{ |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
826 |
fix x2 |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
827 |
assume a: "a \<le> x2" "x2 \<le> b" and le: "\<forall>x1\<in>{a..<x2}. ?le x1" |
60420 | 828 |
have "?le x2" using \<open>e > 0\<close> |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
829 |
proof cases |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
830 |
assume "x2 \<noteq> a" with a have "a < x2" by simp |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
831 |
have "at x2 within {a <..<x2}\<noteq> bot" |
60420 | 832 |
using \<open>a < x2\<close> |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
833 |
by (auto simp: trivial_limit_within islimpt_in_closure) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
834 |
moreover |
61973 | 835 |
have "((\<lambda>x1. (\<phi> x1 - \<phi> a) + e * (x1 - a) + e) \<longlongrightarrow> (\<phi> x2 - \<phi> a) + e * (x2 - a) + e) (at x2 within {a <..<x2})" |
836 |
"((\<lambda>x1. norm (f x1 - f a)) \<longlongrightarrow> norm (f x2 - f a)) (at x2 within {a <..<x2})" |
|
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
837 |
using a |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
838 |
by (auto intro!: tendsto_eq_intros f_tendsto phi_tendsto |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
839 |
intro: tendsto_within_subset[where S="{a .. b}"]) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
840 |
moreover |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
841 |
have "eventually (\<lambda>x. x > a) (at x2 within {a <..<x2})" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
842 |
by (auto simp: eventually_at_filter) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
843 |
hence "eventually ?le (at x2 within {a <..<x2})" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
844 |
unfolding eventually_at_filter |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
845 |
by eventually_elim (insert le, auto) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
846 |
ultimately |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
847 |
show ?thesis |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
848 |
by (rule tendsto_le) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
849 |
qed simp |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
850 |
} note le_cont = this |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
851 |
have "a \<in> A" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
852 |
using assms by (auto simp: A_def) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
853 |
hence [simp]: "A \<noteq> {}" by auto |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
854 |
have A_ivl: "\<And>x1 x2. x2 \<in> A \<Longrightarrow> x1 \<in> {a ..x2} \<Longrightarrow> x1 \<in> A" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
855 |
by (simp add: A_def) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
856 |
have [simp]: "bdd_above A" by (auto simp: A_def) |
63040 | 857 |
define y where "y = Sup A" |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
858 |
have "y \<le> b" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
859 |
unfolding y_def |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
860 |
by (simp add: cSup_le_iff) (simp add: A_def) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
861 |
have leI: "\<And>x x1. a \<le> x1 \<Longrightarrow> x \<in> A \<Longrightarrow> x1 < x \<Longrightarrow> ?le x1" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
862 |
by (auto simp: A_def intro!: le_cont) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
863 |
have y_all_le: "\<forall>x1\<in>{a..<y}. ?le x1" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
864 |
by (auto simp: y_def less_cSup_iff leI) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
865 |
have "a \<le> y" |
60420 | 866 |
by (metis \<open>a \<in> A\<close> \<open>bdd_above A\<close> cSup_upper y_def) |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
867 |
have "y \<in> A" |
60420 | 868 |
using y_all_le \<open>a \<le> y\<close> \<open>y \<le> b\<close> |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
869 |
by (auto simp: A_def) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
870 |
hence "A = {a .. y}" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
871 |
using A_subset |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
872 |
by (auto simp: subset_iff y_def cSup_upper intro: A_ivl) |
60420 | 873 |
from le_cont[OF \<open>a \<le> y\<close> \<open>y \<le> b\<close> y_all_le] have le_y: "?le y" . |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
874 |
{ |
60420 | 875 |
assume "a \<noteq> y" with \<open>a \<le> y\<close> have "a < y" by simp |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
876 |
have "y = b" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
877 |
proof (rule ccontr) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
878 |
assume "y \<noteq> b" |
60420 | 879 |
hence "y < b" using \<open>y \<le> b\<close> by simp |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
880 |
let ?F = "at y within {y..<b}" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
881 |
from f' phi' |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
882 |
have "(f has_vector_derivative f' y) ?F" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
883 |
and "(\<phi> has_vector_derivative \<phi>' y) ?F" |
60420 | 884 |
using \<open>a < y\<close> \<open>y < b\<close> |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
885 |
by (auto simp add: at_within_open[of _ "{a<..<b}"] has_vector_derivative_def |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
886 |
intro!: has_derivative_subset[where s="{a<..<b}" and t="{y..<b}"]) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
887 |
hence "\<forall>\<^sub>F x1 in ?F. norm (f x1 - f y - (x1 - y) *\<^sub>R f' y) \<le> e2 * \<bar>x1 - y\<bar>" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
888 |
"\<forall>\<^sub>F x1 in ?F. norm (\<phi> x1 - \<phi> y - (x1 - y) *\<^sub>R \<phi>' y) \<le> e2 * \<bar>x1 - y\<bar>" |
60420 | 889 |
using \<open>e2 > 0\<close> |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
890 |
by (auto simp: has_derivative_within_alt2 has_vector_derivative_def) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
891 |
moreover |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
892 |
have "\<forall>\<^sub>F x1 in ?F. y \<le> x1" "\<forall>\<^sub>F x1 in ?F. x1 < b" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
893 |
by (auto simp: eventually_at_filter) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
894 |
ultimately |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
895 |
have "\<forall>\<^sub>F x1 in ?F. norm (f x1 - f y) \<le> (\<phi> x1 - \<phi> y) + e * \<bar>x1 - y\<bar>" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
896 |
(is "\<forall>\<^sub>F x1 in ?F. ?le' x1") |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
897 |
proof eventually_elim |
60589 | 898 |
case (elim x1) |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
899 |
from norm_triangle_ineq2[THEN order_trans, OF elim(1)] |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
900 |
have "norm (f x1 - f y) \<le> norm (f' y) * \<bar>x1 - y\<bar> + e2 * \<bar>x1 - y\<bar>" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
901 |
by (simp add: ac_simps) |
60420 | 902 |
also have "norm (f' y) \<le> \<phi>' y" using bnd \<open>a < y\<close> \<open>y < b\<close> by simp |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
903 |
also |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
904 |
from elim have "\<phi>' y * \<bar>x1 - y\<bar> \<le> \<phi> x1 - \<phi> y + e2 * \<bar>x1 - y\<bar>" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
905 |
by (simp add: ac_simps) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
906 |
finally |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
907 |
have "norm (f x1 - f y) \<le> \<phi> x1 - \<phi> y + e2 * \<bar>x1 - y\<bar> + e2 * \<bar>x1 - y\<bar>" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
908 |
by (auto simp: mult_right_mono) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
909 |
thus ?case by (simp add: e2_def) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
910 |
qed |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
911 |
moreover have "?le' y" by simp |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
912 |
ultimately obtain S |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
913 |
where S: "open S" "y \<in> S" "\<And>x. x\<in>S \<Longrightarrow> x \<in> {y..<b} \<Longrightarrow> ?le' x" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
914 |
unfolding eventually_at_topological |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
915 |
by metis |
60420 | 916 |
from \<open>open S\<close> obtain d where d: "\<And>x. dist x y < d \<Longrightarrow> x \<in> S" "d > 0" |
62101 | 917 |
by (force simp: dist_commute open_dist ball_def dest!: bspec[OF _ \<open>y \<in> S\<close>]) |
63040 | 918 |
define d' where "d' = min ((y + b)/2) (y + (d/2))" |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
919 |
have "d' \<in> A" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
920 |
unfolding A_def |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
921 |
proof safe |
60420 | 922 |
show "a \<le> d'" using \<open>a < y\<close> \<open>0 < d\<close> \<open>y < b\<close> by (simp add: d'_def) |
923 |
show "d' \<le> b" using \<open>y < b\<close> by (simp add: d'_def min_def) |
|
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
924 |
fix x1 |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
925 |
assume x1: "x1 \<in> {a..<d'}" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
926 |
{ |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
927 |
assume "x1 < y" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
928 |
hence "?le x1" |
60420 | 929 |
using \<open>x1 \<in> {a..<d'}\<close> y_all_le by auto |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
930 |
} moreover { |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
931 |
assume "x1 \<ge> y" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
932 |
hence x1': "x1 \<in> S" "x1 \<in> {y..<b}" using x1 |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
933 |
by (auto simp: d'_def dist_real_def intro!: d) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
934 |
have "norm (f x1 - f a) \<le> norm (f x1 - f y) + norm (f y - f a)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
935 |
by (rule order_trans[OF _ norm_triangle_ineq]) simp |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
936 |
also note S(3)[OF x1'] |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
937 |
also note le_y |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
938 |
finally have "?le x1" |
60420 | 939 |
using \<open>x1 \<ge> y\<close> by (auto simp: algebra_simps) |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
940 |
} ultimately show "?le x1" by arith |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
941 |
qed |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
942 |
hence "d' \<le> y" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
943 |
unfolding y_def |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
944 |
by (rule cSup_upper) simp |
60420 | 945 |
thus False using \<open>d > 0\<close> \<open>y < b\<close> |
62390 | 946 |
by (simp add: d'_def min_def split: if_split_asm) |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
947 |
qed |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
948 |
} moreover { |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
949 |
assume "a = y" |
60420 | 950 |
with \<open>a < b\<close> have "y < b" by simp |
951 |
with \<open>a = y\<close> f_cont phi_cont \<open>e2 > 0\<close> |
|
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
952 |
have 1: "\<forall>\<^sub>F x in at y within {y..b}. dist (f x) (f y) < e2" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
953 |
and 2: "\<forall>\<^sub>F x in at y within {y..b}. dist (\<phi> x) (\<phi> y) < e2" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
954 |
by (auto simp: continuous_on_def tendsto_iff) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
955 |
have 3: "eventually (\<lambda>x. y < x) (at y within {y..b})" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
956 |
by (auto simp: eventually_at_filter) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
957 |
have 4: "eventually (\<lambda>x::real. x < b) (at y within {y..b})" |
60420 | 958 |
using _ \<open>y < b\<close> |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
959 |
by (rule order_tendstoD) (auto intro!: tendsto_eq_intros) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
960 |
from 1 2 3 4 |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
961 |
have eventually_le: "eventually (\<lambda>x. ?le x) (at y within {y .. b})" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
962 |
proof eventually_elim |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
963 |
case (elim x1) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
964 |
have "norm (f x1 - f a) = norm (f x1 - f y)" |
60420 | 965 |
by (simp add: \<open>a = y\<close>) |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
966 |
also have "norm (f x1 - f y) \<le> e2" |
60420 | 967 |
using elim \<open>a = y\<close> by (auto simp : dist_norm intro!: less_imp_le) |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
968 |
also have "\<dots> \<le> e2 + (\<phi> x1 - \<phi> a + e2 + e * (x1 - a))" |
60420 | 969 |
using \<open>0 < e\<close> elim |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
970 |
by (intro add_increasing2[OF add_nonneg_nonneg order.refl]) |
60420 | 971 |
(auto simp: \<open>a = y\<close> dist_norm intro!: mult_nonneg_nonneg) |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
972 |
also have "\<dots> = \<phi> x1 - \<phi> a + e * (x1 - a) + e" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
973 |
by (simp add: e2_def) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
974 |
finally show "?le x1" . |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
975 |
qed |
60420 | 976 |
from this[unfolded eventually_at_topological] \<open>?le y\<close> |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
977 |
obtain S |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
978 |
where S: "open S" "y \<in> S" "\<And>x. x\<in>S \<Longrightarrow> x \<in> {y..b} \<Longrightarrow> ?le x" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
979 |
by metis |
60420 | 980 |
from \<open>open S\<close> obtain d where d: "\<And>x. dist x y < d \<Longrightarrow> x \<in> S" "d > 0" |
62101 | 981 |
by (force simp: dist_commute open_dist ball_def dest!: bspec[OF _ \<open>y \<in> S\<close>]) |
63040 | 982 |
define d' where "d' = min b (y + (d/2))" |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
983 |
have "d' \<in> A" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
984 |
unfolding A_def |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
985 |
proof safe |
60420 | 986 |
show "a \<le> d'" using \<open>a = y\<close> \<open>0 < d\<close> \<open>y < b\<close> by (simp add: d'_def) |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
987 |
show "d' \<le> b" by (simp add: d'_def) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
988 |
fix x1 |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
989 |
assume "x1 \<in> {a..<d'}" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
990 |
hence "x1 \<in> S" "x1 \<in> {y..b}" |
60420 | 991 |
by (auto simp: \<open>a = y\<close> d'_def dist_real_def intro!: d ) |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
992 |
thus "?le x1" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
993 |
by (rule S) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
994 |
qed |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
995 |
hence "d' \<le> y" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
996 |
unfolding y_def |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
997 |
by (rule cSup_upper) simp |
60420 | 998 |
hence "y = b" using \<open>d > 0\<close> \<open>y < b\<close> |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
999 |
by (simp add: d'_def) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1000 |
} ultimately have "y = b" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1001 |
by auto |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1002 |
with le_y have "norm (f b - f a) \<le> \<phi> b - \<phi> a + e * (b - a + 1)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1003 |
by (simp add: algebra_simps) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1004 |
} note * = this |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1005 |
{ |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1006 |
fix e::real assume "e > 0" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1007 |
hence "norm (f b - f a) \<le> \<phi> b - \<phi> a + e" |
60420 | 1008 |
using *[of "e / (b - a + 1)"] \<open>a < b\<close> by simp |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1009 |
} thus ?thesis |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1010 |
by (rule field_le_epsilon) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1011 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1012 |
|
44123 | 1013 |
lemma differentiable_bound: |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1014 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
53781 | 1015 |
assumes "convex s" |
1016 |
and "\<forall>x\<in>s. (f has_derivative f' x) (at x within s)" |
|
1017 |
and "\<forall>x\<in>s. onorm (f' x) \<le> B" |
|
1018 |
and x: "x \<in> s" |
|
1019 |
and y: "y \<in> s" |
|
1020 |
shows "norm (f x - f y) \<le> B * norm (x - y)" |
|
1021 |
proof - |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1022 |
let ?p = "\<lambda>u. x + u *\<^sub>R (y - x)" |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1023 |
let ?\<phi> = "\<lambda>h. h * B * norm (x - y)" |
53781 | 1024 |
have *: "\<And>u. u\<in>{0..1} \<Longrightarrow> x + u *\<^sub>R (y - x) \<in> s" |
44123 | 1025 |
using assms(1)[unfolded convex_alt,rule_format,OF x y] |
1026 |
unfolding scaleR_left_diff_distrib scaleR_right_diff_distrib |
|
1027 |
by (auto simp add: algebra_simps) |
|
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1028 |
have 0: "continuous_on (?p ` {0..1}) f" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1029 |
using * |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1030 |
unfolding continuous_on_eq_continuous_within |
53781 | 1031 |
apply - |
1032 |
apply rule |
|
1033 |
apply (rule differentiable_imp_continuous_within) |
|
1034 |
unfolding differentiable_def |
|
1035 |
apply (rule_tac x="f' xa" in exI) |
|
1036 |
apply (rule has_derivative_within_subset) |
|
1037 |
apply (rule assms(2)[rule_format]) |
|
1038 |
apply auto |
|
1039 |
done |
|
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1040 |
from * have 1: "continuous_on {0 .. 1} (f \<circ> ?p)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1041 |
by (intro continuous_intros 0)+ |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1042 |
{ |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1043 |
fix u::real assume u: "u \<in>{0 <..< 1}" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1044 |
let ?u = "?p u" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1045 |
interpret linear "(f' ?u)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1046 |
using u by (auto intro!: has_derivative_linear assms(2)[rule_format] *) |
56188 | 1047 |
have "(f \<circ> ?p has_derivative (f' ?u) \<circ> (\<lambda>u. 0 + u *\<^sub>R (y - x))) (at u within box 0 1)" |
53781 | 1048 |
apply (rule diff_chain_within) |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1049 |
apply (rule derivative_intros)+ |
53781 | 1050 |
apply (rule has_derivative_within_subset) |
1051 |
apply (rule assms(2)[rule_format]) |
|
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1052 |
using u * |
53781 | 1053 |
apply auto |
1054 |
done |
|
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1055 |
hence "((f \<circ> ?p) has_vector_derivative f' ?u (y - x)) (at u)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1056 |
by (simp add: has_derivative_within_open[OF u open_greaterThanLessThan] |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1057 |
scaleR has_vector_derivative_def o_def) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1058 |
} note 2 = this |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1059 |
{ |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1060 |
have "continuous_on {0..1} ?\<phi>" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1061 |
by (rule continuous_intros)+ |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1062 |
} note 3 = this |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1063 |
{ |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1064 |
fix u::real assume u: "u \<in>{0 <..< 1}" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1065 |
have "(?\<phi> has_vector_derivative B * norm (x - y)) (at u)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1066 |
by (auto simp: has_vector_derivative_def intro!: derivative_eq_intros) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1067 |
} note 4 = this |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1068 |
{ |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1069 |
fix u::real assume u: "u \<in>{0 <..< 1}" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1070 |
let ?u = "?p u" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1071 |
interpret bounded_linear "(f' ?u)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1072 |
using u by (auto intro!: has_derivative_bounded_linear assms(2)[rule_format] *) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1073 |
have "norm (f' ?u (y - x)) \<le> onorm (f' ?u) * norm (y - x)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1074 |
by (rule onorm) fact |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1075 |
also have "onorm (f' ?u) \<le> B" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1076 |
using u by (auto intro!: assms(3)[rule_format] *) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1077 |
finally have "norm ((f' ?u) (y - x)) \<le> B * norm (x - y)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1078 |
by (simp add: mult_right_mono norm_minus_commute) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1079 |
} note 5 = this |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1080 |
have "norm (f x - f y) = norm ((f \<circ> (\<lambda>u. x + u *\<^sub>R (y - x))) 1 - (f \<circ> (\<lambda>u. x + u *\<^sub>R (y - x))) 0)" |
53781 | 1081 |
by (auto simp add: norm_minus_commute) |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1082 |
also |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1083 |
from differentiable_bound_general[OF zero_less_one 1, OF 3 2 4 5] |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1084 |
have "norm ((f \<circ> ?p) 1 - (f \<circ> ?p) 0) \<le> B * norm (x - y)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1085 |
by simp |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1086 |
finally show ?thesis . |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1087 |
qed |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1088 |
|
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1089 |
lemma |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1090 |
differentiable_bound_segment: |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1091 |
fixes f::"'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1092 |
assumes "\<And>t. t \<in> {0..1} \<Longrightarrow> x0 + t *\<^sub>R a \<in> G" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1093 |
assumes f': "\<And>x. x \<in> G \<Longrightarrow> (f has_derivative f' x) (at x within G)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1094 |
assumes B: "\<forall>x\<in>{0..1}. onorm (f' (x0 + x *\<^sub>R a)) \<le> B" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1095 |
shows "norm (f (x0 + a) - f x0) \<le> norm a * B" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1096 |
proof - |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1097 |
let ?G = "(\<lambda>x. x0 + x *\<^sub>R a) ` {0..1}" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1098 |
have "?G = op + x0 ` (\<lambda>x. x *\<^sub>R a) ` {0..1}" by auto |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1099 |
also have "convex \<dots>" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1100 |
by (intro convex_translation convex_scaled convex_real_interval) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1101 |
finally have "convex ?G" . |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1102 |
moreover have "?G \<subseteq> G" "x0 \<in> ?G" "x0 + a \<in> ?G" using assms by (auto intro: image_eqI[where x=1]) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1103 |
ultimately show ?thesis |
60420 | 1104 |
using has_derivative_subset[OF f' \<open>?G \<subseteq> G\<close>] B |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1105 |
differentiable_bound[of "(\<lambda>x. x0 + x *\<^sub>R a) ` {0..1}" f f' B "x0 + a" x0] |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1106 |
by (auto simp: ac_simps) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1107 |
qed |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1108 |
|
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1109 |
lemma differentiable_bound_linearization: |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1110 |
fixes f::"'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1111 |
assumes "\<And>t. t \<in> {0..1} \<Longrightarrow> a + t *\<^sub>R (b - a) \<in> S" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1112 |
assumes f'[derivative_intros]: "\<And>x. x \<in> S \<Longrightarrow> (f has_derivative f' x) (at x within S)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1113 |
assumes B: "\<forall>x\<in>S. onorm (f' x - f' x0) \<le> B" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1114 |
assumes "x0 \<in> S" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1115 |
shows "norm (f b - f a - f' x0 (b - a)) \<le> norm (b - a) * B" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1116 |
proof - |
63040 | 1117 |
define g where [abs_def]: "g x = f x - f' x0 x" for x |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1118 |
have g: "\<And>x. x \<in> S \<Longrightarrow> (g has_derivative (\<lambda>i. f' x i - f' x0 i)) (at x within S)" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1119 |
unfolding g_def using assms |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1120 |
by (auto intro!: derivative_eq_intros |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1121 |
bounded_linear.has_derivative[OF has_derivative_bounded_linear, OF f']) |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1122 |
from B have B: "\<forall>x\<in>{0..1}. onorm (\<lambda>i. f' (a + x *\<^sub>R (b - a)) i - f' x0 i) \<le> B" |
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1123 |
using assms by (auto simp: fun_diff_def) |
60420 | 1124 |
from differentiable_bound_segment[OF assms(1) g B] \<open>x0 \<in> S\<close> |
60178
f620c70f9e9b
generalized differentiable_bound; some further variations of differentiable_bound
immler
parents:
60177
diff
changeset
|
1125 |
show ?thesis |
63469
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
paulson <lp15@cam.ac.uk>
parents:
63170
diff
changeset
|
1126 |
by (simp add: g_def field_simps linear_diff[OF has_derivative_linear[OF f']]) |
44123 | 1127 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1128 |
|
60420 | 1129 |
text \<open>In particular.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1130 |
|
44123 | 1131 |
lemma has_derivative_zero_constant: |
60179 | 1132 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
53781 | 1133 |
assumes "convex s" |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1134 |
and "\<And>x. x \<in> s \<Longrightarrow> (f has_derivative (\<lambda>h. 0)) (at x within s)" |
44123 | 1135 |
shows "\<exists>c. \<forall>x\<in>s. f x = c" |
56332 | 1136 |
proof - |
1137 |
{ fix x y assume "x \<in> s" "y \<in> s" |
|
1138 |
then have "norm (f x - f y) \<le> 0 * norm (x - y)" |
|
1139 |
using assms by (intro differentiable_bound[of s]) (auto simp: onorm_zero) |
|
1140 |
then have "f x = f y" |
|
1141 |
by simp } |
|
53781 | 1142 |
then show ?thesis |
56332 | 1143 |
by metis |
53781 | 1144 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1145 |
|
61524
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61520
diff
changeset
|
1146 |
lemma has_field_derivative_zero_constant: |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61520
diff
changeset
|
1147 |
assumes "convex s" "\<And>x. x \<in> s \<Longrightarrow> (f has_field_derivative 0) (at x within s)" |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61520
diff
changeset
|
1148 |
shows "\<exists>c. \<forall>x\<in>s. f (x) = (c :: 'a :: real_normed_field)" |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61520
diff
changeset
|
1149 |
proof (rule has_derivative_zero_constant) |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61520
diff
changeset
|
1150 |
have A: "op * 0 = (\<lambda>_. 0 :: 'a)" by (intro ext) simp |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61520
diff
changeset
|
1151 |
fix x assume "x \<in> s" thus "(f has_derivative (\<lambda>h. 0)) (at x within s)" |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61520
diff
changeset
|
1152 |
using assms(2)[of x] by (simp add: has_field_derivative_def A) |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61520
diff
changeset
|
1153 |
qed fact |
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
eberlm
parents:
61520
diff
changeset
|
1154 |
|
53781 | 1155 |
lemma has_derivative_zero_unique: |
60179 | 1156 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
53781 | 1157 |
assumes "convex s" |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1158 |
and "\<And>x. x \<in> s \<Longrightarrow> (f has_derivative (\<lambda>h. 0)) (at x within s)" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1159 |
and "x \<in> s" "y \<in> s" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1160 |
shows "f x = f y" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1161 |
using has_derivative_zero_constant[OF assms(1,2)] assms(3-) by force |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1162 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1163 |
lemma has_derivative_zero_unique_connected: |
60179 | 1164 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1165 |
assumes "open s" "connected s" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1166 |
assumes f: "\<And>x. x \<in> s \<Longrightarrow> (f has_derivative (\<lambda>x. 0)) (at x)" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1167 |
assumes "x \<in> s" "y \<in> s" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1168 |
shows "f x = f y" |
60420 | 1169 |
proof (rule connected_local_const[where f=f, OF \<open>connected s\<close> \<open>x\<in>s\<close> \<open>y\<in>s\<close>]) |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1170 |
show "\<forall>a\<in>s. eventually (\<lambda>b. f a = f b) (at a within s)" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1171 |
proof |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1172 |
fix a assume "a \<in> s" |
60420 | 1173 |
with \<open>open s\<close> obtain e where "0 < e" "ball a e \<subseteq> s" |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1174 |
by (rule openE) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1175 |
then have "\<exists>c. \<forall>x\<in>ball a e. f x = c" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1176 |
by (intro has_derivative_zero_constant) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1177 |
(auto simp: at_within_open[OF _ open_ball] f convex_ball) |
60420 | 1178 |
with \<open>0<e\<close> have "\<forall>x\<in>ball a e. f a = f x" |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1179 |
by auto |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1180 |
then show "eventually (\<lambda>b. f a = f b) (at a within s)" |
60420 | 1181 |
using \<open>0<e\<close> unfolding eventually_at_topological |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1182 |
by (intro exI[of _ "ball a e"]) auto |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1183 |
qed |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1184 |
qed |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1185 |
|
60420 | 1186 |
subsection \<open>Differentiability of inverse function (most basic form)\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1187 |
|
44123 | 1188 |
lemma has_derivative_inverse_basic: |
56226 | 1189 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
44123 | 1190 |
assumes "(f has_derivative f') (at (g y))" |
53781 | 1191 |
and "bounded_linear g'" |
1192 |
and "g' \<circ> f' = id" |
|
1193 |
and "continuous (at y) g" |
|
1194 |
and "open t" |
|
1195 |
and "y \<in> t" |
|
1196 |
and "\<forall>z\<in>t. f (g z) = z" |
|
44123 | 1197 |
shows "(g has_derivative g') (at y)" |
53781 | 1198 |
proof - |
44123 | 1199 |
interpret f': bounded_linear f' |
1200 |
using assms unfolding has_derivative_def by auto |
|
53781 | 1201 |
interpret g': bounded_linear g' |
1202 |
using assms by auto |
|
55665 | 1203 |
obtain C where C: "0 < C" "\<And>x. norm (g' x) \<le> norm x * C" |
1204 |
using bounded_linear.pos_bounded[OF assms(2)] by blast |
|
53781 | 1205 |
have lem1: "\<forall>e>0. \<exists>d>0. \<forall>z. |
1206 |
norm (z - y) < d \<longrightarrow> norm (g z - g y - g'(z - y)) \<le> e * norm (g z - g y)" |
|
1207 |
proof (rule, rule) |
|
61165 | 1208 |
fix e :: real |
1209 |
assume "e > 0" |
|
1210 |
with C(1) have *: "e / C > 0" by auto |
|
55665 | 1211 |
obtain d0 where d0: |
1212 |
"0 < d0" |
|
1213 |
"\<forall>ya. norm (ya - g y) < d0 \<longrightarrow> norm (f ya - f (g y) - f' (ya - g y)) \<le> e / C * norm (ya - g y)" |
|
1214 |
using assms(1) |
|
1215 |
unfolding has_derivative_at_alt |
|
1216 |
using * by blast |
|
1217 |
obtain d1 where d1: |
|
1218 |
"0 < d1" |
|
1219 |
"\<forall>x. 0 < dist x y \<and> dist x y < d1 \<longrightarrow> dist (g x) (g y) < d0" |
|
1220 |
using assms(4) |
|
1221 |
unfolding continuous_at Lim_at |
|
1222 |
using d0(1) by blast |
|
1223 |
obtain d2 where d2: |
|
1224 |
"0 < d2" |
|
1225 |
"\<forall>ya. dist ya y < d2 \<longrightarrow> ya \<in> t" |
|
1226 |
using assms(5) |
|
1227 |
unfolding open_dist |
|
1228 |
using assms(6) by blast |
|
1229 |
obtain d where d: "0 < d" "d < d1" "d < d2" |
|
1230 |
using real_lbound_gt_zero[OF d1(1) d2(1)] by blast |
|
61165 | 1231 |
then show "\<exists>d>0. \<forall>z. norm (z - y) < d \<longrightarrow> norm (g z - g y - g' (z - y)) \<le> e * norm (g z - g y)" |
53781 | 1232 |
apply (rule_tac x=d in exI) |
1233 |
apply rule |
|
1234 |
defer |
|
1235 |
apply rule |
|
1236 |
apply rule |
|
1237 |
proof - |
|
1238 |
fix z |
|
1239 |
assume as: "norm (z - y) < d" |
|
1240 |
then have "z \<in> t" |
|
44123 | 1241 |
using d2 d unfolding dist_norm by auto |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1242 |
have "norm (g z - g y - g' (z - y)) \<le> norm (g' (f (g z) - y - f' (g z - g y)))" |
44123 | 1243 |
unfolding g'.diff f'.diff |
53781 | 1244 |
unfolding assms(3)[unfolded o_def id_def, THEN fun_cong] |
60420 | 1245 |
unfolding assms(7)[rule_format,OF \<open>z\<in>t\<close>] |
53781 | 1246 |
apply (subst norm_minus_cancel[symmetric]) |
1247 |
apply auto |
|
1248 |
done |
|
1249 |
also have "\<dots> \<le> norm (f (g z) - y - f' (g z - g y)) * C" |
|
55665 | 1250 |
by (rule C(2)) |
44123 | 1251 |
also have "\<dots> \<le> (e / C) * norm (g z - g y) * C" |
53781 | 1252 |
apply (rule mult_right_mono) |
60420 | 1253 |
apply (rule d0(2)[rule_format,unfolded assms(7)[rule_format,OF \<open>y\<in>t\<close>]]) |
53781 | 1254 |
apply (cases "z = y") |
1255 |
defer |
|
55665 | 1256 |
apply (rule d1(2)[unfolded dist_norm,rule_format]) |
53781 | 1257 |
using as d C d0 |
1258 |
apply auto |
|
1259 |
done |
|
44123 | 1260 |
also have "\<dots> \<le> e * norm (g z - g y)" |
1261 |
using C by (auto simp add: field_simps) |
|
1262 |
finally show "norm (g z - g y - g' (z - y)) \<le> e * norm (g z - g y)" |
|
1263 |
by simp |
|
1264 |
qed auto |
|
1265 |
qed |
|
53781 | 1266 |
have *: "(0::real) < 1 / 2" |
1267 |
by auto |
|
55665 | 1268 |
obtain d where d: |
1269 |
"0 < d" |
|
1270 |
"\<forall>z. norm (z - y) < d \<longrightarrow> norm (g z - g y - g' (z - y)) \<le> 1 / 2 * norm (g z - g y)" |
|
1271 |
using lem1 * by blast |
|
63040 | 1272 |
define B where "B = C * 2" |
53781 | 1273 |
have "B > 0" |
1274 |
unfolding B_def using C by auto |
|
61165 | 1275 |
have lem2: "norm (g z - g y) \<le> B * norm (z - y)" if z: "norm(z - y) < d" for z |
1276 |
proof - |
|
44123 | 1277 |
have "norm (g z - g y) \<le> norm(g' (z - y)) + norm ((g z - g y) - g'(z - y))" |
53781 | 1278 |
by (rule norm_triangle_sub) |
1279 |
also have "\<dots> \<le> norm (g' (z - y)) + 1 / 2 * norm (g z - g y)" |
|
1280 |
apply (rule add_left_mono) |
|
61165 | 1281 |
using d and z |
53781 | 1282 |
apply auto |
1283 |
done |
|
44123 | 1284 |
also have "\<dots> \<le> norm (z - y) * C + 1 / 2 * norm (g z - g y)" |
53781 | 1285 |
apply (rule add_right_mono) |
1286 |
using C |
|
1287 |
apply auto |
|
1288 |
done |
|
61165 | 1289 |
finally show "norm (g z - g y) \<le> B * norm (z - y)" |
53781 | 1290 |
unfolding B_def |
1291 |
by (auto simp add: field_simps) |
|
44123 | 1292 |
qed |
53781 | 1293 |
show ?thesis |
1294 |
unfolding has_derivative_at_alt |
|
1295 |
apply rule |
|
1296 |
apply (rule assms) |
|
1297 |
apply rule |
|
1298 |
apply rule |
|
1299 |
proof - |
|
61165 | 1300 |
fix e :: real |
1301 |
assume "e > 0" |
|
1302 |
then have *: "e / B > 0" by (metis \<open>B > 0\<close> divide_pos_pos) |
|
55665 | 1303 |
obtain d' where d': |
1304 |
"0 < d'" |
|
1305 |
"\<forall>z. norm (z - y) < d' \<longrightarrow> norm (g z - g y - g' (z - y)) \<le> e / B * norm (g z - g y)" |
|
1306 |
using lem1 * by blast |
|
1307 |
obtain k where k: "0 < k" "k < d" "k < d'" |
|
1308 |
using real_lbound_gt_zero[OF d(1) d'(1)] by blast |
|
61165 | 1309 |
show "\<exists>d>0. \<forall>ya. norm (ya - y) < d \<longrightarrow> norm (g ya - g y - g' (ya - y)) \<le> e * norm (ya - y)" |
53781 | 1310 |
apply (rule_tac x=k in exI) |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
1311 |
apply auto |
53781 | 1312 |
proof - |
1313 |
fix z |
|
1314 |
assume as: "norm (z - y) < k" |
|
1315 |
then have "norm (g z - g y - g' (z - y)) \<le> e / B * norm(g z - g y)" |
|
44123 | 1316 |
using d' k by auto |
53781 | 1317 |
also have "\<dots> \<le> e * norm (z - y)" |
60420 | 1318 |
unfolding times_divide_eq_left pos_divide_le_eq[OF \<open>B>0\<close>] |
61165 | 1319 |
using lem2[of z] |
60420 | 1320 |
using k as using \<open>e > 0\<close> |
44123 | 1321 |
by (auto simp add: field_simps) |
1322 |
finally show "norm (g z - g y - g' (z - y)) \<le> e * norm (z - y)" |
|
53781 | 1323 |
by simp |
1324 |
qed(insert k, auto) |
|
44123 | 1325 |
qed |
1326 |
qed |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1327 |
|
60420 | 1328 |
text \<open>Simply rewrite that based on the domain point x.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1329 |
|
44123 | 1330 |
lemma has_derivative_inverse_basic_x: |
56226 | 1331 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
53781 | 1332 |
assumes "(f has_derivative f') (at x)" |
1333 |
and "bounded_linear g'" |
|
1334 |
and "g' \<circ> f' = id" |
|
1335 |
and "continuous (at (f x)) g" |
|
1336 |
and "g (f x) = x" |
|
1337 |
and "open t" |
|
1338 |
and "f x \<in> t" |
|
63627 | 1339 |
and "\<forall>y\<in>t. f (g y) = y" |
53781 | 1340 |
shows "(g has_derivative g') (at (f x))" |
1341 |
apply (rule has_derivative_inverse_basic) |
|
1342 |
using assms |
|
1343 |
apply auto |
|
1344 |
done |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1345 |
|
60420 | 1346 |
text \<open>This is the version in Dieudonne', assuming continuity of f and g.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1347 |
|
44123 | 1348 |
lemma has_derivative_inverse_dieudonne: |
56226 | 1349 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
53781 | 1350 |
assumes "open s" |
1351 |
and "open (f ` s)" |
|
1352 |
and "continuous_on s f" |
|
1353 |
and "continuous_on (f ` s) g" |
|
1354 |
and "\<forall>x\<in>s. g (f x) = x" |
|
1355 |
and "x \<in> s" |
|
1356 |
and "(f has_derivative f') (at x)" |
|
1357 |
and "bounded_linear g'" |
|
1358 |
and "g' \<circ> f' = id" |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1359 |
shows "(g has_derivative g') (at (f x))" |
53781 | 1360 |
apply (rule has_derivative_inverse_basic_x[OF assms(7-9) _ _ assms(2)]) |
1361 |
using assms(3-6) |
|
1362 |
unfolding continuous_on_eq_continuous_at[OF assms(1)] continuous_on_eq_continuous_at[OF assms(2)] |
|
1363 |
apply auto |
|
1364 |
done |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1365 |
|
60420 | 1366 |
text \<open>Here's the simplest way of not assuming much about g.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1367 |
|
44123 | 1368 |
lemma has_derivative_inverse: |
56226 | 1369 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
53781 | 1370 |
assumes "compact s" |
1371 |
and "x \<in> s" |
|
1372 |
and "f x \<in> interior (f ` s)" |
|
1373 |
and "continuous_on s f" |
|
1374 |
and "\<forall>y\<in>s. g (f y) = y" |
|
1375 |
and "(f has_derivative f') (at x)" |
|
1376 |
and "bounded_linear g'" |
|
1377 |
and "g' \<circ> f' = id" |
|
44123 | 1378 |
shows "(g has_derivative g') (at (f x))" |
53781 | 1379 |
proof - |
1380 |
{ |
|
1381 |
fix y |
|
1382 |
assume "y \<in> interior (f ` s)" |
|
1383 |
then obtain x where "x \<in> s" and *: "y = f x" |
|
1384 |
unfolding image_iff |
|
1385 |
using interior_subset |
|
1386 |
by auto |
|
1387 |
have "f (g y) = y" |
|
60420 | 1388 |
unfolding * and assms(5)[rule_format,OF \<open>x\<in>s\<close>] .. |
44123 | 1389 |
} note * = this |
1390 |
show ?thesis |
|
53781 | 1391 |
apply (rule has_derivative_inverse_basic_x[OF assms(6-8)]) |
1392 |
apply (rule continuous_on_interior[OF _ assms(3)]) |
|
1393 |
apply (rule continuous_on_inv[OF assms(4,1)]) |
|
1394 |
apply (rule assms(2,5) assms(5)[rule_format] open_interior assms(3))+ |
|
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
1395 |
apply (metis *) |
53781 | 1396 |
done |
44123 | 1397 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1398 |
|
53781 | 1399 |
|
60420 | 1400 |
subsection \<open>Proving surjectivity via Brouwer fixpoint theorem\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1401 |
|
44123 | 1402 |
lemma brouwer_surjective: |
56117
2dbf84ee3deb
remove ordered_euclidean_space constraint from brouwer/derivative lemmas;
huffman
parents:
55970
diff
changeset
|
1403 |
fixes f :: "'n::euclidean_space \<Rightarrow> 'n" |
53781 | 1404 |
assumes "compact t" |
1405 |
and "convex t" |
|
1406 |
and "t \<noteq> {}" |
|
1407 |
and "continuous_on t f" |
|
1408 |
and "\<forall>x\<in>s. \<forall>y\<in>t. x + (y - f y) \<in> t" |
|
1409 |
and "x \<in> s" |
|
44123 | 1410 |
shows "\<exists>y\<in>t. f y = x" |
53781 | 1411 |
proof - |
1412 |
have *: "\<And>x y. f y = x \<longleftrightarrow> x + (y - f y) = y" |
|
1413 |
by (auto simp add: algebra_simps) |
|
44123 | 1414 |
show ?thesis |
1415 |
unfolding * |
|
53781 | 1416 |
apply (rule brouwer[OF assms(1-3), of "\<lambda>y. x + (y - f y)"]) |
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56370
diff
changeset
|
1417 |
apply (rule continuous_intros assms)+ |
53781 | 1418 |
using assms(4-6) |
1419 |
apply auto |
|
1420 |
done |
|
44123 | 1421 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1422 |
|
44123 | 1423 |
lemma brouwer_surjective_cball: |
56117
2dbf84ee3deb
remove ordered_euclidean_space constraint from brouwer/derivative lemmas;
huffman
parents:
55970
diff
changeset
|
1424 |
fixes f :: "'n::euclidean_space \<Rightarrow> 'n" |
53781 | 1425 |
assumes "e > 0" |
1426 |
and "continuous_on (cball a e) f" |
|
1427 |
and "\<forall>x\<in>s. \<forall>y\<in>cball a e. x + (y - f y) \<in> cball a e" |
|
1428 |
and "x \<in> s" |
|
44123 | 1429 |
shows "\<exists>y\<in>cball a e. f y = x" |
53781 | 1430 |
apply (rule brouwer_surjective) |
1431 |
apply (rule compact_cball convex_cball)+ |
|
1432 |
unfolding cball_eq_empty |
|
1433 |
using assms |
|
1434 |
apply auto |
|
1435 |
done |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1436 |
|
60420 | 1437 |
text \<open>See Sussmann: "Multidifferential calculus", Theorem 2.1.1\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1438 |
|
44123 | 1439 |
lemma sussmann_open_mapping: |
56227 | 1440 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::euclidean_space" |
53781 | 1441 |
assumes "open s" |
1442 |
and "continuous_on s f" |
|
1443 |
and "x \<in> s" |
|
1444 |
and "(f has_derivative f') (at x)" |
|
1445 |
and "bounded_linear g'" "f' \<circ> g' = id" |
|
1446 |
and "t \<subseteq> s" |
|
1447 |
and "x \<in> interior t" |
|
44123 | 1448 |
shows "f x \<in> interior (f ` t)" |
53781 | 1449 |
proof - |
1450 |
interpret f': bounded_linear f' |
|
1451 |
using assms |
|
1452 |
unfolding has_derivative_def |
|
1453 |
by auto |
|
1454 |
interpret g': bounded_linear g' |
|
1455 |
using assms |
|
1456 |
by auto |
|
55665 | 1457 |
obtain B where B: "0 < B" "\<forall>x. norm (g' x) \<le> norm x * B" |
1458 |
using bounded_linear.pos_bounded[OF assms(5)] by blast |
|
56541 | 1459 |
hence *: "1 / (2 * B) > 0" by auto |
55665 | 1460 |
obtain e0 where e0: |
1461 |
"0 < e0" |
|
1462 |
"\<forall>y. norm (y - x) < e0 \<longrightarrow> norm (f y - f x - f' (y - x)) \<le> 1 / (2 * B) * norm (y - x)" |
|
1463 |
using assms(4) |
|
1464 |
unfolding has_derivative_at_alt |
|
1465 |
using * by blast |
|
1466 |
obtain e1 where e1: "0 < e1" "cball x e1 \<subseteq> t" |
|
1467 |
using assms(8) |
|
1468 |
unfolding mem_interior_cball |
|
1469 |
by blast |
|
56541 | 1470 |
have *: "0 < e0 / B" "0 < e1 / B" using e0 e1 B by auto |
55665 | 1471 |
obtain e where e: "0 < e" "e < e0 / B" "e < e1 / B" |
1472 |
using real_lbound_gt_zero[OF *] by blast |
|
53781 | 1473 |
have "\<forall>z\<in>cball (f x) (e / 2). \<exists>y\<in>cball (f x) e. f (x + g' (y - f x)) = z" |
1474 |
apply rule |
|
1475 |
apply (rule brouwer_surjective_cball[where s="cball (f x) (e/2)"]) |
|
1476 |
prefer 3 |
|
1477 |
apply rule |
|
1478 |
apply rule |
|
44123 | 1479 |
proof- |
1480 |
show "continuous_on (cball (f x) e) (\<lambda>y. f (x + g' (y - f x)))" |
|
1481 |
unfolding g'.diff |
|
53781 | 1482 |
apply (rule continuous_on_compose[of _ _ f, unfolded o_def]) |
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56370
diff
changeset
|
1483 |
apply (rule continuous_intros linear_continuous_on[OF assms(5)])+ |
53781 | 1484 |
apply (rule continuous_on_subset[OF assms(2)]) |
1485 |
apply rule |
|
1486 |
apply (unfold image_iff) |
|
1487 |
apply (erule bexE) |
|
44123 | 1488 |
proof- |
53781 | 1489 |
fix y z |
1490 |
assume as: "y \<in>cball (f x) e" "z = x + (g' y - g' (f x))" |
|
44123 | 1491 |
have "dist x z = norm (g' (f x) - g' y)" |
1492 |
unfolding as(2) and dist_norm by auto |
|
1493 |
also have "\<dots> \<le> norm (f x - y) * B" |
|
53781 | 1494 |
unfolding g'.diff[symmetric] |
1495 |
using B |
|
1496 |
by auto |
|
44123 | 1497 |
also have "\<dots> \<le> e * B" |
53781 | 1498 |
using as(1)[unfolded mem_cball dist_norm] |
1499 |
using B |
|
1500 |
by auto |
|
1501 |
also have "\<dots> \<le> e1" |
|
1502 |
using e |
|
1503 |
unfolding less_divide_eq |
|
1504 |
using B |
|
1505 |
by auto |
|
1506 |
finally have "z \<in> cball x e1" |
|
1507 |
unfolding mem_cball |
|
1508 |
by force |
|
1509 |
then show "z \<in> s" |
|
1510 |
using e1 assms(7) by auto |
|
44123 | 1511 |
qed |
1512 |
next |
|
53781 | 1513 |
fix y z |
1514 |
assume as: "y \<in> cball (f x) (e / 2)" "z \<in> cball (f x) e" |
|
1515 |
have "norm (g' (z - f x)) \<le> norm (z - f x) * B" |
|
1516 |
using B by auto |
|
1517 |
also have "\<dots> \<le> e * B" |
|
1518 |
apply (rule mult_right_mono) |
|
44123 | 1519 |
using as(2)[unfolded mem_cball dist_norm] and B |
53781 | 1520 |
unfolding norm_minus_commute |
1521 |
apply auto |
|
1522 |
done |
|
1523 |
also have "\<dots> < e0" |
|
1524 |
using e and B |
|
1525 |
unfolding less_divide_eq |
|
1526 |
by auto |
|
1527 |
finally have *: "norm (x + g' (z - f x) - x) < e0" |
|
1528 |
by auto |
|
1529 |
have **: "f x + f' (x + g' (z - f x) - x) = z" |
|
1530 |
using assms(6)[unfolded o_def id_def,THEN cong] |
|
1531 |
by auto |
|
1532 |
have "norm (f x - (y + (z - f (x + g' (z - f x))))) \<le> |
|
1533 |
norm (f (x + g' (z - f x)) - z) + norm (f x - y)" |
|
44123 | 1534 |
using norm_triangle_ineq[of "f (x + g'(z - f x)) - z" "f x - y"] |
1535 |
by (auto simp add: algebra_simps) |
|
1536 |
also have "\<dots> \<le> 1 / (B * 2) * norm (g' (z - f x)) + norm (f x - y)" |
|
55665 | 1537 |
using e0(2)[rule_format, OF *] |
63170 | 1538 |
by (simp only: algebra_simps **) auto |
44123 | 1539 |
also have "\<dots> \<le> 1 / (B * 2) * norm (g' (z - f x)) + e/2" |
53781 | 1540 |
using as(1)[unfolded mem_cball dist_norm] |
1541 |
by auto |
|
44123 | 1542 |
also have "\<dots> \<le> 1 / (B * 2) * B * norm (z - f x) + e/2" |
53781 | 1543 |
using * and B |
1544 |
by (auto simp add: field_simps) |
|
1545 |
also have "\<dots> \<le> 1 / 2 * norm (z - f x) + e/2" |
|
1546 |
by auto |
|
1547 |
also have "\<dots> \<le> e/2 + e/2" |
|
1548 |
apply (rule add_right_mono) |
|
44123 | 1549 |
using as(2)[unfolded mem_cball dist_norm] |
53781 | 1550 |
unfolding norm_minus_commute |
1551 |
apply auto |
|
1552 |
done |
|
44123 | 1553 |
finally show "y + (z - f (x + g' (z - f x))) \<in> cball (f x) e" |
53781 | 1554 |
unfolding mem_cball dist_norm |
1555 |
by auto |
|
1556 |
qed (insert e, auto) note lem = this |
|
1557 |
show ?thesis |
|
1558 |
unfolding mem_interior |
|
1559 |
apply (rule_tac x="e/2" in exI) |
|
1560 |
apply rule |
|
1561 |
apply (rule divide_pos_pos) |
|
1562 |
prefer 3 |
|
44123 | 1563 |
proof |
53781 | 1564 |
fix y |
1565 |
assume "y \<in> ball (f x) (e / 2)" |
|
1566 |
then have *: "y \<in> cball (f x) (e / 2)" |
|
1567 |
by auto |
|
55665 | 1568 |
obtain z where z: "z \<in> cball (f x) e" "f (x + g' (z - f x)) = y" |
1569 |
using lem * by blast |
|
53781 | 1570 |
then have "norm (g' (z - f x)) \<le> norm (z - f x) * B" |
1571 |
using B |
|
1572 |
by (auto simp add: field_simps) |
|
44123 | 1573 |
also have "\<dots> \<le> e * B" |
53781 | 1574 |
apply (rule mult_right_mono) |
1575 |
using z(1) |
|
1576 |
unfolding mem_cball dist_norm norm_minus_commute |
|
1577 |
using B |
|
1578 |
apply auto |
|
1579 |
done |
|
1580 |
also have "\<dots> \<le> e1" |
|
1581 |
using e B unfolding less_divide_eq by auto |
|
1582 |
finally have "x + g'(z - f x) \<in> t" |
|
1583 |
apply - |
|
55665 | 1584 |
apply (rule e1(2)[unfolded subset_eq,rule_format]) |
53781 | 1585 |
unfolding mem_cball dist_norm |
1586 |
apply auto |
|
1587 |
done |
|
1588 |
then show "y \<in> f ` t" |
|
1589 |
using z by auto |
|
1590 |
qed (insert e, auto) |
|
44123 | 1591 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1592 |
|
60420 | 1593 |
text \<open>Hence the following eccentric variant of the inverse function theorem. |
53799 | 1594 |
This has no continuity assumptions, but we do need the inverse function. |
61808 | 1595 |
We could put \<open>f' \<circ> g = I\<close> but this happens to fit with the minimal linear |
60420 | 1596 |
algebra theory I've set up so far.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1597 |
|
37489
44e42d392c6e
Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
36844
diff
changeset
|
1598 |
(* move before left_inverse_linear in Euclidean_Space*) |
44e42d392c6e
Introduce a type class for euclidean spaces, port most lemmas from real^'n to this type class.
hoelzl
parents:
36844
diff
changeset
|
1599 |
|
53781 | 1600 |
lemma right_inverse_linear: |
1601 |
fixes f :: "'a::euclidean_space \<Rightarrow> 'a" |
|
1602 |
assumes lf: "linear f" |
|
1603 |
and gf: "f \<circ> g = id" |
|
1604 |
shows "linear g" |
|
1605 |
proof - |
|
1606 |
from gf have fi: "surj f" |
|
1607 |
by (auto simp add: surj_def o_def id_def) metis |
|
1608 |
from linear_surjective_isomorphism[OF lf fi] |
|
1609 |
obtain h:: "'a \<Rightarrow> 'a" where h: "linear h" "\<forall>x. h (f x) = x" "\<forall>x. f (h x) = x" |
|
1610 |
by blast |
|
1611 |
have "h = g" |
|
1612 |
apply (rule ext) |
|
1613 |
using gf h(2,3) |
|
1614 |
apply (simp add: o_def id_def fun_eq_iff) |
|
1615 |
apply metis |
|
1616 |
done |
|
1617 |
with h(1) show ?thesis by blast |
|
1618 |
qed |
|
1619 |
||
44123 | 1620 |
lemma has_derivative_inverse_strong: |
56117
2dbf84ee3deb
remove ordered_euclidean_space constraint from brouwer/derivative lemmas;
huffman
parents:
55970
diff
changeset
|
1621 |
fixes f :: "'n::euclidean_space \<Rightarrow> 'n" |
53781 | 1622 |
assumes "open s" |
1623 |
and "x \<in> s" |
|
1624 |
and "continuous_on s f" |
|
1625 |
and "\<forall>x\<in>s. g (f x) = x" |
|
1626 |
and "(f has_derivative f') (at x)" |
|
1627 |
and "f' \<circ> g' = id" |
|
44123 | 1628 |
shows "(g has_derivative g') (at (f x))" |
53781 | 1629 |
proof - |
1630 |
have linf: "bounded_linear f'" |
|
44123 | 1631 |
using assms(5) unfolding has_derivative_def by auto |
53781 | 1632 |
then have ling: "bounded_linear g'" |
1633 |
unfolding linear_conv_bounded_linear[symmetric] |
|
1634 |
apply - |
|
1635 |
apply (rule right_inverse_linear) |
|
1636 |
using assms(6) |
|
1637 |
apply auto |
|
1638 |
done |
|
1639 |
moreover have "g' \<circ> f' = id" |
|
1640 |
using assms(6) linf ling |
|
1641 |
unfolding linear_conv_bounded_linear[symmetric] |
|
1642 |
using linear_inverse_left |
|
1643 |
by auto |
|
1644 |
moreover have *:"\<forall>t\<subseteq>s. x \<in> interior t \<longrightarrow> f x \<in> interior (f ` t)" |
|
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
1645 |
apply clarify |
53781 | 1646 |
apply (rule sussmann_open_mapping) |
1647 |
apply (rule assms ling)+ |
|
1648 |
apply auto |
|
1649 |
done |
|
1650 |
have "continuous (at (f x)) g" |
|
1651 |
unfolding continuous_at Lim_at |
|
1652 |
proof (rule, rule) |
|
1653 |
fix e :: real |
|
1654 |
assume "e > 0" |
|
1655 |
then have "f x \<in> interior (f ` (ball x e \<inter> s))" |
|
60420 | 1656 |
using *[rule_format,of "ball x e \<inter> s"] \<open>x \<in> s\<close> |
53781 | 1657 |
by (auto simp add: interior_open[OF open_ball] interior_open[OF assms(1)]) |
55665 | 1658 |
then obtain d where d: "0 < d" "ball (f x) d \<subseteq> f ` (ball x e \<inter> s)" |
1659 |
unfolding mem_interior by blast |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1660 |
show "\<exists>d>0. \<forall>y. 0 < dist y (f x) \<and> dist y (f x) < d \<longrightarrow> dist (g y) (g (f x)) < e" |
53781 | 1661 |
apply (rule_tac x=d in exI) |
1662 |
apply rule |
|
55665 | 1663 |
apply (rule d(1)) |
53781 | 1664 |
apply rule |
1665 |
apply rule |
|
1666 |
proof - |
|
61165 | 1667 |
fix y |
1668 |
assume "0 < dist y (f x) \<and> dist y (f x) < d" |
|
53781 | 1669 |
then have "g y \<in> g ` f ` (ball x e \<inter> s)" |
55665 | 1670 |
using d(2)[unfolded subset_eq,THEN bspec[where x=y]] |
53781 | 1671 |
by (auto simp add: dist_commute) |
1672 |
then have "g y \<in> ball x e \<inter> s" |
|
1673 |
using assms(4) by auto |
|
1674 |
then show "dist (g y) (g (f x)) < e" |
|
60420 | 1675 |
using assms(4)[rule_format,OF \<open>x \<in> s\<close>] |
44123 | 1676 |
by (auto simp add: dist_commute) |
1677 |
qed |
|
1678 |
qed |
|
1679 |
moreover have "f x \<in> interior (f ` s)" |
|
53781 | 1680 |
apply (rule sussmann_open_mapping) |
1681 |
apply (rule assms ling)+ |
|
60420 | 1682 |
using interior_open[OF assms(1)] and \<open>x \<in> s\<close> |
53781 | 1683 |
apply auto |
1684 |
done |
|
61165 | 1685 |
moreover have "f (g y) = y" if "y \<in> interior (f ` s)" for y |
53781 | 1686 |
proof - |
61165 | 1687 |
from that have "y \<in> f ` s" |
53781 | 1688 |
using interior_subset by auto |
55665 | 1689 |
then obtain z where "z \<in> s" "y = f z" unfolding image_iff .. |
61165 | 1690 |
then show ?thesis |
53781 | 1691 |
using assms(4) by auto |
44123 | 1692 |
qed |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
1693 |
ultimately show ?thesis using assms |
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
1694 |
by (metis has_derivative_inverse_basic_x open_interior) |
44123 | 1695 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1696 |
|
60420 | 1697 |
text \<open>A rewrite based on the other domain.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1698 |
|
44123 | 1699 |
lemma has_derivative_inverse_strong_x: |
56117
2dbf84ee3deb
remove ordered_euclidean_space constraint from brouwer/derivative lemmas;
huffman
parents:
55970
diff
changeset
|
1700 |
fixes f :: "'a::euclidean_space \<Rightarrow> 'a" |
53781 | 1701 |
assumes "open s" |
1702 |
and "g y \<in> s" |
|
1703 |
and "continuous_on s f" |
|
1704 |
and "\<forall>x\<in>s. g (f x) = x" |
|
1705 |
and "(f has_derivative f') (at (g y))" |
|
1706 |
and "f' \<circ> g' = id" |
|
1707 |
and "f (g y) = y" |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1708 |
shows "(g has_derivative g') (at y)" |
53781 | 1709 |
using has_derivative_inverse_strong[OF assms(1-6)] |
1710 |
unfolding assms(7) |
|
1711 |
by simp |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1712 |
|
60420 | 1713 |
text \<open>On a region.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1714 |
|
44123 | 1715 |
lemma has_derivative_inverse_on: |
56117
2dbf84ee3deb
remove ordered_euclidean_space constraint from brouwer/derivative lemmas;
huffman
parents:
55970
diff
changeset
|
1716 |
fixes f :: "'n::euclidean_space \<Rightarrow> 'n" |
53781 | 1717 |
assumes "open s" |
1718 |
and "\<forall>x\<in>s. (f has_derivative f'(x)) (at x)" |
|
1719 |
and "\<forall>x\<in>s. g (f x) = x" |
|
1720 |
and "f' x \<circ> g' x = id" |
|
1721 |
and "x \<in> s" |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1722 |
shows "(g has_derivative g'(x)) (at (f x))" |
53781 | 1723 |
apply (rule has_derivative_inverse_strong[where g'="g' x" and f=f]) |
1724 |
apply (rule assms)+ |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1725 |
unfolding continuous_on_eq_continuous_at[OF assms(1)] |
53781 | 1726 |
apply rule |
1727 |
apply (rule differentiable_imp_continuous_within) |
|
1728 |
unfolding differentiable_def |
|
1729 |
using assms |
|
1730 |
apply auto |
|
1731 |
done |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1732 |
|
60420 | 1733 |
text \<open>Invertible derivative continous at a point implies local |
44123 | 1734 |
injectivity. It's only for this we need continuity of the derivative, |
1735 |
except of course if we want the fact that the inverse derivative is |
|
1736 |
also continuous. So if we know for some other reason that the inverse |
|
60420 | 1737 |
function exists, it's OK.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1738 |
|
62381
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1739 |
proposition has_derivative_locally_injective: |
53781 | 1740 |
fixes f :: "'n::euclidean_space \<Rightarrow> 'm::euclidean_space" |
1741 |
assumes "a \<in> s" |
|
62381
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1742 |
and "open s" |
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1743 |
and "bounded_linear g'" |
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1744 |
and "g' \<circ> f' a = id" |
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1745 |
and "\<And>x. x \<in> s \<Longrightarrow> (f has_derivative f' x) (at x)" |
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1746 |
and "\<And>e. e > 0 \<Longrightarrow> \<exists>d>0. \<forall>x. dist a x < d \<longrightarrow> onorm (\<lambda>v. f' x v - f' a v) < e" |
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1747 |
obtains r where "r > 0" "ball a r \<subseteq> s" "inj_on f (ball a r)" |
53781 | 1748 |
proof - |
1749 |
interpret bounded_linear g' |
|
1750 |
using assms by auto |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1751 |
note f'g' = assms(4)[unfolded id_def o_def,THEN cong] |
53781 | 1752 |
have "g' (f' a (\<Sum>Basis)) = (\<Sum>Basis)" "(\<Sum>Basis) \<noteq> (0::'n)" |
1753 |
defer |
|
1754 |
apply (subst euclidean_eq_iff) |
|
1755 |
using f'g' |
|
1756 |
apply auto |
|
1757 |
done |
|
1758 |
then have *: "0 < onorm g'" |
|
56223
7696903b9e61
generalize theory of operator norms to work with class real_normed_vector
huffman
parents:
56217
diff
changeset
|
1759 |
unfolding onorm_pos_lt[OF assms(3)] |
53781 | 1760 |
by fastforce |
63040 | 1761 |
define k where "k = 1 / onorm g' / 2" |
53781 | 1762 |
have *: "k > 0" |
1763 |
unfolding k_def using * by auto |
|
55665 | 1764 |
obtain d1 where d1: |
1765 |
"0 < d1" |
|
1766 |
"\<And>x. dist a x < d1 \<Longrightarrow> onorm (\<lambda>v. f' x v - f' a v) < k" |
|
1767 |
using assms(6) * by blast |
|
60420 | 1768 |
from \<open>open s\<close> obtain d2 where "d2 > 0" "ball a d2 \<subseteq> s" |
1769 |
using \<open>a\<in>s\<close> .. |
|
53781 | 1770 |
obtain d2 where "d2 > 0" "ball a d2 \<subseteq> s" |
1771 |
using assms(2,1) .. |
|
55665 | 1772 |
obtain d2 where d2: "0 < d2" "ball a d2 \<subseteq> s" |
1773 |
using assms(2) |
|
1774 |
unfolding open_contains_ball |
|
60420 | 1775 |
using \<open>a\<in>s\<close> by blast |
55665 | 1776 |
obtain d where d: "0 < d" "d < d1" "d < d2" |
1777 |
using real_lbound_gt_zero[OF d1(1) d2(1)] by blast |
|
44123 | 1778 |
show ?thesis |
1779 |
proof |
|
62381
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1780 |
show "0 < d" by (fact d) |
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1781 |
show "ball a d \<subseteq> s" |
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1782 |
using \<open>d < d2\<close> \<open>ball a d2 \<subseteq> s\<close> by auto |
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1783 |
show "inj_on f (ball a d)" |
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1784 |
unfolding inj_on_def |
44123 | 1785 |
proof (intro strip) |
53781 | 1786 |
fix x y |
1787 |
assume as: "x \<in> ball a d" "y \<in> ball a d" "f x = f y" |
|
63040 | 1788 |
define ph where [abs_def]: "ph w = w - g' (f w - f x)" for w |
44123 | 1789 |
have ph':"ph = g' \<circ> (\<lambda>w. f' a w - (f w - f x))" |
53781 | 1790 |
unfolding ph_def o_def |
1791 |
unfolding diff |
|
1792 |
using f'g' |
|
62381
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1793 |
by (auto simp: algebra_simps) |
53781 | 1794 |
have "norm (ph x - ph y) \<le> (1 / 2) * norm (x - y)" |
1795 |
apply (rule differentiable_bound[OF convex_ball _ _ as(1-2), where f'="\<lambda>x v. v - g'(f' x v)"]) |
|
1796 |
apply (rule_tac[!] ballI) |
|
1797 |
proof - |
|
1798 |
fix u |
|
1799 |
assume u: "u \<in> ball a d" |
|
1800 |
then have "u \<in> s" |
|
1801 |
using d d2 by auto |
|
1802 |
have *: "(\<lambda>v. v - g' (f' u v)) = g' \<circ> (\<lambda>w. f' a w - f' u w)" |
|
1803 |
unfolding o_def and diff |
|
1804 |
using f'g' by auto |
|
41958 | 1805 |
show "(ph has_derivative (\<lambda>v. v - g' (f' u v))) (at u within ball a d)" |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1806 |
unfolding ph' * |
53781 | 1807 |
apply (simp add: comp_def) |
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
1808 |
apply (rule bounded_linear.has_derivative[OF assms(3)]) |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1809 |
apply (rule derivative_intros) |
53781 | 1810 |
defer |
1811 |
apply (rule has_derivative_sub[where g'="\<lambda>x.0",unfolded diff_0_right]) |
|
1812 |
apply (rule has_derivative_at_within) |
|
60420 | 1813 |
using assms(5) and \<open>u \<in> s\<close> \<open>a \<in> s\<close> |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1814 |
apply (auto intro!: derivative_intros bounded_linear.has_derivative[of _ "\<lambda>x. x"] has_derivative_bounded_linear) |
51642
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
hoelzl
parents:
51641
diff
changeset
|
1815 |
done |
53781 | 1816 |
have **: "bounded_linear (\<lambda>x. f' u x - f' a x)" "bounded_linear (\<lambda>x. f' a x - f' u x)" |
1817 |
apply (rule_tac[!] bounded_linear_sub) |
|
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
1818 |
apply (rule_tac[!] has_derivative_bounded_linear) |
60420 | 1819 |
using assms(5) \<open>u \<in> s\<close> \<open>a \<in> s\<close> |
53781 | 1820 |
apply auto |
1821 |
done |
|
44123 | 1822 |
have "onorm (\<lambda>v. v - g' (f' u v)) \<le> onorm g' * onorm (\<lambda>w. f' a w - f' u w)" |
53781 | 1823 |
unfolding * |
1824 |
apply (rule onorm_compose) |
|
1825 |
apply (rule assms(3) **)+ |
|
1826 |
done |
|
44123 | 1827 |
also have "\<dots> \<le> onorm g' * k" |
53781 | 1828 |
apply (rule mult_left_mono) |
55665 | 1829 |
using d1(2)[of u] |
56223
7696903b9e61
generalize theory of operator norms to work with class real_normed_vector
huffman
parents:
56217
diff
changeset
|
1830 |
using onorm_neg[where f="\<lambda>x. f' u x - f' a x"] |
7696903b9e61
generalize theory of operator norms to work with class real_normed_vector
huffman
parents:
56217
diff
changeset
|
1831 |
using d and u and onorm_pos_le[OF assms(3)] |
62381
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1832 |
apply (auto simp: algebra_simps) |
53781 | 1833 |
done |
1834 |
also have "\<dots> \<le> 1 / 2" |
|
1835 |
unfolding k_def by auto |
|
1836 |
finally show "onorm (\<lambda>v. v - g' (f' u v)) \<le> 1 / 2" . |
|
44123 | 1837 |
qed |
1838 |
moreover have "norm (ph y - ph x) = norm (y - x)" |
|
53781 | 1839 |
apply (rule arg_cong[where f=norm]) |
1840 |
unfolding ph_def |
|
1841 |
using diff |
|
1842 |
unfolding as |
|
1843 |
apply auto |
|
1844 |
done |
|
1845 |
ultimately show "x = y" |
|
1846 |
unfolding norm_minus_commute by auto |
|
44123 | 1847 |
qed |
62381
a6479cb85944
New and revised material for (multivariate) analysis
paulson <lp15@cam.ac.uk>
parents:
62207
diff
changeset
|
1848 |
qed |
44123 | 1849 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1850 |
|
53781 | 1851 |
|
60420 | 1852 |
subsection \<open>Uniformly convergent sequence of derivatives\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1853 |
|
44123 | 1854 |
lemma has_derivative_sequence_lipschitz_lemma: |
60179 | 1855 |
fixes f :: "nat \<Rightarrow> 'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
44123 | 1856 |
assumes "convex s" |
53781 | 1857 |
and "\<forall>n. \<forall>x\<in>s. ((f n) has_derivative (f' n x)) (at x within s)" |
1858 |
and "\<forall>n\<ge>N. \<forall>x\<in>s. \<forall>h. norm (f' n x h - g' x h) \<le> e * norm h" |
|
56271
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
1859 |
and "0 \<le> e" |
53781 | 1860 |
shows "\<forall>m\<ge>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>y\<in>s. norm ((f m x - f n x) - (f m y - f n y)) \<le> 2 * e * norm (x - y)" |
1861 |
proof rule+ |
|
1862 |
fix m n x y |
|
1863 |
assume as: "N \<le> m" "N \<le> n" "x \<in> s" "y \<in> s" |
|
1864 |
show "norm ((f m x - f n x) - (f m y - f n y)) \<le> 2 * e * norm (x - y)" |
|
1865 |
apply (rule differentiable_bound[where f'="\<lambda>x h. f' m x h - f' n x h", OF assms(1) _ _ as(3-4)]) |
|
1866 |
apply (rule_tac[!] ballI) |
|
1867 |
proof - |
|
1868 |
fix x |
|
1869 |
assume "x \<in> s" |
|
44123 | 1870 |
show "((\<lambda>a. f m a - f n a) has_derivative (\<lambda>h. f' m x h - f' n x h)) (at x within s)" |
60420 | 1871 |
by (rule derivative_intros assms(2)[rule_format] \<open>x\<in>s\<close>)+ |
56271
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
1872 |
show "onorm (\<lambda>h. f' m x h - f' n x h) \<le> 2 * e" |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
1873 |
proof (rule onorm_bound) |
53781 | 1874 |
fix h |
44123 | 1875 |
have "norm (f' m x h - f' n x h) \<le> norm (f' m x h - g' x h) + norm (f' n x h - g' x h)" |
1876 |
using norm_triangle_ineq[of "f' m x h - g' x h" "- f' n x h + g' x h"] |
|
53781 | 1877 |
unfolding norm_minus_commute |
1878 |
by (auto simp add: algebra_simps) |
|
1879 |
also have "\<dots> \<le> e * norm h + e * norm h" |
|
60420 | 1880 |
using assms(3)[rule_format,OF \<open>N \<le> m\<close> \<open>x \<in> s\<close>, of h] |
1881 |
using assms(3)[rule_format,OF \<open>N \<le> n\<close> \<open>x \<in> s\<close>, of h] |
|
53781 | 1882 |
by (auto simp add: field_simps) |
56271
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
1883 |
finally show "norm (f' m x h - f' n x h) \<le> 2 * e * norm h" |
53781 | 1884 |
by auto |
60420 | 1885 |
qed (simp add: \<open>0 \<le> e\<close>) |
44123 | 1886 |
qed |
1887 |
qed |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1888 |
|
44123 | 1889 |
lemma has_derivative_sequence_lipschitz: |
60179 | 1890 |
fixes f :: "nat \<Rightarrow> 'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
44123 | 1891 |
assumes "convex s" |
53781 | 1892 |
and "\<forall>n. \<forall>x\<in>s. ((f n) has_derivative (f' n x)) (at x within s)" |
1893 |
and "\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>h. norm (f' n x h - g' x h) \<le> e * norm h" |
|
1894 |
shows "\<forall>e>0. \<exists>N. \<forall>m\<ge>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>y\<in>s. |
|
1895 |
norm ((f m x - f n x) - (f m y - f n y)) \<le> e * norm (x - y)" |
|
1896 |
proof (rule, rule) |
|
61165 | 1897 |
fix e :: real |
1898 |
assume "e > 0" |
|
1899 |
then have *: "2 * (1/2* e) = e" "1/2 * e >0" |
|
1900 |
by auto |
|
55665 | 1901 |
obtain N where "\<forall>n\<ge>N. \<forall>x\<in>s. \<forall>h. norm (f' n x h - g' x h) \<le> 1 / 2 * e * norm h" |
1902 |
using assms(3) *(2) by blast |
|
61165 | 1903 |
then show "\<exists>N. \<forall>m\<ge>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>y\<in>s. norm (f m x - f n x - (f m y - f n y)) \<le> e * norm (x - y)" |
53781 | 1904 |
apply (rule_tac x=N in exI) |
1905 |
apply (rule has_derivative_sequence_lipschitz_lemma[where e="1/2 *e", unfolded *]) |
|
60420 | 1906 |
using assms \<open>e > 0\<close> |
53781 | 1907 |
apply auto |
1908 |
done |
|
44123 | 1909 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
1910 |
|
44123 | 1911 |
lemma has_derivative_sequence: |
60179 | 1912 |
fixes f :: "nat \<Rightarrow> 'a::real_normed_vector \<Rightarrow> 'b::banach" |
44123 | 1913 |
assumes "convex s" |
53781 | 1914 |
and "\<forall>n. \<forall>x\<in>s. ((f n) has_derivative (f' n x)) (at x within s)" |
1915 |
and "\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>h. norm (f' n x h - g' x h) \<le> e * norm h" |
|
1916 |
and "x0 \<in> s" |
|
61973 | 1917 |
and "((\<lambda>n. f n x0) \<longlongrightarrow> l) sequentially" |
1918 |
shows "\<exists>g. \<forall>x\<in>s. ((\<lambda>n. f n x) \<longlongrightarrow> g x) sequentially \<and> (g has_derivative g'(x)) (at x within s)" |
|
53781 | 1919 |
proof - |
1920 |
have lem1: "\<forall>e>0. \<exists>N. \<forall>m\<ge>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>y\<in>s. |
|
1921 |
norm ((f m x - f n x) - (f m y - f n y)) \<le> e * norm (x - y)" |
|
56320 | 1922 |
using assms(1,2,3) by (rule has_derivative_sequence_lipschitz) |
61973 | 1923 |
have "\<exists>g. \<forall>x\<in>s. ((\<lambda>n. f n x) \<longlongrightarrow> g x) sequentially" |
53781 | 1924 |
apply (rule bchoice) |
1925 |
unfolding convergent_eq_cauchy |
|
44123 | 1926 |
proof |
53781 | 1927 |
fix x |
1928 |
assume "x \<in> s" |
|
1929 |
show "Cauchy (\<lambda>n. f n x)" |
|
1930 |
proof (cases "x = x0") |
|
1931 |
case True |
|
1932 |
then show ?thesis |
|
1933 |
using LIMSEQ_imp_Cauchy[OF assms(5)] by auto |
|
44123 | 1934 |
next |
53781 | 1935 |
case False |
1936 |
show ?thesis |
|
1937 |
unfolding Cauchy_def |
|
1938 |
proof (rule, rule) |
|
1939 |
fix e :: real |
|
1940 |
assume "e > 0" |
|
56541 | 1941 |
hence *: "e / 2 > 0" "e / 2 / norm (x - x0) > 0" using False by auto |
55665 | 1942 |
obtain M where M: "\<forall>m\<ge>M. \<forall>n\<ge>M. dist (f m x0) (f n x0) < e / 2" |
1943 |
using LIMSEQ_imp_Cauchy[OF assms(5)] |
|
1944 |
unfolding Cauchy_def |
|
1945 |
using *(1) by blast |
|
1946 |
obtain N where N: |
|
1947 |
"\<forall>m\<ge>N. \<forall>n\<ge>N. |
|
1948 |
\<forall>xa\<in>s. \<forall>y\<in>s. norm (f m xa - f n xa - (f m y - f n y)) \<le> |
|
1949 |
e / 2 / norm (x - x0) * norm (xa - y)" |
|
1950 |
using lem1 *(2) by blast |
|
44123 | 1951 |
show "\<exists>M. \<forall>m\<ge>M. \<forall>n\<ge>M. dist (f m x) (f n x) < e" |
53781 | 1952 |
apply (rule_tac x="max M N" in exI) |
1953 |
proof rule+ |
|
1954 |
fix m n |
|
1955 |
assume as: "max M N \<le>m" "max M N\<le>n" |
|
1956 |
have "dist (f m x) (f n x) \<le> |
|
1957 |
norm (f m x0 - f n x0) + norm (f m x - f n x - (f m x0 - f n x0))" |
|
1958 |
unfolding dist_norm |
|
1959 |
by (rule norm_triangle_sub) |
|
44123 | 1960 |
also have "\<dots> \<le> norm (f m x0 - f n x0) + e / 2" |
60420 | 1961 |
using N[rule_format,OF _ _ \<open>x\<in>s\<close> \<open>x0\<in>s\<close>, of m n] and as and False |
44123 | 1962 |
by auto |
1963 |
also have "\<dots> < e / 2 + e / 2" |
|
53781 | 1964 |
apply (rule add_strict_right_mono) |
1965 |
using as and M[rule_format] |
|
1966 |
unfolding dist_norm |
|
1967 |
apply auto |
|
1968 |
done |
|
1969 |
finally show "dist (f m x) (f n x) < e" |
|
1970 |
by auto |
|
44123 | 1971 |
qed |
1972 |
qed |
|
1973 |
qed |
|
1974 |
qed |
|
61969 | 1975 |
then obtain g where g: "\<forall>x\<in>s. (\<lambda>n. f n x) \<longlonglongrightarrow> g x" .. |
53781 | 1976 |
have lem2: "\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>y\<in>s. norm ((f n x - f n y) - (g x - g y)) \<le> e * norm (x - y)" |
1977 |
proof (rule, rule) |
|
1978 |
fix e :: real |
|
1979 |
assume *: "e > 0" |
|
55665 | 1980 |
obtain N where |
1981 |
N: "\<forall>m\<ge>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>y\<in>s. norm (f m x - f n x - (f m y - f n y)) \<le> e * norm (x - y)" |
|
1982 |
using lem1 * by blast |
|
44123 | 1983 |
show "\<exists>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>y\<in>s. norm (f n x - f n y - (g x - g y)) \<le> e * norm (x - y)" |
53781 | 1984 |
apply (rule_tac x=N in exI) |
1985 |
proof rule+ |
|
1986 |
fix n x y |
|
1987 |
assume as: "N \<le> n" "x \<in> s" "y \<in> s" |
|
61973 | 1988 |
have "((\<lambda>m. norm (f n x - f n y - (f m x - f m y))) \<longlongrightarrow> norm (f n x - f n y - (g x - g y))) sequentially" |
56320 | 1989 |
by (intro tendsto_intros g[rule_format] as) |
1990 |
moreover have "eventually (\<lambda>m. norm (f n x - f n y - (f m x - f m y)) \<le> e * norm (x - y)) sequentially" |
|
44123 | 1991 |
unfolding eventually_sequentially |
53781 | 1992 |
apply (rule_tac x=N in exI) |
1993 |
apply rule |
|
1994 |
apply rule |
|
1995 |
proof - |
|
1996 |
fix m |
|
1997 |
assume "N \<le> m" |
|
1998 |
then show "norm (f n x - f n y - (f m x - f m y)) \<le> e * norm (x - y)" |
|
44123 | 1999 |
using N[rule_format, of n m x y] and as |
2000 |
by (auto simp add: algebra_simps) |
|
2001 |
qed |
|
56320 | 2002 |
ultimately show "norm (f n x - f n y - (g x - g y)) \<le> e * norm (x - y)" |
63952
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63938
diff
changeset
|
2003 |
by (simp add: tendsto_upperbound) |
44123 | 2004 |
qed |
2005 |
qed |
|
61973 | 2006 |
have "\<forall>x\<in>s. ((\<lambda>n. f n x) \<longlongrightarrow> g x) sequentially \<and> (g has_derivative g' x) (at x within s)" |
56320 | 2007 |
unfolding has_derivative_within_alt2 |
2008 |
proof (intro ballI conjI) |
|
53781 | 2009 |
fix x |
2010 |
assume "x \<in> s" |
|
61973 | 2011 |
then show "((\<lambda>n. f n x) \<longlongrightarrow> g x) sequentially" |
56320 | 2012 |
by (simp add: g) |
61973 | 2013 |
have lem3: "\<forall>u. ((\<lambda>n. f' n x u) \<longlongrightarrow> g' x u) sequentially" |
56320 | 2014 |
unfolding filterlim_def le_nhds_metric_le eventually_filtermap dist_norm |
2015 |
proof (intro allI impI) |
|
53781 | 2016 |
fix u |
2017 |
fix e :: real |
|
2018 |
assume "e > 0" |
|
56320 | 2019 |
show "eventually (\<lambda>n. norm (f' n x u - g' x u) \<le> e) sequentially" |
53781 | 2020 |
proof (cases "u = 0") |
2021 |
case True |
|
56320 | 2022 |
have "eventually (\<lambda>n. norm (f' n x u - g' x u) \<le> e * norm u) sequentially" |
60420 | 2023 |
using assms(3)[folded eventually_sequentially] and \<open>0 < e\<close> and \<open>x \<in> s\<close> |
61810 | 2024 |
by (fast elim: eventually_mono) |
56320 | 2025 |
then show ?thesis |
61810 | 2026 |
using \<open>u = 0\<close> and \<open>0 < e\<close> by (auto elim: eventually_mono) |
44123 | 2027 |
next |
53781 | 2028 |
case False |
60420 | 2029 |
with \<open>0 < e\<close> have "0 < e / norm u" by simp |
56320 | 2030 |
then have "eventually (\<lambda>n. norm (f' n x u - g' x u) \<le> e / norm u * norm u) sequentially" |
60420 | 2031 |
using assms(3)[folded eventually_sequentially] and \<open>x \<in> s\<close> |
61810 | 2032 |
by (fast elim: eventually_mono) |
56320 | 2033 |
then show ?thesis |
60420 | 2034 |
using \<open>u \<noteq> 0\<close> by simp |
44123 | 2035 |
qed |
2036 |
qed |
|
2037 |
show "bounded_linear (g' x)" |
|
56271
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2038 |
proof |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2039 |
fix x' y z :: 'a |
53781 | 2040 |
fix c :: real |
60420 | 2041 |
note lin = assms(2)[rule_format,OF \<open>x\<in>s\<close>,THEN has_derivative_bounded_linear] |
44123 | 2042 |
show "g' x (c *\<^sub>R x') = c *\<^sub>R g' x x'" |
53781 | 2043 |
apply (rule tendsto_unique[OF trivial_limit_sequentially]) |
2044 |
apply (rule lem3[rule_format]) |
|
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
2045 |
unfolding lin[THEN bounded_linear.linear, THEN linear_cmul] |
53781 | 2046 |
apply (intro tendsto_intros) |
2047 |
apply (rule lem3[rule_format]) |
|
2048 |
done |
|
44123 | 2049 |
show "g' x (y + z) = g' x y + g' x z" |
53781 | 2050 |
apply (rule tendsto_unique[OF trivial_limit_sequentially]) |
2051 |
apply (rule lem3[rule_format]) |
|
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56332
diff
changeset
|
2052 |
unfolding lin[THEN bounded_linear.linear, THEN linear_add] |
53781 | 2053 |
apply (rule tendsto_add) |
2054 |
apply (rule lem3[rule_format])+ |
|
2055 |
done |
|
56271
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2056 |
obtain N where N: "\<forall>h. norm (f' N x h - g' x h) \<le> 1 * norm h" |
60420 | 2057 |
using assms(3) \<open>x \<in> s\<close> by (fast intro: zero_less_one) |
56271
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2058 |
have "bounded_linear (f' N x)" |
60420 | 2059 |
using assms(2) \<open>x \<in> s\<close> by fast |
56271
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2060 |
from bounded_linear.bounded [OF this] |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2061 |
obtain K where K: "\<forall>h. norm (f' N x h) \<le> norm h * K" .. |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2062 |
{ |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2063 |
fix h |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2064 |
have "norm (g' x h) = norm (f' N x h - (f' N x h - g' x h))" |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2065 |
by simp |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2066 |
also have "\<dots> \<le> norm (f' N x h) + norm (f' N x h - g' x h)" |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2067 |
by (rule norm_triangle_ineq4) |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2068 |
also have "\<dots> \<le> norm h * K + 1 * norm h" |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2069 |
using N K by (fast intro: add_mono) |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2070 |
finally have "norm (g' x h) \<le> norm h * (K + 1)" |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2071 |
by (simp add: ring_distribs) |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2072 |
} |
61b1e3d88e91
generalized theorems about derivatives of limits of sequences of funtions
huffman
parents:
56264
diff
changeset
|
2073 |
then show "\<exists>K. \<forall>h. norm (g' x h) \<le> norm h * K" by fast |
44123 | 2074 |
qed |
56320 | 2075 |
show "\<forall>e>0. eventually (\<lambda>y. norm (g y - g x - g' x (y - x)) \<le> e * norm (y - x)) (at x within s)" |
53781 | 2076 |
proof (rule, rule) |
61165 | 2077 |
fix e :: real |
2078 |
assume "e > 0" |
|
2079 |
then have *: "e / 3 > 0" |
|
2080 |
by auto |
|
55665 | 2081 |
obtain N1 where N1: "\<forall>n\<ge>N1. \<forall>x\<in>s. \<forall>h. norm (f' n x h - g' x h) \<le> e / 3 * norm h" |
2082 |
using assms(3) * by blast |
|
2083 |
obtain N2 where |
|
2084 |
N2: "\<forall>n\<ge>N2. \<forall>x\<in>s. \<forall>y\<in>s. norm (f n x - f n y - (g x - g y)) \<le> e / 3 * norm (x - y)" |
|
2085 |
using lem2 * by blast |
|
56320 | 2086 |
let ?N = "max N1 N2" |
2087 |
have "eventually (\<lambda>y. norm (f ?N y - f ?N x - f' ?N x (y - x)) \<le> e / 3 * norm (y - x)) (at x within s)" |
|
60420 | 2088 |
using assms(2)[unfolded has_derivative_within_alt2] and \<open>x \<in> s\<close> and * by fast |
56320 | 2089 |
moreover have "eventually (\<lambda>y. y \<in> s) (at x within s)" |
2090 |
unfolding eventually_at by (fast intro: zero_less_one) |
|
61165 | 2091 |
ultimately show "\<forall>\<^sub>F y in at x within s. norm (g y - g x - g' x (y - x)) \<le> e * norm (y - x)" |
56320 | 2092 |
proof (rule eventually_elim2) |
53781 | 2093 |
fix y |
56320 | 2094 |
assume "y \<in> s" |
2095 |
assume "norm (f ?N y - f ?N x - f' ?N x (y - x)) \<le> e / 3 * norm (y - x)" |
|
2096 |
moreover have "norm (g y - g x - (f ?N y - f ?N x)) \<le> e / 3 * norm (y - x)" |
|
60420 | 2097 |
using N2[rule_format, OF _ \<open>y \<in> s\<close> \<open>x \<in> s\<close>] |
56320 | 2098 |
by (simp add: norm_minus_commute) |
2099 |
ultimately have "norm (g y - g x - f' ?N x (y - x)) \<le> 2 * e / 3 * norm (y - x)" |
|
44123 | 2100 |
using norm_triangle_le[of "g y - g x - (f ?N y - f ?N x)" "f ?N y - f ?N x - f' ?N x (y - x)" "2 * e / 3 * norm (y - x)"] |
53781 | 2101 |
by (auto simp add: algebra_simps) |
44123 | 2102 |
moreover |
2103 |
have " norm (f' ?N x (y - x) - g' x (y - x)) \<le> e / 3 * norm (y - x)" |
|
60420 | 2104 |
using N1 \<open>x \<in> s\<close> by auto |
41958 | 2105 |
ultimately show "norm (g y - g x - g' x (y - x)) \<le> e * norm (y - x)" |
44123 | 2106 |
using norm_triangle_le[of "g y - g x - f' (max N1 N2) x (y - x)" "f' (max N1 N2) x (y - x) - g' x (y - x)"] |
53781 | 2107 |
by (auto simp add: algebra_simps) |
44123 | 2108 |
qed |
2109 |
qed |
|
2110 |
qed |
|
56320 | 2111 |
then show ?thesis by fast |
44123 | 2112 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2113 |
|
60420 | 2114 |
text \<open>Can choose to line up antiderivatives if we want.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2115 |
|
44123 | 2116 |
lemma has_antiderivative_sequence: |
60179 | 2117 |
fixes f :: "nat \<Rightarrow> 'a::real_normed_vector \<Rightarrow> 'b::banach" |
44123 | 2118 |
assumes "convex s" |
53781 | 2119 |
and "\<forall>n. \<forall>x\<in>s. ((f n) has_derivative (f' n x)) (at x within s)" |
2120 |
and "\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>h. norm (f' n x h - g' x h) \<le> e * norm h" |
|
2121 |
shows "\<exists>g. \<forall>x\<in>s. (g has_derivative g' x) (at x within s)" |
|
2122 |
proof (cases "s = {}") |
|
2123 |
case False |
|
2124 |
then obtain a where "a \<in> s" |
|
2125 |
by auto |
|
2126 |
have *: "\<And>P Q. \<exists>g. \<forall>x\<in>s. P g x \<and> Q g x \<Longrightarrow> \<exists>g. \<forall>x\<in>s. Q g x" |
|
2127 |
by auto |
|
44123 | 2128 |
show ?thesis |
53781 | 2129 |
apply (rule *) |
2130 |
apply (rule has_derivative_sequence[OF assms(1) _ assms(3), of "\<lambda>n x. f n x + (f 0 a - f n a)"]) |
|
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
2131 |
apply (metis assms(2) has_derivative_add_const) |
60420 | 2132 |
apply (rule \<open>a \<in> s\<close>) |
53781 | 2133 |
apply auto |
2134 |
done |
|
44123 | 2135 |
qed auto |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2136 |
|
44123 | 2137 |
lemma has_antiderivative_limit: |
60179 | 2138 |
fixes g' :: "'a::real_normed_vector \<Rightarrow> 'a \<Rightarrow> 'b::banach" |
44123 | 2139 |
assumes "convex s" |
53781 | 2140 |
and "\<forall>e>0. \<exists>f f'. \<forall>x\<in>s. |
2141 |
(f has_derivative (f' x)) (at x within s) \<and> (\<forall>h. norm (f' x h - g' x h) \<le> e * norm h)" |
|
2142 |
shows "\<exists>g. \<forall>x\<in>s. (g has_derivative g' x) (at x within s)" |
|
2143 |
proof - |
|
2144 |
have *: "\<forall>n. \<exists>f f'. \<forall>x\<in>s. |
|
2145 |
(f has_derivative (f' x)) (at x within s) \<and> |
|
2146 |
(\<forall>h. norm(f' x h - g' x h) \<le> inverse (real (Suc n)) * norm h)" |
|
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61560
diff
changeset
|
2147 |
by (simp add: assms(2)) |
55665 | 2148 |
obtain f where |
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
2149 |
*: "\<forall>x. \<exists>f'. \<forall>xa\<in>s. (f x has_derivative f' xa) (at xa within s) \<and> |
55665 | 2150 |
(\<forall>h. norm (f' xa h - g' xa h) \<le> inverse (real (Suc x)) * norm h)" |
2151 |
using *[THEN choice] .. |
|
2152 |
obtain f' where |
|
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56151
diff
changeset
|
2153 |
f: "\<forall>x. \<forall>xa\<in>s. (f x has_derivative f' x xa) (at xa within s) \<and> |
55665 | 2154 |
(\<forall>h. norm (f' x xa h - g' xa h) \<le> inverse (real (Suc x)) * norm h)" |
2155 |
using *[THEN choice] .. |
|
53781 | 2156 |
show ?thesis |
2157 |
apply (rule has_antiderivative_sequence[OF assms(1), of f f']) |
|
2158 |
defer |
|
2159 |
apply rule |
|
2160 |
apply rule |
|
2161 |
proof - |
|
2162 |
fix e :: real |
|
2163 |
assume "e > 0" |
|
55665 | 2164 |
obtain N where N: "inverse (real (Suc N)) < e" |
60420 | 2165 |
using reals_Archimedean[OF \<open>e>0\<close>] .. |
44123 | 2166 |
show "\<exists>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>h. norm (f' n x h - g' x h) \<le> e * norm h" |
53781 | 2167 |
apply (rule_tac x=N in exI) |
61165 | 2168 |
apply rule |
2169 |
apply rule |
|
2170 |
apply rule |
|
2171 |
apply rule |
|
2172 |
proof - |
|
2173 |
fix n x h |
|
2174 |
assume n: "N \<le> n" and x: "x \<in> s" |
|
53781 | 2175 |
have *: "inverse (real (Suc n)) \<le> e" |
2176 |
apply (rule order_trans[OF _ N[THEN less_imp_le]]) |
|
61165 | 2177 |
using n |
53781 | 2178 |
apply (auto simp add: field_simps) |
2179 |
done |
|
61165 | 2180 |
show "norm (f' n x h - g' x h) \<le> e * norm h" |
2181 |
using f[rule_format,THEN conjunct2, OF x, of n, THEN spec[where x=h]] |
|
53781 | 2182 |
apply (rule order_trans) |
2183 |
using N * |
|
2184 |
apply (cases "h = 0") |
|
2185 |
apply auto |
|
2186 |
done |
|
44123 | 2187 |
qed |
53781 | 2188 |
qed (insert f, auto) |
44123 | 2189 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2190 |
|
53781 | 2191 |
|
60420 | 2192 |
subsection \<open>Differentiation of a series\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2193 |
|
44123 | 2194 |
lemma has_derivative_series: |
60179 | 2195 |
fixes f :: "nat \<Rightarrow> 'a::real_normed_vector \<Rightarrow> 'b::banach" |
44123 | 2196 |
assumes "convex s" |
56183 | 2197 |
and "\<And>n x. x \<in> s \<Longrightarrow> ((f n) has_derivative (f' n x)) (at x within s)" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56188
diff
changeset
|
2198 |
and "\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>h. norm (setsum (\<lambda>i. f' i x h) {..<n} - g' x h) \<le> e * norm h" |
53781 | 2199 |
and "x \<in> s" |
56183 | 2200 |
and "(\<lambda>n. f n x) sums l" |
2201 |
shows "\<exists>g. \<forall>x\<in>s. (\<lambda>n. f n x) sums (g x) \<and> (g has_derivative g' x) (at x within s)" |
|
2202 |
unfolding sums_def |
|
53781 | 2203 |
apply (rule has_derivative_sequence[OF assms(1) _ assms(3)]) |
55970
6d123f0ae358
Some new proofs. Tidying up, esp to remove "apply rule".
paulson <lp15@cam.ac.uk>
parents:
55665
diff
changeset
|
2204 |
apply (metis assms(2) has_derivative_setsum) |
53781 | 2205 |
using assms(4-5) |
56183 | 2206 |
unfolding sums_def |
53781 | 2207 |
apply auto |
2208 |
done |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2209 |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2210 |
lemma has_field_derivative_series: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2211 |
fixes f :: "nat \<Rightarrow> ('a :: {real_normed_field,banach}) \<Rightarrow> 'a" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2212 |
assumes "convex s" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2213 |
assumes "\<And>n x. x \<in> s \<Longrightarrow> (f n has_field_derivative f' n x) (at x within s)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2214 |
assumes "uniform_limit s (\<lambda>n x. \<Sum>i<n. f' i x) g' sequentially" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2215 |
assumes "x0 \<in> s" "summable (\<lambda>n. f n x0)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2216 |
shows "\<exists>g. \<forall>x\<in>s. (\<lambda>n. f n x) sums g x \<and> (g has_field_derivative g' x) (at x within s)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2217 |
unfolding has_field_derivative_def |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2218 |
proof (rule has_derivative_series) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2219 |
show "\<forall>e>0. \<exists>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>h. norm ((\<Sum>i<n. f' i x * h) - g' x * h) \<le> e * norm h" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2220 |
proof (intro allI impI) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2221 |
fix e :: real assume "e > 0" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2222 |
with assms(3) obtain N where N: "\<And>n x. n \<ge> N \<Longrightarrow> x \<in> s \<Longrightarrow> norm ((\<Sum>i<n. f' i x) - g' x) < e" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2223 |
unfolding uniform_limit_iff eventually_at_top_linorder dist_norm by blast |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2224 |
{ |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2225 |
fix n :: nat and x h :: 'a assume nx: "n \<ge> N" "x \<in> s" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2226 |
have "norm ((\<Sum>i<n. f' i x * h) - g' x * h) = norm ((\<Sum>i<n. f' i x) - g' x) * norm h" |
63918
6bf55e6e0b75
left_distrib ~> distrib_right, right_distrib ~> distrib_left
fleury <Mathias.Fleury@mpi-inf.mpg.de>
parents:
63886
diff
changeset
|
2227 |
by (simp add: norm_mult [symmetric] ring_distribs setsum_distrib_right) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2228 |
also from N[OF nx] have "norm ((\<Sum>i<n. f' i x) - g' x) \<le> e" by simp |
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61560
diff
changeset
|
2229 |
hence "norm ((\<Sum>i<n. f' i x) - g' x) * norm h \<le> e * norm h" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2230 |
by (intro mult_right_mono) simp_all |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2231 |
finally have "norm ((\<Sum>i<n. f' i x * h) - g' x * h) \<le> e * norm h" . |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2232 |
} |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2233 |
thus "\<exists>N. \<forall>n\<ge>N. \<forall>x\<in>s. \<forall>h. norm ((\<Sum>i<n. f' i x * h) - g' x * h) \<le> e * norm h" by blast |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2234 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2235 |
qed (insert assms, auto simp: has_field_derivative_def) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2236 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2237 |
lemma has_field_derivative_series': |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2238 |
fixes f :: "nat \<Rightarrow> ('a :: {real_normed_field,banach}) \<Rightarrow> 'a" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2239 |
assumes "convex s" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2240 |
assumes "\<And>n x. x \<in> s \<Longrightarrow> (f n has_field_derivative f' n x) (at x within s)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2241 |
assumes "uniformly_convergent_on s (\<lambda>n x. \<Sum>i<n. f' i x)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2242 |
assumes "x0 \<in> s" "summable (\<lambda>n. f n x0)" "x \<in> interior s" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2243 |
shows "summable (\<lambda>n. f n x)" "((\<lambda>x. \<Sum>n. f n x) has_field_derivative (\<Sum>n. f' n x)) (at x)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2244 |
proof - |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2245 |
from \<open>x \<in> interior s\<close> have "x \<in> s" using interior_subset by blast |
63040 | 2246 |
define g' where [abs_def]: "g' x = (\<Sum>i. f' i x)" for x |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2247 |
from assms(3) have "uniform_limit s (\<lambda>n x. \<Sum>i<n. f' i x) g' sequentially" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2248 |
by (simp add: uniformly_convergent_uniform_limit_iff suminf_eq_lim g'_def) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2249 |
from has_field_derivative_series[OF assms(1,2) this assms(4,5)] obtain g where g: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2250 |
"\<And>x. x \<in> s \<Longrightarrow> (\<lambda>n. f n x) sums g x" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2251 |
"\<And>x. x \<in> s \<Longrightarrow> (g has_field_derivative g' x) (at x within s)" by blast |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2252 |
from g(1)[OF \<open>x \<in> s\<close>] show "summable (\<lambda>n. f n x)" by (simp add: sums_iff) |
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61560
diff
changeset
|
2253 |
from g(2)[OF \<open>x \<in> s\<close>] \<open>x \<in> interior s\<close> have "(g has_field_derivative g' x) (at x)" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2254 |
by (simp add: at_within_interior[of x s]) |
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61560
diff
changeset
|
2255 |
also have "(g has_field_derivative g' x) (at x) \<longleftrightarrow> |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2256 |
((\<lambda>x. \<Sum>n. f n x) has_field_derivative g' x) (at x)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2257 |
using eventually_nhds_in_nhd[OF \<open>x \<in> interior s\<close>] interior_subset[of s] g(1) |
61810 | 2258 |
by (intro DERIV_cong_ev) (auto elim!: eventually_mono simp: sums_iff) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2259 |
finally show "((\<lambda>x. \<Sum>n. f n x) has_field_derivative g' x) (at x)" . |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2260 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2261 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2262 |
lemma differentiable_series: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2263 |
fixes f :: "nat \<Rightarrow> ('a :: {real_normed_field,banach}) \<Rightarrow> 'a" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2264 |
assumes "convex s" "open s" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2265 |
assumes "\<And>n x. x \<in> s \<Longrightarrow> (f n has_field_derivative f' n x) (at x)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2266 |
assumes "uniformly_convergent_on s (\<lambda>n x. \<Sum>i<n. f' i x)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2267 |
assumes "x0 \<in> s" "summable (\<lambda>n. f n x0)" and x: "x \<in> s" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2268 |
shows "summable (\<lambda>n. f n x)" and "(\<lambda>x. \<Sum>n. f n x) differentiable (at x)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2269 |
proof - |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2270 |
from assms(4) obtain g' where A: "uniform_limit s (\<lambda>n x. \<Sum>i<n. f' i x) g' sequentially" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2271 |
unfolding uniformly_convergent_on_def by blast |
61808 | 2272 |
from x and \<open>open s\<close> have s: "at x within s = at x" by (rule at_within_open) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2273 |
have "\<exists>g. \<forall>x\<in>s. (\<lambda>n. f n x) sums g x \<and> (g has_field_derivative g' x) (at x within s)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2274 |
by (intro has_field_derivative_series[of s f f' g' x0] assms A has_field_derivative_at_within) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2275 |
then obtain g where g: "\<And>x. x \<in> s \<Longrightarrow> (\<lambda>n. f n x) sums g x" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2276 |
"\<And>x. x \<in> s \<Longrightarrow> (g has_field_derivative g' x) (at x within s)" by blast |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2277 |
from g[OF x] show "summable (\<lambda>n. f n x)" by (auto simp: summable_def) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2278 |
from g(2)[OF x] have g': "(g has_derivative op * (g' x)) (at x)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2279 |
by (simp add: has_field_derivative_def s) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2280 |
have "((\<lambda>x. \<Sum>n. f n x) has_derivative op * (g' x)) (at x)" |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
2281 |
by (rule has_derivative_transform_within_open[OF g' \<open>open s\<close> x]) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2282 |
(insert g, auto simp: sums_iff) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2283 |
thus "(\<lambda>x. \<Sum>n. f n x) differentiable (at x)" unfolding differentiable_def |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2284 |
by (auto simp: summable_def differentiable_def has_field_derivative_def) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2285 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2286 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2287 |
lemma differentiable_series': |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2288 |
fixes f :: "nat \<Rightarrow> ('a :: {real_normed_field,banach}) \<Rightarrow> 'a" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2289 |
assumes "convex s" "open s" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2290 |
assumes "\<And>n x. x \<in> s \<Longrightarrow> (f n has_field_derivative f' n x) (at x)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2291 |
assumes "uniformly_convergent_on s (\<lambda>n x. \<Sum>i<n. f' i x)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2292 |
assumes "x0 \<in> s" "summable (\<lambda>n. f n x0)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2293 |
shows "(\<lambda>x. \<Sum>n. f n x) differentiable (at x0)" |
61808 | 2294 |
using differentiable_series[OF assms, of x0] \<open>x0 \<in> s\<close> by blast+ |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2295 |
|
61076 | 2296 |
text \<open>Considering derivative @{typ "real \<Rightarrow> 'b::real_normed_vector"} as a vector.\<close> |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2297 |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2298 |
definition "vector_derivative f net = (SOME f'. (f has_vector_derivative f') net)" |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2299 |
|
61245 | 2300 |
lemma vector_derivative_unique_within: |
2301 |
assumes not_bot: "at x within s \<noteq> bot" |
|
2302 |
and f': "(f has_vector_derivative f') (at x within s)" |
|
2303 |
and f'': "(f has_vector_derivative f'') (at x within s)" |
|
37730 | 2304 |
shows "f' = f''" |
53781 | 2305 |
proof - |
37730 | 2306 |
have "(\<lambda>x. x *\<^sub>R f') = (\<lambda>x. x *\<^sub>R f'')" |
61245 | 2307 |
proof (rule frechet_derivative_unique_within) |
2308 |
show "\<forall>i\<in>Basis. \<forall>e>0. \<exists>d. 0 < \<bar>d\<bar> \<and> \<bar>d\<bar> < e \<and> x + d *\<^sub>R i \<in> s" |
|
2309 |
proof clarsimp |
|
2310 |
fix e :: real assume "0 < e" |
|
2311 |
with islimpt_approachable_real[of x s] not_bot |
|
2312 |
obtain x' where "x' \<in> s" "x' \<noteq> x" "\<bar>x' - x\<bar> < e" |
|
2313 |
by (auto simp add: trivial_limit_within) |
|
2314 |
then show "\<exists>d. d \<noteq> 0 \<and> \<bar>d\<bar> < e \<and> x + d \<in> s" |
|
2315 |
by (intro exI[of _ "x' - x"]) auto |
|
2316 |
qed |
|
2317 |
qed (insert f' f'', auto simp: has_vector_derivative_def) |
|
53781 | 2318 |
then show ?thesis |
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61560
diff
changeset
|
2319 |
unfolding fun_eq_iff by (metis scaleR_one) |
37730 | 2320 |
qed |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2321 |
|
61245 | 2322 |
lemma vector_derivative_unique_at: |
2323 |
"(f has_vector_derivative f') (at x) \<Longrightarrow> (f has_vector_derivative f'') (at x) \<Longrightarrow> f' = f''" |
|
2324 |
by (rule vector_derivative_unique_within) auto |
|
2325 |
||
2326 |
lemma differentiableI_vector: "(f has_vector_derivative y) F \<Longrightarrow> f differentiable F" |
|
2327 |
by (auto simp: differentiable_def has_vector_derivative_def) |
|
2328 |
||
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2329 |
lemma vector_derivative_works: |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2330 |
"f differentiable net \<longleftrightarrow> (f has_vector_derivative (vector_derivative f net)) net" |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2331 |
(is "?l = ?r") |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2332 |
proof |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2333 |
assume ?l |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2334 |
obtain f' where f': "(f has_derivative f') net" |
60420 | 2335 |
using \<open>?l\<close> unfolding differentiable_def .. |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2336 |
then interpret bounded_linear f' |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2337 |
by auto |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2338 |
show ?r |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2339 |
unfolding vector_derivative_def has_vector_derivative_def |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2340 |
by (rule someI[of _ "f' 1"]) (simp add: scaleR[symmetric] f') |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2341 |
qed (auto simp: vector_derivative_def has_vector_derivative_def differentiable_def) |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2342 |
|
61245 | 2343 |
lemma vector_derivative_within: |
2344 |
assumes not_bot: "at x within s \<noteq> bot" and y: "(f has_vector_derivative y) (at x within s)" |
|
2345 |
shows "vector_derivative f (at x within s) = y" |
|
2346 |
using y |
|
2347 |
by (intro vector_derivative_unique_within[OF not_bot vector_derivative_works[THEN iffD1] y]) |
|
2348 |
(auto simp: differentiable_def has_vector_derivative_def) |
|
2349 |
||
61520
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2350 |
lemma frechet_derivative_eq_vector_derivative: |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2351 |
assumes "f differentiable (at x)" |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2352 |
shows "(frechet_derivative f (at x)) = (\<lambda>r. r *\<^sub>R vector_derivative f (at x))" |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2353 |
using assms |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2354 |
by (auto simp: differentiable_iff_scaleR vector_derivative_def has_vector_derivative_def |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2355 |
intro: someI frechet_derivative_at [symmetric]) |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2356 |
|
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2357 |
lemma has_real_derivative: |
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61560
diff
changeset
|
2358 |
fixes f :: "real \<Rightarrow> real" |
61520
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2359 |
assumes "(f has_derivative f') F" |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2360 |
obtains c where "(f has_real_derivative c) F" |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2361 |
proof - |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2362 |
obtain c where "f' = (\<lambda>x. x * c)" |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2363 |
by (metis assms has_derivative_bounded_linear real_bounded_linear) |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2364 |
then show ?thesis |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2365 |
by (metis assms that has_field_derivative_def mult_commute_abs) |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2366 |
qed |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2367 |
|
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2368 |
lemma has_real_derivative_iff: |
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61560
diff
changeset
|
2369 |
fixes f :: "real \<Rightarrow> real" |
61520
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2370 |
shows "(\<exists>c. (f has_real_derivative c) F) = (\<exists>D. (f has_derivative D) F)" |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2371 |
by (metis has_field_derivative_def has_real_derivative) |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2372 |
|
64008
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63955
diff
changeset
|
2373 |
lemma has_vector_derivative_cong_ev: |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63955
diff
changeset
|
2374 |
assumes *: "eventually (\<lambda>x. x \<in> s \<longrightarrow> f x = g x) (nhds x)" "f x = g x" |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63955
diff
changeset
|
2375 |
shows "(f has_vector_derivative f') (at x within s) = (g has_vector_derivative f') (at x within s)" |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63955
diff
changeset
|
2376 |
unfolding has_vector_derivative_def has_derivative_def |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63955
diff
changeset
|
2377 |
using * |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63955
diff
changeset
|
2378 |
apply (cases "at x within s \<noteq> bot") |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63955
diff
changeset
|
2379 |
apply (intro refl conj_cong filterlim_cong) |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63955
diff
changeset
|
2380 |
apply (auto simp: netlimit_within eventually_at_filter elim: eventually_mono) |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63955
diff
changeset
|
2381 |
done |
17a20ca86d62
HOL-Probability: more about probability, prepare for Markov processes in the AFP
hoelzl
parents:
63955
diff
changeset
|
2382 |
|
61520
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2383 |
definition deriv :: "('a \<Rightarrow> 'a::real_normed_field) \<Rightarrow> 'a \<Rightarrow> 'a" where |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2384 |
"deriv f x \<equiv> SOME D. DERIV f x :> D" |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2385 |
|
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2386 |
lemma DERIV_imp_deriv: "DERIV f x :> f' \<Longrightarrow> deriv f x = f'" |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2387 |
unfolding deriv_def by (metis some_equality DERIV_unique) |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2388 |
|
61907
f0c894ab18c9
Liouville theorem, Fundamental Theorem of Algebra, etc.
paulson <lp15@cam.ac.uk>
parents:
61880
diff
changeset
|
2389 |
lemma DERIV_deriv_iff_has_field_derivative: |
f0c894ab18c9
Liouville theorem, Fundamental Theorem of Algebra, etc.
paulson <lp15@cam.ac.uk>
parents:
61880
diff
changeset
|
2390 |
"DERIV f x :> deriv f x \<longleftrightarrow> (\<exists>f'. (f has_field_derivative f') (at x))" |
f0c894ab18c9
Liouville theorem, Fundamental Theorem of Algebra, etc.
paulson <lp15@cam.ac.uk>
parents:
61880
diff
changeset
|
2391 |
by (auto simp: has_field_derivative_def DERIV_imp_deriv) |
63627 | 2392 |
|
61520
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2393 |
lemma DERIV_deriv_iff_real_differentiable: |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2394 |
fixes x :: real |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2395 |
shows "DERIV f x :> deriv f x \<longleftrightarrow> f differentiable at x" |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2396 |
unfolding differentiable_def by (metis DERIV_imp_deriv has_real_derivative_iff) |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2397 |
|
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2398 |
lemma real_derivative_chain: |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2399 |
fixes x :: real |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2400 |
shows "f differentiable at x \<Longrightarrow> g differentiable at (f x) |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2401 |
\<Longrightarrow> deriv (g o f) x = deriv g (f x) * deriv f x" |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2402 |
by (metis DERIV_deriv_iff_real_differentiable DERIV_chain DERIV_imp_deriv) |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2403 |
lemma field_derivative_eq_vector_derivative: |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2404 |
"(deriv f x) = vector_derivative f (at x)" |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2405 |
by (simp add: mult.commute deriv_def vector_derivative_def has_vector_derivative_def has_field_derivative_def) |
8f85bb443d33
Cauchy's integral formula, required lemmas, and a bit of reorganisation
paulson <lp15@cam.ac.uk>
parents:
61518
diff
changeset
|
2406 |
|
61245 | 2407 |
lemma islimpt_closure_open: |
2408 |
fixes s :: "'a::perfect_space set" |
|
2409 |
assumes "open s" and t: "t = closure s" "x \<in> t" |
|
2410 |
shows "x islimpt t" |
|
2411 |
proof cases |
|
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61560
diff
changeset
|
2412 |
assume "x \<in> s" |
61245 | 2413 |
{ fix T assume "x \<in> T" "open T" |
2414 |
then have "open (s \<inter> T)" |
|
2415 |
using \<open>open s\<close> by auto |
|
2416 |
then have "s \<inter> T \<noteq> {x}" |
|
2417 |
using not_open_singleton[of x] by auto |
|
2418 |
with \<open>x \<in> T\<close> \<open>x \<in> s\<close> have "\<exists>y\<in>t. y \<in> T \<and> y \<noteq> x" |
|
2419 |
using closure_subset[of s] by (auto simp: t) } |
|
2420 |
then show ?thesis |
|
2421 |
by (auto intro!: islimptI) |
|
2422 |
next |
|
2423 |
assume "x \<notin> s" with t show ?thesis |
|
2424 |
unfolding t closure_def by (auto intro: islimpt_subset) |
|
2425 |
qed |
|
2426 |
||
44123 | 2427 |
lemma vector_derivative_unique_within_closed_interval: |
61245 | 2428 |
assumes ab: "a < b" "x \<in> cbox a b" |
2429 |
assumes D: "(f has_vector_derivative f') (at x within cbox a b)" "(f has_vector_derivative f'') (at x within cbox a b)" |
|
44123 | 2430 |
shows "f' = f''" |
61245 | 2431 |
using ab |
2432 |
by (intro vector_derivative_unique_within[OF _ D]) |
|
2433 |
(auto simp: trivial_limit_within intro!: islimpt_closure_open[where s="{a <..< b}"]) |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2434 |
|
37730 | 2435 |
lemma vector_derivative_at: |
53781 | 2436 |
"(f has_vector_derivative f') (at x) \<Longrightarrow> vector_derivative f (at x) = f'" |
61245 | 2437 |
by (intro vector_derivative_within at_neq_bot) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2438 |
|
61104
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2439 |
lemma has_vector_derivative_id_at [simp]: "vector_derivative (\<lambda>x. x) (at a) = 1" |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2440 |
by (simp add: vector_derivative_at) |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2441 |
|
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2442 |
lemma vector_derivative_minus_at [simp]: |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2443 |
"f differentiable at a |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2444 |
\<Longrightarrow> vector_derivative (\<lambda>x. - f x) (at a) = - vector_derivative f (at a)" |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2445 |
by (simp add: vector_derivative_at has_vector_derivative_minus vector_derivative_works [symmetric]) |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2446 |
|
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2447 |
lemma vector_derivative_add_at [simp]: |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2448 |
"\<lbrakk>f differentiable at a; g differentiable at a\<rbrakk> |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2449 |
\<Longrightarrow> vector_derivative (\<lambda>x. f x + g x) (at a) = vector_derivative f (at a) + vector_derivative g (at a)" |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2450 |
by (simp add: vector_derivative_at has_vector_derivative_add vector_derivative_works [symmetric]) |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2451 |
|
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2452 |
lemma vector_derivative_diff_at [simp]: |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2453 |
"\<lbrakk>f differentiable at a; g differentiable at a\<rbrakk> |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2454 |
\<Longrightarrow> vector_derivative (\<lambda>x. f x - g x) (at a) = vector_derivative f (at a) - vector_derivative g (at a)" |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2455 |
by (simp add: vector_derivative_at has_vector_derivative_diff vector_derivative_works [symmetric]) |
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents:
61076
diff
changeset
|
2456 |
|
61204 | 2457 |
lemma vector_derivative_mult_at [simp]: |
2458 |
fixes f g :: "real \<Rightarrow> 'a :: real_normed_algebra" |
|
2459 |
shows "\<lbrakk>f differentiable at a; g differentiable at a\<rbrakk> |
|
2460 |
\<Longrightarrow> vector_derivative (\<lambda>x. f x * g x) (at a) = f a * vector_derivative g (at a) + vector_derivative f (at a) * g a" |
|
2461 |
by (simp add: vector_derivative_at has_vector_derivative_mult vector_derivative_works [symmetric]) |
|
2462 |
||
2463 |
lemma vector_derivative_scaleR_at [simp]: |
|
2464 |
"\<lbrakk>f differentiable at a; g differentiable at a\<rbrakk> |
|
2465 |
\<Longrightarrow> vector_derivative (\<lambda>x. f x *\<^sub>R g x) (at a) = f a *\<^sub>R vector_derivative g (at a) + vector_derivative f (at a) *\<^sub>R g a" |
|
2466 |
apply (rule vector_derivative_at) |
|
2467 |
apply (rule has_vector_derivative_scaleR) |
|
2468 |
apply (auto simp: vector_derivative_works has_vector_derivative_def has_field_derivative_def mult_commute_abs) |
|
2469 |
done |
|
2470 |
||
44123 | 2471 |
lemma vector_derivative_within_closed_interval: |
61245 | 2472 |
assumes ab: "a < b" "x \<in> cbox a b" |
2473 |
assumes f: "(f has_vector_derivative f') (at x within cbox a b)" |
|
56188 | 2474 |
shows "vector_derivative f (at x within cbox a b) = f'" |
61245 | 2475 |
by (intro vector_derivative_unique_within_closed_interval[OF ab _ f] |
2476 |
vector_derivative_works[THEN iffD1] differentiableI_vector) |
|
2477 |
fact |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2478 |
|
53781 | 2479 |
lemma has_vector_derivative_within_subset: |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2480 |
"(f has_vector_derivative f') (at x within s) \<Longrightarrow> t \<subseteq> s \<Longrightarrow> (f has_vector_derivative f') (at x within t)" |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2481 |
by (auto simp: has_vector_derivative_def intro: has_derivative_within_subset) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2482 |
|
44123 | 2483 |
lemma has_vector_derivative_at_within: |
2484 |
"(f has_vector_derivative f') (at x) \<Longrightarrow> (f has_vector_derivative f') (at x within s)" |
|
2485 |
unfolding has_vector_derivative_def |
|
45031 | 2486 |
by (rule has_derivative_at_within) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2487 |
|
61880
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2488 |
lemma has_vector_derivative_weaken: |
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2489 |
fixes x D and f g s t |
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2490 |
assumes f: "(f has_vector_derivative D) (at x within t)" |
63627 | 2491 |
and "x \<in> s" "s \<subseteq> t" |
61880
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2492 |
and "\<And>x. x \<in> s \<Longrightarrow> f x = g x" |
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2493 |
shows "(g has_vector_derivative D) (at x within s)" |
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2494 |
proof - |
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2495 |
have "(f has_vector_derivative D) (at x within s) \<longleftrightarrow> (g has_vector_derivative D) (at x within s)" |
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2496 |
unfolding has_vector_derivative_def has_derivative_iff_norm |
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2497 |
using assms by (intro conj_cong Lim_cong_within refl) auto |
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2498 |
then show ?thesis |
61975 | 2499 |
using has_vector_derivative_within_subset[OF f \<open>s \<subseteq> t\<close>] by simp |
61880
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2500 |
qed |
ff4d33058566
moved some theorems from the CLT proof; reordered some theorems / notation
hoelzl
parents:
61824
diff
changeset
|
2501 |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2502 |
lemma has_vector_derivative_transform_within: |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
2503 |
assumes "(f has_vector_derivative f') (at x within s)" |
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
2504 |
and "0 < d" |
53781 | 2505 |
and "x \<in> s" |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
2506 |
and "\<And>x'. \<lbrakk>x'\<in>s; dist x' x < d\<rbrakk> \<Longrightarrow> f x' = g x'" |
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
2507 |
shows "(g has_vector_derivative f') (at x within s)" |
53781 | 2508 |
using assms |
2509 |
unfolding has_vector_derivative_def |
|
44123 | 2510 |
by (rule has_derivative_transform_within) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2511 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2512 |
lemma has_vector_derivative_transform_within_open: |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
2513 |
assumes "(f has_vector_derivative f') (at x)" |
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
2514 |
and "open s" |
53781 | 2515 |
and "x \<in> s" |
62087
44841d07ef1d
revisions to limits and derivatives, plus new lemmas
paulson
parents:
61975
diff
changeset
|
2516 |
and "\<And>y. y\<in>s \<Longrightarrow> f y = g y" |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2517 |
shows "(g has_vector_derivative f') (at x)" |
53781 | 2518 |
using assms |
2519 |
unfolding has_vector_derivative_def |
|
44123 | 2520 |
by (rule has_derivative_transform_within_open) |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2521 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2522 |
lemma vector_diff_chain_at: |
44123 | 2523 |
assumes "(f has_vector_derivative f') (at x)" |
53781 | 2524 |
and "(g has_vector_derivative g') (at (f x))" |
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2525 |
shows "((g \<circ> f) has_vector_derivative (f' *\<^sub>R g')) (at x)" |
53781 | 2526 |
using assms(2) |
2527 |
unfolding has_vector_derivative_def |
|
2528 |
apply - |
|
2529 |
apply (drule diff_chain_at[OF assms(1)[unfolded has_vector_derivative_def]]) |
|
2530 |
apply (simp only: o_def real_scaleR_def scaleR_scaleR) |
|
2531 |
done |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2532 |
|
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2533 |
lemma vector_diff_chain_within: |
44123 | 2534 |
assumes "(f has_vector_derivative f') (at x within s)" |
53781 | 2535 |
and "(g has_vector_derivative g') (at (f x) within f ` s)" |
2536 |
shows "((g \<circ> f) has_vector_derivative (f' *\<^sub>R g')) (at x within s)" |
|
2537 |
using assms(2) |
|
2538 |
unfolding has_vector_derivative_def |
|
2539 |
apply - |
|
2540 |
apply (drule diff_chain_within[OF assms(1)[unfolded has_vector_derivative_def]]) |
|
2541 |
apply (simp only: o_def real_scaleR_def scaleR_scaleR) |
|
2542 |
done |
|
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2543 |
|
60762 | 2544 |
lemma vector_derivative_const_at [simp]: "vector_derivative (\<lambda>x. c) (at a) = 0" |
2545 |
by (simp add: vector_derivative_at) |
|
2546 |
||
60800
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
2547 |
lemma vector_derivative_at_within_ivl: |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
2548 |
"(f has_vector_derivative f') (at x) \<Longrightarrow> |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
2549 |
a \<le> x \<Longrightarrow> x \<le> b \<Longrightarrow> a<b \<Longrightarrow> vector_derivative f (at x within {a..b}) = f'" |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
2550 |
using has_vector_derivative_at_within vector_derivative_within_closed_interval by fastforce |
7d04351c795a
New material for Cauchy's integral theorem
paulson <lp15@cam.ac.uk>
parents:
60762
diff
changeset
|
2551 |
|
61204 | 2552 |
lemma vector_derivative_chain_at: |
2553 |
assumes "f differentiable at x" "(g differentiable at (f x))" |
|
2554 |
shows "vector_derivative (g \<circ> f) (at x) = |
|
2555 |
vector_derivative f (at x) *\<^sub>R vector_derivative g (at (f x))" |
|
2556 |
by (metis vector_diff_chain_at vector_derivative_at vector_derivative_works assms) |
|
2557 |
||
62408
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2558 |
lemma field_vector_diff_chain_at: (*thanks to Wenda Li*) |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2559 |
assumes Df: "(f has_vector_derivative f') (at x)" |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2560 |
and Dg: "(g has_field_derivative g') (at (f x))" |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2561 |
shows "((g \<circ> f) has_vector_derivative (f' * g')) (at x)" |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2562 |
using diff_chain_at[OF Df[unfolded has_vector_derivative_def] |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2563 |
Dg [unfolded has_field_derivative_def]] |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2564 |
by (auto simp: o_def mult.commute has_vector_derivative_def) |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2565 |
|
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2566 |
lemma vector_derivative_chain_at_general: (*thanks to Wenda Li*) |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2567 |
assumes "f differentiable at x" "(\<exists>g'. (g has_field_derivative g') (at (f x)))" |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2568 |
shows "vector_derivative (g \<circ> f) (at x) = |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2569 |
vector_derivative f (at x) * deriv g (f x)" |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2570 |
apply (rule vector_derivative_at [OF field_vector_diff_chain_at]) |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2571 |
using assms |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2572 |
by (auto simp: vector_derivative_works DERIV_deriv_iff_has_field_derivative) |
86f27b264d3d
Conformal_mappings: a big development in complex analysis (+ some lemmas)
paulson <lp15@cam.ac.uk>
parents:
62393
diff
changeset
|
2573 |
|
62949
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2574 |
lemma exp_scaleR_has_vector_derivative_right: |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2575 |
"((\<lambda>t. exp (t *\<^sub>R A)) has_vector_derivative exp (t *\<^sub>R A) * A) (at t within T)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2576 |
unfolding has_vector_derivative_def |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2577 |
proof (rule has_derivativeI) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2578 |
let ?F = "at t within (T \<inter> {t - 1 <..< t + 1})" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2579 |
have *: "at t within T = ?F" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2580 |
by (rule at_within_nhd[where S="{t - 1 <..< t + 1}"]) auto |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2581 |
let ?e = "\<lambda>i x. (inverse (1 + real i) * inverse (fact i) * (x - t) ^ i) *\<^sub>R (A * A ^ i)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2582 |
have "\<forall>\<^sub>F n in sequentially. |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2583 |
\<forall>x\<in>T \<inter> {t - 1<..<t + 1}. norm (?e n x) \<le> norm (A ^ (n + 1) /\<^sub>R fact (n + 1))" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2584 |
by (auto simp: divide_simps power_abs intro!: mult_left_le_one_le power_le_one eventuallyI) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2585 |
then have "uniform_limit (T \<inter> {t - 1<..<t + 1}) (\<lambda>n x. \<Sum>i<n. ?e i x) (\<lambda>x. \<Sum>i. ?e i x) sequentially" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2586 |
by (rule weierstrass_m_test_ev) (intro summable_ignore_initial_segment summable_norm_exp) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2587 |
moreover |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2588 |
have "\<forall>\<^sub>F x in sequentially. x > 0" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2589 |
by (metis eventually_gt_at_top) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2590 |
then have |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2591 |
"\<forall>\<^sub>F n in sequentially. ((\<lambda>x. \<Sum>i<n. ?e i x) \<longlongrightarrow> A) ?F" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2592 |
by eventually_elim |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2593 |
(auto intro!: tendsto_eq_intros |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2594 |
simp: power_0_left if_distrib cond_application_beta setsum.delta |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2595 |
cong: if_cong) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2596 |
ultimately |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2597 |
have [tendsto_intros]: "((\<lambda>x. \<Sum>i. ?e i x) \<longlongrightarrow> A) ?F" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2598 |
by (auto intro!: swap_uniform_limit[where f="\<lambda>n x. \<Sum>i < n. ?e i x" and F = sequentially]) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2599 |
have [tendsto_intros]: "((\<lambda>x. if x = t then 0 else 1) \<longlongrightarrow> 1) ?F" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2600 |
by (rule Lim_eventually) (simp add: eventually_at_filter) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2601 |
have "((\<lambda>y. ((y - t) / abs (y - t)) *\<^sub>R ((\<Sum>n. ?e n y) - A)) \<longlongrightarrow> 0) (at t within T)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2602 |
unfolding * |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2603 |
by (rule tendsto_norm_zero_cancel) (auto intro!: tendsto_eq_intros) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2604 |
|
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2605 |
moreover |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2606 |
|
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2607 |
have "\<forall>\<^sub>F x in at t within T. x \<noteq> t" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2608 |
by (simp add: eventually_at_filter) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2609 |
then have "\<forall>\<^sub>F x in at t within T. ((x - t) / \<bar>x - t\<bar>) *\<^sub>R ((\<Sum>n. ?e n x) - A) = |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2610 |
(exp ((x - t) *\<^sub>R A) - 1 - (x - t) *\<^sub>R A) /\<^sub>R norm (x - t)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2611 |
proof eventually_elim |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2612 |
case (elim x) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2613 |
have "(exp ((x - t) *\<^sub>R A) - 1 - (x - t) *\<^sub>R A) /\<^sub>R norm (x - t) = |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2614 |
((\<Sum>n. (x - t) *\<^sub>R ?e n x) - (x - t) *\<^sub>R A) /\<^sub>R norm (x - t)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2615 |
unfolding exp_first_term |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2616 |
by (simp add: ac_simps) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2617 |
also |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2618 |
have "summable (\<lambda>n. ?e n x)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2619 |
proof - |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2620 |
from elim have "?e n x = (((x - t) *\<^sub>R A) ^ (n + 1)) /\<^sub>R fact (n + 1) /\<^sub>R (x - t)" for n |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2621 |
by simp |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2622 |
then show ?thesis |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2623 |
by (auto simp only: |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2624 |
intro!: summable_scaleR_right summable_ignore_initial_segment summable_exp_generic) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2625 |
qed |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2626 |
then have "(\<Sum>n. (x - t) *\<^sub>R ?e n x) = (x - t) *\<^sub>R (\<Sum>n. ?e n x)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2627 |
by (rule suminf_scaleR_right[symmetric]) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2628 |
also have "(\<dots> - (x - t) *\<^sub>R A) /\<^sub>R norm (x - t) = (x - t) *\<^sub>R ((\<Sum>n. ?e n x) - A) /\<^sub>R norm (x - t)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2629 |
by (simp add: algebra_simps) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2630 |
finally show ?case |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2631 |
by (simp add: divide_simps) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2632 |
qed |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2633 |
|
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2634 |
ultimately |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2635 |
|
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2636 |
have "((\<lambda>y. (exp ((y - t) *\<^sub>R A) - 1 - (y - t) *\<^sub>R A) /\<^sub>R norm (y - t)) \<longlongrightarrow> 0) (at t within T)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2637 |
by (rule Lim_transform_eventually[rotated]) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2638 |
from tendsto_mult_right_zero[OF this, where c="exp (t *\<^sub>R A)"] |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2639 |
show "((\<lambda>y. (exp (y *\<^sub>R A) - exp (t *\<^sub>R A) - (y - t) *\<^sub>R (exp (t *\<^sub>R A) * A)) /\<^sub>R norm (y - t)) \<longlongrightarrow> 0) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2640 |
(at t within T)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2641 |
by (rule Lim_transform_eventually[rotated]) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2642 |
(auto simp: algebra_simps divide_simps exp_add_commuting[symmetric]) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2643 |
qed (rule bounded_linear_scaleR_left) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2644 |
|
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2645 |
lemma exp_times_scaleR_commute: "exp (t *\<^sub>R A) * A = A * exp (t *\<^sub>R A)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2646 |
using exp_times_arg_commute[symmetric, of "t *\<^sub>R A"] |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2647 |
by (auto simp: algebra_simps) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2648 |
|
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2649 |
lemma exp_scaleR_has_vector_derivative_left: "((\<lambda>t. exp (t *\<^sub>R A)) has_vector_derivative A * exp (t *\<^sub>R A)) (at t)" |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2650 |
using exp_scaleR_has_vector_derivative_right[of A t] |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2651 |
by (simp add: exp_times_scaleR_commute) |
f36a54da47a4
added derivative of scaling in exponential function
immler
parents:
62533
diff
changeset
|
2652 |
|
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2653 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2654 |
subsection \<open>Relation between convexity and derivative\<close> |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2655 |
|
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2656 |
(* TODO: Generalise to real vector spaces? *) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2657 |
lemma convex_on_imp_above_tangent: |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2658 |
assumes convex: "convex_on A f" and connected: "connected A" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2659 |
assumes c: "c \<in> interior A" and x : "x \<in> A" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2660 |
assumes deriv: "(f has_field_derivative f') (at c within A)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2661 |
shows "f x - f c \<ge> f' * (x - c)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2662 |
proof (cases x c rule: linorder_cases) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2663 |
assume xc: "x > c" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2664 |
let ?A' = "interior A \<inter> {c<..}" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2665 |
from c have "c \<in> interior A \<inter> closure {c<..}" by auto |
63128 | 2666 |
also have "\<dots> \<subseteq> closure (interior A \<inter> {c<..})" by (intro open_Int_closure_subset) auto |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2667 |
finally have "at c within ?A' \<noteq> bot" by (subst at_within_eq_bot_iff) auto |
61973 | 2668 |
moreover from deriv have "((\<lambda>y. (f y - f c) / (y - c)) \<longlongrightarrow> f') (at c within ?A')" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2669 |
unfolding DERIV_within_iff using interior_subset[of A] by (blast intro: tendsto_mono at_le) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2670 |
moreover from eventually_at_right_real[OF xc] |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2671 |
have "eventually (\<lambda>y. (f y - f c) / (y - c) \<le> (f x - f c) / (x - c)) (at_right c)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2672 |
proof eventually_elim |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2673 |
fix y assume y: "y \<in> {c<..<x}" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2674 |
with convex connected x c have "f y \<le> (f x - f c) / (x - c) * (y - c) + f c" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2675 |
using interior_subset[of A] |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2676 |
by (intro convex_onD_Icc' convex_on_subset[OF convex] connected_contains_Icc) auto |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2677 |
hence "f y - f c \<le> (f x - f c) / (x - c) * (y - c)" by simp |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2678 |
thus "(f y - f c) / (y - c) \<le> (f x - f c) / (x - c)" using y xc by (simp add: divide_simps) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2679 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2680 |
hence "eventually (\<lambda>y. (f y - f c) / (y - c) \<le> (f x - f c) / (x - c)) (at c within ?A')" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2681 |
by (blast intro: filter_leD at_le) |
63952
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63938
diff
changeset
|
2682 |
ultimately have "f' \<le> (f x - f c) / (x - c)" by (simp add: tendsto_upperbound) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2683 |
thus ?thesis using xc by (simp add: field_simps) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2684 |
next |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2685 |
assume xc: "x < c" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2686 |
let ?A' = "interior A \<inter> {..<c}" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2687 |
from c have "c \<in> interior A \<inter> closure {..<c}" by auto |
63128 | 2688 |
also have "\<dots> \<subseteq> closure (interior A \<inter> {..<c})" by (intro open_Int_closure_subset) auto |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2689 |
finally have "at c within ?A' \<noteq> bot" by (subst at_within_eq_bot_iff) auto |
61973 | 2690 |
moreover from deriv have "((\<lambda>y. (f y - f c) / (y - c)) \<longlongrightarrow> f') (at c within ?A')" |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2691 |
unfolding DERIV_within_iff using interior_subset[of A] by (blast intro: tendsto_mono at_le) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2692 |
moreover from eventually_at_left_real[OF xc] |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2693 |
have "eventually (\<lambda>y. (f y - f c) / (y - c) \<ge> (f x - f c) / (x - c)) (at_left c)" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2694 |
proof eventually_elim |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2695 |
fix y assume y: "y \<in> {x<..<c}" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2696 |
with convex connected x c have "f y \<le> (f x - f c) / (c - x) * (c - y) + f c" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2697 |
using interior_subset[of A] |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2698 |
by (intro convex_onD_Icc'' convex_on_subset[OF convex] connected_contains_Icc) auto |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2699 |
hence "f y - f c \<le> (f x - f c) * ((c - y) / (c - x))" by simp |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2700 |
also have "(c - y) / (c - x) = (y - c) / (x - c)" using y xc by (simp add: field_simps) |
61649
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents:
61560
diff
changeset
|
2701 |
finally show "(f y - f c) / (y - c) \<ge> (f x - f c) / (x - c)" using y xc |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2702 |
by (simp add: divide_simps) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2703 |
qed |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2704 |
hence "eventually (\<lambda>y. (f y - f c) / (y - c) \<ge> (f x - f c) / (x - c)) (at c within ?A')" |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2705 |
by (blast intro: filter_leD at_le) |
63952
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
paulson <lp15@cam.ac.uk>
parents:
63938
diff
changeset
|
2706 |
ultimately have "f' \<ge> (f x - f c) / (x - c)" by (simp add: tendsto_lowerbound) |
61531
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2707 |
thus ?thesis using xc by (simp add: field_simps) |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2708 |
qed simp_all |
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents:
61524
diff
changeset
|
2709 |
|
62207 | 2710 |
|
2711 |
subsection \<open>Partial derivatives\<close> |
|
2712 |
||
2713 |
lemma eventually_at_Pair_within_TimesI1: |
|
2714 |
fixes x::"'a::metric_space" |
|
2715 |
assumes "\<forall>\<^sub>F x' in at x within X. P x'" |
|
2716 |
assumes "P x" |
|
2717 |
shows "\<forall>\<^sub>F (x', y') in at (x, y) within X \<times> Y. P x'" |
|
2718 |
proof - |
|
2719 |
from assms[unfolded eventually_at_topological] |
|
2720 |
obtain S where S: "open S" "x \<in> S" "\<And>x'. x' \<in> X \<Longrightarrow> x' \<in> S \<Longrightarrow> P x'" |
|
2721 |
by metis |
|
2722 |
show "\<forall>\<^sub>F (x', y') in at (x, y) within X \<times> Y. P x'" |
|
2723 |
unfolding eventually_at_topological |
|
2724 |
by (auto intro!: exI[where x="S \<times> UNIV"] S open_Times) |
|
2725 |
qed |
|
2726 |
||
2727 |
lemma eventually_at_Pair_within_TimesI2: |
|
2728 |
fixes x::"'a::metric_space" |
|
2729 |
assumes "\<forall>\<^sub>F y' in at y within Y. P y'" |
|
2730 |
assumes "P y" |
|
2731 |
shows "\<forall>\<^sub>F (x', y') in at (x, y) within X \<times> Y. P y'" |
|
2732 |
proof - |
|
2733 |
from assms[unfolded eventually_at_topological] |
|
2734 |
obtain S where S: "open S" "y \<in> S" "\<And>y'. y' \<in> Y \<Longrightarrow> y' \<in> S \<Longrightarrow> P y'" |
|
2735 |
by metis |
|
2736 |
show "\<forall>\<^sub>F (x', y') in at (x, y) within X \<times> Y. P y'" |
|
2737 |
unfolding eventually_at_topological |
|
2738 |
by (auto intro!: exI[where x="UNIV \<times> S"] S open_Times) |
|
2739 |
qed |
|
2740 |
||
2741 |
lemma has_derivative_partialsI: |
|
2742 |
assumes fx: "\<And>x y. x \<in> X \<Longrightarrow> y \<in> Y \<Longrightarrow> ((\<lambda>x. f x y) has_derivative blinfun_apply (fx x y)) (at x within X)" |
|
2743 |
assumes fy: "\<And>x y. x \<in> X \<Longrightarrow> y \<in> Y \<Longrightarrow> ((\<lambda>y. f x y) has_derivative blinfun_apply (fy x y)) (at y within Y)" |
|
2744 |
assumes fx_cont: "continuous_on (X \<times> Y) (\<lambda>(x, y). fx x y)" |
|
2745 |
assumes fy_cont: "continuous_on (X \<times> Y) (\<lambda>(x, y). fy x y)" |
|
2746 |
assumes "x \<in> X" "y \<in> Y" |
|
2747 |
assumes "convex X" "convex Y" |
|
2748 |
shows "((\<lambda>(x, y). f x y) has_derivative (\<lambda>(tx, ty). fx x y tx + fy x y ty)) (at (x, y) within X \<times> Y)" |
|
2749 |
proof (safe intro!: has_derivativeI tendstoI, goal_cases) |
|
2750 |
case (2 e') |
|
63040 | 2751 |
define e where "e = e' / 9" |
62207 | 2752 |
have "e > 0" using \<open>e' > 0\<close> by (simp add: e_def) |
2753 |
||
2754 |
have "(x, y) \<in> X \<times> Y" using assms by auto |
|
2755 |
from fy_cont[unfolded continuous_on_eq_continuous_within, rule_format, OF this, |
|
2756 |
unfolded continuous_within, THEN tendstoD, OF \<open>e > 0\<close>] |
|
2757 |
have "\<forall>\<^sub>F (x', y') in at (x, y) within X \<times> Y. dist (fy x' y') (fy x y) < e" |
|
2758 |
by (auto simp: split_beta') |
|
2759 |
from this[unfolded eventually_at] obtain d' where |
|
2760 |
"d' > 0" |
|
2761 |
"\<And>x' y'. x' \<in> X \<Longrightarrow> y' \<in> Y \<Longrightarrow> (x', y') \<noteq> (x, y) \<Longrightarrow> dist (x', y') (x, y) < d' \<Longrightarrow> |
|
2762 |
dist (fy x' y') (fy x y) < e" |
|
2763 |
by auto |
|
2764 |
then |
|
2765 |
have d': "x' \<in> X \<Longrightarrow> y' \<in> Y \<Longrightarrow> dist (x', y') (x, y) < d' \<Longrightarrow> dist (fy x' y') (fy x y) < e" |
|
2766 |
for x' y' |
|
2767 |
using \<open>0 < e\<close> |
|
2768 |
by (cases "(x', y') = (x, y)") auto |
|
63040 | 2769 |
define d where "d = d' / sqrt 2" |
62207 | 2770 |
have "d > 0" using \<open>0 < d'\<close> by (simp add: d_def) |
2771 |
have d: "x' \<in> X \<Longrightarrow> y' \<in> Y \<Longrightarrow> dist x' x < d \<Longrightarrow> dist y' y < d \<Longrightarrow> dist (fy x' y') (fy x y) < e" |
|
2772 |
for x' y' |
|
2773 |
by (auto simp: dist_prod_def d_def intro!: d' real_sqrt_sum_squares_less) |
|
2774 |
||
2775 |
let ?S = "ball y d \<inter> Y" |
|
2776 |
have "convex ?S" |
|
2777 |
by (auto intro!: convex_Int \<open>convex Y\<close>) |
|
2778 |
{ |
|
2779 |
fix x'::'a and y'::'b |
|
2780 |
assume x': "x' \<in> X" and y': "y' \<in> Y" |
|
2781 |
assume dx': "dist x' x < d" and dy': "dist y' y < d" |
|
2782 |
have "norm (fy x' y' - fy x' y) \<le> dist (fy x' y') (fy x y) + dist (fy x' y) (fy x y)" |
|
2783 |
by norm |
|
2784 |
also have "dist (fy x' y') (fy x y) < e" |
|
2785 |
by (rule d; fact) |
|
2786 |
also have "dist (fy x' y) (fy x y) < e" |
|
2787 |
by (auto intro!: d simp: dist_prod_def x' \<open>d > 0\<close> \<open>y \<in> Y\<close> dx') |
|
2788 |
finally |
|
2789 |
have "norm (fy x' y' - fy x' y) < e + e" |
|
2790 |
by arith |
|
2791 |
then have "onorm (blinfun_apply (fy x' y') - blinfun_apply (fy x' y)) < e + e" |
|
2792 |
by (auto simp: norm_blinfun.rep_eq blinfun.diff_left[abs_def] fun_diff_def) |
|
2793 |
} note onorm = this |
|
2794 |
||
2795 |
have ev_mem: "\<forall>\<^sub>F (x', y') in at (x, y) within X \<times> Y. (x', y') \<in> X \<times> Y" |
|
2796 |
using \<open>x \<in> X\<close> \<open>y \<in> Y\<close> |
|
2797 |
by (auto simp: eventually_at intro!: zero_less_one) |
|
2798 |
moreover |
|
2799 |
have ev_dist: "\<forall>\<^sub>F xy in at (x, y) within X \<times> Y. dist xy (x, y) < d" if "d > 0" for d |
|
2800 |
using eventually_at_ball[OF that] |
|
2801 |
by (rule eventually_elim2) (auto simp: dist_commute intro!: eventually_True) |
|
2802 |
note ev_dist[OF \<open>0 < d\<close>] |
|
2803 |
ultimately |
|
2804 |
have "\<forall>\<^sub>F (x', y') in at (x, y) within X \<times> Y. |
|
2805 |
norm (f x' y' - f x' y - (fy x' y) (y' - y)) \<le> norm (y' - y) * (e + e)" |
|
2806 |
proof (eventually_elim, safe) |
|
2807 |
fix x' y' |
|
2808 |
assume "x' \<in> X" and y': "y' \<in> Y" |
|
2809 |
assume dist: "dist (x', y') (x, y) < d" |
|
2810 |
then have dx: "dist x' x < d" and dy: "dist y' y < d" |
|
2811 |
unfolding dist_prod_def fst_conv snd_conv atomize_conj |
|
2812 |
by (metis le_less_trans real_sqrt_sum_squares_ge1 real_sqrt_sum_squares_ge2) |
|
2813 |
{ |
|
2814 |
fix t::real |
|
2815 |
assume "t \<in> {0 .. 1}" |
|
2816 |
then have "y + t *\<^sub>R (y' - y) \<in> closed_segment y y'" |
|
2817 |
by (auto simp: closed_segment_def algebra_simps intro!: exI[where x=t]) |
|
2818 |
also |
|
2819 |
have "\<dots> \<subseteq> ball y d \<inter> Y" |
|
2820 |
using \<open>y \<in> Y\<close> \<open>0 < d\<close> dy y' |
|
2821 |
by (intro \<open>convex ?S\<close>[unfolded convex_contains_segment, rule_format, of y y']) |
|
2822 |
(auto simp: dist_commute) |
|
2823 |
finally have "y + t *\<^sub>R (y' - y) \<in> ?S" . |
|
2824 |
} note seg = this |
|
2825 |
||
2826 |
have "\<forall>x\<in>ball y d \<inter> Y. onorm (blinfun_apply (fy x' x) - blinfun_apply (fy x' y)) \<le> e + e" |
|
2827 |
by (safe intro!: onorm less_imp_le \<open>x' \<in> X\<close> dx) (auto simp: dist_commute \<open>0 < d\<close> \<open>y \<in> Y\<close>) |
|
2828 |
with seg has_derivative_within_subset[OF assms(2)[OF \<open>x' \<in> X\<close>]] |
|
2829 |
show "norm (f x' y' - f x' y - (fy x' y) (y' - y)) \<le> norm (y' - y) * (e + e)" |
|
2830 |
by (rule differentiable_bound_linearization[where S="?S"]) |
|
2831 |
(auto intro!: \<open>0 < d\<close> \<open>y \<in> Y\<close>) |
|
2832 |
qed |
|
2833 |
moreover |
|
2834 |
let ?le = "\<lambda>x'. norm (f x' y - f x y - (fx x y) (x' - x)) \<le> norm (x' - x) * e" |
|
2835 |
from fx[OF \<open>x \<in> X\<close> \<open>y \<in> Y\<close>, unfolded has_derivative_within, THEN conjunct2, THEN tendstoD, OF \<open>0 < e\<close>] |
|
2836 |
have "\<forall>\<^sub>F x' in at x within X. ?le x'" |
|
2837 |
by eventually_elim |
|
62390 | 2838 |
(auto simp: dist_norm divide_simps blinfun.bilinear_simps field_simps split: if_split_asm) |
62207 | 2839 |
then have "\<forall>\<^sub>F (x', y') in at (x, y) within X \<times> Y. ?le x'" |
2840 |
by (rule eventually_at_Pair_within_TimesI1) |
|
2841 |
(simp add: blinfun.bilinear_simps) |
|
2842 |
moreover have "\<forall>\<^sub>F (x', y') in at (x, y) within X \<times> Y. norm ((x', y') - (x, y)) \<noteq> 0" |
|
2843 |
unfolding norm_eq_zero right_minus_eq |
|
2844 |
by (auto simp: eventually_at intro!: zero_less_one) |
|
2845 |
moreover |
|
2846 |
from fy_cont[unfolded continuous_on_eq_continuous_within, rule_format, OF SigmaI[OF \<open>x \<in> X\<close> \<open>y \<in> Y\<close>], |
|
2847 |
unfolded continuous_within, THEN tendstoD, OF \<open>0 < e\<close>] |
|
2848 |
have "\<forall>\<^sub>F x' in at x within X. norm (fy x' y - fy x y) < e" |
|
2849 |
unfolding eventually_at |
|
2850 |
using \<open>y \<in> Y\<close> |
|
2851 |
by (auto simp: dist_prod_def dist_norm) |
|
2852 |
then have "\<forall>\<^sub>F (x', y') in at (x, y) within X \<times> Y. norm (fy x' y - fy x y) < e" |
|
2853 |
by (rule eventually_at_Pair_within_TimesI1) |
|
2854 |
(simp add: blinfun.bilinear_simps \<open>0 < e\<close>) |
|
2855 |
ultimately |
|
2856 |
have "\<forall>\<^sub>F (x', y') in at (x, y) within X \<times> Y. |
|
2857 |
norm ((f x' y' - f x y - (fx x y (x' - x) + fy x y (y' - y))) /\<^sub>R |
|
2858 |
norm ((x', y') - (x, y))) |
|
2859 |
< e'" |
|
2860 |
apply eventually_elim |
|
2861 |
proof safe |
|
2862 |
fix x' y' |
|
2863 |
have "norm (f x' y' - f x y - (fx x y (x' - x) + fy x y (y' - y))) \<le> |
|
2864 |
norm (f x' y' - f x' y - fy x' y (y' - y)) + |
|
2865 |
norm (fy x y (y' - y) - fy x' y (y' - y)) + |
|
2866 |
norm (f x' y - f x y - fx x y (x' - x))" |
|
2867 |
by norm |
|
2868 |
also |
|
2869 |
assume nz: "norm ((x', y') - (x, y)) \<noteq> 0" |
|
2870 |
and nfy: "norm (fy x' y - fy x y) < e" |
|
2871 |
assume "norm (f x' y' - f x' y - blinfun_apply (fy x' y) (y' - y)) \<le> norm (y' - y) * (e + e)" |
|
2872 |
also assume "norm (f x' y - f x y - blinfun_apply (fx x y) (x' - x)) \<le> norm (x' - x) * e" |
|
2873 |
also |
|
2874 |
have "norm ((fy x y) (y' - y) - (fy x' y) (y' - y)) \<le> norm ((fy x y) - (fy x' y)) * norm (y' - y)" |
|
2875 |
by (auto simp: blinfun.bilinear_simps[symmetric] intro!: norm_blinfun) |
|
2876 |
also have "\<dots> \<le> (e + e) * norm (y' - y)" |
|
2877 |
using \<open>e > 0\<close> nfy |
|
2878 |
by (auto simp: norm_minus_commute intro!: mult_right_mono) |
|
2879 |
also have "norm (x' - x) * e \<le> norm (x' - x) * (e + e)" |
|
2880 |
using \<open>0 < e\<close> by simp |
|
2881 |
also have "norm (y' - y) * (e + e) + (e + e) * norm (y' - y) + norm (x' - x) * (e + e) \<le> |
|
2882 |
(norm (y' - y) + norm (x' - x)) * (4 * e)" |
|
2883 |
using \<open>e > 0\<close> |
|
2884 |
by (simp add: algebra_simps) |
|
2885 |
also have "\<dots> \<le> 2 * norm ((x', y') - (x, y)) * (4 * e)" |
|
2886 |
using \<open>0 < e\<close> real_sqrt_sum_squares_ge1[of "norm (x' - x)" "norm (y' - y)"] |
|
2887 |
real_sqrt_sum_squares_ge2[of "norm (y' - y)" "norm (x' - x)"] |
|
2888 |
by (auto intro!: mult_right_mono simp: norm_prod_def |
|
2889 |
simp del: real_sqrt_sum_squares_ge1 real_sqrt_sum_squares_ge2) |
|
2890 |
also have "\<dots> \<le> norm ((x', y') - (x, y)) * (8 * e)" |
|
2891 |
by simp |
|
2892 |
also have "\<dots> < norm ((x', y') - (x, y)) * e'" |
|
2893 |
using \<open>0 < e'\<close> nz |
|
2894 |
by (auto simp: e_def) |
|
2895 |
finally show "norm ((f x' y' - f x y - (fx x y (x' - x) + fy x y (y' - y))) /\<^sub>R norm ((x', y') - (x, y))) < e'" |
|
2896 |
by (auto simp: divide_simps dist_norm mult.commute) |
|
2897 |
qed |
|
2898 |
then show ?case |
|
2899 |
by eventually_elim (auto simp: dist_norm field_simps) |
|
2900 |
qed (auto intro!: bounded_linear_intros simp: split_beta') |
|
2901 |
||
33741
4c414d0835ab
Added derivation and Brouwer's fixpoint theorem in Multivariate Analysis (translated by Robert Himmelmann from HOL-light)
hoelzl
parents:
diff
changeset
|
2902 |
end |