| author | wenzelm | 
| Wed, 17 Oct 2018 21:36:57 +0200 | |
| changeset 69149 | 8c501c406d24 | 
| parent 69111 | a3efc22181a8 | 
| child 69216 | 1a52baa70aed | 
| permissions | -rw-r--r-- | 
| 63558 | 1 | (* Title: HOL/Deriv.thy | 
| 2 | Author: Jacques D. Fleuriot, University of Cambridge, 1998 | |
| 3 | Author: Brian Huffman | |
| 4 | Author: Lawrence C Paulson, 2004 | |
| 5 | Author: Benjamin Porter, 2005 | |
| 21164 | 6 | *) | 
| 7 | ||
| 63558 | 8 | section \<open>Differentiation\<close> | 
| 21164 | 9 | |
| 10 | theory Deriv | |
| 63558 | 11 | imports Limits | 
| 21164 | 12 | begin | 
| 13 | ||
| 60758 | 14 | subsection \<open>Frechet derivative\<close> | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 15 | |
| 63558 | 16 | definition has_derivative :: "('a::real_normed_vector \<Rightarrow> 'b::real_normed_vector) \<Rightarrow>
 | 
| 17 |     ('a \<Rightarrow> 'b) \<Rightarrow> 'a filter \<Rightarrow> bool"  (infix "(has'_derivative)" 50)
 | |
| 18 | where "(f has_derivative f') F \<longleftrightarrow> | |
| 19 | bounded_linear f' \<and> | |
| 20 | ((\<lambda>y. ((f y - f (Lim F (\<lambda>x. x))) - f' (y - Lim F (\<lambda>x. x))) /\<^sub>R norm (y - Lim F (\<lambda>x. x))) \<longlongrightarrow> 0) F" | |
| 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: 
51641diff
changeset | 21 | |
| 60758 | 22 | text \<open> | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 23 |   Usually the filter @{term F} is @{term "at x within s"}.  @{term "(f has_derivative D)
 | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 24 |   (at x within s)"} means: @{term D} is the derivative of function @{term f} at point @{term x}
 | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 25 |   within the set @{term s}. Where @{term s} is used to express left or right sided derivatives. In
 | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 26 |   most cases @{term s} is either a variable or @{term UNIV}.
 | 
| 60758 | 27 | \<close> | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 28 | |
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 29 | text \<open>These are the only cases we'll care about, probably.\<close> | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 30 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 31 | lemma has_derivative_within: "(f has_derivative f') (at x within s) \<longleftrightarrow> | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 32 | bounded_linear f' \<and> ((\<lambda>y. (1 / norm(y - x)) *\<^sub>R (f y - (f x + f' (y - x)))) \<longlongrightarrow> 0) (at x within s)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 33 | unfolding has_derivative_def tendsto_iff | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 34 | by (subst eventually_Lim_ident_at) (auto simp add: field_simps) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 35 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 36 | lemma has_derivative_eq_rhs: "(f has_derivative f') F \<Longrightarrow> f' = g' \<Longrightarrow> (f has_derivative g') F" | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 37 | by simp | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 38 | |
| 63558 | 39 | definition has_field_derivative :: "('a::real_normed_field \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'a filter \<Rightarrow> bool"
 | 
| 40 | (infix "(has'_field'_derivative)" 50) | |
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
69022diff
changeset | 41 | where "(f has_field_derivative D) F \<longleftrightarrow> (f has_derivative (*) D) F" | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 42 | |
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 43 | lemma DERIV_cong: "(f has_field_derivative X) F \<Longrightarrow> X = Y \<Longrightarrow> (f has_field_derivative Y) F" | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 44 | by simp | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 45 | |
| 63558 | 46 | definition has_vector_derivative :: "(real \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'b \<Rightarrow> real filter \<Rightarrow> bool" | 
| 47 | (infix "has'_vector'_derivative" 50) | |
| 48 | where "(f has_vector_derivative f') net \<longleftrightarrow> (f has_derivative (\<lambda>x. x *\<^sub>R f')) net" | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 49 | |
| 63558 | 50 | lemma has_vector_derivative_eq_rhs: | 
| 51 | "(f has_vector_derivative X) F \<Longrightarrow> X = Y \<Longrightarrow> (f has_vector_derivative Y) F" | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 52 | by simp | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 53 | |
| 57953 | 54 | named_theorems derivative_intros "structural introduction rules for derivatives" | 
| 60758 | 55 | setup \<open> | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 56 | let | 
| 57953 | 57 |     val eq_thms = @{thms has_derivative_eq_rhs DERIV_cong has_vector_derivative_eq_rhs}
 | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 58 | fun eq_rule thm = get_first (try (fn eq_thm => eq_thm OF [thm])) eq_thms | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 59 | in | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 60 | Global_Theory.add_thms_dynamic | 
| 67149 | 61 | (\<^binding>\<open>derivative_eq_intros\<close>, | 
| 57953 | 62 | fn context => | 
| 63 |           Named_Theorems.get (Context.proof_of context) @{named_theorems derivative_intros}
 | |
| 64 | |> map_filter eq_rule) | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 65 | end; | 
| 60758 | 66 | \<close> | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 67 | |
| 60758 | 68 | text \<open> | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 69 | The following syntax is only used as a legacy syntax. | 
| 60758 | 70 | \<close> | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 71 | abbreviation (input) | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 72 |   FDERIV :: "('a::real_normed_vector \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a \<Rightarrow>  ('a \<Rightarrow> 'b) \<Rightarrow> bool"
 | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 73 |   ("(FDERIV (_)/ (_)/ :> (_))" [1000, 1000, 60] 60)
 | 
| 63558 | 74 | where "FDERIV f x :> f' \<equiv> (f has_derivative f') (at x)" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 75 | |
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 76 | lemma has_derivative_bounded_linear: "(f has_derivative f') F \<Longrightarrow> bounded_linear f'" | 
| 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: 
51641diff
changeset | 77 | by (simp add: has_derivative_def) | 
| 
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: 
51641diff
changeset | 78 | |
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56289diff
changeset | 79 | lemma has_derivative_linear: "(f has_derivative f') F \<Longrightarrow> linear f'" | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56289diff
changeset | 80 | using bounded_linear.linear[OF has_derivative_bounded_linear] . | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56289diff
changeset | 81 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 82 | lemma has_derivative_ident[derivative_intros, simp]: "((\<lambda>x. x) has_derivative (\<lambda>x. x)) F" | 
| 58729 
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
 hoelzl parents: 
57953diff
changeset | 83 | by (simp add: has_derivative_def) | 
| 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: 
51641diff
changeset | 84 | |
| 63469 
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
 paulson <lp15@cam.ac.uk> parents: 
63299diff
changeset | 85 | lemma has_derivative_id [derivative_intros, simp]: "(id has_derivative id) (at a)" | 
| 
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
 paulson <lp15@cam.ac.uk> parents: 
63299diff
changeset | 86 | by (metis eq_id_iff has_derivative_ident) | 
| 
b6900858dcb9
lots of new theorems about differentiable_on, retracts, ANRs, etc.
 paulson <lp15@cam.ac.uk> parents: 
63299diff
changeset | 87 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 88 | lemma has_derivative_const[derivative_intros, simp]: "((\<lambda>x. c) has_derivative (\<lambda>x. 0)) F" | 
| 58729 
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
 hoelzl parents: 
