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