57953diff
changeset | 89 | by (simp add: has_derivative_def) | 
| 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: 
51641diff
changeset | 90 | |
| 
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: 
51641diff
changeset | 91 | lemma (in bounded_linear) bounded_linear: "bounded_linear f" .. | 
| 
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: 
51641diff
changeset | 92 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 93 | lemma (in bounded_linear) has_derivative: | 
| 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: 
51641diff
changeset | 94 | "(g has_derivative g') F \<Longrightarrow> ((\<lambda>x. f (g x)) has_derivative (\<lambda>x. f (g' x))) F" | 
| 63092 | 95 | unfolding has_derivative_def | 
| 68634 | 96 | by (auto simp add: bounded_linear_compose [OF bounded_linear] scaleR diff dest: tendsto) | 
| 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: 
51641diff
changeset | 97 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 98 | lemmas has_derivative_scaleR_right [derivative_intros] = | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 99 | bounded_linear.has_derivative [OF bounded_linear_scaleR_right] | 
| 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: 
51641diff
changeset | 100 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 101 | lemmas has_derivative_scaleR_left [derivative_intros] = | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 102 | bounded_linear.has_derivative [OF bounded_linear_scaleR_left] | 
| 51642 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 103 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 104 | lemmas has_derivative_mult_right [derivative_intros] = | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 105 | bounded_linear.has_derivative [OF bounded_linear_mult_right] | 
| 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: 
51641diff
changeset | 106 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 107 | lemmas has_derivative_mult_left [derivative_intros] = | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 108 | bounded_linear.has_derivative [OF bounded_linear_mult_left] | 
| 51642 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 109 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 110 | lemma has_derivative_add[simp, derivative_intros]: | 
| 63558 | 111 | assumes f: "(f has_derivative f') F" | 
| 112 | and g: "(g has_derivative g') F" | |
| 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: 
51641diff
changeset | 113 | shows "((\<lambda>x. f x + g x) has_derivative (\<lambda>x. f' x + g' x)) F" | 
| 
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: 
51641diff
changeset | 114 | unfolding has_derivative_def | 
| 
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: 
51641diff
changeset | 115 | proof safe | 
| 
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: 
51641diff
changeset | 116 | let ?x = "Lim F (\<lambda>x. x)" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 117 | let ?D = "\<lambda>f f' y. ((f y - f ?x) - f' (y - ?x)) /\<^sub>R norm (y - ?x)" | 
| 61973 | 118 | have "((\<lambda>x. ?D f f' x + ?D g g' x) \<longlongrightarrow> (0 + 0)) F" | 
| 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: 
51641diff
changeset | 119 | using f g by (intro tendsto_add) (auto simp: has_derivative_def) | 
| 61973 | 120 | then show "(?D (\<lambda>x. f x + g x) (\<lambda>x. f' x + g' x) \<longlongrightarrow> 0) F" | 
| 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: 
51641diff
changeset | 121 | by (simp add: field_simps scaleR_add_right scaleR_diff_right) | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 122 | qed (blast intro: bounded_linear_add f g has_derivative_bounded_linear) | 
| 51642 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 123 | |
| 64267 | 124 | lemma has_derivative_sum[simp, derivative_intros]: | 
| 63915 | 125 | "(\<And>i. i \<in> I \<Longrightarrow> (f i has_derivative f' i) F) \<Longrightarrow> | 
| 126 | ((\<lambda>x. \<Sum>i\<in>I. f i x) has_derivative (\<lambda>x. \<Sum>i\<in>I. f' i x)) F" | |
| 127 | by (induct I rule: infinite_finite_induct) simp_all | |
| 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: 
51641diff
changeset | 128 | |
| 63558 | 129 | lemma has_derivative_minus[simp, derivative_intros]: | 
| 130 | "(f has_derivative f') F \<Longrightarrow> ((\<lambda>x. - f x) has_derivative (\<lambda>x. - f' x)) F" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 131 | using has_derivative_scaleR_right[of f f' F "-1"] by simp | 
| 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: 
51641diff
changeset | 132 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 133 | lemma has_derivative_diff[simp, derivative_intros]: | 
| 63558 | 134 | "(f has_derivative f') F \<Longrightarrow> (g has_derivative g') F \<Longrightarrow> | 
| 135 | ((\<lambda>x. f x - g x) has_derivative (\<lambda>x. f' x - g' x)) F" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 136 | by (simp only: diff_conv_add_uminus has_derivative_add has_derivative_minus) | 
| 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: 
51641diff
changeset | 137 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 138 | lemma has_derivative_at_within: | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 139 | "(f has_derivative f') (at x within s) \<longleftrightarrow> | 
| 61973 | 140 | (bounded_linear f' \<and> ((\<lambda>y. ((f y - f x) - f' (y - x)) /\<^sub>R norm (y - x)) \<longlongrightarrow> 0) (at x within s))" | 
| 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: 
51641diff
changeset | 141 | by (cases "at x within s = bot") (simp_all add: has_derivative_def Lim_ident_at) | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 142 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 143 | lemma has_derivative_iff_norm: | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 144 | "(f has_derivative f') (at x within s) \<longleftrightarrow> | 
| 63558 | 145 | bounded_linear f' \<and> ((\<lambda>y. norm ((f y - f x) - f' (y - x)) / norm (y - x)) \<longlongrightarrow> 0) (at x within s)" | 
| 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: 
51641diff
changeset | 146 | using tendsto_norm_zero_iff[of _ "at x within s", where 'b="'b", symmetric] | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 147 | by (simp add: has_derivative_at_within divide_inverse ac_simps) | 
| 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: 
51641diff
changeset | 148 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 149 | lemma has_derivative_at: | 
| 63558 | 150 | "(f has_derivative D) (at x) \<longleftrightarrow> | 
| 151 | (bounded_linear D \<and> (\<lambda>h. norm (f (x + h) - f x - D h) / norm h) \<midarrow>0\<rightarrow> 0)" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 152 | unfolding has_derivative_iff_norm LIM_offset_zero_iff[of _ _ x] by simp | 
| 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: 
51641diff
changeset | 153 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 154 | lemma field_has_derivative_at: | 
| 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: 
51641diff
changeset | 155 | fixes x :: "'a::real_normed_field" | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
69022diff
changeset | 156 | shows "(f has_derivative (*) D) (at x) \<longleftrightarrow> (\<lambda>h. (f (x + h) - f x) / h) \<midarrow>0\<rightarrow> D" (is "?lhs = ?rhs") | 
| 68634 | 157 | proof - | 
| 158 | have "?lhs = (\<lambda>h. norm (f (x + h) - f x - D * h) / norm h) \<midarrow>0 \<rightarrow> 0" | |
| 159 | by (simp add: bounded_linear_mult_right has_derivative_at) | |
| 160 | also have "... = (\<lambda>y. norm ((f (x + y) - f x - D * y) / y)) \<midarrow>0\<rightarrow> 0" | |
| 161 | by (simp cong: LIM_cong flip: nonzero_norm_divide) | |
| 162 | also have "... = (\<lambda>y. norm ((f (x + y) - f x) / y - D / y * y)) \<midarrow>0\<rightarrow> 0" | |
| 163 | by (simp only: diff_divide_distrib times_divide_eq_left [symmetric]) | |
| 164 | also have "... = ?rhs" | |
| 165 | by (simp add: tendsto_norm_zero_iff LIM_zero_iff cong: LIM_cong) | |
| 166 | finally show ?thesis . | |
| 167 | qed | |
| 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: 
51641diff
changeset | 168 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 169 | lemma has_derivativeI: | 
| 63558 | 170 | "bounded_linear f' \<Longrightarrow> | 
| 171 | ((\<lambda>y. ((f y - f x) - f' (y - x)) /\<^sub>R norm (y - x)) \<longlongrightarrow> 0) (at x within s) \<Longrightarrow> | |
| 172 | (f has_derivative f') (at x within s)" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 173 | by (simp add: has_derivative_at_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: 
51641diff
changeset | 174 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 175 | lemma has_derivativeI_sandwich: | 
| 63558 | 176 | assumes e: "0 < e" | 
| 177 | and bounded: "bounded_linear f'" | |
| 178 | and sandwich: "(\<And>y. y \<in> s \<Longrightarrow> y \<noteq> x \<Longrightarrow> dist y x < e \<Longrightarrow> | |
| 179 | norm ((f y - f x) - f' (y - x)) / norm (y - x) \<le> H y)" | |
| 61973 | 180 | and "(H \<longlongrightarrow> 0) (at x within s)" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 181 | shows "(f has_derivative f') (at x within s)" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 182 | unfolding has_derivative_iff_norm | 
| 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: 
51641diff
changeset | 183 | proof safe | 
| 61973 | 184 | show "((\<lambda>y. norm (f y - f x - f' (y - x)) / norm (y - x)) \<longlongrightarrow> 0) (at x within s)" | 
| 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: 
51641diff
changeset | 185 | proof (rule tendsto_sandwich[where f="\<lambda>x. 0"]) | 
| 61973 | 186 | show "(H \<longlongrightarrow> 0) (at x within s)" by fact | 
| 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: 
51641diff
changeset | 187 | show "eventually (\<lambda>n. norm (f n - f x - f' (n - x)) / norm (n - x) \<le> H n) (at x within s)" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 188 | unfolding eventually_at using e sandwich by auto | 
| 58729 
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
 hoelzl parents: 
57953diff
changeset | 189 | qed (auto simp: le_divide_eq) | 
| 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: 
51641diff
changeset | 190 | qed fact | 
| 
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: 
51641diff
changeset | 191 | |
| 63558 | 192 | lemma has_derivative_subset: | 
| 193 | "(f has_derivative f') (at x within s) \<Longrightarrow> t \<subseteq> s \<Longrightarrow> (f has_derivative f') (at x within t)" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 194 | by (auto simp add: has_derivative_iff_norm intro: tendsto_within_subset) | 
| 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: 
51641diff
changeset | 195 | |
| 63558 | 196 | lemmas has_derivative_within_subset = has_derivative_subset | 
| 56261 | 197 | |
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 198 | lemma has_derivative_within_singleton_iff: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 199 |   "(f has_derivative g) (at x within {x}) \<longleftrightarrow> bounded_linear g"
 | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 200 | by (auto intro!: has_derivativeI_sandwich[where e=1] has_derivative_bounded_linear) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 201 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 202 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 203 | subsubsection \<open>Limit transformation for derivatives\<close> | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 204 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 205 | lemma has_derivative_transform_within: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 206 | assumes "(f has_derivative f') (at x within s)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 207 | and "0 < d" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 208 | and "x \<in> s" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 209 | and "\<And>x'. \<lbrakk>x' \<in> s; dist x' x < d\<rbrakk> \<Longrightarrow> f x' = g x'" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 210 | shows "(g has_derivative f') (at x within s)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 211 | using assms | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 212 | unfolding has_derivative_within | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 213 | by (force simp add: intro: Lim_transform_within) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 214 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 215 | lemma has_derivative_transform_within_open: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 216 | assumes "(f has_derivative f') (at x within t)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 217 | and "open s" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 218 | and "x \<in> s" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 219 | and "\<And>x. x\<in>s \<Longrightarrow> f x = g x" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 220 | shows "(g has_derivative f') (at x within t)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 221 | using assms unfolding has_derivative_within | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 222 | by (force simp add: intro: Lim_transform_within_open) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 223 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 224 | lemma has_derivative_transform: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 225 | assumes "x \<in> s" "\<And>x. x \<in> s \<Longrightarrow> g x = f x" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 226 | assumes "(f has_derivative f') (at x within s)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 227 | shows "(g has_derivative f') (at x within s)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 228 | using assms | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 229 | by (intro has_derivative_transform_within[OF _ zero_less_one, where g=g]) auto | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 230 | |
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 231 | lemma has_derivative_transform_eventually: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 232 | assumes "(f has_derivative f') (at x within s)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 233 | "(\<forall>\<^sub>F x' in at x within s. f x' = g x')" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 234 | assumes "f x = g x" "x \<in> s" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 235 | shows "(g has_derivative f') (at x within s)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 236 | using assms | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 237 | proof - | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 238 | from assms(2,3) obtain d where "d > 0" "\<And>x'. x' \<in> s \<Longrightarrow> dist x' x < d \<Longrightarrow> f x' = g x'" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 239 | by (force simp: eventually_at) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 240 | from has_derivative_transform_within[OF assms(1) this(1) assms(4) this(2)] | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 241 | show ?thesis . | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 242 | qed | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 243 | |
| 56261 | 244 | |
| 60758 | 245 | subsection \<open>Continuity\<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: 
51641diff
changeset | 246 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 247 | lemma has_derivative_continuous: | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 248 | assumes f: "(f has_derivative f') (at x within s)" | 
| 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: 
51641diff
changeset | 249 | shows "continuous (at x within s) f" | 
| 
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: 
51641diff
changeset | 250 | proof - | 
| 63558 | 251 | from f interpret F: bounded_linear f' | 
| 252 | by (rule has_derivative_bounded_linear) | |
| 51642 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 253 | note F.tendsto[tendsto_intros] | 
| 61973 | 254 | let ?L = "\<lambda>f. (f \<longlongrightarrow> 0) (at x within s)" | 
| 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: 
51641diff
changeset | 255 | have "?L (\<lambda>y. norm ((f y - f x) - f' (y - x)) / norm (y - x))" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 256 | using f unfolding has_derivative_iff_norm by blast | 
| 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: 
51641diff
changeset | 257 | then have "?L (\<lambda>y. norm ((f y - f x) - f' (y - x)) / norm (y - x) * norm (y - x))" (is ?m) | 
| 
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: 
51641diff
changeset | 258 | by (rule tendsto_mult_zero) (auto intro!: tendsto_eq_intros) | 
| 
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: 
51641diff
changeset | 259 | also have "?m \<longleftrightarrow> ?L (\<lambda>y. norm ((f y - f x) - f' (y - x)))" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 260 | by (intro filterlim_cong) (simp_all add: eventually_at_filter) | 
| 
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: 
51641diff
changeset | 261 | finally have "?L (\<lambda>y. (f y - f x) - f' (y - x))" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 262 | by (rule tendsto_norm_zero_cancel) | 
| 
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: 
51641diff
changeset | 263 | then have "?L (\<lambda>y. ((f y - f x) - f' (y - x)) + f' (y - x))" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 264 | by (rule tendsto_eq_intros) (auto intro!: tendsto_eq_intros simp: F.zero) | 
| 
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: 
51641diff
changeset | 265 | then have "?L (\<lambda>y. f y - f x)" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 266 | by simp | 
| 
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: 
51641diff
changeset | 267 | from tendsto_add[OF this tendsto_const, of "f x"] show ?thesis | 
| 
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: 
51641diff
changeset | 268 | by (simp add: continuous_within) | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 269 | qed | 
| 
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: 
51641diff
changeset | 270 | |
| 63558 | 271 | |
| 60758 | 272 | subsection \<open>Composition\<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: 
51641diff
changeset | 273 | |
| 63558 | 274 | lemma tendsto_at_iff_tendsto_nhds_within: | 
| 275 | "f x = y \<Longrightarrow> (f \<longlongrightarrow> y) (at x within s) \<longleftrightarrow> (f \<longlongrightarrow> y) (inf (nhds x) (principal s))" | |
| 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: 
51641diff
changeset | 276 | unfolding tendsto_def eventually_inf_principal eventually_at_filter | 
| 61810 | 277 | by (intro ext all_cong imp_cong) (auto elim!: eventually_mono) | 
| 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: 
51641diff
changeset | 278 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 279 | lemma has_derivative_in_compose: | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 280 | assumes f: "(f has_derivative f') (at x within s)" | 
| 63558 | 281 | and g: "(g has_derivative g') (at (f x) within (f`s))" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 282 | shows "((\<lambda>x. g (f x)) has_derivative (\<lambda>x. g' (f' x))) (at x within s)" | 
| 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: 
51641diff
changeset | 283 | proof - | 
| 63558 | 284 | from f interpret F: bounded_linear f' | 
| 285 | by (rule has_derivative_bounded_linear) | |
| 286 | from g interpret G: bounded_linear g' | |
| 287 | by (rule has_derivative_bounded_linear) | |
| 288 | from F.bounded obtain kF where kF: "\<And>x. norm (f' x) \<le> norm x * kF" | |
| 289 | by fast | |
| 290 | from G.bounded obtain kG where kG: "\<And>x. norm (g' x) \<le> norm x * kG" | |
| 291 | by fast | |
| 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: 
51641diff
changeset | 292 | note G.tendsto[tendsto_intros] | 
| 
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: 
51641diff
changeset | 293 | |
| 61973 | 294 | let ?L = "\<lambda>f. (f \<longlongrightarrow> 0) (at x within s)" | 
| 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: 
51641diff
changeset | 295 | let ?D = "\<lambda>f f' x y. (f y - f x) - f' (y - x)" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 296 | let ?N = "\<lambda>f f' x y. norm (?D f f' x y) / norm (y - x)" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 297 | let ?gf = "\<lambda>x. g (f x)" and ?gf' = "\<lambda>x. g' (f' x)" | 
| 63040 | 298 | define Nf where "Nf = ?N f f' x" | 
| 299 | define Ng where [abs_def]: "Ng y = ?N g g' (f x) (f y)" for y | |
| 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: 
51641diff
changeset | 300 | |
| 
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: 
51641diff
changeset | 301 | show ?thesis | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 302 | proof (rule has_derivativeI_sandwich[of 1]) | 
| 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: 
51641diff
changeset | 303 | show "bounded_linear (\<lambda>x. g' (f' x))" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 304 | using f g by (blast intro: bounded_linear_compose has_derivative_bounded_linear) | 
| 51642 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 305 | next | 
| 63558 | 306 | fix y :: 'a | 
| 307 | assume neq: "y \<noteq> x" | |
| 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: 
51641diff
changeset | 308 | have "?N ?gf ?gf' x y = norm (g' (?D f f' x y) + ?D g g' (f x) (f y)) / norm (y - x)" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 309 | by (simp add: G.diff G.add field_simps) | 
| 
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: 
51641diff
changeset | 310 | also have "\<dots> \<le> norm (g' (?D f f' x y)) / norm (y - x) + Ng y * (norm (f y - f x) / norm (y - x))" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 311 | by (simp add: add_divide_distrib[symmetric] divide_right_mono norm_triangle_ineq G.zero Ng_def) | 
| 
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: 
51641diff
changeset | 312 | also have "\<dots> \<le> Nf y * kG + Ng y * (Nf y + kF)" | 
| 
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: 
51641diff
changeset | 313 | proof (intro add_mono mult_left_mono) | 
| 
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: 
51641diff
changeset | 314 | have "norm (f y - f x) = norm (?D f f' x y + f' (y - x))" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 315 | by simp | 
| 
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: 
51641diff
changeset | 316 | also have "\<dots> \<le> norm (?D f f' x y) + norm (f' (y - x))" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 317 | by (rule norm_triangle_ineq) | 
| 
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: 
51641diff
changeset | 318 | also have "\<dots> \<le> norm (?D f f' x y) + norm (y - x) * kF" | 
| 
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: 
51641diff
changeset | 319 | using kF by (intro add_mono) simp | 
| 
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: 
51641diff
changeset | 320 | finally show "norm (f y - f x) / norm (y - x) \<le> Nf y + kF" | 
| 
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: 
51641diff
changeset | 321 | by (simp add: neq Nf_def field_simps) | 
| 63558 | 322 | qed (use kG in \<open>simp_all add: Ng_def Nf_def neq zero_le_divide_iff field_simps\<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: 
51641diff
changeset | 323 | finally show "?N ?gf ?gf' x y \<le> Nf y * kG + Ng y * (Nf y + kF)" . | 
| 
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: 
51641diff
changeset | 324 | next | 
| 
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: 
51641diff
changeset | 325 | have [tendsto_intros]: "?L Nf" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 326 | using f unfolding has_derivative_iff_norm Nf_def .. | 
| 61973 | 327 | from f have "(f \<longlongrightarrow> f x) (at x within s)" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 328 | by (blast intro: has_derivative_continuous continuous_within[THEN iffD1]) | 
| 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: 
51641diff
changeset | 329 | then have f': "LIM x at x within s. f x :> inf (nhds (f x)) (principal (f`s))" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 330 | unfolding filterlim_def | 
| 
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: 
51641diff
changeset | 331 | by (simp add: eventually_filtermap eventually_at_filter le_principal) | 
| 
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: 
51641diff
changeset | 332 | |
| 61973 | 333 | have "((?N g g' (f x)) \<longlongrightarrow> 0) (at (f x) within f`s)" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 334 | using g unfolding has_derivative_iff_norm .. | 
| 61973 | 335 | then have g': "((?N g g' (f x)) \<longlongrightarrow> 0) (inf (nhds (f x)) (principal (f`s)))" | 
| 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: 
51641diff
changeset | 336 | by (rule tendsto_at_iff_tendsto_nhds_within[THEN iffD1, rotated]) simp | 
| 
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: 
51641diff
changeset | 337 | |
| 
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: 
51641diff
changeset | 338 | have [tendsto_intros]: "?L Ng" | 
| 
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: 
51641diff
changeset | 339 | unfolding Ng_def by (rule filterlim_compose[OF g' f']) | 
| 61973 | 340 | show "((\<lambda>y. Nf y * kG + Ng y * (Nf y + kF)) \<longlongrightarrow> 0) (at x within s)" | 
| 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: 
51641diff
changeset | 341 | by (intro tendsto_eq_intros) auto | 
| 
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: 
51641diff
changeset | 342 | qed simp | 
| 
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: 
51641diff
changeset | 343 | qed | 
| 
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: 
51641diff
changeset | 344 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 345 | lemma has_derivative_compose: | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 346 | "(f has_derivative f') (at x within s) \<Longrightarrow> (g has_derivative g') (at (f x)) \<Longrightarrow> | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 347 | ((\<lambda>x. g (f x)) has_derivative (\<lambda>x. g' (f' x))) (at x within s)" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 348 | by (blast intro: has_derivative_in_compose has_derivative_subset) | 
| 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: 
51641diff
changeset | 349 | |
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 350 | lemma has_derivative_in_compose2: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 351 | assumes "\<And>x. x \<in> t \<Longrightarrow> (g has_derivative g' x) (at x within t)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 352 | assumes "f ` s \<subseteq> t" "x \<in> s" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 353 | assumes "(f has_derivative f') (at x within s)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 354 | shows "((\<lambda>x. g (f x)) has_derivative (\<lambda>y. g' (f x) (f' y))) (at x within s)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 355 | using assms | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 356 | by (auto intro: has_derivative_within_subset intro!: has_derivative_in_compose[of f f' x s g]) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 357 | |
| 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: 
51641diff
changeset | 358 | lemma (in bounded_bilinear) FDERIV: | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 359 | assumes f: "(f has_derivative f') (at x within s)" and g: "(g has_derivative g') (at x within s)" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 360 | shows "((\<lambda>x. f x ** g x) has_derivative (\<lambda>h. f x ** g' h + f' h ** g x)) (at x within s)" | 
| 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: 
51641diff
changeset | 361 | proof - | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 362 | from bounded_linear.bounded [OF has_derivative_bounded_linear [OF f]] | 
| 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: 
51641diff
changeset | 363 | obtain KF where norm_F: "\<And>x. norm (f' x) \<le> norm x * KF" by fast | 
| 
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: 
51641diff
changeset | 364 | |
| 63558 | 365 | from pos_bounded obtain K | 
| 366 | where K: "0 < K" and norm_prod: "\<And>a b. norm (a ** b) \<le> norm a * norm b * K" | |
| 367 | by fast | |
| 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: 
51641diff
changeset | 368 | let ?D = "\<lambda>f f' y. f y - f x - f' (y - x)" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 369 | let ?N = "\<lambda>f f' y. norm (?D f f' y) / norm (y - x)" | 
| 63040 | 370 | define Ng where "Ng = ?N g g'" | 
| 371 | define Nf where "Nf = ?N f f'" | |
| 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: 
51641diff
changeset | 372 | |
| 
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: 
51641diff
changeset | 373 | let ?fun1 = "\<lambda>y. norm (f y ** g y - f x ** g x - (f x ** g' (y - x) + f' (y - x) ** g x)) / norm (y - x)" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 374 | let ?fun2 = "\<lambda>y. norm (f x) * Ng y * K + Nf y * norm (g y) * K + KF * norm (g y - g x) * K" | 
| 
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: 
51641diff
changeset | 375 | let ?F = "at x within s" | 
| 21164 | 376 | |
| 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: 
51641diff
changeset | 377 | show ?thesis | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 378 | proof (rule has_derivativeI_sandwich[of 1]) | 
| 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: 
51641diff
changeset | 379 | show "bounded_linear (\<lambda>h. f x ** g' h + f' h ** g x)" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 380 | by (intro bounded_linear_add | 
| 
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: 
51641diff
changeset | 381 | bounded_linear_compose [OF bounded_linear_right] bounded_linear_compose [OF bounded_linear_left] | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 382 | has_derivative_bounded_linear [OF g] has_derivative_bounded_linear [OF f]) | 
| 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: 
51641diff
changeset | 383 | next | 
| 61973 | 384 | from g have "(g \<longlongrightarrow> g x) ?F" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 385 | by (intro continuous_within[THEN iffD1] has_derivative_continuous) | 
| 61973 | 386 | moreover from f g have "(Nf \<longlongrightarrow> 0) ?F" "(Ng \<longlongrightarrow> 0) ?F" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 387 | by (simp_all add: has_derivative_iff_norm Ng_def Nf_def) | 
| 61973 | 388 | ultimately have "(?fun2 \<longlongrightarrow> norm (f x) * 0 * K + 0 * norm (g x) * K + KF * norm (0::'b) * K) ?F" | 
| 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: 
51641diff
changeset | 389 | by (intro tendsto_intros) (simp_all add: LIM_zero_iff) | 
| 61973 | 390 | then show "(?fun2 \<longlongrightarrow> 0) ?F" | 
| 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: 
51641diff
changeset | 391 | by simp | 
| 
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: 
51641diff
changeset | 392 | next | 
| 63558 | 393 | fix y :: 'd | 
| 394 | assume "y \<noteq> x" | |
| 395 | have "?fun1 y = | |
| 396 | norm (f x ** ?D g g' y + ?D f f' y ** g y + f' (y - x) ** (g y - g x)) / norm (y - x)" | |
| 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: 
51641diff
changeset | 397 | by (simp add: diff_left diff_right add_left add_right field_simps) | 
| 
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: 
51641diff
changeset | 398 | also have "\<dots> \<le> (norm (f x) * norm (?D g g' y) * K + norm (?D f f' y) * norm (g y) * K + | 
| 
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: 
51641diff
changeset | 399 | norm (y - x) * KF * norm (g y - g x) * K) / norm (y - x)" | 
| 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 400 | by (intro divide_right_mono mult_mono' | 
| 
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: 
51641diff
changeset | 401 | order_trans [OF norm_triangle_ineq add_mono] | 
| 
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: 
51641diff
changeset | 402 | order_trans [OF norm_prod mult_right_mono] | 
| 
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: 
51641diff
changeset | 403 | mult_nonneg_nonneg order_refl norm_ge_zero norm_F | 
| 
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: 
51641diff
changeset | 404 | K [THEN order_less_imp_le]) | 
| 
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: 
51641diff
changeset | 405 | also have "\<dots> = ?fun2 y" | 
| 
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: 
51641diff
changeset | 406 | by (simp add: add_divide_distrib Ng_def Nf_def) | 
| 
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: 
51641diff
changeset | 407 | finally show "?fun1 y \<le> ?fun2 y" . | 
| 
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: 
51641diff
changeset | 408 | qed simp | 
| 
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: 
51641diff
changeset | 409 | qed | 
| 
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: 
51641diff
changeset | 410 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 411 | lemmas has_derivative_mult[simp, derivative_intros] = bounded_bilinear.FDERIV[OF bounded_bilinear_mult] | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 412 | lemmas has_derivative_scaleR[simp, derivative_intros] = bounded_bilinear.FDERIV[OF bounded_bilinear_scaleR] | 
| 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: 
51641diff
changeset | 413 | |
| 64272 | 414 | lemma has_derivative_prod[simp, derivative_intros]: | 
| 63558 | 415 | fixes f :: "'i \<Rightarrow> 'a::real_normed_vector \<Rightarrow> 'b::real_normed_field" | 
| 68634 | 416 | shows "(\<And>i. i \<in> I \<Longrightarrow> (f i has_derivative f' i) (at x within S)) \<Longrightarrow> | 
| 417 |     ((\<lambda>x. \<Prod>i\<in>I. f i x) has_derivative (\<lambda>y. \<Sum>i\<in>I. f' i y * (\<Prod>j\<in>I - {i}. f j x))) (at x within S)"
 | |
| 63915 | 418 | proof (induct I rule: infinite_finite_induct) | 
| 419 | case infinite | |
| 420 | then show ?case by simp | |
| 421 | next | |
| 422 | case empty | |
| 423 | then show ?case by simp | |
| 63558 | 424 | next | 
| 63915 | 425 | case (insert i I) | 
| 426 |   let ?P = "\<lambda>y. f i x * (\<Sum>i\<in>I. f' i y * (\<Prod>j\<in>I - {i}. f j x)) + (f' i y) * (\<Prod>i\<in>I. f i x)"
 | |
| 68634 | 427 | have "((\<lambda>x. f i x * (\<Prod>i\<in>I. f i x)) has_derivative ?P) (at x within S)" | 
| 63915 | 428 | using insert by (intro has_derivative_mult) auto | 
| 429 |   also have "?P = (\<lambda>y. \<Sum>i'\<in>insert i I. f' i' y * (\<Prod>j\<in>insert i I - {i'}. f j x))"
 | |
| 430 | using insert(1,2) | |
| 64267 | 431 | by (auto simp add: sum_distrib_left insert_Diff_if intro!: ext sum.cong) | 
| 63915 | 432 | finally show ?case | 
| 433 | using insert by simp | |
| 63558 | 434 | qed | 
| 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: 
51641diff
changeset | 435 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 436 | lemma has_derivative_power[simp, derivative_intros]: | 
| 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: 
51641diff
changeset | 437 | fixes f :: "'a :: real_normed_vector \<Rightarrow> 'b :: real_normed_field" | 
| 68634 | 438 | assumes f: "(f has_derivative f') (at x within S)" | 
| 439 | shows "((\<lambda>x. f x^n) has_derivative (\<lambda>y. of_nat n * f' y * f x^(n - 1))) (at x within S)" | |
| 64272 | 440 |   using has_derivative_prod[OF f, of "{..< n}"] by (simp add: prod_constant ac_simps)
 | 
| 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: 
51641diff
changeset | 441 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 442 | lemma has_derivative_inverse': | 
| 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: 
51641diff
changeset | 443 | fixes x :: "'a::real_normed_div_algebra" | 
| 
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: 
51641diff
changeset | 444 | assumes x: "x \<noteq> 0" | 
| 68634 | 445 | shows "(inverse has_derivative (\<lambda>h. - (inverse x * h * inverse x))) (at x within S)" | 
| 446 | (is "(_ has_derivative ?f) _") | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 447 | proof (rule has_derivativeI_sandwich) | 
| 68634 | 448 | show "bounded_linear (\<lambda>h. - (inverse x * h * inverse x))" | 
| 449 | by (simp add: bounded_linear_minus bounded_linear_mult_const bounded_linear_mult_right) | |
| 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: 
51641diff
changeset | 450 | show "0 < norm x" using x by simp | 
| 68634 | 451 | have "(inverse \<longlongrightarrow> inverse x) (at x within S)" | 
| 452 | using tendsto_inverse tendsto_ident_at x by auto | |
| 453 | then show "((\<lambda>y. norm (inverse y - inverse x) * norm (inverse x)) \<longlongrightarrow> 0) (at x within S)" | |
| 454 | by (simp add: LIM_zero_iff tendsto_mult_left_zero tendsto_norm_zero) | |
| 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: 
51641diff
changeset | 455 | next | 
| 63558 | 456 | fix y :: 'a | 
| 457 | assume h: "y \<noteq> x" "dist y x < norm x" | |
| 62397 
5ae24f33d343
Substantial new material for multivariate analysis. Also removal of some duplicates.
 paulson <lp15@cam.ac.uk> parents: 
61976diff
changeset | 458 | then have "y \<noteq> 0" by auto | 
| 68634 | 459 | have "norm (inverse y - inverse x - ?f (y -x)) / norm (y - x) | 
| 460 | = norm (- (inverse y * (y - x) * inverse x - inverse x * (y - x) * inverse x)) / | |
| 461 | norm (y - x)" | |
| 462 | by (simp add: \<open>y \<noteq> 0\<close> inverse_diff_inverse x) | |
| 463 | also have "... = norm ((inverse y - inverse x) * (y - x) * inverse x) / norm (y - x)" | |
| 464 | by (simp add: left_diff_distrib norm_minus_commute) | |
| 465 | also have "\<dots> \<le> norm (inverse y - inverse x) * norm (y - x) * norm (inverse x) / norm (y - x)" | |
| 466 | by (simp add: norm_mult) | |
| 467 | also have "\<dots> = norm (inverse y - inverse x) * norm (inverse x)" | |
| 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: 
51641diff
changeset | 468 | by simp | 
| 68634 | 469 | finally show "norm (inverse y - inverse x - ?f (y -x)) / norm (y - x) \<le> | 
| 470 | norm (inverse y - inverse x) * norm (inverse x)" . | |
| 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: 
51641diff
changeset | 471 | qed | 
| 
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: 
51641diff
changeset | 472 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 473 | lemma has_derivative_inverse[simp, derivative_intros]: | 
| 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: 
51641diff
changeset | 474 | fixes f :: "_ \<Rightarrow> 'a::real_normed_div_algebra" | 
| 63558 | 475 | assumes x: "f x \<noteq> 0" | 
| 68634 | 476 | and f: "(f has_derivative f') (at x within S)" | 
| 63558 | 477 | shows "((\<lambda>x. inverse (f x)) has_derivative (\<lambda>h. - (inverse (f x) * f' h * inverse (f x)))) | 
| 68634 | 478 | (at x within S)" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 479 | using has_derivative_compose[OF f has_derivative_inverse', OF x] . | 
| 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: 
51641diff
changeset | 480 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 481 | lemma has_derivative_divide[simp, derivative_intros]: | 
| 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: 
51641diff
changeset | 482 | fixes f :: "_ \<Rightarrow> 'a::real_normed_div_algebra" | 
| 68634 | 483 | assumes f: "(f has_derivative f') (at x within S)" | 
| 484 | and g: "(g has_derivative g') (at x within S)" | |
| 55967 | 485 | assumes x: "g x \<noteq> 0" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 486 | shows "((\<lambda>x. f x / g x) has_derivative | 
| 68634 | 487 | (\<lambda>h. - f x * (inverse (g x) * g' h * inverse (g x)) + f' h / g x)) (at x within S)" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 488 | using has_derivative_mult[OF f has_derivative_inverse[OF x g]] | 
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 489 | by (simp add: field_simps) | 
| 55967 | 490 | |
| 63558 | 491 | |
| 492 | text \<open>Conventional form requires mult-AC laws. Types real and complex only.\<close> | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 493 | |
| 63558 | 494 | lemma has_derivative_divide'[derivative_intros]: | 
| 55967 | 495 | fixes f :: "_ \<Rightarrow> 'a::real_normed_field" | 
| 68634 | 496 | assumes f: "(f has_derivative f') (at x within S)" | 
| 497 | and g: "(g has_derivative g') (at x within S)" | |
| 63558 | 498 | and x: "g x \<noteq> 0" | 
| 68634 | 499 | shows "((\<lambda>x. f x / g x) has_derivative (\<lambda>h. (f' h * g x - f x * g' h) / (g x * g x))) (at x within S)" | 
| 55967 | 500 | proof - | 
| 63558 | 501 | have "f' h / g x - f x * (inverse (g x) * g' h * inverse (g x)) = | 
| 502 | (f' h * g x - f x * g' h) / (g x * g x)" for h | |
| 503 | by (simp add: field_simps x) | |
| 55967 | 504 | then show ?thesis | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 505 | using has_derivative_divide [OF f g] x | 
| 55967 | 506 | by simp | 
| 507 | qed | |
| 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: 
51641diff
changeset | 508 | |
| 63558 | 509 | |
| 60758 | 510 | subsection \<open>Uniqueness\<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: 
51641diff
changeset | 511 | |
| 60758 | 512 | text \<open> | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 513 | This can not generally shown for @{const has_derivative}, as we need to approach the point from
 | 
| 63627 | 514 | all directions. There is a proof in \<open>Analysis\<close> for \<open>euclidean_space\<close>. | 
| 60758 | 515 | \<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: 
51641diff
changeset | 516 | |
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 517 | lemma has_derivative_at2: "(f has_derivative f') (at x) \<longleftrightarrow> | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 518 | bounded_linear f' \<and> ((\<lambda>y. (1 / (norm(y - x))) *\<^sub>R (f y - (f x + f' (y - x)))) \<longlongrightarrow> 0) (at x)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 519 | using has_derivative_within [of f f' x UNIV] | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 520 | by simp | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 521 | lemma has_derivative_zero_unique: | 
| 63558 | 522 | assumes "((\<lambda>x. 0) has_derivative F) (at x)" | 
| 523 | shows "F = (\<lambda>h. 0)" | |
| 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: 
51641diff
changeset | 524 | proof - | 
| 
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: 
51641diff
changeset | 525 | interpret F: bounded_linear F | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 526 | using assms by (rule has_derivative_bounded_linear) | 
| 51642 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 527 | let ?r = "\<lambda>h. norm (F h) / norm h" | 
| 61976 | 528 | have *: "?r \<midarrow>0\<rightarrow> 0" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 529 | using assms unfolding has_derivative_at by simp | 
| 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: 
51641diff
changeset | 530 | show "F = (\<lambda>h. 0)" | 
| 
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: 
51641diff
changeset | 531 | proof | 
| 63558 | 532 | show "F h = 0" for h | 
| 51642 
400ec5ae7f8f
move FrechetDeriv from the Library to HOL/Deriv; base DERIV on FDERIV and both derivatives allow a restricted support set; FDERIV is now an abbreviation of has_derivative
 hoelzl parents: 
51641diff
changeset | 533 | proof (rule ccontr) | 
| 63558 | 534 | assume **: "\<not> ?thesis" | 
| 535 | then have h: "h \<noteq> 0" | |
| 536 | by (auto simp add: F.zero) | |
| 537 | with ** have "0 < ?r h" | |
| 538 | by simp | |
| 68634 | 539 | from LIM_D [OF * this] obtain S | 
| 540 | where S: "0 < S" and r: "\<And>x. x \<noteq> 0 \<Longrightarrow> norm x < S \<Longrightarrow> ?r x < ?r h" | |
| 63558 | 541 | by auto | 
| 68634 | 542 | from dense [OF S] obtain t where t: "0 < t \<and> t < S" .. | 
| 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: 
51641diff
changeset | 543 | let ?x = "scaleR (t / norm h) h" | 
| 68634 | 544 | have "?x \<noteq> 0" and "norm ?x < S" | 
| 63558 | 545 | using t h by simp_all | 
| 546 | then have "?r ?x < ?r h" | |
| 547 | by (rule r) | |
| 548 | then show False | |
| 549 | using t h by (simp add: F.scaleR) | |
| 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: 
51641diff
changeset | 550 | qed | 
| 
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: 
51641diff
changeset | 551 | qed | 
| 
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: 
51641diff
changeset | 552 | qed | 
| 
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: 
51641diff
changeset | 553 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 554 | lemma has_derivative_unique: | 
| 63558 | 555 | assumes "(f has_derivative F) (at x)" | 
| 556 | and "(f has_derivative F') (at x)" | |
| 557 | shows "F = F'" | |
| 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: 
51641diff
changeset | 558 | proof - | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 559 | have "((\<lambda>x. 0) has_derivative (\<lambda>h. F h - F' h)) (at x)" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 560 | using has_derivative_diff [OF assms] by simp | 
| 63558 | 561 | then have "(\<lambda>h. F h - F' h) = (\<lambda>h. 0)" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 562 | by (rule has_derivative_zero_unique) | 
| 63558 | 563 | then show "F = F'" | 
| 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: 
51641diff
changeset | 564 | unfolding fun_eq_iff right_minus_eq . | 
| 
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: 
51641diff
changeset | 565 | qed | 
| 
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: 
51641diff
changeset | 566 | |
| 63558 | 567 | |
| 60758 | 568 | subsection \<open>Differentiability predicate\<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: 
51641diff
changeset | 569 | |
| 63558 | 570 | definition differentiable :: "('a::real_normed_vector \<Rightarrow> 'b::real_normed_vector) \<Rightarrow> 'a filter \<Rightarrow> bool"
 | 
| 571 | (infix "differentiable" 50) | |
| 572 | where "f differentiable F \<longleftrightarrow> (\<exists>D. (f has_derivative D) F)" | |
| 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: 
51641diff
changeset | 573 | |
| 63558 | 574 | lemma differentiable_subset: | 
| 575 | "f differentiable (at x within s) \<Longrightarrow> t \<subseteq> s \<Longrightarrow> f differentiable (at x within t)" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 576 | unfolding differentiable_def by (blast intro: has_derivative_subset) | 
| 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: 
51641diff
changeset | 577 | |
| 56261 | 578 | lemmas differentiable_within_subset = differentiable_subset | 
| 579 | ||
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 580 | lemma differentiable_ident [simp, derivative_intros]: "(\<lambda>x. x) differentiable F" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 581 | unfolding differentiable_def by (blast intro: has_derivative_ident) | 
| 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: 
51641diff
changeset | 582 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 583 | lemma differentiable_const [simp, derivative_intros]: "(\<lambda>z. a) differentiable F" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 584 | unfolding differentiable_def by (blast intro: has_derivative_const) | 
| 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: 
51641diff
changeset | 585 | |
| 
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: 
51641diff
changeset | 586 | lemma differentiable_in_compose: | 
| 63558 | 587 | "f differentiable (at (g x) within (g`s)) \<Longrightarrow> g differentiable (at x within s) \<Longrightarrow> | 
| 588 | (\<lambda>x. f (g x)) differentiable (at x within s)" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 589 | unfolding differentiable_def by (blast intro: has_derivative_in_compose) | 
| 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: 
51641diff
changeset | 590 | |
| 
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: 
51641diff
changeset | 591 | lemma differentiable_compose: | 
| 63558 | 592 | "f differentiable (at (g x)) \<Longrightarrow> g differentiable (at x within s) \<Longrightarrow> | 
| 593 | (\<lambda>x. f (g x)) differentiable (at x within s)" | |
| 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: 
51641diff
changeset | 594 | by (blast intro: differentiable_in_compose differentiable_subset) | 
| 
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: 
51641diff
changeset | 595 | |
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 596 | lemma differentiable_add [simp, derivative_intros]: | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 597 | "f differentiable F \<Longrightarrow> g differentiable F \<Longrightarrow> (\<lambda>x. f x + g x) differentiable F" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 598 | unfolding differentiable_def by (blast intro: has_derivative_add) | 
| 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: 
51641diff
changeset | 599 | |
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 600 | lemma differentiable_sum[simp, derivative_intros]: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 601 | assumes "finite s" "\<forall>a\<in>s. (f a) differentiable net" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 602 | shows "(\<lambda>x. sum (\<lambda>a. f a x) s) differentiable net" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 603 | proof - | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 604 | from bchoice[OF assms(2)[unfolded differentiable_def]] | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 605 | show ?thesis | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 606 | by (auto intro!: has_derivative_sum simp: differentiable_def) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 607 | qed | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 608 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 609 | lemma differentiable_minus [simp, derivative_intros]: | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 610 | "f differentiable F \<Longrightarrow> (\<lambda>x. - f x) differentiable F" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 611 | unfolding differentiable_def by (blast intro: has_derivative_minus) | 
| 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: 
51641diff
changeset | 612 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 613 | lemma differentiable_diff [simp, derivative_intros]: | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 614 | "f differentiable F \<Longrightarrow> g differentiable F \<Longrightarrow> (\<lambda>x. f x - g x) differentiable F" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 615 | unfolding differentiable_def by (blast intro: has_derivative_diff) | 
| 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: 
51641diff
changeset | 616 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 617 | lemma differentiable_mult [simp, derivative_intros]: | 
| 63558 | 618 | fixes f g :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_algebra" | 
| 619 | shows "f differentiable (at x within s) \<Longrightarrow> g differentiable (at x within s) \<Longrightarrow> | |
| 620 | (\<lambda>x. f x * g x) differentiable (at x within s)" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 621 | unfolding differentiable_def by (blast intro: has_derivative_mult) | 
| 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: 
51641diff
changeset | 622 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 623 | lemma differentiable_inverse [simp, derivative_intros]: | 
| 63558 | 624 | fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_field" | 
| 625 | shows "f differentiable (at x within s) \<Longrightarrow> f x \<noteq> 0 \<Longrightarrow> | |
| 626 | (\<lambda>x. inverse (f x)) differentiable (at x within s)" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 627 | unfolding differentiable_def by (blast intro: has_derivative_inverse) | 
| 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: 
51641diff
changeset | 628 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 629 | lemma differentiable_divide [simp, derivative_intros]: | 
| 63558 | 630 | fixes f g :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_field" | 
| 631 | shows "f differentiable (at x within s) \<Longrightarrow> g differentiable (at x within s) \<Longrightarrow> | |
| 632 | g x \<noteq> 0 \<Longrightarrow> (\<lambda>x. f x / g x) differentiable (at x within s)" | |
| 63092 | 633 | unfolding divide_inverse by simp | 
| 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: 
51641diff
changeset | 634 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 635 | lemma differentiable_power [simp, derivative_intros]: | 
| 63558 | 636 | fixes f g :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_field" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 637 | shows "f differentiable (at x within s) \<Longrightarrow> (\<lambda>x. f x ^ n) differentiable (at x within s)" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 638 | unfolding differentiable_def by (blast intro: has_derivative_power) | 
| 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: 
51641diff
changeset | 639 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 640 | lemma differentiable_scaleR [simp, derivative_intros]: | 
| 63558 | 641 | "f differentiable (at x within s) \<Longrightarrow> g differentiable (at x within s) \<Longrightarrow> | 
| 642 | (\<lambda>x. f x *\<^sub>R g x) differentiable (at x within s)" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 643 | unfolding differentiable_def by (blast intro: has_derivative_scaleR) | 
| 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: 
51641diff
changeset | 644 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 645 | lemma has_derivative_imp_has_field_derivative: | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 646 | "(f has_derivative D) F \<Longrightarrow> (\<And>x. x * D' = D x) \<Longrightarrow> (f has_field_derivative D') F" | 
| 63558 | 647 | unfolding has_field_derivative_def | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
57418diff
changeset | 648 | by (rule has_derivative_eq_rhs[of f D]) (simp_all add: fun_eq_iff mult.commute) | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 649 | |
| 63558 | 650 | lemma has_field_derivative_imp_has_derivative: | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
69022diff
changeset | 651 | "(f has_field_derivative D) F \<Longrightarrow> (f has_derivative (*) D) F" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 652 | by (simp add: has_field_derivative_def) | 
| 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: 
51641diff
changeset | 653 | |
| 63558 | 654 | lemma DERIV_subset: | 
| 655 | "(f has_field_derivative f') (at x within s) \<Longrightarrow> t \<subseteq> s \<Longrightarrow> | |
| 656 | (f has_field_derivative f') (at x within t)" | |
| 56261 | 657 | by (simp add: has_field_derivative_def has_derivative_within_subset) | 
| 658 | ||
| 59862 | 659 | lemma has_field_derivative_at_within: | 
| 63558 | 660 | "(f has_field_derivative f') (at x) \<Longrightarrow> (f has_field_derivative f') (at x within s)" | 
| 59862 | 661 | using DERIV_subset by blast | 
| 662 | ||
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 663 | abbreviation (input) | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 664 |   DERIV :: "('a::real_normed_field \<Rightarrow> 'a) \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> bool"
 | 
| 63558 | 665 |     ("(DERIV (_)/ (_)/ :> (_))" [1000, 1000, 60] 60)
 | 
| 666 | where "DERIV f x :> D \<equiv> (f has_field_derivative D) (at x)" | |
| 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: 
51641diff
changeset | 667 | |
| 63558 | 668 | abbreviation has_real_derivative :: "(real \<Rightarrow> real) \<Rightarrow> real \<Rightarrow> real filter \<Rightarrow> bool" | 
| 669 | (infix "(has'_real'_derivative)" 50) | |
| 670 | where "(f has_real_derivative D) F \<equiv> (f has_field_derivative D) F" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 671 | |
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 672 | lemma real_differentiable_def: | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 673 | "f differentiable at x within s \<longleftrightarrow> (\<exists>D. (f has_real_derivative D) (at x within s))" | 
| 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: 
51641diff
changeset | 674 | proof safe | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 675 | assume "f differentiable at x within s" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 676 | then obtain f' where *: "(f has_derivative f') (at x within s)" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 677 | unfolding differentiable_def by auto | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
69022diff
changeset | 678 | then obtain c where "f' = ((*) c)" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
57418diff
changeset | 679 | by (metis real_bounded_linear has_derivative_bounded_linear mult.commute fun_eq_iff) | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 680 | with * show "\<exists>D. (f has_real_derivative D) (at x within s)" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 681 | unfolding has_field_derivative_def by auto | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 682 | qed (auto simp: differentiable_def has_field_derivative_def) | 
| 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: 
51641diff
changeset | 683 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 684 | lemma real_differentiableE [elim?]: | 
| 63558 | 685 | assumes f: "f differentiable (at x within s)" | 
| 686 | obtains df where "(f has_real_derivative df) (at x within s)" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 687 | using assms by (auto simp: real_differentiable_def) | 
| 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: 
51641diff
changeset | 688 | |
| 63079 | 689 | lemma has_field_derivative_iff: | 
| 690 | "(f has_field_derivative D) (at x within S) \<longleftrightarrow> | |
| 691 | ((\<lambda>y. (f y - f x) / (y - x)) \<longlongrightarrow> D) (at x within S)" | |
| 68634 | 692 | proof - | 
| 693 | have "((\<lambda>y. norm (f y - f x - D * (y - x)) / norm (y - x)) \<longlongrightarrow> 0) (at x within S) | |
| 694 | = ((\<lambda>y. (f y - f x) / (y - x) - D) \<longlongrightarrow> 0) (at x within S)" | |
| 695 | apply (subst tendsto_norm_zero_iff[symmetric], rule filterlim_cong) | |
| 696 | apply (simp_all add: eventually_at_filter field_simps nonzero_norm_divide) | |
| 697 | done | |
| 698 | then show ?thesis | |
| 699 | by (simp add: has_field_derivative_def has_derivative_iff_norm bounded_linear_mult_right LIM_zero_iff) | |
| 700 | qed | |
| 21164 | 701 | |
| 63079 | 702 | lemma DERIV_def: "DERIV f x :> D \<longleftrightarrow> (\<lambda>h. (f (x + h) - f x) / h) \<midarrow>0\<rightarrow> D" | 
| 703 | unfolding field_has_derivative_at has_field_derivative_def has_field_derivative_iff .. | |
| 704 | ||
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
69022diff
changeset | 705 | lemma mult_commute_abs: "(\<lambda>x. x * c) = (*) c" | 
| 63558 | 706 | for c :: "'a::ab_semigroup_mult" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
57418diff
changeset | 707 | by (simp add: fun_eq_iff mult.commute) | 
| 21164 | 708 | |
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 709 | lemma DERIV_compose_FDERIV: | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 710 | fixes f::"real\<Rightarrow>real" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 711 | assumes "DERIV f (g x) :> f'" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 712 | assumes "(g has_derivative g') (at x within s)" | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 713 | shows "((\<lambda>x. f (g x)) has_derivative (\<lambda>x. g' x * f')) (at x within s)" | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
69022diff
changeset | 714 | using assms has_derivative_compose[of g g' x s f "(*) f'"] | 
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 715 | by (auto simp: has_field_derivative_def ac_simps) | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 716 | |
| 63558 | 717 | |
| 60758 | 718 | subsection \<open>Vector derivative\<close> | 
| 60177 | 719 | |
| 720 | lemma has_field_derivative_iff_has_vector_derivative: | |
| 721 | "(f has_field_derivative y) F \<longleftrightarrow> (f has_vector_derivative y) F" | |
| 722 | unfolding has_vector_derivative_def has_field_derivative_def real_scaleR_def mult_commute_abs .. | |
| 723 | ||
| 724 | lemma has_field_derivative_subset: | |
| 63558 | 725 | "(f has_field_derivative y) (at x within s) \<Longrightarrow> t \<subseteq> s \<Longrightarrow> | 
| 726 | (f has_field_derivative y) (at x within t)" | |
| 60177 | 727 | unfolding has_field_derivative_def by (rule has_derivative_subset) | 
| 728 | ||
| 729 | lemma has_vector_derivative_const[simp, derivative_intros]: "((\<lambda>x. c) has_vector_derivative 0) net" | |
| 730 | by (auto simp: has_vector_derivative_def) | |
| 731 | ||
| 732 | lemma has_vector_derivative_id[simp, derivative_intros]: "((\<lambda>x. x) has_vector_derivative 1) net" | |
| 733 | by (auto simp: has_vector_derivative_def) | |
| 734 | ||
| 735 | lemma has_vector_derivative_minus[derivative_intros]: | |
| 736 | "(f has_vector_derivative f') net \<Longrightarrow> ((\<lambda>x. - f x) has_vector_derivative (- f')) net" | |
| 737 | by (auto simp: has_vector_derivative_def) | |
| 738 | ||
| 739 | lemma has_vector_derivative_add[derivative_intros]: | |
| 740 | "(f has_vector_derivative f') net \<Longrightarrow> (g has_vector_derivative g') net \<Longrightarrow> | |
| 741 | ((\<lambda>x. f x + g x) has_vector_derivative (f' + g')) net" | |
| 742 | by (auto simp: has_vector_derivative_def scaleR_right_distrib) | |
| 743 | ||
| 64267 | 744 | lemma has_vector_derivative_sum[derivative_intros]: | 
| 60177 | 745 | "(\<And>i. i \<in> I \<Longrightarrow> (f i has_vector_derivative f' i) net) \<Longrightarrow> | 
| 746 | ((\<lambda>x. \<Sum>i\<in>I. f i x) has_vector_derivative (\<Sum>i\<in>I. f' i)) net" | |
| 64267 | 747 | by (auto simp: has_vector_derivative_def fun_eq_iff scaleR_sum_right intro!: derivative_eq_intros) | 
| 60177 | 748 | |
| 749 | lemma has_vector_derivative_diff[derivative_intros]: | |
| 750 | "(f has_vector_derivative f') net \<Longrightarrow> (g has_vector_derivative g') net \<Longrightarrow> | |
| 751 | ((\<lambda>x. f x - g x) has_vector_derivative (f' - g')) net" | |
| 752 | by (auto simp: has_vector_derivative_def scaleR_diff_right) | |
| 753 | ||
| 61204 | 754 | lemma has_vector_derivative_add_const: | 
| 63558 | 755 | "((\<lambda>t. g t + z) has_vector_derivative f') net = ((\<lambda>t. g t) has_vector_derivative f') net" | 
| 756 | apply (intro iffI) | |
| 68634 | 757 | apply (force dest: has_vector_derivative_diff [where g = "\<lambda>t. z", OF _ has_vector_derivative_const]) | 
| 758 | apply (force dest: has_vector_derivative_add [OF _ has_vector_derivative_const]) | |
| 63558 | 759 | done | 
| 61204 | 760 | |
| 761 | lemma has_vector_derivative_diff_const: | |
| 63558 | 762 | "((\<lambda>t. g t - z) has_vector_derivative f') net = ((\<lambda>t. g t) has_vector_derivative f') net" | 
| 763 | using has_vector_derivative_add_const [where z = "-z"] | |
| 764 | by simp | |
| 61204 | 765 | |
| 60177 | 766 | lemma (in bounded_linear) has_vector_derivative: | 
| 767 | assumes "(g has_vector_derivative g') F" | |
| 768 | shows "((\<lambda>x. f (g x)) has_vector_derivative f g') F" | |
| 769 | using has_derivative[OF assms[unfolded has_vector_derivative_def]] | |
| 770 | by (simp add: has_vector_derivative_def scaleR) | |
| 771 | ||
| 772 | lemma (in bounded_bilinear) has_vector_derivative: | |
| 773 | assumes "(f has_vector_derivative f') (at x within s)" | |
| 774 | and "(g has_vector_derivative g') (at x within s)" | |
| 775 | shows "((\<lambda>x. f x ** g x) has_vector_derivative (f x ** g' + f' ** g x)) (at x within s)" | |
| 776 | using FDERIV[OF assms(1-2)[unfolded has_vector_derivative_def]] | |
| 777 | by (simp add: has_vector_derivative_def scaleR_right scaleR_left scaleR_right_distrib) | |
| 778 | ||
| 779 | lemma has_vector_derivative_scaleR[derivative_intros]: | |
| 780 | "(f has_field_derivative f') (at x within s) \<Longrightarrow> (g has_vector_derivative g') (at x within s) \<Longrightarrow> | |
| 781 | ((\<lambda>x. f x *\<^sub>R g x) has_vector_derivative (f x *\<^sub>R g' + f' *\<^sub>R g x)) (at x within s)" | |
| 782 | unfolding has_field_derivative_iff_has_vector_derivative | |
| 783 | by (rule bounded_bilinear.has_vector_derivative[OF bounded_bilinear_scaleR]) | |
| 784 | ||
| 785 | lemma has_vector_derivative_mult[derivative_intros]: | |
| 786 | "(f has_vector_derivative f') (at x within s) \<Longrightarrow> (g has_vector_derivative g') (at x within s) \<Longrightarrow> | |
| 63558 | 787 | ((\<lambda>x. f x * g x) has_vector_derivative (f x * g' + f' * g x)) (at x within s)" | 
| 788 | for f g :: "real \<Rightarrow> 'a::real_normed_algebra" | |
| 60177 | 789 | by (rule bounded_bilinear.has_vector_derivative[OF bounded_bilinear_mult]) | 
| 790 | ||
| 791 | lemma has_vector_derivative_of_real[derivative_intros]: | |
| 792 | "(f has_field_derivative D) F \<Longrightarrow> ((\<lambda>x. of_real (f x)) has_vector_derivative (of_real D)) F" | |
| 793 | by (rule bounded_linear.has_vector_derivative[OF bounded_linear_of_real]) | |
| 63558 | 794 | (simp add: has_field_derivative_iff_has_vector_derivative) | 
| 60177 | 795 | |
| 63558 | 796 | lemma has_vector_derivative_continuous: | 
| 797 | "(f has_vector_derivative D) (at x within s) \<Longrightarrow> continuous (at x within s) f" | |
| 60177 | 798 | by (auto intro: has_derivative_continuous simp: has_vector_derivative_def) | 
| 799 | ||
| 800 | lemma has_vector_derivative_mult_right[derivative_intros]: | |
| 63558 | 801 | fixes a :: "'a::real_normed_algebra" | 
| 60177 | 802 | shows "(f has_vector_derivative x) F \<Longrightarrow> ((\<lambda>x. a * f x) has_vector_derivative (a * x)) F" | 
| 803 | by (rule bounded_linear.has_vector_derivative[OF bounded_linear_mult_right]) | |
| 804 | ||
| 805 | lemma has_vector_derivative_mult_left[derivative_intros]: | |
| 63558 | 806 | fixes a :: "'a::real_normed_algebra" | 
| 60177 | 807 | shows "(f has_vector_derivative x) F \<Longrightarrow> ((\<lambda>x. f x * a) has_vector_derivative (x * a)) F" | 
| 808 | by (rule bounded_linear.has_vector_derivative[OF bounded_linear_mult_left]) | |
| 809 | ||
| 810 | ||
| 60758 | 811 | subsection \<open>Derivatives\<close> | 
| 21164 | 812 | |
| 61976 | 813 | lemma DERIV_D: "DERIV f x :> D \<Longrightarrow> (\<lambda>h. (f (x + h) - f x) / h) \<midarrow>0\<rightarrow> D" | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 814 | by (simp add: DERIV_def) | 
| 21164 | 815 | |
| 63079 | 816 | lemma has_field_derivativeD: | 
| 817 | "(f has_field_derivative D) (at x within S) \<Longrightarrow> | |
| 818 | ((\<lambda>y. (f y - f x) / (y - x)) \<longlongrightarrow> D) (at x within S)" | |
| 819 | by (simp add: has_field_derivative_iff) | |
| 820 | ||
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 821 | lemma DERIV_const [simp, derivative_intros]: "((\<lambda>x. k) has_field_derivative 0) F" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 822 | by (rule has_derivative_imp_has_field_derivative[OF has_derivative_const]) auto | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 823 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 824 | lemma DERIV_ident [simp, derivative_intros]: "((\<lambda>x. x) has_field_derivative 1) F" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 825 | by (rule has_derivative_imp_has_field_derivative[OF has_derivative_ident]) auto | 
| 21164 | 826 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 827 | lemma field_differentiable_add[derivative_intros]: | 
| 63558 | 828 | "(f has_field_derivative f') F \<Longrightarrow> (g has_field_derivative g') F \<Longrightarrow> | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 829 | ((\<lambda>z. f z + g z) has_field_derivative f' + g') F" | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 830 | by (rule has_derivative_imp_has_field_derivative[OF has_derivative_add]) | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 831 | (auto simp: has_field_derivative_def field_simps mult_commute_abs) | 
| 56261 | 832 | |
| 833 | corollary DERIV_add: | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 834 | "(f has_field_derivative D) (at x within s) \<Longrightarrow> (g has_field_derivative E) (at x within s) \<Longrightarrow> | 
| 63558 | 835 | ((\<lambda>x. f x + g x) has_field_derivative D + E) (at x within s)" | 
| 56261 | 836 | by (rule field_differentiable_add) | 
| 837 | ||
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 838 | lemma field_differentiable_minus[derivative_intros]: | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 839 | "(f has_field_derivative f') F \<Longrightarrow> ((\<lambda>z. - (f z)) has_field_derivative -f') F" | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 840 | by (rule has_derivative_imp_has_field_derivative[OF has_derivative_minus]) | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 841 | (auto simp: has_field_derivative_def field_simps mult_commute_abs) | 
| 21164 | 842 | |
| 63558 | 843 | corollary DERIV_minus: | 
| 844 | "(f has_field_derivative D) (at x within s) \<Longrightarrow> | |
| 845 | ((\<lambda>x. - f x) has_field_derivative -D) (at x within s)" | |
| 56261 | 846 | by (rule field_differentiable_minus) | 
| 21164 | 847 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 848 | lemma field_differentiable_diff[derivative_intros]: | 
| 63558 | 849 | "(f has_field_derivative f') F \<Longrightarrow> | 
| 850 | (g has_field_derivative g') F \<Longrightarrow> ((\<lambda>z. f z - g z) has_field_derivative f' - g') F" | |
| 63092 | 851 | by (simp only: diff_conv_add_uminus field_differentiable_add field_differentiable_minus) | 
| 56261 | 852 | |
| 853 | corollary DERIV_diff: | |
| 63558 | 854 | "(f has_field_derivative D) (at x within s) \<Longrightarrow> | 
| 855 | (g has_field_derivative E) (at x within s) \<Longrightarrow> | |
| 856 | ((\<lambda>x. f x - g x) has_field_derivative D - E) (at x within s)" | |
| 56261 | 857 | by (rule field_differentiable_diff) | 
| 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: 
51641diff
changeset | 858 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 859 | lemma DERIV_continuous: "(f has_field_derivative D) (at x within s) \<Longrightarrow> continuous (at x within s) f" | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 860 | by (drule has_derivative_continuous[OF has_field_derivative_imp_has_derivative]) simp | 
| 21164 | 861 | |
| 56261 | 862 | corollary DERIV_isCont: "DERIV f x :> D \<Longrightarrow> isCont f x" | 
| 863 | by (rule DERIV_continuous) | |
| 864 | ||
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 865 | lemma DERIV_atLeastAtMost_imp_continuous_on: | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 866 | assumes "\<And>x. \<lbrakk>a \<le> x; x \<le> b\<rbrakk> \<Longrightarrow> \<exists>y. DERIV f x :> y" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 867 |   shows "continuous_on {a..b} f"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 868 | by (meson DERIV_isCont assms atLeastAtMost_iff continuous_at_imp_continuous_at_within continuous_on_eq_continuous_within) | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 869 | |
| 56261 | 870 | lemma DERIV_continuous_on: | 
| 63299 | 871 | "(\<And>x. x \<in> s \<Longrightarrow> (f has_field_derivative (D x)) (at x within s)) \<Longrightarrow> continuous_on s f" | 
| 872 | unfolding continuous_on_eq_continuous_within | |
| 63558 | 873 | by (intro continuous_at_imp_continuous_on ballI DERIV_continuous) | 
| 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: 
51641diff
changeset | 874 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 875 | lemma DERIV_mult': | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 876 | "(f has_field_derivative D) (at x within s) \<Longrightarrow> (g has_field_derivative E) (at x within s) \<Longrightarrow> | 
| 63558 | 877 | ((\<lambda>x. f x * g x) has_field_derivative f x * E + D * g x) (at x within s)" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 878 | by (rule has_derivative_imp_has_field_derivative[OF has_derivative_mult]) | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 879 | (auto simp: field_simps mult_commute_abs dest: has_field_derivative_imp_has_derivative) | 
| 21164 | 880 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 881 | lemma DERIV_mult[derivative_intros]: | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 882 | "(f has_field_derivative Da) (at x within s) \<Longrightarrow> (g has_field_derivative Db) (at x within s) \<Longrightarrow> | 
| 63558 | 883 | ((\<lambda>x. f x * g x) has_field_derivative Da * g x + Db * f x) (at x within s)" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 884 | by (rule has_derivative_imp_has_field_derivative[OF has_derivative_mult]) | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 885 | (auto simp: field_simps dest: has_field_derivative_imp_has_derivative) | 
| 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: 
51641diff
changeset | 886 | |
| 60758 | 887 | text \<open>Derivative of linear multiplication\<close> | 
| 21164 | 888 | |
| 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: 
51641diff
changeset | 889 | lemma DERIV_cmult: | 
| 63558 | 890 | "(f has_field_derivative D) (at x within s) \<Longrightarrow> | 
| 891 | ((\<lambda>x. c * f x) has_field_derivative c * D) (at x within s)" | |
| 892 | by (drule DERIV_mult' [OF DERIV_const]) simp | |
| 21164 | 893 | |
| 55967 | 894 | lemma DERIV_cmult_right: | 
| 63558 | 895 | "(f has_field_derivative D) (at x within s) \<Longrightarrow> | 
| 896 | ((\<lambda>x. f x * c) has_field_derivative D * c) (at x within s)" | |
| 897 | using DERIV_cmult by (auto simp add: ac_simps) | |
| 55967 | 898 | |
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
69022diff
changeset | 899 | lemma DERIV_cmult_Id [simp]: "((*) c has_field_derivative c) (at x within s)" | 
| 63558 | 900 | using DERIV_ident [THEN DERIV_cmult, where c = c and x = x] by simp | 
| 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: 
51641diff
changeset | 901 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 902 | lemma DERIV_cdivide: | 
| 63558 | 903 | "(f has_field_derivative D) (at x within s) \<Longrightarrow> | 
| 904 | ((\<lambda>x. f x / c) has_field_derivative D / c) (at x within s)" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 905 | using DERIV_cmult_right[of f D x s "1 / c"] by simp | 
| 21164 | 906 | |
| 63558 | 907 | lemma DERIV_unique: "DERIV f x :> D \<Longrightarrow> DERIV f x :> E \<Longrightarrow> D = E" | 
| 908 | unfolding DERIV_def by (rule LIM_unique) | |
| 21164 | 909 | |
| 64267 | 910 | lemma DERIV_sum[derivative_intros]: | 
| 63558 | 911 | "(\<And> n. n \<in> S \<Longrightarrow> ((\<lambda>x. f x n) has_field_derivative (f' x n)) F) \<Longrightarrow> | 
| 64267 | 912 | ((\<lambda>x. sum (f x) S) has_field_derivative sum (f' x) S) F" | 
| 913 | by (rule has_derivative_imp_has_field_derivative [OF has_derivative_sum]) | |
| 914 | (auto simp: sum_distrib_left mult_commute_abs dest: has_field_derivative_imp_has_derivative) | |
| 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: 
51641diff
changeset | 915 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 916 | lemma DERIV_inverse'[derivative_intros]: | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59862diff
changeset | 917 | assumes "(f has_field_derivative D) (at x within s)" | 
| 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59862diff
changeset | 918 | and "f x \<noteq> 0" | 
| 63558 | 919 | shows "((\<lambda>x. inverse (f x)) has_field_derivative - (inverse (f x) * D * inverse (f x))) | 
| 920 | (at x within s)" | |
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59862diff
changeset | 921 | proof - | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
69022diff
changeset | 922 | have "(f has_derivative (\<lambda>x. x * D)) = (f has_derivative (*) D)" | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59862diff
changeset | 923 | by (rule arg_cong [of "\<lambda>x. x * D"]) (simp add: fun_eq_iff) | 
| 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59862diff
changeset | 924 | with assms have "(f has_derivative (\<lambda>x. x * D)) (at x within s)" | 
| 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59862diff
changeset | 925 | by (auto dest!: has_field_derivative_imp_has_derivative) | 
| 60758 | 926 | then show ?thesis using \<open>f x \<noteq> 0\<close> | 
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59862diff
changeset | 927 | by (auto intro: has_derivative_imp_has_field_derivative has_derivative_inverse) | 
| 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59862diff
changeset | 928 | qed | 
| 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: 
51641diff
changeset | 929 | |
| 61799 | 930 | text \<open>Power of \<open>-1\<close>\<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: 
51641diff
changeset | 931 | |
| 
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: 
51641diff
changeset | 932 | lemma DERIV_inverse: | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 933 | "x \<noteq> 0 \<Longrightarrow> ((\<lambda>x. inverse(x)) has_field_derivative - (inverse x ^ Suc (Suc 0))) (at x within s)" | 
| 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: 
51641diff
changeset | 934 | by (drule DERIV_inverse' [OF DERIV_ident]) simp | 
| 
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: 
51641diff
changeset | 935 | |
| 60758 | 936 | text \<open>Derivative of inverse\<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: 
51641diff
changeset | 937 | |
| 
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: 
51641diff
changeset | 938 | lemma DERIV_inverse_fun: | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 939 | "(f has_field_derivative d) (at x within s) \<Longrightarrow> f x \<noteq> 0 \<Longrightarrow> | 
| 63558 | 940 | ((\<lambda>x. inverse (f x)) has_field_derivative (- (d * inverse(f x ^ Suc (Suc 0))))) (at x within s)" | 
| 57514 
bdc2c6b40bf2
prefer ac_simps collections over separate name bindings for add and mult
 haftmann parents: 
57512diff
changeset | 941 | by (drule (1) DERIV_inverse') (simp add: ac_simps nonzero_inverse_mult_distrib) | 
| 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: 
51641diff
changeset | 942 | |
| 60758 | 943 | text \<open>Derivative of quotient\<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: 
51641diff
changeset | 944 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 945 | lemma DERIV_divide[derivative_intros]: | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 946 | "(f has_field_derivative D) (at x within s) \<Longrightarrow> | 
| 63558 | 947 | (g has_field_derivative E) (at x within s) \<Longrightarrow> g x \<noteq> 0 \<Longrightarrow> | 
| 948 | ((\<lambda>x. f x / g x) has_field_derivative (D * g x - f x * E) / (g x * g x)) (at x within s)" | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 949 | by (rule has_derivative_imp_has_field_derivative[OF has_derivative_divide]) | 
| 56480 
093ea91498e6
field_simps: better support for negation and division, and power
 hoelzl parents: 
56479diff
changeset | 950 | (auto dest: has_field_derivative_imp_has_derivative simp: field_simps) | 
| 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: 
51641diff
changeset | 951 | |
| 
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: 
51641diff
changeset | 952 | lemma DERIV_quotient: | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 953 | "(f has_field_derivative d) (at x within s) \<Longrightarrow> | 
| 63558 | 954 | (g has_field_derivative e) (at x within s)\<Longrightarrow> g x \<noteq> 0 \<Longrightarrow> | 
| 955 | ((\<lambda>y. f y / g y) has_field_derivative (d * g x - (e * f x)) / (g x ^ Suc (Suc 0))) (at x within s)" | |
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
57418diff
changeset | 956 | by (drule (2) DERIV_divide) (simp add: mult.commute) | 
| 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: 
51641diff
changeset | 957 | |
| 
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: 
51641diff
changeset | 958 | lemma DERIV_power_Suc: | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 959 | "(f has_field_derivative D) (at x within s) \<Longrightarrow> | 
| 63558 | 960 | ((\<lambda>x. f x ^ Suc n) has_field_derivative (1 + of_nat n) * (D * f x ^ n)) (at x within s)" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 961 | by (rule has_derivative_imp_has_field_derivative[OF has_derivative_power]) | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 962 | (auto simp: has_field_derivative_def) | 
| 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: 
51641diff
changeset | 963 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 964 | lemma DERIV_power[derivative_intros]: | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 965 | "(f has_field_derivative D) (at x within s) \<Longrightarrow> | 
| 63558 | 966 | ((\<lambda>x. f x ^ n) has_field_derivative of_nat n * (D * f x ^ (n - Suc 0))) (at x within s)" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 967 | by (rule has_derivative_imp_has_field_derivative[OF has_derivative_power]) | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 968 | (auto simp: has_field_derivative_def) | 
| 31880 | 969 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 970 | lemma DERIV_pow: "((\<lambda>x. x ^ n) has_field_derivative real n * (x ^ (n - Suc 0))) (at x within s)" | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61552diff
changeset | 971 | using DERIV_power [OF DERIV_ident] by simp | 
| 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: 
51641diff
changeset | 972 | |
| 63558 | 973 | lemma DERIV_chain': "(f has_field_derivative D) (at x within s) \<Longrightarrow> DERIV g (f x) :> E \<Longrightarrow> | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 974 | ((\<lambda>x. g (f x)) has_field_derivative E * D) (at x within s)" | 
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
69022diff
changeset | 975 | using has_derivative_compose[of f "(*) D" x s g "(*) E"] | 
| 63170 | 976 | by (simp only: has_field_derivative_def mult_commute_abs ac_simps) | 
| 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: 
51641diff
changeset | 977 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 978 | corollary DERIV_chain2: "DERIV f (g x) :> Da \<Longrightarrow> (g has_field_derivative Db) (at x within s) \<Longrightarrow> | 
| 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 979 | ((\<lambda>x. f (g x)) has_field_derivative Da * Db) (at x within s)" | 
| 55967 | 980 | by (rule DERIV_chain') | 
| 981 | ||
| 60758 | 982 | text \<open>Standard version\<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: 
51641diff
changeset | 983 | |
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 984 | lemma DERIV_chain: | 
| 63558 | 985 | "DERIV f (g x) :> Da \<Longrightarrow> (g has_field_derivative Db) (at x within s) \<Longrightarrow> | 
| 986 | (f \<circ> g has_field_derivative Da * Db) (at x within s)" | |
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
57418diff
changeset | 987 | by (drule (1) DERIV_chain', simp add: o_def mult.commute) | 
| 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: 
51641diff
changeset | 988 | |
| 63558 | 989 | lemma DERIV_image_chain: | 
| 990 | "(f has_field_derivative Da) (at (g x) within (g ` s)) \<Longrightarrow> | |
| 991 | (g has_field_derivative Db) (at x within s) \<Longrightarrow> | |
| 992 | (f \<circ> g has_field_derivative Da * Db) (at x within s)" | |
| 69064 
5840724b1d71
Prefix form of infix with * on either side no longer needs special treatment
 nipkow parents: 
69022diff
changeset | 993 | using has_derivative_in_compose [of g "(*) Db" x s f "(*) Da "] | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 994 | by (simp add: has_field_derivative_def o_def mult_commute_abs ac_simps) | 
| 55967 | 995 | |
| 996 | (*These two are from HOL Light: HAS_COMPLEX_DERIVATIVE_CHAIN*) | |
| 997 | lemma DERIV_chain_s: | |
| 998 | assumes "(\<And>x. x \<in> s \<Longrightarrow> DERIV g x :> g'(x))" | |
| 63558 | 999 | and "DERIV f x :> f'" | 
| 1000 | and "f x \<in> s" | |
| 1001 | shows "DERIV (\<lambda>x. g(f x)) x :> f' * g'(f x)" | |
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
57418diff
changeset | 1002 | by (metis (full_types) DERIV_chain' mult.commute assms) | 
| 55967 | 1003 | |
| 1004 | lemma DERIV_chain3: (*HAS_COMPLEX_DERIVATIVE_CHAIN_UNIV*) | |
| 1005 | assumes "(\<And>x. DERIV g x :> g'(x))" | |
| 63558 | 1006 | and "DERIV f x :> f'" | 
| 1007 | shows "DERIV (\<lambda>x. g(f x)) x :> f' * g'(f x)" | |
| 55967 | 1008 | by (metis UNIV_I DERIV_chain_s [of UNIV] assms) | 
| 1009 | ||
| 63558 | 1010 | text \<open>Alternative definition for differentiability\<close> | 
| 21164 | 1011 | |
| 1012 | lemma DERIV_LIM_iff: | |
| 63558 | 1013 |   fixes f :: "'a::{real_normed_vector,inverse} \<Rightarrow> 'a"
 | 
| 68634 | 1014 | shows "((\<lambda>h. (f (a + h) - f a) / h) \<midarrow>0\<rightarrow> D) = ((\<lambda>x. (f x - f a) / (x - a)) \<midarrow>a\<rightarrow> D)" (is "?lhs = ?rhs") | 
| 1015 | proof | |
| 1016 | assume ?lhs | |
| 1017 | then have "(\<lambda>x. (f (a + (x + - a)) - f a) / (x + - a)) \<midarrow>0 - - a\<rightarrow> D" | |
| 1018 | by (rule LIM_offset) | |
| 1019 | then show ?rhs | |
| 1020 | by simp | |
| 1021 | next | |
| 1022 | assume ?rhs | |
| 1023 | then have "(\<lambda>x. (f (x+a) - f a) / ((x+a) - a)) \<midarrow>a-a\<rightarrow> D" | |
| 1024 | by (rule LIM_offset) | |
| 1025 | then show ?lhs | |
| 1026 | by (simp add: add.commute) | |
| 1027 | qed | |
| 63079 | 1028 | |
| 1029 | lemma has_field_derivative_cong_ev: | |
| 1030 | assumes "x = y" | |
| 68635 | 1031 | and *: "eventually (\<lambda>x. x \<in> S \<longrightarrow> f x = g x) (nhds x)" | 
| 1032 | and "u = v" "S = t" "x \<in> S" | |
| 1033 | shows "(f has_field_derivative u) (at x within S) = (g has_field_derivative v) (at y within t)" | |
| 68634 | 1034 | unfolding has_field_derivative_iff | 
| 63079 | 1035 | proof (rule filterlim_cong) | 
| 63558 | 1036 | from assms have "f y = g y" | 
| 1037 | by (auto simp: eventually_nhds) | |
| 68635 | 1038 | with * show "\<forall>\<^sub>F z in at x within S. (f z - f x) / (z - x) = (g z - g y) / (z - y)" | 
| 63079 | 1039 | unfolding eventually_at_filter | 
| 1040 | by eventually_elim (auto simp: assms \<open>f y = g y\<close>) | |
| 1041 | qed (simp_all add: assms) | |
| 21164 | 1042 | |
| 67706 
4ddc49205f5d
Unified the order of zeros and poles; improved reasoning around non-essential singularites
 Wenda Li <wl302@cam.ac.uk> parents: 
67443diff
changeset | 1043 | lemma has_field_derivative_cong_eventually: | 
| 68635 | 1044 | assumes "eventually (\<lambda>x. f x = g x) (at x within S)" "f x = g x" | 
| 1045 | shows "(f has_field_derivative u) (at x within S) = (g has_field_derivative u) (at x within S)" | |
| 68634 | 1046 | unfolding has_field_derivative_iff | 
| 68635 | 1047 | proof (rule tendsto_cong) | 
| 1048 | show "\<forall>\<^sub>F y in at x within S. (f y - f x) / (y - x) = (g y - g x) / (y - x)" | |
| 1049 | using assms by (auto elim: eventually_mono) | |
| 1050 | qed | |
| 67706 
4ddc49205f5d
Unified the order of zeros and poles; improved reasoning around non-essential singularites
 Wenda Li <wl302@cam.ac.uk> parents: 
67443diff
changeset | 1051 | |
| 63558 | 1052 | lemma DERIV_cong_ev: | 
| 1053 | "x = y \<Longrightarrow> eventually (\<lambda>x. f x = g x) (nhds x) \<Longrightarrow> u = v \<Longrightarrow> | |
| 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: 
51641diff
changeset | 1054 | DERIV f x :> u \<longleftrightarrow> DERIV g y :> v" | 
| 63079 | 1055 | by (rule has_field_derivative_cong_ev) simp_all | 
| 21164 | 1056 | |
| 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: 
51641diff
changeset | 1057 | lemma DERIV_shift: | 
| 63079 | 1058 | "(f has_field_derivative y) (at (x + z)) = ((\<lambda>x. f (x + z)) has_field_derivative y) (at x)" | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56371diff
changeset | 1059 | by (simp add: DERIV_def field_simps) | 
| 21164 | 1060 | |
| 63558 | 1061 | lemma DERIV_mirror: "(DERIV f (- x) :> y) \<longleftrightarrow> (DERIV (\<lambda>x. f (- x)) x :> - y)" | 
| 1062 | for f :: "real \<Rightarrow> real" and x y :: real | |
| 56479 
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
 hoelzl parents: 
56409diff
changeset | 1063 | by (simp add: DERIV_def filterlim_at_split filterlim_at_left_to_right | 
| 63558 | 1064 | tendsto_minus_cancel_left field_simps conj_commute) | 
| 21164 | 1065 | |
| 63263 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1066 | lemma floor_has_real_derivative: | 
| 63558 | 1067 |   fixes f :: "real \<Rightarrow> 'a::{floor_ceiling,order_topology}"
 | 
| 63263 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1068 | assumes "isCont f x" | 
| 63558 | 1069 | and "f x \<notin> \<int>" | 
| 63263 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1070 | shows "((\<lambda>x. floor (f x)) has_real_derivative 0) (at x)" | 
| 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1071 | proof (subst DERIV_cong_ev[OF refl _ refl]) | 
| 63558 | 1072 | show "((\<lambda>_. floor (f x)) has_real_derivative 0) (at x)" | 
| 1073 | by simp | |
| 63263 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1074 | have "\<forall>\<^sub>F y in at x. \<lfloor>f y\<rfloor> = \<lfloor>f x\<rfloor>" | 
| 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1075 | by (rule eventually_floor_eq[OF assms[unfolded continuous_at]]) | 
| 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1076 | then show "\<forall>\<^sub>F y in nhds x. real_of_int \<lfloor>f y\<rfloor> = real_of_int \<lfloor>f x\<rfloor>" | 
| 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1077 | unfolding eventually_at_filter | 
| 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1078 | by eventually_elim auto | 
| 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1079 | qed | 
| 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1080 | |
| 67685 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 1081 | lemmas has_derivative_floor[derivative_intros] = | 
| 
bdff8bf0a75b
moved theorems from AFP/Affine_Arithmetic and AFP/Ordinary_Differential_Equations
 immler parents: 
67443diff
changeset | 1082 | floor_has_real_derivative[THEN DERIV_compose_FDERIV] | 
| 63263 
c6c95d64607a
approximation, derivative, and continuity of floor and ceiling
 immler parents: 
63170diff
changeset | 1083 | |
| 60758 | 1084 | text \<open>Caratheodory formulation of derivative at a point\<close> | 
| 21164 | 1085 | |
| 68644 
242d298526a3
de-applying and simplifying proofs
 paulson <lp15@cam.ac.uk> parents: 
68638diff
changeset | 1086 | lemma CARAT_DERIV: | 
| 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: 
51641diff
changeset | 1087 | "(DERIV f x :> l) \<longleftrightarrow> (\<exists>g. (\<forall>z. f z - f x = g z * (z - x)) \<and> isCont g x \<and> g x = l)" | 
| 63558 | 1088 | (is "?lhs = ?rhs") | 
| 21164 | 1089 | proof | 
| 63558 | 1090 | assume ?lhs | 
| 1091 | show "\<exists>g. (\<forall>z. f z - f x = g z * (z - x)) \<and> isCont g x \<and> g x = l" | |
| 21164 | 1092 | proof (intro exI conjI) | 
| 63558 | 1093 | let ?g = "(\<lambda>z. if z = x then l else (f z - f x) / (z-x))" | 
| 1094 | show "\<forall>z. f z - f x = ?g z * (z - x)" | |
| 1095 | by simp | |
| 1096 | show "isCont ?g x" | |
| 1097 | using \<open>?lhs\<close> by (simp add: isCont_iff DERIV_def cong: LIM_equal [rule_format]) | |
| 1098 | show "?g x = l" | |
| 1099 | by simp | |
| 21164 | 1100 | qed | 
| 1101 | next | |
| 63558 | 1102 | assume ?rhs | 
| 1103 | then show ?lhs | |
| 1104 | by (auto simp add: isCont_iff DERIV_def cong: LIM_cong) | |
| 21164 | 1105 | qed | 
| 1106 | ||
| 1107 | ||
| 60758 | 1108 | subsection \<open>Local extrema\<close> | 
| 29975 | 1109 | |
| 63558 | 1110 | text \<open>If @{term "0 < f' x"} then @{term x} is Locally Strictly Increasing At The Right.\<close>
 | 
| 21164 | 1111 | |
| 63079 | 1112 | lemma has_real_derivative_pos_inc_right: | 
| 63558 | 1113 | fixes f :: "real \<Rightarrow> real" | 
| 63079 | 1114 | assumes der: "(f has_real_derivative l) (at x within S)" | 
| 63558 | 1115 | and l: "0 < l" | 
| 63079 | 1116 | shows "\<exists>d > 0. \<forall>h > 0. x + h \<in> S \<longrightarrow> h < d \<longrightarrow> f x < f (x + h)" | 
| 1117 | using assms | |
| 1118 | proof - | |
| 1119 | from der [THEN has_field_derivativeD, THEN tendstoD, OF l, unfolded eventually_at] | |
| 63558 | 1120 | obtain s where s: "0 < s" | 
| 1121 | and all: "\<And>xa. xa\<in>S \<Longrightarrow> xa \<noteq> x \<and> dist xa x < s \<longrightarrow> \<bar>(f xa - f x) / (xa - x) - l\<bar> < l" | |
| 63079 | 1122 | by (auto simp: dist_real_def) | 
| 1123 | then show ?thesis | |
| 1124 | proof (intro exI conjI strip) | |
| 63558 | 1125 | show "0 < s" by (rule s) | 
| 1126 | next | |
| 1127 | fix h :: real | |
| 63079 | 1128 | assume "0 < h" "h < s" "x + h \<in> S" | 
| 1129 | with all [of "x + h"] show "f x < f (x+h)" | |
| 1130 | proof (simp add: abs_if dist_real_def pos_less_divide_eq split: if_split_asm) | |
| 63558 | 1131 | assume "\<not> (f (x + h) - f x) / h < l" and h: "0 < h" | 
| 1132 | with l have "0 < (f (x + h) - f x) / h" | |
| 1133 | by arith | |
| 1134 | then show "f x < f (x + h)" | |
| 63079 | 1135 | by (simp add: pos_less_divide_eq h) | 
| 1136 | qed | |
| 1137 | qed | |
| 1138 | qed | |
| 1139 | ||
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1140 | lemma DERIV_pos_inc_right: | 
| 63558 | 1141 | fixes f :: "real \<Rightarrow> real" | 
| 21164 | 1142 | assumes der: "DERIV f x :> l" | 
| 63558 | 1143 | and l: "0 < l" | 
| 1144 | shows "\<exists>d > 0. \<forall>h > 0. h < d \<longrightarrow> f x < f (x + h)" | |
| 63079 | 1145 | using has_real_derivative_pos_inc_right[OF assms] | 
| 1146 | by auto | |
| 1147 | ||
| 1148 | lemma has_real_derivative_neg_dec_left: | |
| 63558 | 1149 | fixes f :: "real \<Rightarrow> real" | 
| 63079 | 1150 | assumes der: "(f has_real_derivative l) (at x within S)" | 
| 63558 | 1151 | and "l < 0" | 
| 63079 | 1152 | shows "\<exists>d > 0. \<forall>h > 0. x - h \<in> S \<longrightarrow> h < d \<longrightarrow> f x < f (x - h)" | 
| 21164 | 1153 | proof - | 
| 63558 | 1154 | from \<open>l < 0\<close> have l: "- l > 0" | 
| 1155 | by simp | |
| 63079 | 1156 | from der [THEN has_field_derivativeD, THEN tendstoD, OF l, unfolded eventually_at] | 
| 63558 | 1157 | obtain s where s: "0 < s" | 
| 1158 | and all: "\<And>xa. xa\<in>S \<Longrightarrow> xa \<noteq> x \<and> dist xa x < s \<longrightarrow> \<bar>(f xa - f x) / (xa - x) - l\<bar> < - l" | |
| 63079 | 1159 | by (auto simp: dist_real_def) | 
| 63558 | 1160 | then show ?thesis | 
| 21164 | 1161 | proof (intro exI conjI strip) | 
| 63558 | 1162 | show "0 < s" by (rule s) | 
| 1163 | next | |
| 1164 | fix h :: real | |
| 63079 | 1165 | assume "0 < h" "h < s" "x - h \<in> S" | 
| 1166 | with all [of "x - h"] show "f x < f (x-h)" | |
| 63648 | 1167 | proof (simp add: abs_if pos_less_divide_eq dist_real_def split: if_split_asm) | 
| 63558 | 1168 | assume "- ((f (x-h) - f x) / h) < l" and h: "0 < h" | 
| 1169 | with l have "0 < (f (x-h) - f x) / h" | |
| 1170 | by arith | |
| 1171 | then show "f x < f (x - h)" | |
| 63079 | 1172 | by (simp add: pos_less_divide_eq h) | 
| 21164 | 1173 | qed | 
| 1174 | qed | |
| 1175 | qed | |
| 1176 | ||
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1177 | lemma DERIV_neg_dec_left: | 
| 63558 | 1178 | fixes f :: "real \<Rightarrow> real" | 
| 21164 | 1179 | assumes der: "DERIV f x :> l" | 
| 63558 | 1180 | and l: "l < 0" | 
| 1181 | shows "\<exists>d > 0. \<forall>h > 0. h < d \<longrightarrow> f x < f (x - h)" | |
| 63079 | 1182 | using has_real_derivative_neg_dec_left[OF assms] | 
| 1183 | by auto | |
| 1184 | ||
| 1185 | lemma has_real_derivative_pos_inc_left: | |
| 63558 | 1186 | fixes f :: "real \<Rightarrow> real" | 
| 1187 | shows "(f has_real_derivative l) (at x within S) \<Longrightarrow> 0 < l \<Longrightarrow> | |
| 1188 | \<exists>d>0. \<forall>h>0. x - h \<in> S \<longrightarrow> h < d \<longrightarrow> f (x - h) < f x" | |
| 1189 | by (rule has_real_derivative_neg_dec_left [of "\<lambda>x. - f x" "-l" x S, simplified]) | |
| 63079 | 1190 | (auto simp add: DERIV_minus) | 
| 21164 | 1191 | |
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1192 | lemma DERIV_pos_inc_left: | 
| 63558 | 1193 | fixes f :: "real \<Rightarrow> real" | 
| 1194 | shows "DERIV f x :> l \<Longrightarrow> 0 < l \<Longrightarrow> \<exists>d > 0. \<forall>h > 0. h < d \<longrightarrow> f (x - h) < f x" | |
| 63079 | 1195 | using has_real_derivative_pos_inc_left | 
| 1196 | by blast | |
| 1197 | ||
| 1198 | lemma has_real_derivative_neg_dec_right: | |
| 63558 | 1199 | fixes f :: "real \<Rightarrow> real" | 
| 1200 | shows "(f has_real_derivative l) (at x within S) \<Longrightarrow> l < 0 \<Longrightarrow> | |
| 1201 | \<exists>d > 0. \<forall>h > 0. x + h \<in> S \<longrightarrow> h < d \<longrightarrow> f x > f (x + h)" | |
| 1202 | by (rule has_real_derivative_pos_inc_right [of "\<lambda>x. - f x" "-l" x S, simplified]) | |
| 63079 | 1203 | (auto simp add: DERIV_minus) | 
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1204 | |
| 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1205 | lemma DERIV_neg_dec_right: | 
| 63558 | 1206 | fixes f :: "real \<Rightarrow> real" | 
| 1207 | shows "DERIV f x :> l \<Longrightarrow> l < 0 \<Longrightarrow> \<exists>d > 0. \<forall>h > 0. h < d \<longrightarrow> f x > f (x + h)" | |
| 63079 | 1208 | using has_real_derivative_neg_dec_right by blast | 
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1209 | |
| 21164 | 1210 | lemma DERIV_local_max: | 
| 63558 | 1211 | fixes f :: "real \<Rightarrow> real" | 
| 21164 | 1212 | assumes der: "DERIV f x :> l" | 
| 63558 | 1213 | and d: "0 < d" | 
| 1214 | and le: "\<forall>y. \<bar>x - y\<bar> < d \<longrightarrow> f y \<le> f x" | |
| 21164 | 1215 | shows "l = 0" | 
| 1216 | proof (cases rule: linorder_cases [of l 0]) | |
| 63558 | 1217 | case equal | 
| 1218 | then show ?thesis . | |
| 21164 | 1219 | next | 
| 1220 | case less | |
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1221 | from DERIV_neg_dec_left [OF der less] | 
| 63558 | 1222 | obtain d' where d': "0 < d'" and lt: "\<forall>h > 0. h < d' \<longrightarrow> f x < f (x - h)" | 
| 1223 | by blast | |
| 1224 | obtain e where "0 < e \<and> e < d \<and> e < d'" | |
| 68527 
2f4e2aab190a
Generalising and renaming some basic results
 paulson <lp15@cam.ac.uk> parents: 
67707diff
changeset | 1225 | using field_lbound_gt_zero [OF d d'] .. | 
| 63558 | 1226 | with lt le [THEN spec [where x="x - e"]] show ?thesis | 
| 1227 | by (auto simp add: abs_if) | |
| 21164 | 1228 | next | 
| 1229 | case greater | |
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1230 | from DERIV_pos_inc_right [OF der greater] | 
| 63558 | 1231 | obtain d' where d': "0 < d'" and lt: "\<forall>h > 0. h < d' \<longrightarrow> f x < f (x + h)" | 
| 1232 | by blast | |
| 1233 | obtain e where "0 < e \<and> e < d \<and> e < d'" | |
| 68527 
2f4e2aab190a
Generalising and renaming some basic results
 paulson <lp15@cam.ac.uk> parents: 
67707diff
changeset | 1234 | using field_lbound_gt_zero [OF d d'] .. | 
| 63558 | 1235 | with lt le [THEN spec [where x="x + e"]] show ?thesis | 
| 1236 | by (auto simp add: abs_if) | |
| 21164 | 1237 | qed | 
| 1238 | ||
| 63558 | 1239 | text \<open>Similar theorem for a local minimum\<close> | 
| 21164 | 1240 | lemma DERIV_local_min: | 
| 63558 | 1241 | fixes f :: "real \<Rightarrow> real" | 
| 1242 | shows "DERIV f x :> l \<Longrightarrow> 0 < d \<Longrightarrow> \<forall>y. \<bar>x - y\<bar> < d \<longrightarrow> f x \<le> f y \<Longrightarrow> l = 0" | |
| 1243 | by (drule DERIV_minus [THEN DERIV_local_max]) auto | |
| 21164 | 1244 | |
| 1245 | ||
| 60758 | 1246 | text\<open>In particular, if a function is locally flat\<close> | 
| 21164 | 1247 | lemma DERIV_local_const: | 
| 63558 | 1248 | fixes f :: "real \<Rightarrow> real" | 
| 1249 | shows "DERIV f x :> l \<Longrightarrow> 0 < d \<Longrightarrow> \<forall>y. \<bar>x - y\<bar> < d \<longrightarrow> f x = f y \<Longrightarrow> l = 0" | |
| 1250 | by (auto dest!: DERIV_local_max) | |
| 21164 | 1251 | |
| 29975 | 1252 | |
| 60758 | 1253 | subsection \<open>Rolle's Theorem\<close> | 
| 29975 | 1254 | |
| 63558 | 1255 | text \<open>Lemma about introducing open ball in open interval\<close> | 
| 68635 | 1256 | lemma lemma_interval_lt: | 
| 1257 | fixes a b x :: real | |
| 1258 | assumes "a < x" "x < b" | |
| 1259 | shows "\<exists>d. 0 < d \<and> (\<forall>y. \<bar>x - y\<bar> < d \<longrightarrow> a < y \<and> y < b)" | |
| 1260 | using linorder_linear [of "x - a" "b - x"] | |
| 1261 | proof | |
| 1262 | assume "x - a \<le> b - x" | |
| 1263 | with assms show ?thesis | |
| 1264 | by (rule_tac x = "x - a" in exI) auto | |
| 1265 | next | |
| 1266 | assume "b - x \<le> x - a" | |
| 1267 | with assms show ?thesis | |
| 1268 | by (rule_tac x = "b - x" in exI) auto | |
| 1269 | qed | |
| 27668 | 1270 | |
| 63558 | 1271 | lemma lemma_interval: "a < x \<Longrightarrow> x < b \<Longrightarrow> \<exists>d. 0 < d \<and> (\<forall>y. \<bar>x - y\<bar> < d \<longrightarrow> a \<le> y \<and> y \<le> b)" | 
| 1272 | for a b x :: real | |
| 68635 | 1273 | by (force dest: lemma_interval_lt) | 
| 21164 | 1274 | |
| 63558 | 1275 | text \<open>Rolle's Theorem. | 
| 21164 | 1276 |    If @{term f} is defined and continuous on the closed interval
 | 
| 61799 | 1277 | \<open>[a,b]\<close> and differentiable on the open interval \<open>(a,b)\<close>, | 
| 63558 | 1278 |    and @{term "f a = f b"},
 | 
| 1279 |    then there exists \<open>x0 \<in> (a,b)\<close> such that @{term "f' x0 = 0"}\<close>
 | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1280 | theorem Rolle_deriv: | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1281 | fixes f :: "real \<Rightarrow> real" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1282 | assumes "a < b" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1283 | and fab: "f a = f b" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1284 |     and contf: "continuous_on {a..b} f"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1285 | and derf: "\<And>x. \<lbrakk>a < x; x < b\<rbrakk> \<Longrightarrow> (f has_derivative f' x) (at x)" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1286 | shows "\<exists>z. a < z \<and> z < b \<and> f' z = (\<lambda>v. 0)" | 
| 21164 | 1287 | proof - | 
| 63558 | 1288 | have le: "a \<le> b" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1289 | using \<open>a < b\<close> by simp | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1290 |     have "(a + b) / 2 \<in> {a..b}"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1291 | using assms(1) by auto | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1292 |     then have *: "{a..b} \<noteq> {}"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1293 | by auto | 
| 63558 | 1294 | obtain x where x_max: "\<forall>z. a \<le> z \<and> z \<le> b \<longrightarrow> f z \<le> f x" and "a \<le> x" "x \<le> b" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1295 | using continuous_attains_sup[OF compact_Icc * contf] | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1296 | by (meson atLeastAtMost_iff) | 
| 63558 | 1297 | obtain x' where x'_min: "\<forall>z. a \<le> z \<and> z \<le> b \<longrightarrow> f x' \<le> f z" and "a \<le> x'" "x' \<le> b" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1298 | using continuous_attains_inf[OF compact_Icc * contf] by (meson atLeastAtMost_iff) | 
| 63558 | 1299 | consider "a < x" "x < b" | "x = a \<or> x = b" | 
| 1300 | using \<open>a \<le> x\<close> \<open>x \<le> b\<close> by arith | |
| 1301 | then show ?thesis | |
| 21164 | 1302 | proof cases | 
| 63558 | 1303 | case 1 | 
| 67443 
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
 wenzelm parents: 
67399diff
changeset | 1304 |     \<comment> \<open>@{term f} attains its maximum within the interval\<close>
 | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1305 | then obtain l where der: "DERIV f x :> l" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1306 | using derf differentiable_def real_differentiable_def by blast | 
| 63558 | 1307 | obtain d where d: "0 < d" and bound: "\<forall>y. \<bar>x - y\<bar> < d \<longrightarrow> a \<le> y \<and> y \<le> b" | 
| 1308 | using lemma_interval [OF 1] by blast | |
| 1309 | then have bound': "\<forall>y. \<bar>x - y\<bar> < d \<longrightarrow> f y \<le> f x" | |
| 1310 | using x_max by blast | |
| 67443 
3abf6a722518
standardized towards new-style formal comments: isabelle update_comments;
 wenzelm parents: 
67399diff
changeset | 1311 | \<comment> \<open>the derivative at a local maximum is zero\<close> | 
| 63558 | 1312 | have "l = 0" | 
| 1313 | by (rule DERIV_local_max [OF der d bound']) | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1314 | with 1 der derf [of x] show ?thesis | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1315 | by (metis has_derivative_unique has_field_derivative_def mult_zero_left) | 
| 21164 | 1316 | next | 
| 63558 | 1317 | case 2 | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1318 | then have fx: "f b = f x" by (auto simp add: fab) | 
| 63558 | 1319 | consider "a < x'" "x' < b" | "x' = a \<or> x' = b" | 
| 1320 | using \<open>a \<le> x'\<close> \<open>x' \<le> b\<close> by arith | |
| 1321 | then show ?thesis | |
| 21164 | 1322 | proof cases | 
| 63558 | 1323 | case 1 | 
| 1324 |         \<comment> \<open>@{term f} attains its minimum within the interval\<close>
 | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1325 | then obtain l where der: "DERIV f x' :> l" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1326 | using derf differentiable_def real_differentiable_def by blast | 
| 63558 | 1327 | from lemma_interval [OF 1] | 
| 21164 | 1328 | obtain d where d: "0<d" and bound: "\<forall>y. \<bar>x'-y\<bar> < d \<longrightarrow> a \<le> y \<and> y \<le> b" | 
| 63558 | 1329 | by blast | 
| 1330 | then have bound': "\<forall>y. \<bar>x' - y\<bar> < d \<longrightarrow> f x' \<le> f y" | |
| 1331 | using x'_min by blast | |
| 1332 | have "l = 0" by (rule DERIV_local_min [OF der d bound']) | |
| 1333 | \<comment> \<open>the derivative at a local minimum is zero\<close> | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1334 | then show ?thesis using 1 der derf [of x'] | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1335 | by (metis has_derivative_unique has_field_derivative_def mult_zero_left) | 
| 21164 | 1336 | next | 
| 63558 | 1337 | case 2 | 
| 1338 |         \<comment> \<open>@{term f} is constant throughout the interval\<close>
 | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1339 | then have fx': "f b = f x'" by (auto simp: fab) | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1340 | from dense [OF \<open>a < b\<close>] obtain r where r: "a < r" "r < b" by blast | 
| 63558 | 1341 | obtain d where d: "0 < d" and bound: "\<forall>y. \<bar>r - y\<bar> < d \<longrightarrow> a \<le> y \<and> y \<le> b" | 
| 1342 | using lemma_interval [OF r] by blast | |
| 1343 | have eq_fb: "f z = f b" if "a \<le> z" and "z \<le> b" for z | |
| 1344 | proof (rule order_antisym) | |
| 1345 | show "f z \<le> f b" by (simp add: fx x_max that) | |
| 1346 | show "f b \<le> f z" by (simp add: fx' x'_min that) | |
| 21164 | 1347 | qed | 
| 63558 | 1348 | have bound': "\<forall>y. \<bar>r - y\<bar> < d \<longrightarrow> f r = f y" | 
| 21164 | 1349 | proof (intro strip) | 
| 63558 | 1350 | fix y :: real | 
| 1351 | assume lt: "\<bar>r - y\<bar> < d" | |
| 1352 | then have "f y = f b" by (simp add: eq_fb bound) | |
| 1353 | then show "f r = f y" by (simp add: eq_fb r order_less_imp_le) | |
| 21164 | 1354 | qed | 
| 63558 | 1355 | obtain l where der: "DERIV f r :> l" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1356 | using derf differentiable_def r(1) r(2) real_differentiable_def by blast | 
| 63558 | 1357 | have "l = 0" | 
| 1358 | by (rule DERIV_local_const [OF der d bound']) | |
| 1359 | \<comment> \<open>the derivative of a constant function is zero\<close> | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1360 | with r der derf [of r] show ?thesis | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1361 | by (metis has_derivative_unique has_field_derivative_def mult_zero_left) | 
| 21164 | 1362 | qed | 
| 1363 | qed | |
| 1364 | qed | |
| 1365 | ||
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1366 | corollary Rolle: | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1367 | fixes a b :: real | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1368 |   assumes ab: "a < b" "f a = f b" "continuous_on {a..b} f"
 | 
| 69022 
e2858770997a
removal of more redundancies, and fixes
 paulson <lp15@cam.ac.uk> parents: 
69020diff
changeset | 1369 | and dif [rule_format]: "\<And>x. \<lbrakk>a < x; x < b\<rbrakk> \<Longrightarrow> f differentiable (at x)" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1370 | shows "\<exists>z. a < z \<and> z < b \<and> DERIV f z :> 0" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1371 | proof - | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1372 | obtain f' where f': "\<And>x. \<lbrakk>a < x; x < b\<rbrakk> \<Longrightarrow> (f has_derivative f' x) (at x)" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1373 | using dif unfolding differentiable_def by metis | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1374 | then have "\<exists>z. a < z \<and> z < b \<and> f' z = (\<lambda>v. 0)" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1375 | by (metis Rolle_deriv [OF ab]) | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1376 | then show ?thesis | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1377 | using f' has_derivative_imp_has_field_derivative by fastforce | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1378 | qed | 
| 21164 | 1379 | |
| 63558 | 1380 | subsection \<open>Mean Value Theorem\<close> | 
| 21164 | 1381 | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1382 | theorem mvt: | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1383 | fixes f :: "real \<Rightarrow> real" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1384 | assumes "a < b" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1385 |     and contf: "continuous_on {a..b} f"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1386 | and derf: "\<And>x. \<lbrakk>a < x; x < b\<rbrakk> \<Longrightarrow> (f has_derivative f' x) (at x)" | 
| 69109 | 1387 | obtains \<xi> where "a < \<xi>" "\<xi> < b" "f b - f a = (f' \<xi>) (b - a)" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1388 | proof - | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1389 | have "\<exists>x. a < x \<and> x < b \<and> (\<lambda>y. f' x y - (f b - f a) / (b - a) * y) = (\<lambda>v. 0)" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1390 | proof (intro Rolle_deriv[OF \<open>a < b\<close>]) | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1391 | fix x | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1392 | assume x: "a < x" "x < b" | 
| 69109 | 1393 | show "((\<lambda>x. f x - (f b - f a) / (b - a) * x) | 
| 1394 | has_derivative (\<lambda>y. f' x y - (f b - f a) / (b - a) * y)) (at x)" | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1395 | by (intro derivative_intros derf[OF x]) | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1396 | qed (use assms in \<open>auto intro!: continuous_intros simp: field_simps\<close>) | 
| 69109 | 1397 | then obtain \<xi> where | 
| 1398 | "a < \<xi>" "\<xi> < b" "(\<lambda>y. f' \<xi> y - (f b - f a) / (b - a) * y) = (\<lambda>v. 0)" | |
| 1399 | by metis | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1400 | then show ?thesis | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1401 | by (metis (no_types, hide_lams) that add.right_neutral add_diff_cancel_left' add_diff_eq \<open>a < b\<close> | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1402 | less_irrefl nonzero_eq_divide_eq) | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1403 | qed | 
| 21164 | 1404 | |
| 1405 | theorem MVT: | |
| 63558 | 1406 | fixes a b :: real | 
| 1407 | assumes lt: "a < b" | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1408 |     and contf: "continuous_on {a..b} f"
 | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1409 | and dif: "\<And>x. \<lbrakk>a < x; x < b\<rbrakk> \<Longrightarrow> f differentiable (at x)" | 
| 63558 | 1410 | shows "\<exists>l z. a < z \<and> z < b \<and> DERIV f z :> l \<and> f b - f a = (b - a) * l" | 
| 21164 | 1411 | proof - | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1412 | obtain f' where derf: "\<And>x. \<lbrakk>a < x; x < b\<rbrakk> \<Longrightarrow> (f has_derivative f' x) (at x)" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1413 | using dif unfolding differentiable_def by metis | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1414 | then obtain z where "a < z" "z < b" "f b - f a = (f' z) (b - a)" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1415 | using mvt [OF lt contf] by blast | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1416 | then show ?thesis | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1417 | by (metis derf dif has_derivative_unique has_field_derivative_imp_has_derivative linordered_field_class.sign_simps(5) real_differentiable_def) | 
| 21164 | 1418 | qed | 
| 1419 | ||
| 68635 | 1420 | corollary MVT2: | 
| 1421 | assumes "a < b" and der: "\<And>x. \<lbrakk>a \<le> x; x \<le> b\<rbrakk> \<Longrightarrow> DERIV f x :> f' x" | |
| 1422 | shows "\<exists>z::real. a < z \<and> z < b \<and> (f b - f a = (b - a) * f' z)" | |
| 1423 | proof - | |
| 1424 | have "\<exists>l z. a < z \<and> | |
| 1425 | z < b \<and> | |
| 1426 | (f has_real_derivative l) (at z) \<and> | |
| 1427 | f b - f a = (b - a) * l" | |
| 1428 | proof (rule MVT [OF \<open>a < b\<close>]) | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1429 |     show "continuous_on {a..b} f"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1430 | by (meson DERIV_continuous atLeastAtMost_iff continuous_at_imp_continuous_on der) | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1431 | show "\<And>x. \<lbrakk>a < x; x < b\<rbrakk> \<Longrightarrow> f differentiable (at x)" | 
| 68635 | 1432 | using assms by (force dest: order_less_imp_le simp add: real_differentiable_def) | 
| 1433 | qed | |
| 1434 | with assms show ?thesis | |
| 1435 | by (blast dest: DERIV_unique order_less_imp_le) | |
| 1436 | qed | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 1437 | |
| 68601 | 1438 | lemma pos_deriv_imp_strict_mono: | 
| 1439 | assumes "\<And>x. (f has_real_derivative f' x) (at x)" | |
| 1440 | assumes "\<And>x. f' x > 0" | |
| 1441 | shows "strict_mono f" | |
| 1442 | proof (rule strict_monoI) | |
| 1443 | fix x y :: real assume xy: "x < y" | |
| 1444 | from assms and xy have "\<exists>z>x. z < y \<and> f y - f x = (y - x) * f' z" | |
| 1445 | by (intro MVT2) (auto dest: connectedD_interval) | |
| 1446 | then obtain z where z: "z > x" "z < y" "f y - f x = (y - x) * f' z" by blast | |
| 1447 | note \<open>f y - f x = (y - x) * f' z\<close> | |
| 1448 | also have "(y - x) * f' z > 0" using xy assms by (intro mult_pos_pos) auto | |
| 1449 | finally show "f x < f y" by simp | |
| 1450 | qed | |
| 21164 | 1451 | |
| 68601 | 1452 | |
| 1453 | subsubsection \<open>A function is constant if its derivative is 0 over an interval.\<close> | |
| 21164 | 1454 | |
| 1455 | lemma DERIV_isconst_end: | |
| 63558 | 1456 | fixes f :: "real \<Rightarrow> real" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1457 |   assumes "a < b" and contf: "continuous_on {a..b} f"
 | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1458 | and 0: "\<And>x. \<lbrakk>a < x; x < b\<rbrakk> \<Longrightarrow> DERIV f x :> 0" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1459 | shows "f b = f a" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1460 | using MVT [OF \<open>a < b\<close>] "0" DERIV_unique contf real_differentiable_def | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1461 | by (fastforce simp: algebra_simps) | 
| 21164 | 1462 | |
| 1463 | lemma DERIV_isconst2: | |
| 63558 | 1464 | fixes f :: "real \<Rightarrow> real" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1465 |   assumes "a < b" and contf: "continuous_on {a..b} f" and derf: "\<And>x. \<lbrakk>a < x; x < b\<rbrakk> \<Longrightarrow> DERIV f x :> 0"
 | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1466 | and "a \<le> x" "x \<le> b" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1467 | shows "f x = f a" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1468 | proof (cases "a < x") | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1469 | case True | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1470 |   have *: "continuous_on {a..x} f"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1471 | using \<open>x \<le> b\<close> contf continuous_on_subset by fastforce | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1472 | show ?thesis | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1473 | by (rule DERIV_isconst_end [OF True *]) (use \<open>x \<le> b\<close> derf in auto) | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1474 | qed (use \<open>a \<le> x\<close> in auto) | 
| 21164 | 1475 | |
| 63558 | 1476 | lemma DERIV_isconst3: | 
| 1477 | fixes a b x y :: real | |
| 1478 | assumes "a < b" | |
| 1479 |     and "x \<in> {a <..< b}"
 | |
| 1480 |     and "y \<in> {a <..< b}"
 | |
| 1481 |     and derivable: "\<And>x. x \<in> {a <..< b} \<Longrightarrow> DERIV f x :> 0"
 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 1482 | shows "f x = f y" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 1483 | proof (cases "x = y") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 1484 | case False | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 1485 | let ?a = "min x y" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 1486 | let ?b = "max x y" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1487 | have *: "DERIV f z :> 0" if "?a \<le> z" "z \<le> ?b" for z | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1488 | proof - | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1489 | have "a < z" and "z < b" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1490 |       using that \<open>x \<in> {a <..< b}\<close> and \<open>y \<in> {a <..< b}\<close> by auto
 | 
| 63558 | 1491 |     then have "z \<in> {a<..<b}" by auto
 | 
| 1492 | then show "DERIV f z :> 0" by (rule derivable) | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 1493 | qed | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1494 |   have isCont: "continuous_on {?a..?b} f"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1495 | by (meson * DERIV_continuous_on atLeastAtMost_iff has_field_derivative_at_within) | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1496 | have DERIV: "\<And>z. \<lbrakk>?a < z; z < ?b\<rbrakk> \<Longrightarrow> DERIV f z :> 0" | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1497 | using * by auto | 
| 60758 | 1498 | have "?a < ?b" using \<open>x \<noteq> y\<close> by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 1499 | from DERIV_isconst2[OF this isCont DERIV, of x] and DERIV_isconst2[OF this isCont DERIV, of y] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 1500 | show ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 1501 | qed auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29667diff
changeset | 1502 | |
| 21164 | 1503 | lemma DERIV_isconst_all: | 
| 63558 | 1504 | fixes f :: "real \<Rightarrow> real" | 
| 1505 | shows "\<forall>x. DERIV f x :> 0 \<Longrightarrow> f x = f y" | |
| 1506 | apply (rule linorder_cases [of x y]) | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1507 | apply (metis DERIV_continuous DERIV_isconst_end continuous_at_imp_continuous_on)+ | 
| 63558 | 1508 | done | 
| 21164 | 1509 | |
| 1510 | lemma DERIV_const_ratio_const: | |
| 63558 | 1511 | fixes f :: "real \<Rightarrow> real" | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1512 | assumes "a \<noteq> b" and df: "\<And>x. DERIV f x :> k" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1513 | shows "f b - f a = (b - a) * k" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1514 | proof (cases a b rule: linorder_cases) | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1515 | case less | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1516 | show ?thesis | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1517 | using MVT [OF less] df | 
| 69022 
e2858770997a
removal of more redundancies, and fixes
 paulson <lp15@cam.ac.uk> parents: 
69020diff
changeset | 1518 | by (metis DERIV_continuous DERIV_unique continuous_at_imp_continuous_on real_differentiable_def) | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1519 | next | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1520 | case greater | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1521 | have "f a - f b = (a - b) * k" | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1522 | using MVT [OF greater] df | 
| 69022 
e2858770997a
removal of more redundancies, and fixes
 paulson <lp15@cam.ac.uk> parents: 
69020diff
changeset | 1523 | by (metis DERIV_continuous DERIV_unique continuous_at_imp_continuous_on real_differentiable_def) | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1524 | then show ?thesis | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1525 | by (simp add: algebra_simps) | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1526 | qed auto | 
| 21164 | 1527 | |
| 1528 | lemma DERIV_const_ratio_const2: | |
| 63558 | 1529 | fixes f :: "real \<Rightarrow> real" | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1530 | assumes "a \<noteq> b" and df: "\<And>x. DERIV f x :> k" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1531 | shows "(f b - f a) / (b - a) = k" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1532 | using DERIV_const_ratio_const [OF assms] \<open>a \<noteq> b\<close> by auto | 
| 21164 | 1533 | |
| 63558 | 1534 | lemma real_average_minus_first [simp]: "(a + b) / 2 - a = (b - a) / 2" | 
| 1535 | for a b :: real | |
| 1536 | by simp | |
| 21164 | 1537 | |
| 63558 | 1538 | lemma real_average_minus_second [simp]: "(b + a) / 2 - a = (b - a) / 2" | 
| 1539 | for a b :: real | |
| 1540 | by simp | |
| 21164 | 1541 | |
| 63558 | 1542 | text \<open>Gallileo's "trick": average velocity = av. of end velocities.\<close> | 
| 21164 | 1543 | |
| 1544 | lemma DERIV_const_average: | |
| 63558 | 1545 | fixes v :: "real \<Rightarrow> real" | 
| 1546 | and a b :: real | |
| 1547 | assumes neq: "a \<noteq> b" | |
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1548 | and der: "\<And>x. DERIV v x :> k" | 
| 63558 | 1549 | shows "v ((a + b) / 2) = (v a + v b) / 2" | 
| 21164 | 1550 | proof (cases rule: linorder_cases [of a b]) | 
| 63558 | 1551 | case equal | 
| 1552 | with neq show ?thesis by simp | |
| 21164 | 1553 | next | 
| 1554 | case less | |
| 1555 | have "(v b - v a) / (b - a) = k" | |
| 1556 | by (rule DERIV_const_ratio_const2 [OF neq der]) | |
| 63558 | 1557 | then have "(b - a) * ((v b - v a) / (b - a)) = (b - a) * k" | 
| 1558 | by simp | |
| 21164 | 1559 | moreover have "(v ((a + b) / 2) - v a) / ((a + b) / 2 - a) = k" | 
| 63558 | 1560 | by (rule DERIV_const_ratio_const2 [OF _ der]) (simp add: neq) | 
| 1561 | ultimately show ?thesis | |
| 1562 | using neq by force | |
| 21164 | 1563 | next | 
| 1564 | case greater | |
| 1565 | have "(v b - v a) / (b - a) = k" | |
| 1566 | by (rule DERIV_const_ratio_const2 [OF neq der]) | |
| 63558 | 1567 | then have "(b - a) * ((v b - v a) / (b - a)) = (b - a) * k" | 
| 1568 | by simp | |
| 21164 | 1569 | moreover have " (v ((b + a) / 2) - v a) / ((b + a) / 2 - a) = k" | 
| 63558 | 1570 | by (rule DERIV_const_ratio_const2 [OF _ der]) (simp add: neq) | 
| 1571 | ultimately show ?thesis | |
| 1572 | using neq by (force simp add: add.commute) | |
| 21164 | 1573 | qed | 
| 1574 | ||
| 68601 | 1575 | subsubsection\<open>A function with positive derivative is increasing\<close> | 
| 1576 | text \<open>A simple proof using the MVT, by Jeremy Avigad. And variants.\<close> | |
| 56261 | 1577 | lemma DERIV_pos_imp_increasing_open: | 
| 63558 | 1578 | fixes a b :: real | 
| 1579 | and f :: "real \<Rightarrow> real" | |
| 1580 | assumes "a < b" | |
| 1581 | and "\<And>x. a < x \<Longrightarrow> x < b \<Longrightarrow> (\<exists>y. DERIV f x :> y \<and> y > 0)" | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1582 |     and con: "continuous_on {a..b} f"
 | 
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1583 | shows "f a < f b" | 
| 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1584 | proof (rule ccontr) | 
| 63558 | 1585 | assume f: "\<not> ?thesis" | 
| 1586 | have "\<exists>l z. a < z \<and> z < b \<and> DERIV f z :> l \<and> f b - f a = (b - a) * l" | |
| 69022 
e2858770997a
removal of more redundancies, and fixes
 paulson <lp15@cam.ac.uk> parents: 
69020diff
changeset | 1587 | by (rule MVT) (use assms real_differentiable_def in \<open>force+\<close>) | 
| 63558 | 1588 | then obtain l z where z: "a < z" "z < b" "DERIV f z :> l" and "f b - f a = (b - a) * l" | 
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1589 | by auto | 
| 63558 | 1590 | with assms f have "\<not> l > 0" | 
| 36777 
be5461582d0f
avoid using real-specific versions of generic lemmas
 huffman parents: 
35216diff
changeset | 1591 | by (metis linorder_not_le mult_le_0_iff diff_le_0_iff_le) | 
| 41550 | 1592 | with assms z show False | 
| 56261 | 1593 | by (metis DERIV_unique) | 
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1594 | qed | 
| 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1595 | |
| 56261 | 1596 | lemma DERIV_pos_imp_increasing: | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1597 | fixes a b :: real and f :: "real \<Rightarrow> real" | 
| 63558 | 1598 | assumes "a < b" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1599 | and der: "\<And>x. \<lbrakk>a \<le> x; x \<le> b\<rbrakk> \<Longrightarrow> \<exists>y. DERIV f x :> y \<and> y > 0" | 
| 56261 | 1600 | shows "f a < f b" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1601 | by (metis less_le_not_le DERIV_atLeastAtMost_imp_continuous_on DERIV_pos_imp_increasing_open [OF \<open>a < b\<close>] der) | 
| 56261 | 1602 | |
| 45791 | 1603 | lemma DERIV_nonneg_imp_nondecreasing: | 
| 63558 | 1604 | fixes a b :: real | 
| 1605 | and f :: "real \<Rightarrow> real" | |
| 1606 | assumes "a \<le> b" | |
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1607 | and "\<And>x. \<lbrakk>a \<le> x; x \<le> b\<rbrakk> \<Longrightarrow> \<exists>y. DERIV f x :> y \<and> y \<ge> 0" | 
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1608 | shows "f a \<le> f b" | 
| 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1609 | proof (rule ccontr, cases "a = b") | 
| 63558 | 1610 | assume "\<not> ?thesis" and "a = b" | 
| 41550 | 1611 | then show False by auto | 
| 37891 | 1612 | next | 
| 63558 | 1613 | assume *: "\<not> ?thesis" | 
| 1614 | assume "a \<noteq> b" | |
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1615 | with \<open>a \<le> b\<close> have "a < b" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1616 | by linarith | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1617 |   moreover have "continuous_on {a..b} f"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1618 | by (meson DERIV_isCont assms(2) atLeastAtMost_iff continuous_at_imp_continuous_on) | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1619 | ultimately have "\<exists>l z. a < z \<and> z < b \<and> DERIV f z :> l \<and> f b - f a = (b - a) * l" | 
| 69022 
e2858770997a
removal of more redundancies, and fixes
 paulson <lp15@cam.ac.uk> parents: 
69020diff
changeset | 1620 | using assms MVT [OF \<open>a < b\<close>, of f] real_differentiable_def less_eq_real_def by blast | 
| 63558 | 1621 | then obtain l z where lz: "a < z" "z < b" "DERIV f z :> l" and **: "f b - f a = (b - a) * l" | 
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1622 | by auto | 
| 63558 | 1623 | with * have "a < b" "f b < f a" by auto | 
| 1624 | with ** have "\<not> l \<ge> 0" by (auto simp add: not_le algebra_simps) | |
| 1625 | (metis * add_le_cancel_right assms(1) less_eq_real_def mult_right_mono add_left_mono linear order_refl) | |
| 1626 | with assms lz show False | |
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1627 | by (metis DERIV_unique order_less_imp_le) | 
| 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1628 | qed | 
| 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1629 | |
| 56261 | 1630 | lemma DERIV_neg_imp_decreasing_open: | 
| 63558 | 1631 | fixes a b :: real | 
| 1632 | and f :: "real \<Rightarrow> real" | |
| 1633 | assumes "a < b" | |
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1634 | and "\<And>x. a < x \<Longrightarrow> x < b \<Longrightarrow> \<exists>y. DERIV f x :> y \<and> y < 0" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1635 |     and con: "continuous_on {a..b} f"
 | 
| 56261 | 1636 | shows "f a > f b" | 
| 1637 | proof - | |
| 63558 | 1638 | have "(\<lambda>x. -f x) a < (\<lambda>x. -f x) b" | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1639 | proof (rule DERIV_pos_imp_increasing_open [of a b]) | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1640 | show "\<And>x. \<lbrakk>a < x; x < b\<rbrakk> \<Longrightarrow> \<exists>y. ((\<lambda>x. - f x) has_real_derivative y) (at x) \<and> 0 < y" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1641 | using assms | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1642 | by simp (metis field_differentiable_minus neg_0_less_iff_less) | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1643 |     show "continuous_on {a..b} (\<lambda>x. - f x)"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1644 | using con continuous_on_minus by blast | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1645 | qed (use assms in auto) | 
| 63558 | 1646 | then show ?thesis | 
| 56261 | 1647 | by simp | 
| 1648 | qed | |
| 1649 | ||
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1650 | lemma DERIV_neg_imp_decreasing: | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1651 | fixes a b :: real and f :: "real \<Rightarrow> real" | 
| 63558 | 1652 | assumes "a < b" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1653 | and der: "\<And>x. \<lbrakk>a \<le> x; x \<le> b\<rbrakk> \<Longrightarrow> \<exists>y. DERIV f x :> y \<and> y < 0" | 
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1654 | shows "f a > f b" | 
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1655 | by (metis less_le_not_le DERIV_atLeastAtMost_imp_continuous_on DERIV_neg_imp_decreasing_open [OF \<open>a < b\<close>] der) | 
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1656 | |
| 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1657 | lemma DERIV_nonpos_imp_nonincreasing: | 
| 63558 | 1658 | fixes a b :: real | 
| 1659 | and f :: "real \<Rightarrow> real" | |
| 1660 | assumes "a \<le> b" | |
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1661 | and "\<And>x. \<lbrakk>a \<le> x; x \<le> b\<rbrakk> \<Longrightarrow> \<exists>y. DERIV f x :> y \<and> y \<le> 0" | 
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1662 | shows "f a \<ge> f b" | 
| 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1663 | proof - | 
| 63558 | 1664 | have "(\<lambda>x. -f x) a \<le> (\<lambda>x. -f x) b" | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1665 | using DERIV_nonneg_imp_nondecreasing [of a b "\<lambda>x. -f x"] assms DERIV_minus by fastforce | 
| 63558 | 1666 | then show ?thesis | 
| 33654 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1667 | by simp | 
| 
abf780db30ea
A number of theorems contributed by Jeremy Avigad
 paulson parents: 
31902diff
changeset | 1668 | qed | 
| 21164 | 1669 | |
| 56289 | 1670 | lemma DERIV_pos_imp_increasing_at_bot: | 
| 63558 | 1671 | fixes f :: "real \<Rightarrow> real" | 
| 1672 | assumes "\<And>x. x \<le> b \<Longrightarrow> (\<exists>y. DERIV f x :> y \<and> y > 0)" | |
| 1673 | and lim: "(f \<longlongrightarrow> flim) at_bot" | |
| 56289 | 1674 | shows "flim < f b" | 
| 1675 | proof - | |
| 63952 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
63918diff
changeset | 1676 | have "\<exists>N. \<forall>n\<le>N. f n \<le> f (b - 1)" | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1677 | by (rule_tac x="b - 2" in exI) (force intro: order.strict_implies_order DERIV_pos_imp_increasing assms) | 
| 63952 
354808e9f44b
new material connected with HOL Light measure theory, plus more rationalisation
 paulson <lp15@cam.ac.uk> parents: 
63918diff
changeset | 1678 | then have "flim \<le> f (b - 1)" | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1679 | by (auto simp: eventually_at_bot_linorder tendsto_upperbound [OF lim]) | 
| 63558 | 1680 | also have "\<dots> < f b" | 
| 56289 | 1681 | by (force intro: DERIV_pos_imp_increasing [where f=f] assms) | 
| 1682 | finally show ?thesis . | |
| 1683 | qed | |
| 1684 | ||
| 1685 | lemma DERIV_neg_imp_decreasing_at_top: | |
| 63558 | 1686 | fixes f :: "real \<Rightarrow> real" | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1687 | assumes der: "\<And>x. x \<ge> b \<Longrightarrow> \<exists>y. DERIV f x :> y \<and> y < 0" | 
| 63558 | 1688 | and lim: "(f \<longlongrightarrow> flim) at_top" | 
| 56289 | 1689 | shows "flim < f b" | 
| 1690 | apply (rule DERIV_pos_imp_increasing_at_bot [where f = "\<lambda>i. f (-i)" and b = "-b", simplified]) | |
| 63558 | 1691 | apply (metis DERIV_mirror der le_minus_iff neg_0_less_iff_less) | 
| 56289 | 1692 | apply (metis filterlim_at_top_mirror lim) | 
| 1693 | done | |
| 1694 | ||
| 60758 | 1695 | text \<open>Derivative of inverse function\<close> | 
| 23041 | 1696 | |
| 1697 | lemma DERIV_inverse_function: | |
| 1698 | fixes f g :: "real \<Rightarrow> real" | |
| 1699 | assumes der: "DERIV f (g x) :> D" | |
| 63558 | 1700 | and neq: "D \<noteq> 0" | 
| 1701 | and x: "a < x" "x < b" | |
| 68611 | 1702 | and inj: "\<And>y. \<lbrakk>a < y; y < b\<rbrakk> \<Longrightarrow> f (g y) = y" | 
| 63558 | 1703 | and cont: "isCont g x" | 
| 23041 | 1704 | shows "DERIV g x :> inverse D" | 
| 68634 | 1705 | unfolding has_field_derivative_iff | 
| 23044 | 1706 | proof (rule LIM_equal2) | 
| 1707 | show "0 < min (x - a) (b - x)" | |
| 63558 | 1708 | using x by arith | 
| 23044 | 1709 | next | 
| 23041 | 1710 | fix y | 
| 23044 | 1711 | assume "norm (y - x) < min (x - a) (b - x)" | 
| 63558 | 1712 | then have "a < y" and "y < b" | 
| 23044 | 1713 | by (simp_all add: abs_less_iff) | 
| 63558 | 1714 | then show "(g y - g x) / (y - x) = inverse ((f (g y) - x) / (g y - g x))" | 
| 23041 | 1715 | by (simp add: inj) | 
| 1716 | next | |
| 61976 | 1717 | have "(\<lambda>z. (f z - f (g x)) / (z - g x)) \<midarrow>g x\<rightarrow> D" | 
| 68634 | 1718 | by (rule der [unfolded has_field_derivative_iff]) | 
| 63558 | 1719 | then have 1: "(\<lambda>z. (f z - x) / (z - g x)) \<midarrow>g x\<rightarrow> D" | 
| 1720 | using inj x by simp | |
| 23041 | 1721 | have 2: "\<exists>d>0. \<forall>y. y \<noteq> x \<and> norm (y - x) < d \<longrightarrow> g y \<noteq> g x" | 
| 56219 | 1722 | proof (rule exI, safe) | 
| 23044 | 1723 | show "0 < min (x - a) (b - x)" | 
| 63558 | 1724 | using x by simp | 
| 23041 | 1725 | next | 
| 1726 | fix y | |
| 23044 | 1727 | assume "norm (y - x) < min (x - a) (b - x)" | 
| 63558 | 1728 | then have y: "a < y" "y < b" | 
| 23044 | 1729 | by (simp_all add: abs_less_iff) | 
| 23041 | 1730 | assume "g y = g x" | 
| 63558 | 1731 | then have "f (g y) = f (g x)" by simp | 
| 1732 | then have "y = x" using inj y x by simp | |
| 23041 | 1733 | also assume "y \<noteq> x" | 
| 1734 | finally show False by simp | |
| 1735 | qed | |
| 61976 | 1736 | have "(\<lambda>y. (f (g y) - x) / (g y - g x)) \<midarrow>x\<rightarrow> D" | 
| 23041 | 1737 | using cont 1 2 by (rule isCont_LIM_compose2) | 
| 63558 | 1738 | then show "(\<lambda>y. inverse ((f (g y) - x) / (g y - g x))) \<midarrow>x\<rightarrow> inverse D" | 
| 44568 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 huffman parents: 
44317diff
changeset | 1739 | using neq by (rule tendsto_inverse) | 
| 23041 | 1740 | qed | 
| 1741 | ||
| 60758 | 1742 | subsection \<open>Generalized Mean Value Theorem\<close> | 
| 29975 | 1743 | |
| 21164 | 1744 | theorem GMVT: | 
| 21784 
e76faa6e65fd
changed (ns)deriv to take functions of type 'a::real_normed_field => 'a
 huffman parents: 
21404diff
changeset | 1745 | fixes a b :: real | 
| 21164 | 1746 | assumes alb: "a < b" | 
| 41550 | 1747 | and fc: "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 1748 | and fd: "\<forall>x. a < x \<and> x < b \<longrightarrow> f differentiable (at x)" | 
| 41550 | 1749 | and gc: "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont g x" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 1750 | and gd: "\<forall>x. a < x \<and> x < b \<longrightarrow> g differentiable (at x)" | 
| 53381 | 1751 | shows "\<exists>g'c f'c c. | 
| 63558 | 1752 | DERIV g c :> g'c \<and> DERIV f c :> f'c \<and> a < c \<and> c < b \<and> (f b - f a) * g'c = (g b - g a) * f'c" | 
| 21164 | 1753 | proof - | 
| 63558 | 1754 | let ?h = "\<lambda>x. (f b - f a) * g x - (g b - g a) * f x" | 
| 1755 | have "\<exists>l z. a < z \<and> z < b \<and> DERIV ?h z :> l \<and> ?h b - ?h a = (b - a) * l" | |
| 1756 | proof (rule MVT) | |
| 1757 | from assms show "a < b" by simp | |
| 69020 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1758 |     show "continuous_on {a..b} ?h"
 | 
| 
4f94e262976d
elimination of near duplication involving Rolle's theorem and the MVT
 paulson <lp15@cam.ac.uk> parents: 
68644diff
changeset | 1759 | by (simp add: continuous_at_imp_continuous_on fc gc) | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1760 | show "\<And>x. \<lbrakk>a < x; x < b\<rbrakk> \<Longrightarrow> ?h differentiable (at x)" | 
| 63558 | 1761 | using fd gd by simp | 
| 1762 | qed | |
| 1763 | then obtain l where l: "\<exists>z. a < z \<and> z < b \<and> DERIV ?h z :> l \<and> ?h b - ?h a = (b - a) * l" .. | |
| 1764 | then obtain c where c: "a < c \<and> c < b \<and> DERIV ?h c :> l \<and> ?h b - ?h a = (b - a) * l" .. | |
| 21164 | 1765 | |
| 63558 | 1766 | from c have cint: "a < c \<and> c < b" by auto | 
| 69022 
e2858770997a
removal of more redundancies, and fixes
 paulson <lp15@cam.ac.uk> parents: 
69020diff
changeset | 1767 | then obtain g'c where g'c: "DERIV g c :> g'c" | 
| 
e2858770997a
removal of more redundancies, and fixes
 paulson <lp15@cam.ac.uk> parents: 
69020diff
changeset | 1768 | using gd real_differentiable_def by blast | 
| 63558 | 1769 | from c have "a < c \<and> c < b" by auto | 
| 69022 
e2858770997a
removal of more redundancies, and fixes
 paulson <lp15@cam.ac.uk> parents: 
69020diff
changeset | 1770 | then obtain f'c where f'c: "DERIV f c :> f'c" | 
| 
e2858770997a
removal of more redundancies, and fixes
 paulson <lp15@cam.ac.uk> parents: 
69020diff
changeset | 1771 | using fd real_differentiable_def by blast | 
| 21164 | 1772 | |
| 63558 | 1773 | from c have "DERIV ?h c :> l" by auto | 
| 41368 | 1774 | moreover have "DERIV ?h c :> g'c * (f b - f a) - f'c * (g b - g a)" | 
| 63558 | 1775 | using g'c f'c by (auto intro!: derivative_eq_intros) | 
| 21164 | 1776 | ultimately have leq: "l = g'c * (f b - f a) - f'c * (g b - g a)" by (rule DERIV_unique) | 
| 1777 | ||
| 63558 | 1778 | have "?h b - ?h a = (b - a) * (g'c * (f b - f a) - f'c * (g b - g a))" | 
| 1779 | proof - | |
| 1780 | from c have "?h b - ?h a = (b - a) * l" by auto | |
| 53374 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 wenzelm parents: 
51642diff
changeset | 1781 | also from leq have "\<dots> = (b - a) * (g'c * (f b - f a) - f'c * (g b - g a))" by simp | 
| 63558 | 1782 | finally show ?thesis by simp | 
| 1783 | qed | |
| 1784 | moreover have "?h b - ?h a = 0" | |
| 1785 | proof - | |
| 21164 | 1786 | have "?h b - ?h a = | 
| 63558 | 1787 | ((f b)*(g b) - (f a)*(g b) - (g b)*(f b) + (g a)*(f b)) - | 
| 1788 | ((f b)*(g a) - (f a)*(g a) - (g b)*(f a) + (g a)*(f a))" | |
| 29667 | 1789 | by (simp add: algebra_simps) | 
| 63558 | 1790 | then show ?thesis by auto | 
| 1791 | qed | |
| 21164 | 1792 | ultimately have "(b - a) * (g'c * (f b - f a) - f'c * (g b - g a)) = 0" by auto | 
| 1793 | with alb have "g'c * (f b - f a) - f'c * (g b - g a) = 0" by simp | |
| 63558 | 1794 | then have "g'c * (f b - f a) = f'c * (g b - g a)" by simp | 
| 1795 | then have "(f b - f a) * g'c = (g b - g a) * f'c" by (simp add: ac_simps) | |
| 1796 | with g'c f'c cint show ?thesis by auto | |
| 21164 | 1797 | qed | 
| 1798 | ||
| 50327 | 1799 | lemma GMVT': | 
| 1800 | fixes f g :: "real \<Rightarrow> real" | |
| 1801 | assumes "a < b" | |
| 63558 | 1802 | and isCont_f: "\<And>z. a \<le> z \<Longrightarrow> z \<le> b \<Longrightarrow> isCont f z" | 
| 1803 | and isCont_g: "\<And>z. a \<le> z \<Longrightarrow> z \<le> b \<Longrightarrow> isCont g z" | |
| 1804 | and DERIV_g: "\<And>z. a < z \<Longrightarrow> z < b \<Longrightarrow> DERIV g z :> (g' z)" | |
| 1805 | and DERIV_f: "\<And>z. a < z \<Longrightarrow> z < b \<Longrightarrow> DERIV f z :> (f' z)" | |
| 50327 | 1806 | shows "\<exists>c. a < c \<and> c < b \<and> (f b - f a) * g' c = (g b - g a) * f' c" | 
| 1807 | proof - | |
| 1808 | have "\<exists>g'c f'c c. DERIV g c :> g'c \<and> DERIV f c :> f'c \<and> | |
| 63558 | 1809 | a < c \<and> c < b \<and> (f b - f a) * g'c = (g b - g a) * f'c" | 
| 56181 
2aa0b19e74f3
unify syntax for has_derivative and differentiable
 hoelzl parents: 
55970diff
changeset | 1810 | using assms by (intro GMVT) (force simp: real_differentiable_def)+ | 
| 50327 | 1811 | then obtain c where "a < c" "c < b" "(f b - f a) * g' c = (g b - g a) * f' c" | 
| 1812 | using DERIV_f DERIV_g by (force dest: DERIV_unique) | |
| 1813 | then show ?thesis | |
| 1814 | by auto | |
| 1815 | qed | |
| 1816 | ||
| 51529 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 hoelzl parents: 
51526diff
changeset | 1817 | |
| 60758 | 1818 | subsection \<open>L'Hopitals rule\<close> | 
| 51529 
2d2f59e6055a
move theorems about compactness of real closed intervals, the intermediate value theorem, and lemmas about continuity of bijective functions from Deriv.thy to Limits.thy
 hoelzl parents: 
51526diff
changeset | 1819 | |
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51529diff
changeset | 1820 | lemma isCont_If_ge: | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51529diff
changeset | 1821 | fixes a :: "'a :: linorder_topology" | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1822 | assumes "continuous (at_left a) g" and f: "(f \<longlongrightarrow> g a) (at_right a)" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1823 | shows "isCont (\<lambda>x. if x \<le> a then g x else f x) a" (is "isCont ?gf a") | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1824 | proof - | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1825 | have g: "(g \<longlongrightarrow> g a) (at_left a)" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1826 | using assms continuous_within by blast | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1827 | show ?thesis | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1828 | unfolding isCont_def continuous_within | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1829 | proof (intro filterlim_split_at; simp) | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1830 | show "(?gf \<longlongrightarrow> g a) (at_left a)" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1831 | by (subst filterlim_cong[OF refl refl, where g=g]) (simp_all add: eventually_at_filter less_le g) | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1832 | show "(?gf \<longlongrightarrow> g a) (at_right a)" | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1833 | by (subst filterlim_cong[OF refl refl, where g=f]) (simp_all add: eventually_at_filter less_le f) | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1834 | qed | 
| 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 1835 | qed | 
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51529diff
changeset | 1836 | |
| 50327 | 1837 | lemma lhopital_right_0: | 
| 50329 | 1838 | fixes f0 g0 :: "real \<Rightarrow> real" | 
| 61973 | 1839 | assumes f_0: "(f0 \<longlongrightarrow> 0) (at_right 0)" | 
| 63558 | 1840 | and g_0: "(g0 \<longlongrightarrow> 0) (at_right 0)" | 
| 1841 | and ev: | |
| 1842 | "eventually (\<lambda>x. g0 x \<noteq> 0) (at_right 0)" | |
| 1843 | "eventually (\<lambda>x. g' x \<noteq> 0) (at_right 0)" | |
| 1844 | "eventually (\<lambda>x. DERIV f0 x :> f' x) (at_right 0)" | |
| 1845 | "eventually (\<lambda>x. DERIV g0 x :> g' x) (at_right 0)" | |
| 63713 | 1846 | and lim: "filterlim (\<lambda> x. (f' x / g' x)) F (at_right 0)" | 
| 1847 | shows "filterlim (\<lambda> x. f0 x / g0 x) F (at_right 0)" | |
| 50327 | 1848 | proof - | 
| 63040 | 1849 | define f where [abs_def]: "f x = (if x \<le> 0 then 0 else f0 x)" for x | 
| 50329 | 1850 | then have "f 0 = 0" by simp | 
| 1851 | ||
| 63040 | 1852 | define g where [abs_def]: "g x = (if x \<le> 0 then 0 else g0 x)" for x | 
| 50329 | 1853 | then have "g 0 = 0" by simp | 
| 1854 | ||
| 1855 | have "eventually (\<lambda>x. g0 x \<noteq> 0 \<and> g' x \<noteq> 0 \<and> | |
| 1856 | DERIV f0 x :> (f' x) \<and> DERIV g0 x :> (g' x)) (at_right 0)" | |
| 1857 | using ev by eventually_elim auto | |
| 1858 | then obtain a where [arith]: "0 < a" | |
| 1859 | and g0_neq_0: "\<And>x. 0 < x \<Longrightarrow> x < a \<Longrightarrow> g0 x \<noteq> 0" | |
| 50327 | 1860 | and g'_neq_0: "\<And>x. 0 < x \<Longrightarrow> x < a \<Longrightarrow> g' x \<noteq> 0" | 
| 50329 | 1861 | and f0: "\<And>x. 0 < x \<Longrightarrow> x < a \<Longrightarrow> DERIV f0 x :> (f' x)" | 
| 1862 | and g0: "\<And>x. 0 < x \<Longrightarrow> x < a \<Longrightarrow> DERIV g0 x :> (g' x)" | |
| 56219 | 1863 | unfolding eventually_at by (auto simp: dist_real_def) | 
| 50327 | 1864 | |
| 50329 | 1865 | have g_neq_0: "\<And>x. 0 < x \<Longrightarrow> x < a \<Longrightarrow> g x \<noteq> 0" | 
| 1866 | using g0_neq_0 by (simp add: g_def) | |
| 1867 | ||
| 63558 | 1868 | have f: "DERIV f x :> (f' x)" if x: "0 < x" "x < a" for x | 
| 1869 | using that | |
| 1870 | by (intro DERIV_cong_ev[THEN iffD1, OF _ _ _ f0[OF x]]) | |
| 1871 | (auto simp: f_def eventually_nhds_metric dist_real_def intro!: exI[of _ x]) | |
| 50329 | 1872 | |
| 63558 | 1873 | have g: "DERIV g x :> (g' x)" if x: "0 < x" "x < a" for x | 
| 1874 | using that | |
| 1875 | by (intro DERIV_cong_ev[THEN iffD1, OF _ _ _ g0[OF x]]) | |
| 1876 | (auto simp: g_def eventually_nhds_metric dist_real_def intro!: exI[of _ x]) | |
| 50329 | 1877 | |
| 1878 | have "isCont f 0" | |
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51529diff
changeset | 1879 | unfolding f_def by (intro isCont_If_ge f_0 continuous_const) | 
| 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51529diff
changeset | 1880 | |
| 50329 | 1881 | have "isCont g 0" | 
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51529diff
changeset | 1882 | unfolding g_def by (intro isCont_If_ge g_0 continuous_const) | 
| 50329 | 1883 | |
| 50327 | 1884 |   have "\<exists>\<zeta>. \<forall>x\<in>{0 <..< a}. 0 < \<zeta> x \<and> \<zeta> x < x \<and> f x / g x = f' (\<zeta> x) / g' (\<zeta> x)"
 | 
| 63558 | 1885 | proof (rule bchoice, rule ballI) | 
| 1886 | fix x | |
| 1887 |     assume "x \<in> {0 <..< a}"
 | |
| 50327 | 1888 | then have x[arith]: "0 < x" "x < a" by auto | 
| 60758 | 1889 | with g'_neq_0 g_neq_0 \<open>g 0 = 0\<close> have g': "\<And>x. 0 < x \<Longrightarrow> x < a \<Longrightarrow> 0 \<noteq> g' x" "g 0 \<noteq> g x" | 
| 50327 | 1890 | by auto | 
| 50328 | 1891 | have "\<And>x. 0 \<le> x \<Longrightarrow> x < a \<Longrightarrow> isCont f x" | 
| 60758 | 1892 | using \<open>isCont f 0\<close> f by (auto intro: DERIV_isCont simp: le_less) | 
| 50328 | 1893 | moreover have "\<And>x. 0 \<le> x \<Longrightarrow> x < a \<Longrightarrow> isCont g x" | 
| 60758 | 1894 | using \<open>isCont g 0\<close> g by (auto intro: DERIV_isCont simp: le_less) | 
| 50328 | 1895 | ultimately have "\<exists>c. 0 < c \<and> c < x \<and> (f x - f 0) * g' c = (g x - g 0) * f' c" | 
| 60758 | 1896 | using f g \<open>x < a\<close> by (intro GMVT') auto | 
| 53374 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 wenzelm parents: 
51642diff
changeset | 1897 | then obtain c where *: "0 < c" "c < x" "(f x - f 0) * g' c = (g x - g 0) * f' c" | 
| 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 wenzelm parents: 
51642diff
changeset | 1898 | by blast | 
| 50327 | 1899 | moreover | 
| 53374 
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
 wenzelm parents: 
51642diff
changeset | 1900 | from * g'(1)[of c] g'(2) have "(f x - f 0) / (g x - g 0) = f' c / g' c" | 
| 50327 | 1901 | by (simp add: field_simps) | 
| 1902 | ultimately show "\<exists>y. 0 < y \<and> y < x \<and> f x / g x = f' y / g' y" | |
| 60758 | 1903 | using \<open>f 0 = 0\<close> \<open>g 0 = 0\<close> by (auto intro!: exI[of _ c]) | 
| 50327 | 1904 | qed | 
| 53381 | 1905 |   then obtain \<zeta> where "\<forall>x\<in>{0 <..< a}. 0 < \<zeta> x \<and> \<zeta> x < x \<and> f x / g x = f' (\<zeta> x) / g' (\<zeta> x)" ..
 | 
| 50327 | 1906 | then have \<zeta>: "eventually (\<lambda>x. 0 < \<zeta> x \<and> \<zeta> x < x \<and> f x / g x = f' (\<zeta> x) / g' (\<zeta> x)) (at_right 0)" | 
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51529diff
changeset | 1907 | unfolding eventually_at by (intro exI[of _ a]) (auto simp: dist_real_def) | 
| 50327 | 1908 | moreover | 
| 1909 | from \<zeta> have "eventually (\<lambda>x. norm (\<zeta> x) \<le> x) (at_right 0)" | |
| 1910 | by eventually_elim auto | |
| 61973 | 1911 | then have "((\<lambda>x. norm (\<zeta> x)) \<longlongrightarrow> 0) (at_right 0)" | 
| 58729 
e8ecc79aee43
add tendsto_const and tendsto_ident_at as simp and intro rules
 hoelzl parents: 
57953diff
changeset | 1912 | by (rule_tac real_tendsto_sandwich[where f="\<lambda>x. 0" and h="\<lambda>x. x"]) auto | 
| 61973 | 1913 | then have "(\<zeta> \<longlongrightarrow> 0) (at_right 0)" | 
| 50327 | 1914 | by (rule tendsto_norm_zero_cancel) | 
| 1915 | with \<zeta> have "filterlim \<zeta> (at_right 0) (at_right 0)" | |
| 61810 | 1916 | by (auto elim!: eventually_mono simp: filterlim_at) | 
| 63713 | 1917 | from this lim have "filterlim (\<lambda>t. f' (\<zeta> t) / g' (\<zeta> t)) F (at_right 0)" | 
| 50327 | 1918 | by (rule_tac filterlim_compose[of _ _ _ \<zeta>]) | 
| 63713 | 1919 | ultimately have "filterlim (\<lambda>t. f t / g t) F (at_right 0)" (is ?P) | 
| 50328 | 1920 | by (rule_tac filterlim_cong[THEN iffD1, OF refl refl]) | 
| 61810 | 1921 | (auto elim: eventually_mono) | 
| 50329 | 1922 | also have "?P \<longleftrightarrow> ?thesis" | 
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51529diff
changeset | 1923 | by (rule filterlim_cong) (auto simp: f_def g_def eventually_at_filter) | 
| 50329 | 1924 | finally show ?thesis . | 
| 50327 | 1925 | qed | 
| 1926 | ||
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1927 | lemma lhopital_right: | 
| 63558 | 1928 | "(f \<longlongrightarrow> 0) (at_right x) \<Longrightarrow> (g \<longlongrightarrow> 0) (at_right x) \<Longrightarrow> | 
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1929 | eventually (\<lambda>x. g x \<noteq> 0) (at_right x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1930 | eventually (\<lambda>x. g' x \<noteq> 0) (at_right x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1931 | eventually (\<lambda>x. DERIV f x :> f' x) (at_right x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1932 | eventually (\<lambda>x. DERIV g x :> g' x) (at_right x) \<Longrightarrow> | 
| 63713 | 1933 | filterlim (\<lambda> x. (f' x / g' x)) F (at_right x) \<Longrightarrow> | 
| 1934 | filterlim (\<lambda> x. f x / g x) F (at_right x)" | |
| 63558 | 1935 | for x :: real | 
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1936 | unfolding eventually_at_right_to_0[of _ x] filterlim_at_right_to_0[of _ _ x] DERIV_shift | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1937 | by (rule lhopital_right_0) | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1938 | |
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1939 | lemma lhopital_left: | 
| 63558 | 1940 | "(f \<longlongrightarrow> 0) (at_left x) \<Longrightarrow> (g \<longlongrightarrow> 0) (at_left x) \<Longrightarrow> | 
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1941 | eventually (\<lambda>x. g x \<noteq> 0) (at_left x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1942 | eventually (\<lambda>x. g' x \<noteq> 0) (at_left x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1943 | eventually (\<lambda>x. DERIV f x :> f' x) (at_left x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1944 | eventually (\<lambda>x. DERIV g x :> g' x) (at_left x) \<Longrightarrow> | 
| 63713 | 1945 | filterlim (\<lambda> x. (f' x / g' x)) F (at_left x) \<Longrightarrow> | 
| 1946 | filterlim (\<lambda> x. f x / g x) F (at_left x)" | |
| 63558 | 1947 | for x :: real | 
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1948 | unfolding eventually_at_left_to_right filterlim_at_left_to_right DERIV_mirror | 
| 56479 
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
 hoelzl parents: 
56409diff
changeset | 1949 | by (rule lhopital_right[where f'="\<lambda>x. - f' (- x)"]) (auto simp: DERIV_mirror) | 
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1950 | |
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1951 | lemma lhopital: | 
| 63558 | 1952 | "(f \<longlongrightarrow> 0) (at x) \<Longrightarrow> (g \<longlongrightarrow> 0) (at x) \<Longrightarrow> | 
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1953 | eventually (\<lambda>x. g x \<noteq> 0) (at x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1954 | eventually (\<lambda>x. g' x \<noteq> 0) (at x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1955 | eventually (\<lambda>x. DERIV f x :> f' x) (at x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1956 | eventually (\<lambda>x. DERIV g x :> g' x) (at x) \<Longrightarrow> | 
| 63713 | 1957 | filterlim (\<lambda> x. (f' x / g' x)) F (at x) \<Longrightarrow> | 
| 1958 | filterlim (\<lambda> x. f x / g x) F (at x)" | |
| 63558 | 1959 | for x :: real | 
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1960 | unfolding eventually_at_split filterlim_at_split | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1961 | by (auto intro!: lhopital_right[of f x g g' f'] lhopital_left[of f x g g' f']) | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 1962 | |
| 63713 | 1963 | |
| 50327 | 1964 | lemma lhopital_right_0_at_top: | 
| 1965 | fixes f g :: "real \<Rightarrow> real" | |
| 1966 | assumes g_0: "LIM x at_right 0. g x :> at_top" | |
| 63558 | 1967 | and ev: | 
| 1968 | "eventually (\<lambda>x. g' x \<noteq> 0) (at_right 0)" | |
| 1969 | "eventually (\<lambda>x. DERIV f x :> f' x) (at_right 0)" | |
| 1970 | "eventually (\<lambda>x. DERIV g x :> g' x) (at_right 0)" | |
| 1971 | and lim: "((\<lambda> x. (f' x / g' x)) \<longlongrightarrow> x) (at_right 0)" | |
| 61973 | 1972 | shows "((\<lambda> x. f x / g x) \<longlongrightarrow> x) (at_right 0)" | 
| 50327 | 1973 | unfolding tendsto_iff | 
| 1974 | proof safe | |
| 63558 | 1975 | fix e :: real | 
| 1976 | assume "0 < e" | |
| 50327 | 1977 | with lim[unfolded tendsto_iff, rule_format, of "e / 4"] | 
| 63558 | 1978 | have "eventually (\<lambda>t. dist (f' t / g' t) x < e / 4) (at_right 0)" | 
| 1979 | by simp | |
| 50327 | 1980 | from eventually_conj[OF eventually_conj[OF ev(1) ev(2)] eventually_conj[OF ev(3) this]] | 
| 1981 | obtain a where [arith]: "0 < a" | |
| 1982 | and g'_neq_0: "\<And>x. 0 < x \<Longrightarrow> x < a \<Longrightarrow> g' x \<noteq> 0" | |
| 1983 | and f0: "\<And>x. 0 < x \<Longrightarrow> x \<le> a \<Longrightarrow> DERIV f x :> (f' x)" | |
| 1984 | and g0: "\<And>x. 0 < x \<Longrightarrow> x \<le> a \<Longrightarrow> DERIV g x :> (g' x)" | |
| 1985 | and Df: "\<And>t. 0 < t \<Longrightarrow> t < a \<Longrightarrow> dist (f' t / g' t) x < e / 4" | |
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51529diff
changeset | 1986 | unfolding eventually_at_le by (auto simp: dist_real_def) | 
| 50327 | 1987 | |
| 63558 | 1988 | from Df have "eventually (\<lambda>t. t < a) (at_right 0)" "eventually (\<lambda>t::real. 0 < t) (at_right 0)" | 
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51529diff
changeset | 1989 | unfolding eventually_at by (auto intro!: exI[of _ a] simp: dist_real_def) | 
| 50327 | 1990 | |
| 1991 | moreover | |
| 50328 | 1992 | have "eventually (\<lambda>t. 0 < g t) (at_right 0)" "eventually (\<lambda>t. g a < g t) (at_right 0)" | 
| 61810 | 1993 | using g_0 by (auto elim: eventually_mono simp: filterlim_at_top_dense) | 
| 50327 | 1994 | |
| 1995 | moreover | |
| 61973 | 1996 | have inv_g: "((\<lambda>x. inverse (g x)) \<longlongrightarrow> 0) (at_right 0)" | 
| 50327 | 1997 | using tendsto_inverse_0 filterlim_mono[OF g_0 at_top_le_at_infinity order_refl] | 
| 1998 | by (rule filterlim_compose) | |
| 61973 | 1999 | then have "((\<lambda>x. norm (1 - g a * inverse (g x))) \<longlongrightarrow> norm (1 - g a * 0)) (at_right 0)" | 
| 50327 | 2000 | by (intro tendsto_intros) | 
| 61973 | 2001 | then have "((\<lambda>x. norm (1 - g a / g x)) \<longlongrightarrow> 1) (at_right 0)" | 
| 50327 | 2002 | by (simp add: inverse_eq_divide) | 
| 2003 | from this[unfolded tendsto_iff, rule_format, of 1] | |
| 2004 | have "eventually (\<lambda>x. norm (1 - g a / g x) < 2) (at_right 0)" | |
| 61810 | 2005 | by (auto elim!: eventually_mono simp: dist_real_def) | 
| 50327 | 2006 | |
| 2007 | moreover | |
| 63558 | 2008 | from inv_g have "((\<lambda>t. norm ((f a - x * g a) * inverse (g t))) \<longlongrightarrow> norm ((f a - x * g a) * 0)) | 
| 2009 | (at_right 0)" | |
| 50327 | 2010 | by (intro tendsto_intros) | 
| 61973 | 2011 | then have "((\<lambda>t. norm (f a - x * g a) / norm (g t)) \<longlongrightarrow> 0) (at_right 0)" | 
| 50327 | 2012 | by (simp add: inverse_eq_divide) | 
| 60758 | 2013 | from this[unfolded tendsto_iff, rule_format, of "e / 2"] \<open>0 < e\<close> | 
| 50327 | 2014 | have "eventually (\<lambda>t. norm (f a - x * g a) / norm (g t) < e / 2) (at_right 0)" | 
| 2015 | by (auto simp: dist_real_def) | |
| 2016 | ||
| 2017 | ultimately show "eventually (\<lambda>t. dist (f t / g t) x < e) (at_right 0)" | |
| 2018 | proof eventually_elim | |
| 2019 | fix t assume t[arith]: "0 < t" "t < a" "g a < g t" "0 < g t" | |
| 2020 | assume ineq: "norm (1 - g a / g t) < 2" "norm (f a - x * g a) / norm (g t) < e / 2" | |
| 2021 | ||
| 2022 | have "\<exists>y. t < y \<and> y < a \<and> (g a - g t) * f' y = (f a - f t) * g' y" | |
| 2023 | using f0 g0 t(1,2) by (intro GMVT') (force intro!: DERIV_isCont)+ | |
| 53381 | 2024 | then obtain y where [arith]: "t < y" "y < a" | 
| 2025 | and D_eq0: "(g a - g t) * f' y = (f a - f t) * g' y" | |
| 2026 | by blast | |
| 2027 | from D_eq0 have D_eq: "(f t - f a) / (g t - g a) = f' y / g' y" | |
| 60758 | 2028 | using \<open>g a < g t\<close> g'_neq_0[of y] by (auto simp add: field_simps) | 
| 50327 | 2029 | |
| 2030 | have *: "f t / g t - x = ((f t - f a) / (g t - g a) - x) * (1 - g a / g t) + (f a - x * g a) / g t" | |
| 2031 | by (simp add: field_simps) | |
| 2032 | have "norm (f t / g t - x) \<le> | |
| 2033 | norm (((f t - f a) / (g t - g a) - x) * (1 - g a / g t)) + norm ((f a - x * g a) / g t)" | |
| 2034 | unfolding * by (rule norm_triangle_ineq) | |
| 2035 | also have "\<dots> = dist (f' y / g' y) x * norm (1 - g a / g t) + norm (f a - x * g a) / norm (g t)" | |
| 2036 | by (simp add: abs_mult D_eq dist_real_def) | |
| 2037 | also have "\<dots> < (e / 4) * 2 + e / 2" | |
| 60758 | 2038 | using ineq Df[of y] \<open>0 < e\<close> by (intro add_le_less_mono mult_mono) auto | 
| 50327 | 2039 | finally show "dist (f t / g t) x < e" | 
| 2040 | by (simp add: dist_real_def) | |
| 2041 | qed | |
| 2042 | qed | |
| 2043 | ||
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2044 | lemma lhopital_right_at_top: | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2045 | "LIM x at_right x. (g::real \<Rightarrow> real) x :> at_top \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2046 | eventually (\<lambda>x. g' x \<noteq> 0) (at_right x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2047 | eventually (\<lambda>x. DERIV f x :> f' x) (at_right x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2048 | eventually (\<lambda>x. DERIV g x :> g' x) (at_right x) \<Longrightarrow> | 
| 61973 | 2049 | ((\<lambda> x. (f' x / g' x)) \<longlongrightarrow> y) (at_right x) \<Longrightarrow> | 
| 2050 | ((\<lambda> x. f x / g x) \<longlongrightarrow> y) (at_right x)" | |
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2051 | unfolding eventually_at_right_to_0[of _ x] filterlim_at_right_to_0[of _ _ x] DERIV_shift | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2052 | by (rule lhopital_right_0_at_top) | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2053 | |
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2054 | lemma lhopital_left_at_top: | 
| 63558 | 2055 | "LIM x at_left x. g x :> at_top \<Longrightarrow> | 
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2056 | eventually (\<lambda>x. g' x \<noteq> 0) (at_left x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2057 | eventually (\<lambda>x. DERIV f x :> f' x) (at_left x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2058 | eventually (\<lambda>x. DERIV g x :> g' x) (at_left x) \<Longrightarrow> | 
| 61973 | 2059 | ((\<lambda> x. (f' x / g' x)) \<longlongrightarrow> y) (at_left x) \<Longrightarrow> | 
| 2060 | ((\<lambda> x. f x / g x) \<longlongrightarrow> y) (at_left x)" | |
| 63558 | 2061 | for x :: real | 
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2062 | unfolding eventually_at_left_to_right filterlim_at_left_to_right DERIV_mirror | 
| 56479 
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
 hoelzl parents: 
56409diff
changeset | 2063 | by (rule lhopital_right_at_top[where f'="\<lambda>x. - f' (- x)"]) (auto simp: DERIV_mirror) | 
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2064 | |
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2065 | lemma lhopital_at_top: | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2066 | "LIM x at x. (g::real \<Rightarrow> real) x :> at_top \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2067 | eventually (\<lambda>x. g' x \<noteq> 0) (at x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2068 | eventually (\<lambda>x. DERIV f x :> f' x) (at x) \<Longrightarrow> | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2069 | eventually (\<lambda>x. DERIV g x :> g' x) (at x) \<Longrightarrow> | 
| 61973 | 2070 | ((\<lambda> x. (f' x / g' x)) \<longlongrightarrow> y) (at x) \<Longrightarrow> | 
| 2071 | ((\<lambda> x. f x / g x) \<longlongrightarrow> y) (at x)" | |
| 50330 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2072 | unfolding eventually_at_split filterlim_at_split | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2073 | by (auto intro!: lhopital_right_at_top[of g x g' f f'] lhopital_left_at_top[of g x g' f f']) | 
| 
d0b12171118e
conversion rules for at, at_left and at_right; applied to l'Hopital's rules.
 hoelzl parents: 
50329diff
changeset | 2074 | |
| 50347 | 2075 | lemma lhospital_at_top_at_top: | 
| 2076 | fixes f g :: "real \<Rightarrow> real" | |
| 2077 | assumes g_0: "LIM x at_top. g x :> at_top" | |
| 63558 | 2078 | and g': "eventually (\<lambda>x. g' x \<noteq> 0) at_top" | 
| 2079 | and Df: "eventually (\<lambda>x. DERIV f x :> f' x) at_top" | |
| 2080 | and Dg: "eventually (\<lambda>x. DERIV g x :> g' x) at_top" | |
| 2081 | and lim: "((\<lambda> x. (f' x / g' x)) \<longlongrightarrow> x) at_top" | |
| 61973 | 2082 | shows "((\<lambda> x. f x / g x) \<longlongrightarrow> x) at_top" | 
| 50347 | 2083 | unfolding filterlim_at_top_to_right | 
| 2084 | proof (rule lhopital_right_0_at_top) | |
| 2085 | let ?F = "\<lambda>x. f (inverse x)" | |
| 2086 | let ?G = "\<lambda>x. g (inverse x)" | |
| 2087 | let ?R = "at_right (0::real)" | |
| 2088 | let ?D = "\<lambda>f' x. f' (inverse x) * - (inverse x ^ Suc (Suc 0))" | |
| 2089 | show "LIM x ?R. ?G x :> at_top" | |
| 2090 | using g_0 unfolding filterlim_at_top_to_right . | |
| 2091 | show "eventually (\<lambda>x. DERIV ?G x :> ?D g' x) ?R" | |
| 2092 | unfolding eventually_at_right_to_top | |
| 63558 | 2093 | using Dg eventually_ge_at_top[where c=1] | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 2094 | by eventually_elim (rule derivative_eq_intros DERIV_chain'[where f=inverse] | simp)+ | 
| 50347 | 2095 | show "eventually (\<lambda>x. DERIV ?F x :> ?D f' x) ?R" | 
| 2096 | unfolding eventually_at_right_to_top | |
| 63558 | 2097 | using Df eventually_ge_at_top[where c=1] | 
| 68638 
87d1bff264df
de-applying and meta-quantifying
 paulson <lp15@cam.ac.uk> parents: 
68635diff
changeset | 2098 | by eventually_elim (rule derivative_eq_intros DERIV_chain'[where f=inverse] | simp)+ | 
| 50347 | 2099 | show "eventually (\<lambda>x. ?D g' x \<noteq> 0) ?R" | 
| 2100 | unfolding eventually_at_right_to_top | |
| 63558 | 2101 | using g' eventually_ge_at_top[where c=1] | 
| 50347 | 2102 | by eventually_elim auto | 
| 61973 | 2103 | show "((\<lambda>x. ?D f' x / ?D g' x) \<longlongrightarrow> x) ?R" | 
| 50347 | 2104 | unfolding filterlim_at_right_to_top | 
| 2105 | apply (intro filterlim_cong[THEN iffD2, OF refl refl _ lim]) | |
| 63558 | 2106 | using eventually_ge_at_top[where c=1] | 
| 56479 
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
 hoelzl parents: 
56409diff
changeset | 2107 | by eventually_elim simp | 
| 50347 | 2108 | qed | 
| 2109 | ||
| 63713 | 2110 | lemma lhopital_right_at_top_at_top: | 
| 2111 | fixes f g :: "real \<Rightarrow> real" | |
| 2112 | assumes f_0: "LIM x at_right a. f x :> at_top" | |
| 2113 | assumes g_0: "LIM x at_right a. g x :> at_top" | |
| 2114 | and ev: | |
| 2115 | "eventually (\<lambda>x. DERIV f x :> f' x) (at_right a)" | |
| 2116 | "eventually (\<lambda>x. DERIV g x :> g' x) (at_right a)" | |
| 2117 | and lim: "filterlim (\<lambda> x. (f' x / g' x)) at_top (at_right a)" | |
| 2118 | shows "filterlim (\<lambda> x. f x / g x) at_top (at_right a)" | |
| 2119 | proof - | |
| 2120 | from lim have pos: "eventually (\<lambda>x. f' x / g' x > 0) (at_right a)" | |
| 2121 | unfolding filterlim_at_top_dense by blast | |
| 2122 | have "((\<lambda>x. g x / f x) \<longlongrightarrow> 0) (at_right a)" | |
| 2123 | proof (rule lhopital_right_at_top) | |
| 2124 | from pos show "eventually (\<lambda>x. f' x \<noteq> 0) (at_right a)" by eventually_elim auto | |
| 2125 | from tendsto_inverse_0_at_top[OF lim] | |
| 2126 | show "((\<lambda>x. g' x / f' x) \<longlongrightarrow> 0) (at_right a)" by simp | |
| 2127 | qed fact+ | |
| 2128 | moreover from f_0 g_0 | |
| 2129 | have "eventually (\<lambda>x. f x > 0) (at_right a)" "eventually (\<lambda>x. g x > 0) (at_right a)" | |
| 2130 | unfolding filterlim_at_top_dense by blast+ | |
| 2131 | hence "eventually (\<lambda>x. g x / f x > 0) (at_right a)" by eventually_elim simp | |
| 2132 | ultimately have "filterlim (\<lambda>x. inverse (g x / f x)) at_top (at_right a)" | |
| 2133 | by (rule filterlim_inverse_at_top) | |
| 2134 | thus ?thesis by simp | |
| 2135 | qed | |
| 63717 | 2136 | |
| 63713 | 2137 | lemma lhopital_right_at_top_at_bot: | 
| 2138 | fixes f g :: "real \<Rightarrow> real" | |
| 2139 | assumes f_0: "LIM x at_right a. f x :> at_top" | |
| 2140 | assumes g_0: "LIM x at_right a. g x :> at_bot" | |
| 2141 | and ev: | |
| 2142 | "eventually (\<lambda>x. DERIV f x :> f' x) (at_right a)" | |
| 2143 | "eventually (\<lambda>x. DERIV g x :> g' x) (at_right a)" | |
| 2144 | and lim: "filterlim (\<lambda> x. (f' x / g' x)) at_bot (at_right a)" | |
| 2145 | shows "filterlim (\<lambda> x. f x / g x) at_bot (at_right a)" | |
| 2146 | proof - | |
| 2147 | from ev(2) have ev': "eventually (\<lambda>x. DERIV (\<lambda>x. -g x) x :> -g' x) (at_right a)" | |
| 2148 | by eventually_elim (auto intro: derivative_intros) | |
| 2149 | have "filterlim (\<lambda>x. f x / (-g x)) at_top (at_right a)" | |
| 2150 | by (rule lhopital_right_at_top_at_top[where f' = f' and g' = "\<lambda>x. -g' x"]) | |
| 2151 | (insert assms ev', auto simp: filterlim_uminus_at_bot) | |
| 2152 | hence "filterlim (\<lambda>x. -(f x / g x)) at_top (at_right a)" by simp | |
| 2153 | thus ?thesis by (simp add: filterlim_uminus_at_bot) | |
| 2154 | qed | |
| 2155 | ||
| 2156 | lemma lhopital_left_at_top_at_top: | |
| 2157 | fixes f g :: "real \<Rightarrow> real" | |
| 2158 | assumes f_0: "LIM x at_left a. f x :> at_top" | |
| 2159 | assumes g_0: "LIM x at_left a. g x :> at_top" | |
| 2160 | and ev: | |
| 2161 | "eventually (\<lambda>x. DERIV f x :> f' x) (at_left a)" | |
| 2162 | "eventually (\<lambda>x. DERIV g x :> g' x) (at_left a)" | |
| 2163 | and lim: "filterlim (\<lambda> x. (f' x / g' x)) at_top (at_left a)" | |
| 2164 | shows "filterlim (\<lambda> x. f x / g x) at_top (at_left a)" | |
| 2165 | by (insert assms, unfold eventually_at_left_to_right filterlim_at_left_to_right DERIV_mirror, | |
| 2166 | rule lhopital_right_at_top_at_top[where f'="\<lambda>x. - f' (- x)"]) | |
| 2167 | (insert assms, auto simp: DERIV_mirror) | |
| 2168 | ||
| 2169 | lemma lhopital_left_at_top_at_bot: | |
| 2170 | fixes f g :: "real \<Rightarrow> real" | |
| 2171 | assumes f_0: "LIM x at_left a. f x :> at_top" | |
| 2172 | assumes g_0: "LIM x at_left a. g x :> at_bot" | |
| 2173 | and ev: | |
| 2174 | "eventually (\<lambda>x. DERIV f x :> f' x) (at_left a)" | |
| 2175 | "eventually (\<lambda>x. DERIV g x :> g' x) (at_left a)" | |
| 2176 | and lim: "filterlim (\<lambda> x. (f' x / g' x)) at_bot (at_left a)" | |
| 2177 | shows "filterlim (\<lambda> x. f x / g x) at_bot (at_left a)" | |
| 2178 | by (insert assms, unfold eventually_at_left_to_right filterlim_at_left_to_right DERIV_mirror, | |
| 2179 | rule lhopital_right_at_top_at_bot[where f'="\<lambda>x. - f' (- x)"]) | |
| 2180 | (insert assms, auto simp: DERIV_mirror) | |
| 2181 | ||
| 2182 | lemma lhopital_at_top_at_top: | |
| 2183 | fixes f g :: "real \<Rightarrow> real" | |
| 2184 | assumes f_0: "LIM x at a. f x :> at_top" | |
| 2185 | assumes g_0: "LIM x at a. g x :> at_top" | |
| 2186 | and ev: | |
| 2187 | "eventually (\<lambda>x. DERIV f x :> f' x) (at a)" | |
| 2188 | "eventually (\<lambda>x. DERIV g x :> g' x) (at a)" | |
| 2189 | and lim: "filterlim (\<lambda> x. (f' x / g' x)) at_top (at a)" | |
| 2190 | shows "filterlim (\<lambda> x. f x / g x) at_top (at a)" | |
| 2191 | using assms unfolding eventually_at_split filterlim_at_split | |
| 2192 | by (auto intro!: lhopital_right_at_top_at_top[of f a g f' g'] | |
| 2193 | lhopital_left_at_top_at_top[of f a g f' g']) | |
| 2194 | ||
| 2195 | lemma lhopital_at_top_at_bot: | |
| 2196 | fixes f g :: "real \<Rightarrow> real" | |
| 2197 | assumes f_0: "LIM x at a. f x :> at_top" | |
| 2198 | assumes g_0: "LIM x at a. g x :> at_bot" | |
| 2199 | and ev: | |
| 2200 | "eventually (\<lambda>x. DERIV f x :> f' x) (at a)" | |
| 2201 | "eventually (\<lambda>x. DERIV g x :> g' x) (at a)" | |
| 2202 | and lim: "filterlim (\<lambda> x. (f' x / g' x)) at_bot (at a)" | |
| 2203 | shows "filterlim (\<lambda> x. f x / g x) at_bot (at a)" | |
| 2204 | using assms unfolding eventually_at_split filterlim_at_split | |
| 2205 | by (auto intro!: lhopital_right_at_top_at_bot[of f a g f' g'] | |
| 2206 | lhopital_left_at_top_at_bot[of f a g f' g']) | |
| 2207 | ||
| 21164 | 2208 | end |