src/HOL/Deriv.thy
author blanchet
Wed, 04 Mar 2009 11:05:29 +0100
changeset 30242 aea5d7fa7ef5
parent 30240 5b25fee0362c
parent 29924 391dcbd7e4dd
child 30269 ecd6f0ca62ea
permissions -rw-r--r--
Merge.
huffman@21164
     1
(*  Title       : Deriv.thy
huffman@21164
     2
    ID          : $Id$
huffman@21164
     3
    Author      : Jacques D. Fleuriot
huffman@21164
     4
    Copyright   : 1998  University of Cambridge
huffman@21164
     5
    Conversion to Isar and new proofs by Lawrence C Paulson, 2004
huffman@21164
     6
    GMVT by Benjamin Porter, 2005
huffman@21164
     7
*)
huffman@21164
     8
huffman@21164
     9
header{* Differentiation *}
huffman@21164
    10
huffman@21164
    11
theory Deriv
huffman@29924
    12
imports Lim
huffman@21164
    13
begin
huffman@21164
    14
huffman@22984
    15
text{*Standard Definitions*}
huffman@21164
    16
huffman@21164
    17
definition
huffman@21784
    18
  deriv :: "['a::real_normed_field \<Rightarrow> 'a, 'a, 'a] \<Rightarrow> bool"
huffman@21164
    19
    --{*Differentiation: D is derivative of function f at x*}
wenzelm@21404
    20
          ("(DERIV (_)/ (_)/ :> (_))" [1000, 1000, 60] 60) where
huffman@21784
    21
  "DERIV f x :> D = ((%h. (f(x + h) - f x) / h) -- 0 --> D)"
huffman@21164
    22
huffman@21164
    23
consts
huffman@21164
    24
  Bolzano_bisect :: "[real*real=>bool, real, real, nat] => (real*real)"
huffman@21164
    25
primrec
huffman@21164
    26
  "Bolzano_bisect P a b 0 = (a,b)"
huffman@21164
    27
  "Bolzano_bisect P a b (Suc n) =
huffman@21164
    28
      (let (x,y) = Bolzano_bisect P a b n
huffman@21164
    29
       in if P(x, (x+y)/2) then ((x+y)/2, y)
huffman@21164
    30
                            else (x, (x+y)/2))"
huffman@21164
    31
huffman@21164
    32
huffman@21164
    33
subsection {* Derivatives *}
huffman@21164
    34
huffman@21784
    35
lemma DERIV_iff: "(DERIV f x :> D) = ((%h. (f(x + h) - f(x))/h) -- 0 --> D)"
huffman@21164
    36
by (simp add: deriv_def)
huffman@21164
    37
huffman@21784
    38
lemma DERIV_D: "DERIV f x :> D ==> (%h. (f(x + h) - f(x))/h) -- 0 --> D"
huffman@21164
    39
by (simp add: deriv_def)
huffman@21164
    40
huffman@21164
    41
lemma DERIV_const [simp]: "DERIV (\<lambda>x. k) x :> 0"
huffman@21164
    42
by (simp add: deriv_def)
huffman@21164
    43
huffman@23069
    44
lemma DERIV_ident [simp]: "DERIV (\<lambda>x. x) x :> 1"
nipkow@23398
    45
by (simp add: deriv_def cong: LIM_cong)
huffman@21164
    46
huffman@21164
    47
lemma add_diff_add:
huffman@21164
    48
  fixes a b c d :: "'a::ab_group_add"
huffman@21164
    49
  shows "(a + c) - (b + d) = (a - b) + (c - d)"
huffman@21164
    50
by simp
huffman@21164
    51
huffman@21164
    52
lemma DERIV_add:
huffman@21164
    53
  "\<lbrakk>DERIV f x :> D; DERIV g x :> E\<rbrakk> \<Longrightarrow> DERIV (\<lambda>x. f x + g x) x :> D + E"
huffman@21784
    54
by (simp only: deriv_def add_diff_add add_divide_distrib LIM_add)
huffman@21164
    55
huffman@21164
    56
lemma DERIV_minus:
huffman@21164
    57
  "DERIV f x :> D \<Longrightarrow> DERIV (\<lambda>x. - f x) x :> - D"
huffman@21784
    58
by (simp only: deriv_def minus_diff_minus divide_minus_left LIM_minus)
huffman@21164
    59
huffman@21164
    60
lemma DERIV_diff:
huffman@21164
    61
  "\<lbrakk>DERIV f x :> D; DERIV g x :> E\<rbrakk> \<Longrightarrow> DERIV (\<lambda>x. f x - g x) x :> D - E"
huffman@21164
    62
by (simp only: diff_def DERIV_add DERIV_minus)
huffman@21164
    63
huffman@21164
    64
lemma DERIV_add_minus:
huffman@21164
    65
  "\<lbrakk>DERIV f x :> D; DERIV g x :> E\<rbrakk> \<Longrightarrow> DERIV (\<lambda>x. f x + - g x) x :> D + - E"
huffman@21164
    66
by (simp only: DERIV_add DERIV_minus)
huffman@21164
    67
huffman@21164
    68
lemma DERIV_isCont: "DERIV f x :> D \<Longrightarrow> isCont f x"
huffman@21164
    69
proof (unfold isCont_iff)
huffman@21164
    70
  assume "DERIV f x :> D"
huffman@21784
    71
  hence "(\<lambda>h. (f(x+h) - f(x)) / h) -- 0 --> D"
huffman@21164
    72
    by (rule DERIV_D)
huffman@21784
    73
  hence "(\<lambda>h. (f(x+h) - f(x)) / h * h) -- 0 --> D * 0"
huffman@23069
    74
    by (intro LIM_mult LIM_ident)
huffman@21784
    75
  hence "(\<lambda>h. (f(x+h) - f(x)) * (h / h)) -- 0 --> 0"
huffman@21784
    76
    by simp
huffman@21784
    77
  hence "(\<lambda>h. f(x+h) - f(x)) -- 0 --> 0"
nipkow@23398
    78
    by (simp cong: LIM_cong)
huffman@21164
    79
  thus "(\<lambda>h. f(x+h)) -- 0 --> f(x)"
huffman@21164
    80
    by (simp add: LIM_def)
huffman@21164
    81
qed
huffman@21164
    82
huffman@21164
    83
lemma DERIV_mult_lemma:
huffman@21784
    84
  fixes a b c d :: "'a::real_field"
huffman@21784
    85
  shows "(a * b - c * d) / h = a * ((b - d) / h) + ((a - c) / h) * d"
nipkow@23477
    86
by (simp add: diff_minus add_divide_distrib [symmetric] ring_distribs)
huffman@21164
    87
huffman@21164
    88
lemma DERIV_mult':
huffman@21164
    89
  assumes f: "DERIV f x :> D"
huffman@21164
    90
  assumes g: "DERIV g x :> E"
huffman@21164
    91
  shows "DERIV (\<lambda>x. f x * g x) x :> f x * E + D * g x"
huffman@21164
    92
proof (unfold deriv_def)
huffman@21164
    93
  from f have "isCont f x"
huffman@21164
    94
    by (rule DERIV_isCont)
huffman@21164
    95
  hence "(\<lambda>h. f(x+h)) -- 0 --> f x"
huffman@21164
    96
    by (simp only: isCont_iff)
huffman@21784
    97
  hence "(\<lambda>h. f(x+h) * ((g(x+h) - g x) / h) +
huffman@21784
    98
              ((f(x+h) - f x) / h) * g x)
huffman@21164
    99
          -- 0 --> f x * E + D * g x"
huffman@22613
   100
    by (intro LIM_add LIM_mult LIM_const DERIV_D f g)
huffman@21784
   101
  thus "(\<lambda>h. (f(x+h) * g(x+h) - f x * g x) / h)
huffman@21164
   102
         -- 0 --> f x * E + D * g x"
huffman@21164
   103
    by (simp only: DERIV_mult_lemma)
huffman@21164
   104
qed
huffman@21164
   105
huffman@21164
   106
lemma DERIV_mult:
huffman@21164
   107
     "[| DERIV f x :> Da; DERIV g x :> Db |]
huffman@21164
   108
      ==> DERIV (%x. f x * g x) x :> (Da * g(x)) + (Db * f(x))"
huffman@21164
   109
by (drule (1) DERIV_mult', simp only: mult_commute add_commute)
huffman@21164
   110
huffman@21164
   111
lemma DERIV_unique:
huffman@21164
   112
      "[| DERIV f x :> D; DERIV f x :> E |] ==> D = E"
huffman@21164
   113
apply (simp add: deriv_def)
huffman@21164
   114
apply (blast intro: LIM_unique)
huffman@21164
   115
done
huffman@21164
   116
huffman@21164
   117
text{*Differentiation of finite sum*}
huffman@21164
   118
huffman@21164
   119
lemma DERIV_sumr [rule_format (no_asm)]:
huffman@21164
   120
     "(\<forall>r. m \<le> r & r < (m + n) --> DERIV (%x. f r x) x :> (f' r x))
huffman@21164
   121
      --> DERIV (%x. \<Sum>n=m..<n::nat. f n x :: real) x :> (\<Sum>r=m..<n. f' r x)"
huffman@21164
   122
apply (induct "n")
huffman@21164
   123
apply (auto intro: DERIV_add)
huffman@21164
   124
done
huffman@21164
   125
huffman@21164
   126
text{*Alternative definition for differentiability*}
huffman@21164
   127
huffman@21164
   128
lemma DERIV_LIM_iff:
huffman@21784
   129
     "((%h. (f(a + h) - f(a)) / h) -- 0 --> D) =
huffman@21164
   130
      ((%x. (f(x)-f(a)) / (x-a)) -- a --> D)"
huffman@21164
   131
apply (rule iffI)
huffman@21164
   132
apply (drule_tac k="- a" in LIM_offset)
huffman@21164
   133
apply (simp add: diff_minus)
huffman@21164
   134
apply (drule_tac k="a" in LIM_offset)
huffman@21164
   135
apply (simp add: add_commute)
huffman@21164
   136
done
huffman@21164
   137
huffman@21784
   138
lemma DERIV_iff2: "(DERIV f x :> D) = ((%z. (f(z) - f(x)) / (z-x)) -- x --> D)"
huffman@21784
   139
by (simp add: deriv_def diff_minus [symmetric] DERIV_LIM_iff)
huffman@21164
   140
huffman@21164
   141
lemma inverse_diff_inverse:
huffman@21164
   142
  "\<lbrakk>(a::'a::division_ring) \<noteq> 0; b \<noteq> 0\<rbrakk>
huffman@21164
   143
   \<Longrightarrow> inverse a - inverse b = - (inverse a * (a - b) * inverse b)"
nipkow@29667
   144
by (simp add: algebra_simps)
huffman@21164
   145
huffman@21164
   146
lemma DERIV_inverse_lemma:
huffman@21784
   147
  "\<lbrakk>a \<noteq> 0; b \<noteq> (0::'a::real_normed_field)\<rbrakk>
huffman@21784
   148
   \<Longrightarrow> (inverse a - inverse b) / h
huffman@21784
   149
     = - (inverse a * ((a - b) / h) * inverse b)"
huffman@21164
   150
by (simp add: inverse_diff_inverse)
huffman@21164
   151
huffman@21164
   152
lemma DERIV_inverse':
huffman@21164
   153
  assumes der: "DERIV f x :> D"
huffman@21164
   154
  assumes neq: "f x \<noteq> 0"
huffman@21164
   155
  shows "DERIV (\<lambda>x. inverse (f x)) x :> - (inverse (f x) * D * inverse (f x))"
huffman@21164
   156
    (is "DERIV _ _ :> ?E")
huffman@21164
   157
proof (unfold DERIV_iff2)
huffman@21164
   158
  from der have lim_f: "f -- x --> f x"
huffman@21164
   159
    by (rule DERIV_isCont [unfolded isCont_def])
huffman@21164
   160
huffman@21164
   161
  from neq have "0 < norm (f x)" by simp
huffman@21164
   162
  with LIM_D [OF lim_f] obtain s
huffman@21164
   163
    where s: "0 < s"
huffman@21164
   164
    and less_fx: "\<And>z. \<lbrakk>z \<noteq> x; norm (z - x) < s\<rbrakk>
huffman@21164
   165
                  \<Longrightarrow> norm (f z - f x) < norm (f x)"
huffman@21164
   166
    by fast
huffman@21164
   167
huffman@21784
   168
  show "(\<lambda>z. (inverse (f z) - inverse (f x)) / (z - x)) -- x --> ?E"
huffman@21164
   169
  proof (rule LIM_equal2 [OF s])
huffman@21784
   170
    fix z
huffman@21164
   171
    assume "z \<noteq> x" "norm (z - x) < s"
huffman@21164
   172
    hence "norm (f z - f x) < norm (f x)" by (rule less_fx)
huffman@21164
   173
    hence "f z \<noteq> 0" by auto
huffman@21784
   174
    thus "(inverse (f z) - inverse (f x)) / (z - x) =
huffman@21784
   175
          - (inverse (f z) * ((f z - f x) / (z - x)) * inverse (f x))"
huffman@21164
   176
      using neq by (rule DERIV_inverse_lemma)
huffman@21164
   177
  next
huffman@21784
   178
    from der have "(\<lambda>z. (f z - f x) / (z - x)) -- x --> D"
huffman@21164
   179
      by (unfold DERIV_iff2)
huffman@21784
   180
    thus "(\<lambda>z. - (inverse (f z) * ((f z - f x) / (z - x)) * inverse (f x)))
huffman@21164
   181
          -- x --> ?E"
huffman@22613
   182
      by (intro LIM_mult LIM_inverse LIM_minus LIM_const lim_f neq)
huffman@21164
   183
  qed
huffman@21164
   184
qed
huffman@21164
   185
huffman@21164
   186
lemma DERIV_divide:
huffman@21784
   187
  "\<lbrakk>DERIV f x :> D; DERIV g x :> E; g x \<noteq> 0\<rbrakk>
huffman@21784
   188
   \<Longrightarrow> DERIV (\<lambda>x. f x / g x) x :> (D * g x - f x * E) / (g x * g x)"
huffman@21164
   189
apply (subgoal_tac "f x * - (inverse (g x) * E * inverse (g x)) +
huffman@21164
   190
          D * inverse (g x) = (D * g x - f x * E) / (g x * g x)")
huffman@21164
   191
apply (erule subst)
huffman@21164
   192
apply (unfold divide_inverse)
huffman@21164
   193
apply (erule DERIV_mult')
huffman@21164
   194
apply (erule (1) DERIV_inverse')
nipkow@23477
   195
apply (simp add: ring_distribs nonzero_inverse_mult_distrib)
huffman@21164
   196
apply (simp add: mult_ac)
huffman@21164
   197
done
huffman@21164
   198
huffman@21164
   199
lemma DERIV_power_Suc:
huffman@21784
   200
  fixes f :: "'a \<Rightarrow> 'a::{real_normed_field,recpower}"
huffman@21164
   201
  assumes f: "DERIV f x :> D"
huffman@23431
   202
  shows "DERIV (\<lambda>x. f x ^ Suc n) x :> (1 + of_nat n) * (D * f x ^ n)"
huffman@21164
   203
proof (induct n)
huffman@21164
   204
case 0
huffman@21164
   205
  show ?case by (simp add: power_Suc f)
huffman@21164
   206
case (Suc k)
huffman@21164
   207
  from DERIV_mult' [OF f Suc] show ?case
nipkow@23477
   208
    apply (simp only: of_nat_Suc ring_distribs mult_1_left)
nipkow@29667
   209
    apply (simp only: power_Suc algebra_simps)
huffman@21164
   210
    done
huffman@21164
   211
qed
huffman@21164
   212
huffman@21164
   213
lemma DERIV_power:
huffman@21784
   214
  fixes f :: "'a \<Rightarrow> 'a::{real_normed_field,recpower}"
huffman@21164
   215
  assumes f: "DERIV f x :> D"
huffman@21784
   216
  shows "DERIV (\<lambda>x. f x ^ n) x :> of_nat n * (D * f x ^ (n - Suc 0))"
huffman@21164
   217
by (cases "n", simp, simp add: DERIV_power_Suc f)
huffman@21164
   218
huffman@21164
   219
huffman@29912
   220
text {* Caratheodory formulation of derivative at a point *}
huffman@21164
   221
huffman@21164
   222
lemma CARAT_DERIV:
huffman@21164
   223
     "(DERIV f x :> l) =
huffman@21784
   224
      (\<exists>g. (\<forall>z. f z - f x = g z * (z-x)) & isCont g x & g x = l)"
huffman@21164
   225
      (is "?lhs = ?rhs")
huffman@21164
   226
proof
huffman@21164
   227
  assume der: "DERIV f x :> l"
huffman@21784
   228
  show "\<exists>g. (\<forall>z. f z - f x = g z * (z-x)) \<and> isCont g x \<and> g x = l"
huffman@21164
   229
  proof (intro exI conjI)
huffman@21784
   230
    let ?g = "(%z. if z = x then l else (f z - f x) / (z-x))"
nipkow@23413
   231
    show "\<forall>z. f z - f x = ?g z * (z-x)" by simp
huffman@21164
   232
    show "isCont ?g x" using der
huffman@21164
   233
      by (simp add: isCont_iff DERIV_iff diff_minus
huffman@21164
   234
               cong: LIM_equal [rule_format])
huffman@21164
   235
    show "?g x = l" by simp
huffman@21164
   236
  qed
huffman@21164
   237
next
huffman@21164
   238
  assume "?rhs"
huffman@21164
   239
  then obtain g where
huffman@21784
   240
    "(\<forall>z. f z - f x = g z * (z-x))" and "isCont g x" and "g x = l" by blast
huffman@21164
   241
  thus "(DERIV f x :> l)"
nipkow@23413
   242
     by (auto simp add: isCont_iff DERIV_iff cong: LIM_cong)
huffman@21164
   243
qed
huffman@21164
   244
huffman@21164
   245
lemma DERIV_chain':
huffman@21164
   246
  assumes f: "DERIV f x :> D"
huffman@21164
   247
  assumes g: "DERIV g (f x) :> E"
huffman@21784
   248
  shows "DERIV (\<lambda>x. g (f x)) x :> E * D"
huffman@21164
   249
proof (unfold DERIV_iff2)
huffman@21784
   250
  obtain d where d: "\<forall>y. g y - g (f x) = d y * (y - f x)"
huffman@21164
   251
    and cont_d: "isCont d (f x)" and dfx: "d (f x) = E"
huffman@21164
   252
    using CARAT_DERIV [THEN iffD1, OF g] by fast
huffman@21164
   253
  from f have "f -- x --> f x"
huffman@21164
   254
    by (rule DERIV_isCont [unfolded isCont_def])
huffman@21164
   255
  with cont_d have "(\<lambda>z. d (f z)) -- x --> d (f x)"
huffman@21239
   256
    by (rule isCont_LIM_compose)
huffman@21784
   257
  hence "(\<lambda>z. d (f z) * ((f z - f x) / (z - x)))
huffman@21784
   258
          -- x --> d (f x) * D"
huffman@21784
   259
    by (rule LIM_mult [OF _ f [unfolded DERIV_iff2]])
huffman@21784
   260
  thus "(\<lambda>z. (g (f z) - g (f x)) / (z - x)) -- x --> E * D"
huffman@21164
   261
    by (simp add: d dfx real_scaleR_def)
huffman@21164
   262
qed
huffman@21164
   263
huffman@21164
   264
(* let's do the standard proof though theorem *)
huffman@21164
   265
(* LIM_mult2 follows from a NS proof          *)
huffman@21164
   266
huffman@21164
   267
lemma DERIV_cmult:
huffman@21164
   268
      "DERIV f x :> D ==> DERIV (%x. c * f x) x :> c*D"
huffman@21164
   269
by (drule DERIV_mult' [OF DERIV_const], simp)
huffman@21164
   270
huffman@21164
   271
(* standard version *)
huffman@21164
   272
lemma DERIV_chain: "[| DERIV f (g x) :> Da; DERIV g x :> Db |] ==> DERIV (f o g) x :> Da * Db"
huffman@21164
   273
by (drule (1) DERIV_chain', simp add: o_def real_scaleR_def mult_commute)
huffman@21164
   274
huffman@21164
   275
lemma DERIV_chain2: "[| DERIV f (g x) :> Da; DERIV g x :> Db |] ==> DERIV (%x. f (g x)) x :> Da * Db"
huffman@21164
   276
by (auto dest: DERIV_chain simp add: o_def)
huffman@21164
   277
huffman@21164
   278
(*derivative of linear multiplication*)
huffman@21164
   279
lemma DERIV_cmult_Id [simp]: "DERIV (op * c) x :> c"
huffman@23069
   280
by (cut_tac c = c and x = x in DERIV_ident [THEN DERIV_cmult], simp)
huffman@21164
   281
huffman@21164
   282
lemma DERIV_pow: "DERIV (%x. x ^ n) x :> real n * (x ^ (n - Suc 0))"
huffman@23069
   283
apply (cut_tac DERIV_power [OF DERIV_ident])
huffman@21164
   284
apply (simp add: real_scaleR_def real_of_nat_def)
huffman@21164
   285
done
huffman@21164
   286
huffman@21164
   287
text{*Power of -1*}
huffman@21164
   288
huffman@21784
   289
lemma DERIV_inverse:
huffman@21784
   290
  fixes x :: "'a::{real_normed_field,recpower}"
huffman@21784
   291
  shows "x \<noteq> 0 ==> DERIV (%x. inverse(x)) x :> (-(inverse x ^ Suc (Suc 0)))"
huffman@23069
   292
by (drule DERIV_inverse' [OF DERIV_ident]) (simp add: power_Suc)
huffman@21164
   293
huffman@21164
   294
text{*Derivative of inverse*}
huffman@21784
   295
lemma DERIV_inverse_fun:
huffman@21784
   296
  fixes x :: "'a::{real_normed_field,recpower}"
huffman@21784
   297
  shows "[| DERIV f x :> d; f(x) \<noteq> 0 |]
huffman@21784
   298
      ==> DERIV (%x. inverse(f x)) x :> (- (d * inverse(f(x) ^ Suc (Suc 0))))"
huffman@21784
   299
by (drule (1) DERIV_inverse') (simp add: mult_ac power_Suc nonzero_inverse_mult_distrib)
huffman@21164
   300
huffman@21164
   301
text{*Derivative of quotient*}
huffman@21784
   302
lemma DERIV_quotient:
huffman@21784
   303
  fixes x :: "'a::{real_normed_field,recpower}"
huffman@21784
   304
  shows "[| DERIV f x :> d; DERIV g x :> e; g(x) \<noteq> 0 |]
huffman@21784
   305
       ==> DERIV (%y. f(y) / (g y)) x :> (d*g(x) - (e*f(x))) / (g(x) ^ Suc (Suc 0))"
huffman@21784
   306
by (drule (2) DERIV_divide) (simp add: mult_commute power_Suc)
huffman@21164
   307
huffman@29912
   308
lemma lemma_DERIV_subst: "[| DERIV f x :> D; D = E |] ==> DERIV f x :> E"
huffman@29912
   309
by auto
huffman@29912
   310
huffman@22984
   311
huffman@22984
   312
subsection {* Differentiability predicate *}
huffman@21164
   313
huffman@29169
   314
definition
huffman@29169
   315
  differentiable :: "['a::real_normed_field \<Rightarrow> 'a, 'a] \<Rightarrow> bool"
huffman@29169
   316
    (infixl "differentiable" 60) where
huffman@29169
   317
  "f differentiable x = (\<exists>D. DERIV f x :> D)"
huffman@29169
   318
huffman@29169
   319
lemma differentiableE [elim?]:
huffman@29169
   320
  assumes "f differentiable x"
huffman@29169
   321
  obtains df where "DERIV f x :> df"
huffman@29169
   322
  using prems unfolding differentiable_def ..
huffman@29169
   323
huffman@21164
   324
lemma differentiableD: "f differentiable x ==> \<exists>D. DERIV f x :> D"
huffman@21164
   325
by (simp add: differentiable_def)
huffman@21164
   326
huffman@21164
   327
lemma differentiableI: "DERIV f x :> D ==> f differentiable x"
huffman@21164
   328
by (force simp add: differentiable_def)
huffman@21164
   329
huffman@29169
   330
lemma differentiable_ident [simp]: "(\<lambda>x. x) differentiable x"
huffman@29169
   331
  by (rule DERIV_ident [THEN differentiableI])
huffman@21164
   332
huffman@29169
   333
lemma differentiable_const [simp]: "(\<lambda>z. a) differentiable x"
huffman@29169
   334
  by (rule DERIV_const [THEN differentiableI])
huffman@29169
   335
huffman@29169
   336
lemma differentiable_compose:
huffman@29169
   337
  assumes f: "f differentiable (g x)"
huffman@29169
   338
  assumes g: "g differentiable x"
huffman@29169
   339
  shows "(\<lambda>x. f (g x)) differentiable x"
huffman@29169
   340
proof -
huffman@29169
   341
  from `f differentiable (g x)` obtain df where "DERIV f (g x) :> df" ..
huffman@29169
   342
  moreover
huffman@29169
   343
  from `g differentiable x` obtain dg where "DERIV g x :> dg" ..
huffman@29169
   344
  ultimately
huffman@29169
   345
  have "DERIV (\<lambda>x. f (g x)) x :> df * dg" by (rule DERIV_chain2)
huffman@29169
   346
  thus ?thesis by (rule differentiableI)
huffman@29169
   347
qed
huffman@29169
   348
huffman@29169
   349
lemma differentiable_sum [simp]:
huffman@21164
   350
  assumes "f differentiable x"
huffman@21164
   351
  and "g differentiable x"
huffman@21164
   352
  shows "(\<lambda>x. f x + g x) differentiable x"
huffman@21164
   353
proof -
huffman@29169
   354
  from `f differentiable x` obtain df where "DERIV f x :> df" ..
huffman@29169
   355
  moreover
huffman@29169
   356
  from `g differentiable x` obtain dg where "DERIV g x :> dg" ..
huffman@29169
   357
  ultimately
huffman@29169
   358
  have "DERIV (\<lambda>x. f x + g x) x :> df + dg" by (rule DERIV_add)
huffman@29169
   359
  thus ?thesis by (rule differentiableI)
huffman@21164
   360
qed
huffman@21164
   361
huffman@29169
   362
lemma differentiable_minus [simp]:
huffman@21164
   363
  assumes "f differentiable x"
huffman@29169
   364
  shows "(\<lambda>x. - f x) differentiable x"
huffman@21164
   365
proof -
huffman@29169
   366
  from `f differentiable x` obtain df where "DERIV f x :> df" ..
huffman@29169
   367
  hence "DERIV (\<lambda>x. - f x) x :> - df" by (rule DERIV_minus)
huffman@29169
   368
  thus ?thesis by (rule differentiableI)
huffman@21164
   369
qed
huffman@21164
   370
huffman@29169
   371
lemma differentiable_diff [simp]:
huffman@21164
   372
  assumes "f differentiable x"
huffman@29169
   373
  assumes "g differentiable x"
huffman@29169
   374
  shows "(\<lambda>x. f x - g x) differentiable x"
huffman@29169
   375
  unfolding diff_minus using prems by simp
huffman@29169
   376
huffman@29169
   377
lemma differentiable_mult [simp]:
huffman@29169
   378
  assumes "f differentiable x"
huffman@29169
   379
  assumes "g differentiable x"
huffman@21164
   380
  shows "(\<lambda>x. f x * g x) differentiable x"
huffman@21164
   381
proof -
huffman@29169
   382
  from `f differentiable x` obtain df where "DERIV f x :> df" ..
huffman@29169
   383
  moreover
huffman@29169
   384
  from `g differentiable x` obtain dg where "DERIV g x :> dg" ..
huffman@29169
   385
  ultimately
huffman@29169
   386
  have "DERIV (\<lambda>x. f x * g x) x :> df * g x + dg * f x" by (rule DERIV_mult)
huffman@29169
   387
  thus ?thesis by (rule differentiableI)
huffman@21164
   388
qed
huffman@21164
   389
huffman@29169
   390
lemma differentiable_inverse [simp]:
huffman@29169
   391
  assumes "f differentiable x" and "f x \<noteq> 0"
huffman@29169
   392
  shows "(\<lambda>x. inverse (f x)) differentiable x"
huffman@29169
   393
proof -
huffman@29169
   394
  from `f differentiable x` obtain df where "DERIV f x :> df" ..
huffman@29169
   395
  hence "DERIV (\<lambda>x. inverse (f x)) x :> - (inverse (f x) * df * inverse (f x))"
huffman@29169
   396
    using `f x \<noteq> 0` by (rule DERIV_inverse')
huffman@29169
   397
  thus ?thesis by (rule differentiableI)
huffman@29169
   398
qed
huffman@29169
   399
huffman@29169
   400
lemma differentiable_divide [simp]:
huffman@29169
   401
  assumes "f differentiable x"
huffman@29169
   402
  assumes "g differentiable x" and "g x \<noteq> 0"
huffman@29169
   403
  shows "(\<lambda>x. f x / g x) differentiable x"
huffman@29169
   404
  unfolding divide_inverse using prems by simp
huffman@29169
   405
huffman@29169
   406
lemma differentiable_power [simp]:
huffman@29169
   407
  fixes f :: "'a::{recpower,real_normed_field} \<Rightarrow> 'a"
huffman@29169
   408
  assumes "f differentiable x"
huffman@29169
   409
  shows "(\<lambda>x. f x ^ n) differentiable x"
huffman@29169
   410
  by (induct n, simp, simp add: power_Suc prems)
huffman@29169
   411
huffman@22984
   412
huffman@21164
   413
subsection {* Nested Intervals and Bisection *}
huffman@21164
   414
huffman@21164
   415
text{*Lemmas about nested intervals and proof by bisection (cf.Harrison).
huffman@21164
   416
     All considerably tidied by lcp.*}
huffman@21164
   417
huffman@21164
   418
lemma lemma_f_mono_add [rule_format (no_asm)]: "(\<forall>n. (f::nat=>real) n \<le> f (Suc n)) --> f m \<le> f(m + no)"
huffman@21164
   419
apply (induct "no")
huffman@21164
   420
apply (auto intro: order_trans)
huffman@21164
   421
done
huffman@21164
   422
huffman@21164
   423
lemma f_inc_g_dec_Beq_f: "[| \<forall>n. f(n) \<le> f(Suc n);
huffman@21164
   424
         \<forall>n. g(Suc n) \<le> g(n);
huffman@21164
   425
         \<forall>n. f(n) \<le> g(n) |]
huffman@21164
   426
      ==> Bseq (f :: nat \<Rightarrow> real)"
huffman@21164
   427
apply (rule_tac k = "f 0" and K = "g 0" in BseqI2, rule allI)
huffman@21164
   428
apply (induct_tac "n")
huffman@21164
   429
apply (auto intro: order_trans)
huffman@21164
   430
apply (rule_tac y = "g (Suc na)" in order_trans)
huffman@21164
   431
apply (induct_tac [2] "na")
huffman@21164
   432
apply (auto intro: order_trans)
huffman@21164
   433
done
huffman@21164
   434
huffman@21164
   435
lemma f_inc_g_dec_Beq_g: "[| \<forall>n. f(n) \<le> f(Suc n);
huffman@21164
   436
         \<forall>n. g(Suc n) \<le> g(n);
huffman@21164
   437
         \<forall>n. f(n) \<le> g(n) |]
huffman@21164
   438
      ==> Bseq (g :: nat \<Rightarrow> real)"
huffman@21164
   439
apply (subst Bseq_minus_iff [symmetric])
huffman@21164
   440
apply (rule_tac g = "%x. - (f x)" in f_inc_g_dec_Beq_f)
huffman@21164
   441
apply auto
huffman@21164
   442
done
huffman@21164
   443
huffman@21164
   444
lemma f_inc_imp_le_lim:
huffman@21164
   445
  fixes f :: "nat \<Rightarrow> real"
huffman@21164
   446
  shows "\<lbrakk>\<forall>n. f n \<le> f (Suc n); convergent f\<rbrakk> \<Longrightarrow> f n \<le> lim f"
huffman@21164
   447
apply (rule linorder_not_less [THEN iffD1])
huffman@21164
   448
apply (auto simp add: convergent_LIMSEQ_iff LIMSEQ_iff monoseq_Suc)
huffman@21164
   449
apply (drule real_less_sum_gt_zero)
huffman@21164
   450
apply (drule_tac x = "f n + - lim f" in spec, safe)
huffman@21164
   451
apply (drule_tac P = "%na. no\<le>na --> ?Q na" and x = "no + n" in spec, auto)
huffman@21164
   452
apply (subgoal_tac "lim f \<le> f (no + n) ")
huffman@21164
   453
apply (drule_tac no=no and m=n in lemma_f_mono_add)
huffman@21164
   454
apply (auto simp add: add_commute)
huffman@21164
   455
apply (induct_tac "no")
huffman@21164
   456
apply simp
huffman@21164
   457
apply (auto intro: order_trans simp add: diff_minus abs_if)
huffman@21164
   458
done
huffman@21164
   459
huffman@21164
   460
lemma lim_uminus: "convergent g ==> lim (%x. - g x) = - (lim g)"
huffman@21164
   461
apply (rule LIMSEQ_minus [THEN limI])
huffman@21164
   462
apply (simp add: convergent_LIMSEQ_iff)
huffman@21164
   463
done
huffman@21164
   464
huffman@21164
   465
lemma g_dec_imp_lim_le:
huffman@21164
   466
  fixes g :: "nat \<Rightarrow> real"
huffman@21164
   467
  shows "\<lbrakk>\<forall>n. g (Suc n) \<le> g(n); convergent g\<rbrakk> \<Longrightarrow> lim g \<le> g n"
huffman@21164
   468
apply (subgoal_tac "- (g n) \<le> - (lim g) ")
huffman@21164
   469
apply (cut_tac [2] f = "%x. - (g x)" in f_inc_imp_le_lim)
huffman@21164
   470
apply (auto simp add: lim_uminus convergent_minus_iff [symmetric])
huffman@21164
   471
done
huffman@21164
   472
huffman@21164
   473
lemma lemma_nest: "[| \<forall>n. f(n) \<le> f(Suc n);
huffman@21164
   474
         \<forall>n. g(Suc n) \<le> g(n);
huffman@21164
   475
         \<forall>n. f(n) \<le> g(n) |]
huffman@21164
   476
      ==> \<exists>l m :: real. l \<le> m &  ((\<forall>n. f(n) \<le> l) & f ----> l) &
huffman@21164
   477
                            ((\<forall>n. m \<le> g(n)) & g ----> m)"
huffman@21164
   478
apply (subgoal_tac "monoseq f & monoseq g")
huffman@21164
   479
prefer 2 apply (force simp add: LIMSEQ_iff monoseq_Suc)
huffman@21164
   480
apply (subgoal_tac "Bseq f & Bseq g")
huffman@21164
   481
prefer 2 apply (blast intro: f_inc_g_dec_Beq_f f_inc_g_dec_Beq_g)
huffman@21164
   482
apply (auto dest!: Bseq_monoseq_convergent simp add: convergent_LIMSEQ_iff)
huffman@21164
   483
apply (rule_tac x = "lim f" in exI)
huffman@21164
   484
apply (rule_tac x = "lim g" in exI)
huffman@21164
   485
apply (auto intro: LIMSEQ_le)
huffman@21164
   486
apply (auto simp add: f_inc_imp_le_lim g_dec_imp_lim_le convergent_LIMSEQ_iff)
huffman@21164
   487
done
huffman@21164
   488
huffman@21164
   489
lemma lemma_nest_unique: "[| \<forall>n. f(n) \<le> f(Suc n);
huffman@21164
   490
         \<forall>n. g(Suc n) \<le> g(n);
huffman@21164
   491
         \<forall>n. f(n) \<le> g(n);
huffman@21164
   492
         (%n. f(n) - g(n)) ----> 0 |]
huffman@21164
   493
      ==> \<exists>l::real. ((\<forall>n. f(n) \<le> l) & f ----> l) &
huffman@21164
   494
                ((\<forall>n. l \<le> g(n)) & g ----> l)"
huffman@21164
   495
apply (drule lemma_nest, auto)
huffman@21164
   496
apply (subgoal_tac "l = m")
huffman@21164
   497
apply (drule_tac [2] X = f in LIMSEQ_diff)
huffman@21164
   498
apply (auto intro: LIMSEQ_unique)
huffman@21164
   499
done
huffman@21164
   500
huffman@21164
   501
text{*The universal quantifiers below are required for the declaration
huffman@21164
   502
  of @{text Bolzano_nest_unique} below.*}
huffman@21164
   503
huffman@21164
   504
lemma Bolzano_bisect_le:
huffman@21164
   505
 "a \<le> b ==> \<forall>n. fst (Bolzano_bisect P a b n) \<le> snd (Bolzano_bisect P a b n)"
huffman@21164
   506
apply (rule allI)
huffman@21164
   507
apply (induct_tac "n")
huffman@21164
   508
apply (auto simp add: Let_def split_def)
huffman@21164
   509
done
huffman@21164
   510
huffman@21164
   511
lemma Bolzano_bisect_fst_le_Suc: "a \<le> b ==>
huffman@21164
   512
   \<forall>n. fst(Bolzano_bisect P a b n) \<le> fst (Bolzano_bisect P a b (Suc n))"
huffman@21164
   513
apply (rule allI)
huffman@21164
   514
apply (induct_tac "n")
huffman@21164
   515
apply (auto simp add: Bolzano_bisect_le Let_def split_def)
huffman@21164
   516
done
huffman@21164
   517
huffman@21164
   518
lemma Bolzano_bisect_Suc_le_snd: "a \<le> b ==>
huffman@21164
   519
   \<forall>n. snd(Bolzano_bisect P a b (Suc n)) \<le> snd (Bolzano_bisect P a b n)"
huffman@21164
   520
apply (rule allI)
huffman@21164
   521
apply (induct_tac "n")
huffman@21164
   522
apply (auto simp add: Bolzano_bisect_le Let_def split_def)
huffman@21164
   523
done
huffman@21164
   524
huffman@21164
   525
lemma eq_divide_2_times_iff: "((x::real) = y / (2 * z)) = (2 * x = y/z)"
huffman@21164
   526
apply (auto)
huffman@21164
   527
apply (drule_tac f = "%u. (1/2) *u" in arg_cong)
huffman@21164
   528
apply (simp)
huffman@21164
   529
done
huffman@21164
   530
huffman@21164
   531
lemma Bolzano_bisect_diff:
huffman@21164
   532
     "a \<le> b ==>
huffman@21164
   533
      snd(Bolzano_bisect P a b n) - fst(Bolzano_bisect P a b n) =
huffman@21164
   534
      (b-a) / (2 ^ n)"
huffman@21164
   535
apply (induct "n")
huffman@21164
   536
apply (auto simp add: eq_divide_2_times_iff add_divide_distrib Let_def split_def)
huffman@21164
   537
done
huffman@21164
   538
huffman@21164
   539
lemmas Bolzano_nest_unique =
huffman@21164
   540
    lemma_nest_unique
huffman@21164
   541
    [OF Bolzano_bisect_fst_le_Suc Bolzano_bisect_Suc_le_snd Bolzano_bisect_le]
huffman@21164
   542
huffman@21164
   543
huffman@21164
   544
lemma not_P_Bolzano_bisect:
huffman@21164
   545
  assumes P:    "!!a b c. [| P(a,b); P(b,c); a \<le> b; b \<le> c|] ==> P(a,c)"
huffman@21164
   546
      and notP: "~ P(a,b)"
huffman@21164
   547
      and le:   "a \<le> b"
huffman@21164
   548
  shows "~ P(fst(Bolzano_bisect P a b n), snd(Bolzano_bisect P a b n))"
huffman@21164
   549
proof (induct n)
huffman@23441
   550
  case 0 show ?case using notP by simp
huffman@21164
   551
 next
huffman@21164
   552
  case (Suc n)
huffman@21164
   553
  thus ?case
huffman@21164
   554
 by (auto simp del: surjective_pairing [symmetric]
huffman@21164
   555
             simp add: Let_def split_def Bolzano_bisect_le [OF le]
huffman@21164
   556
     P [of "fst (Bolzano_bisect P a b n)" _ "snd (Bolzano_bisect P a b n)"])
huffman@21164
   557
qed
huffman@21164
   558
huffman@21164
   559
(*Now we re-package P_prem as a formula*)
huffman@21164
   560
lemma not_P_Bolzano_bisect':
huffman@21164
   561
     "[| \<forall>a b c. P(a,b) & P(b,c) & a \<le> b & b \<le> c --> P(a,c);
huffman@21164
   562
         ~ P(a,b);  a \<le> b |] ==>
huffman@21164
   563
      \<forall>n. ~ P(fst(Bolzano_bisect P a b n), snd(Bolzano_bisect P a b n))"
huffman@21164
   564
by (blast elim!: not_P_Bolzano_bisect [THEN [2] rev_notE])
huffman@21164
   565
huffman@21164
   566
huffman@21164
   567
huffman@21164
   568
lemma lemma_BOLZANO:
huffman@21164
   569
     "[| \<forall>a b c. P(a,b) & P(b,c) & a \<le> b & b \<le> c --> P(a,c);
huffman@21164
   570
         \<forall>x. \<exists>d::real. 0 < d &
huffman@21164
   571
                (\<forall>a b. a \<le> x & x \<le> b & (b-a) < d --> P(a,b));
huffman@21164
   572
         a \<le> b |]
huffman@21164
   573
      ==> P(a,b)"
huffman@21164
   574
apply (rule Bolzano_nest_unique [where P1=P, THEN exE], assumption+)
huffman@21164
   575
apply (rule LIMSEQ_minus_cancel)
huffman@21164
   576
apply (simp (no_asm_simp) add: Bolzano_bisect_diff LIMSEQ_divide_realpow_zero)
huffman@21164
   577
apply (rule ccontr)
huffman@21164
   578
apply (drule not_P_Bolzano_bisect', assumption+)
huffman@21164
   579
apply (rename_tac "l")
huffman@21164
   580
apply (drule_tac x = l in spec, clarify)
huffman@21164
   581
apply (simp add: LIMSEQ_def)
huffman@21164
   582
apply (drule_tac P = "%r. 0<r --> ?Q r" and x = "d/2" in spec)
huffman@21164
   583
apply (drule_tac P = "%r. 0<r --> ?Q r" and x = "d/2" in spec)
huffman@21164
   584
apply (drule real_less_half_sum, auto)
huffman@21164
   585
apply (drule_tac x = "fst (Bolzano_bisect P a b (no + noa))" in spec)
huffman@21164
   586
apply (drule_tac x = "snd (Bolzano_bisect P a b (no + noa))" in spec)
huffman@21164
   587
apply safe
huffman@21164
   588
apply (simp_all (no_asm_simp))
huffman@21164
   589
apply (rule_tac y = "abs (fst (Bolzano_bisect P a b (no + noa)) - l) + abs (snd (Bolzano_bisect P a b (no + noa)) - l)" in order_le_less_trans)
huffman@21164
   590
apply (simp (no_asm_simp) add: abs_if)
huffman@21164
   591
apply (rule real_sum_of_halves [THEN subst])
huffman@21164
   592
apply (rule add_strict_mono)
huffman@21164
   593
apply (simp_all add: diff_minus [symmetric])
huffman@21164
   594
done
huffman@21164
   595
huffman@21164
   596
huffman@21164
   597
lemma lemma_BOLZANO2: "((\<forall>a b c. (a \<le> b & b \<le> c & P(a,b) & P(b,c)) --> P(a,c)) &
huffman@21164
   598
       (\<forall>x. \<exists>d::real. 0 < d &
huffman@21164
   599
                (\<forall>a b. a \<le> x & x \<le> b & (b-a) < d --> P(a,b))))
huffman@21164
   600
      --> (\<forall>a b. a \<le> b --> P(a,b))"
huffman@21164
   601
apply clarify
huffman@21164
   602
apply (blast intro: lemma_BOLZANO)
huffman@21164
   603
done
huffman@21164
   604
huffman@21164
   605
huffman@21164
   606
subsection {* Intermediate Value Theorem *}
huffman@21164
   607
huffman@21164
   608
text {*Prove Contrapositive by Bisection*}
huffman@21164
   609
huffman@21164
   610
lemma IVT: "[| f(a::real) \<le> (y::real); y \<le> f(b);
huffman@21164
   611
         a \<le> b;
huffman@21164
   612
         (\<forall>x. a \<le> x & x \<le> b --> isCont f x) |]
huffman@21164
   613
      ==> \<exists>x. a \<le> x & x \<le> b & f(x) = y"
huffman@21164
   614
apply (rule contrapos_pp, assumption)
huffman@21164
   615
apply (cut_tac P = "% (u,v) . a \<le> u & u \<le> v & v \<le> b --> ~ (f (u) \<le> y & y \<le> f (v))" in lemma_BOLZANO2)
huffman@21164
   616
apply safe
huffman@21164
   617
apply simp_all
huffman@21164
   618
apply (simp add: isCont_iff LIM_def)
huffman@21164
   619
apply (rule ccontr)
huffman@21164
   620
apply (subgoal_tac "a \<le> x & x \<le> b")
huffman@21164
   621
 prefer 2
huffman@21164
   622
 apply simp
huffman@21164
   623
 apply (drule_tac P = "%d. 0<d --> ?P d" and x = 1 in spec, arith)
huffman@21164
   624
apply (drule_tac x = x in spec)+
huffman@21164
   625
apply simp
huffman@21164
   626
apply (drule_tac P = "%r. ?P r --> (\<exists>s>0. ?Q r s) " and x = "\<bar>y - f x\<bar>" in spec)
huffman@21164
   627
apply safe
huffman@21164
   628
apply simp
huffman@21164
   629
apply (drule_tac x = s in spec, clarify)
huffman@21164
   630
apply (cut_tac x = "f x" and y = y in linorder_less_linear, safe)
huffman@21164
   631
apply (drule_tac x = "ba-x" in spec)
huffman@21164
   632
apply (simp_all add: abs_if)
huffman@21164
   633
apply (drule_tac x = "aa-x" in spec)
huffman@21164
   634
apply (case_tac "x \<le> aa", simp_all)
huffman@21164
   635
done
huffman@21164
   636
huffman@21164
   637
lemma IVT2: "[| f(b::real) \<le> (y::real); y \<le> f(a);
huffman@21164
   638
         a \<le> b;
huffman@21164
   639
         (\<forall>x. a \<le> x & x \<le> b --> isCont f x)
huffman@21164
   640
      |] ==> \<exists>x. a \<le> x & x \<le> b & f(x) = y"
huffman@21164
   641
apply (subgoal_tac "- f a \<le> -y & -y \<le> - f b", clarify)
huffman@21164
   642
apply (drule IVT [where f = "%x. - f x"], assumption)
huffman@21164
   643
apply (auto intro: isCont_minus)
huffman@21164
   644
done
huffman@21164
   645
huffman@21164
   646
(*HOL style here: object-level formulations*)
huffman@21164
   647
lemma IVT_objl: "(f(a::real) \<le> (y::real) & y \<le> f(b) & a \<le> b &
huffman@21164
   648
      (\<forall>x. a \<le> x & x \<le> b --> isCont f x))
huffman@21164
   649
      --> (\<exists>x. a \<le> x & x \<le> b & f(x) = y)"
huffman@21164
   650
apply (blast intro: IVT)
huffman@21164
   651
done
huffman@21164
   652
huffman@21164
   653
lemma IVT2_objl: "(f(b::real) \<le> (y::real) & y \<le> f(a) & a \<le> b &
huffman@21164
   654
      (\<forall>x. a \<le> x & x \<le> b --> isCont f x))
huffman@21164
   655
      --> (\<exists>x. a \<le> x & x \<le> b & f(x) = y)"
huffman@21164
   656
apply (blast intro: IVT2)
huffman@21164
   657
done
huffman@21164
   658
huffman@29912
   659
huffman@29912
   660
subsection {* Boundedness of continuous functions *}
huffman@29912
   661
huffman@21164
   662
text{*By bisection, function continuous on closed interval is bounded above*}
huffman@21164
   663
huffman@21164
   664
lemma isCont_bounded:
huffman@21164
   665
     "[| a \<le> b; \<forall>x. a \<le> x & x \<le> b --> isCont f x |]
huffman@21164
   666
      ==> \<exists>M::real. \<forall>x::real. a \<le> x & x \<le> b --> f(x) \<le> M"
huffman@21164
   667
apply (cut_tac P = "% (u,v) . a \<le> u & u \<le> v & v \<le> b --> (\<exists>M. \<forall>x. u \<le> x & x \<le> v --> f x \<le> M)" in lemma_BOLZANO2)
huffman@21164
   668
apply safe
huffman@21164
   669
apply simp_all
huffman@21164
   670
apply (rename_tac x xa ya M Ma)
huffman@21164
   671
apply (cut_tac x = M and y = Ma in linorder_linear, safe)
huffman@21164
   672
apply (rule_tac x = Ma in exI, clarify)
huffman@21164
   673
apply (cut_tac x = xb and y = xa in linorder_linear, force)
huffman@21164
   674
apply (rule_tac x = M in exI, clarify)
huffman@21164
   675
apply (cut_tac x = xb and y = xa in linorder_linear, force)
huffman@21164
   676
apply (case_tac "a \<le> x & x \<le> b")
huffman@21164
   677
apply (rule_tac [2] x = 1 in exI)
huffman@21164
   678
prefer 2 apply force
huffman@21164
   679
apply (simp add: LIM_def isCont_iff)
huffman@21164
   680
apply (drule_tac x = x in spec, auto)
huffman@21164
   681
apply (erule_tac V = "\<forall>M. \<exists>x. a \<le> x & x \<le> b & ~ f x \<le> M" in thin_rl)
huffman@21164
   682
apply (drule_tac x = 1 in spec, auto)
huffman@21164
   683
apply (rule_tac x = s in exI, clarify)
huffman@21164
   684
apply (rule_tac x = "\<bar>f x\<bar> + 1" in exI, clarify)
huffman@21164
   685
apply (drule_tac x = "xa-x" in spec)
huffman@21164
   686
apply (auto simp add: abs_ge_self)
huffman@21164
   687
done
huffman@21164
   688
huffman@21164
   689
text{*Refine the above to existence of least upper bound*}
huffman@21164
   690
huffman@21164
   691
lemma lemma_reals_complete: "((\<exists>x. x \<in> S) & (\<exists>y. isUb UNIV S (y::real))) -->
huffman@21164
   692
      (\<exists>t. isLub UNIV S t)"
huffman@21164
   693
by (blast intro: reals_complete)
huffman@21164
   694
huffman@21164
   695
lemma isCont_has_Ub: "[| a \<le> b; \<forall>x. a \<le> x & x \<le> b --> isCont f x |]
huffman@21164
   696
         ==> \<exists>M::real. (\<forall>x::real. a \<le> x & x \<le> b --> f(x) \<le> M) &
huffman@21164
   697
                   (\<forall>N. N < M --> (\<exists>x. a \<le> x & x \<le> b & N < f(x)))"
huffman@21164
   698
apply (cut_tac S = "Collect (%y. \<exists>x. a \<le> x & x \<le> b & y = f x)"
huffman@21164
   699
        in lemma_reals_complete)
huffman@21164
   700
apply auto
huffman@21164
   701
apply (drule isCont_bounded, assumption)
huffman@21164
   702
apply (auto simp add: isUb_def leastP_def isLub_def setge_def setle_def)
huffman@21164
   703
apply (rule exI, auto)
huffman@21164
   704
apply (auto dest!: spec simp add: linorder_not_less)
huffman@21164
   705
done
huffman@21164
   706
huffman@21164
   707
text{*Now show that it attains its upper bound*}
huffman@21164
   708
huffman@21164
   709
lemma isCont_eq_Ub:
huffman@21164
   710
  assumes le: "a \<le> b"
huffman@21164
   711
      and con: "\<forall>x::real. a \<le> x & x \<le> b --> isCont f x"
huffman@21164
   712
  shows "\<exists>M::real. (\<forall>x. a \<le> x & x \<le> b --> f(x) \<le> M) &
huffman@21164
   713
             (\<exists>x. a \<le> x & x \<le> b & f(x) = M)"
huffman@21164
   714
proof -
huffman@21164
   715
  from isCont_has_Ub [OF le con]
huffman@21164
   716
  obtain M where M1: "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> f x \<le> M"
huffman@21164
   717
             and M2: "!!N. N<M ==> \<exists>x. a \<le> x \<and> x \<le> b \<and> N < f x"  by blast
huffman@21164
   718
  show ?thesis
huffman@21164
   719
  proof (intro exI, intro conjI)
huffman@21164
   720
    show " \<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> f x \<le> M" by (rule M1)
huffman@21164
   721
    show "\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = M"
huffman@21164
   722
    proof (rule ccontr)
huffman@21164
   723
      assume "\<not> (\<exists>x. a \<le> x \<and> x \<le> b \<and> f x = M)"
huffman@21164
   724
      with M1 have M3: "\<forall>x. a \<le> x & x \<le> b --> f x < M"
huffman@21164
   725
        by (fastsimp simp add: linorder_not_le [symmetric])
huffman@21164
   726
      hence "\<forall>x. a \<le> x & x \<le> b --> isCont (%x. inverse (M - f x)) x"
huffman@21164
   727
        by (auto simp add: isCont_inverse isCont_diff con)
huffman@21164
   728
      from isCont_bounded [OF le this]
huffman@21164
   729
      obtain k where k: "!!x. a \<le> x & x \<le> b --> inverse (M - f x) \<le> k" by auto
huffman@21164
   730
      have Minv: "!!x. a \<le> x & x \<le> b --> 0 < inverse (M - f (x))"
nipkow@29667
   731
        by (simp add: M3 algebra_simps)
huffman@21164
   732
      have "!!x. a \<le> x & x \<le> b --> inverse (M - f x) < k+1" using k
huffman@21164
   733
        by (auto intro: order_le_less_trans [of _ k])
huffman@21164
   734
      with Minv
huffman@21164
   735
      have "!!x. a \<le> x & x \<le> b --> inverse(k+1) < inverse(inverse(M - f x))"
huffman@21164
   736
        by (intro strip less_imp_inverse_less, simp_all)
huffman@21164
   737
      hence invlt: "!!x. a \<le> x & x \<le> b --> inverse(k+1) < M - f x"
huffman@21164
   738
        by simp
huffman@21164
   739
      have "M - inverse (k+1) < M" using k [of a] Minv [of a] le
huffman@21164
   740
        by (simp, arith)
huffman@21164
   741
      from M2 [OF this]
huffman@21164
   742
      obtain x where ax: "a \<le> x & x \<le> b & M - inverse(k+1) < f x" ..
huffman@21164
   743
      thus False using invlt [of x] by force
huffman@21164
   744
    qed
huffman@21164
   745
  qed
huffman@21164
   746
qed
huffman@21164
   747
huffman@21164
   748
huffman@21164
   749
text{*Same theorem for lower bound*}
huffman@21164
   750
huffman@21164
   751
lemma isCont_eq_Lb: "[| a \<le> b; \<forall>x. a \<le> x & x \<le> b --> isCont f x |]
huffman@21164
   752
         ==> \<exists>M::real. (\<forall>x::real. a \<le> x & x \<le> b --> M \<le> f(x)) &
huffman@21164
   753
                   (\<exists>x. a \<le> x & x \<le> b & f(x) = M)"
huffman@21164
   754
apply (subgoal_tac "\<forall>x. a \<le> x & x \<le> b --> isCont (%x. - (f x)) x")
huffman@21164
   755
prefer 2 apply (blast intro: isCont_minus)
huffman@21164
   756
apply (drule_tac f = "(%x. - (f x))" in isCont_eq_Ub)
huffman@21164
   757
apply safe
huffman@21164
   758
apply auto
huffman@21164
   759
done
huffman@21164
   760
huffman@21164
   761
huffman@21164
   762
text{*Another version.*}
huffman@21164
   763
huffman@21164
   764
lemma isCont_Lb_Ub: "[|a \<le> b; \<forall>x. a \<le> x & x \<le> b --> isCont f x |]
huffman@21164
   765
      ==> \<exists>L M::real. (\<forall>x::real. a \<le> x & x \<le> b --> L \<le> f(x) & f(x) \<le> M) &
huffman@21164
   766
          (\<forall>y. L \<le> y & y \<le> M --> (\<exists>x. a \<le> x & x \<le> b & (f(x) = y)))"
huffman@21164
   767
apply (frule isCont_eq_Lb)
huffman@21164
   768
apply (frule_tac [2] isCont_eq_Ub)
huffman@21164
   769
apply (assumption+, safe)
huffman@21164
   770
apply (rule_tac x = "f x" in exI)
huffman@21164
   771
apply (rule_tac x = "f xa" in exI, simp, safe)
huffman@21164
   772
apply (cut_tac x = x and y = xa in linorder_linear, safe)
huffman@21164
   773
apply (cut_tac f = f and a = x and b = xa and y = y in IVT_objl)
huffman@21164
   774
apply (cut_tac [2] f = f and a = xa and b = x and y = y in IVT2_objl, safe)
huffman@21164
   775
apply (rule_tac [2] x = xb in exI)
huffman@21164
   776
apply (rule_tac [4] x = xb in exI, simp_all)
huffman@21164
   777
done
huffman@21164
   778
huffman@21164
   779
huffman@29912
   780
subsection {* Local extrema *}
huffman@29912
   781
huffman@21164
   782
text{*If @{term "0 < f'(x)"} then @{term x} is Locally Strictly Increasing At The Right*}
huffman@21164
   783
huffman@21164
   784
lemma DERIV_left_inc:
huffman@21164
   785
  fixes f :: "real => real"
huffman@21164
   786
  assumes der: "DERIV f x :> l"
huffman@21164
   787
      and l:   "0 < l"
huffman@21164
   788
  shows "\<exists>d > 0. \<forall>h > 0. h < d --> f(x) < f(x + h)"
huffman@21164
   789
proof -
huffman@21164
   790
  from l der [THEN DERIV_D, THEN LIM_D [where r = "l"]]
huffman@21164
   791
  have "\<exists>s > 0. (\<forall>z. z \<noteq> 0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>(f(x+z) - f x) / z - l\<bar> < l)"
huffman@21164
   792
    by (simp add: diff_minus)
huffman@21164
   793
  then obtain s
huffman@21164
   794
        where s:   "0 < s"
huffman@21164
   795
          and all: "!!z. z \<noteq> 0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>(f(x+z) - f x) / z - l\<bar> < l"
huffman@21164
   796
    by auto
huffman@21164
   797
  thus ?thesis
huffman@21164
   798
  proof (intro exI conjI strip)
huffman@23441
   799
    show "0<s" using s .
huffman@21164
   800
    fix h::real
huffman@21164
   801
    assume "0 < h" "h < s"
huffman@21164
   802
    with all [of h] show "f x < f (x+h)"
huffman@21164
   803
    proof (simp add: abs_if pos_less_divide_eq diff_minus [symmetric]
huffman@21164
   804
    split add: split_if_asm)
huffman@21164
   805
      assume "~ (f (x+h) - f x) / h < l" and h: "0 < h"
huffman@21164
   806
      with l
huffman@21164
   807
      have "0 < (f (x+h) - f x) / h" by arith
huffman@21164
   808
      thus "f x < f (x+h)"
huffman@21164
   809
  by (simp add: pos_less_divide_eq h)
huffman@21164
   810
    qed
huffman@21164
   811
  qed
huffman@21164
   812
qed
huffman@21164
   813
huffman@21164
   814
lemma DERIV_left_dec:
huffman@21164
   815
  fixes f :: "real => real"
huffman@21164
   816
  assumes der: "DERIV f x :> l"
huffman@21164
   817
      and l:   "l < 0"
huffman@21164
   818
  shows "\<exists>d > 0. \<forall>h > 0. h < d --> f(x) < f(x-h)"
huffman@21164
   819
proof -
huffman@21164
   820
  from l der [THEN DERIV_D, THEN LIM_D [where r = "-l"]]
huffman@21164
   821
  have "\<exists>s > 0. (\<forall>z. z \<noteq> 0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>(f(x+z) - f x) / z - l\<bar> < -l)"
huffman@21164
   822
    by (simp add: diff_minus)
huffman@21164
   823
  then obtain s
huffman@21164
   824
        where s:   "0 < s"
huffman@21164
   825
          and all: "!!z. z \<noteq> 0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>(f(x+z) - f x) / z - l\<bar> < -l"
huffman@21164
   826
    by auto
huffman@21164
   827
  thus ?thesis
huffman@21164
   828
  proof (intro exI conjI strip)
huffman@23441
   829
    show "0<s" using s .
huffman@21164
   830
    fix h::real
huffman@21164
   831
    assume "0 < h" "h < s"
huffman@21164
   832
    with all [of "-h"] show "f x < f (x-h)"
huffman@21164
   833
    proof (simp add: abs_if pos_less_divide_eq diff_minus [symmetric]
huffman@21164
   834
    split add: split_if_asm)
huffman@21164
   835
      assume " - ((f (x-h) - f x) / h) < l" and h: "0 < h"
huffman@21164
   836
      with l
huffman@21164
   837
      have "0 < (f (x-h) - f x) / h" by arith
huffman@21164
   838
      thus "f x < f (x-h)"
huffman@21164
   839
  by (simp add: pos_less_divide_eq h)
huffman@21164
   840
    qed
huffman@21164
   841
  qed
huffman@21164
   842
qed
huffman@21164
   843
huffman@21164
   844
lemma DERIV_local_max:
huffman@21164
   845
  fixes f :: "real => real"
huffman@21164
   846
  assumes der: "DERIV f x :> l"
huffman@21164
   847
      and d:   "0 < d"
huffman@21164
   848
      and le:  "\<forall>y. \<bar>x-y\<bar> < d --> f(y) \<le> f(x)"
huffman@21164
   849
  shows "l = 0"
huffman@21164
   850
proof (cases rule: linorder_cases [of l 0])
huffman@23441
   851
  case equal thus ?thesis .
huffman@21164
   852
next
huffman@21164
   853
  case less
huffman@21164
   854
  from DERIV_left_dec [OF der less]
huffman@21164
   855
  obtain d' where d': "0 < d'"
huffman@21164
   856
             and lt: "\<forall>h > 0. h < d' \<longrightarrow> f x < f (x-h)" by blast
huffman@21164
   857
  from real_lbound_gt_zero [OF d d']
huffman@21164
   858
  obtain e where "0 < e \<and> e < d \<and> e < d'" ..
huffman@21164
   859
  with lt le [THEN spec [where x="x-e"]]
huffman@21164
   860
  show ?thesis by (auto simp add: abs_if)
huffman@21164
   861
next
huffman@21164
   862
  case greater
huffman@21164
   863
  from DERIV_left_inc [OF der greater]
huffman@21164
   864
  obtain d' where d': "0 < d'"
huffman@21164
   865
             and lt: "\<forall>h > 0. h < d' \<longrightarrow> f x < f (x + h)" by blast
huffman@21164
   866
  from real_lbound_gt_zero [OF d d']
huffman@21164
   867
  obtain e where "0 < e \<and> e < d \<and> e < d'" ..
huffman@21164
   868
  with lt le [THEN spec [where x="x+e"]]
huffman@21164
   869
  show ?thesis by (auto simp add: abs_if)
huffman@21164
   870
qed
huffman@21164
   871
huffman@21164
   872
huffman@21164
   873
text{*Similar theorem for a local minimum*}
huffman@21164
   874
lemma DERIV_local_min:
huffman@21164
   875
  fixes f :: "real => real"
huffman@21164
   876
  shows "[| DERIV f x :> l; 0 < d; \<forall>y. \<bar>x-y\<bar> < d --> f(x) \<le> f(y) |] ==> l = 0"
huffman@21164
   877
by (drule DERIV_minus [THEN DERIV_local_max], auto)
huffman@21164
   878
huffman@21164
   879
huffman@21164
   880
text{*In particular, if a function is locally flat*}
huffman@21164
   881
lemma DERIV_local_const:
huffman@21164
   882
  fixes f :: "real => real"
huffman@21164
   883
  shows "[| DERIV f x :> l; 0 < d; \<forall>y. \<bar>x-y\<bar> < d --> f(x) = f(y) |] ==> l = 0"
huffman@21164
   884
by (auto dest!: DERIV_local_max)
huffman@21164
   885
huffman@29912
   886
huffman@29912
   887
subsection {* Rolle's Theorem *}
huffman@29912
   888
huffman@21164
   889
text{*Lemma about introducing open ball in open interval*}
huffman@21164
   890
lemma lemma_interval_lt:
huffman@21164
   891
     "[| a < x;  x < b |]
huffman@21164
   892
      ==> \<exists>d::real. 0 < d & (\<forall>y. \<bar>x-y\<bar> < d --> a < y & y < b)"
chaieb@27668
   893
huffman@22998
   894
apply (simp add: abs_less_iff)
huffman@21164
   895
apply (insert linorder_linear [of "x-a" "b-x"], safe)
huffman@21164
   896
apply (rule_tac x = "x-a" in exI)
huffman@21164
   897
apply (rule_tac [2] x = "b-x" in exI, auto)
huffman@21164
   898
done
huffman@21164
   899
huffman@21164
   900
lemma lemma_interval: "[| a < x;  x < b |] ==>
huffman@21164
   901
        \<exists>d::real. 0 < d &  (\<forall>y. \<bar>x-y\<bar> < d --> a \<le> y & y \<le> b)"
huffman@21164
   902
apply (drule lemma_interval_lt, auto)
huffman@21164
   903
apply (auto intro!: exI)
huffman@21164
   904
done
huffman@21164
   905
huffman@21164
   906
text{*Rolle's Theorem.
huffman@21164
   907
   If @{term f} is defined and continuous on the closed interval
huffman@21164
   908
   @{text "[a,b]"} and differentiable on the open interval @{text "(a,b)"},
huffman@21164
   909
   and @{term "f(a) = f(b)"},
huffman@21164
   910
   then there exists @{text "x0 \<in> (a,b)"} such that @{term "f'(x0) = 0"}*}
huffman@21164
   911
theorem Rolle:
huffman@21164
   912
  assumes lt: "a < b"
huffman@21164
   913
      and eq: "f(a) = f(b)"
huffman@21164
   914
      and con: "\<forall>x. a \<le> x & x \<le> b --> isCont f x"
huffman@21164
   915
      and dif [rule_format]: "\<forall>x. a < x & x < b --> f differentiable x"
huffman@21784
   916
  shows "\<exists>z::real. a < z & z < b & DERIV f z :> 0"
huffman@21164
   917
proof -
huffman@21164
   918
  have le: "a \<le> b" using lt by simp
huffman@21164
   919
  from isCont_eq_Ub [OF le con]
huffman@21164
   920
  obtain x where x_max: "\<forall>z. a \<le> z \<and> z \<le> b \<longrightarrow> f z \<le> f x"
huffman@21164
   921
             and alex: "a \<le> x" and xleb: "x \<le> b"
huffman@21164
   922
    by blast
huffman@21164
   923
  from isCont_eq_Lb [OF le con]
huffman@21164
   924
  obtain x' where x'_min: "\<forall>z. a \<le> z \<and> z \<le> b \<longrightarrow> f x' \<le> f z"
huffman@21164
   925
              and alex': "a \<le> x'" and x'leb: "x' \<le> b"
huffman@21164
   926
    by blast
huffman@21164
   927
  show ?thesis
huffman@21164
   928
  proof cases
huffman@21164
   929
    assume axb: "a < x & x < b"
huffman@21164
   930
        --{*@{term f} attains its maximum within the interval*}
chaieb@27668
   931
    hence ax: "a<x" and xb: "x<b" by arith + 
huffman@21164
   932
    from lemma_interval [OF ax xb]
huffman@21164
   933
    obtain d where d: "0<d" and bound: "\<forall>y. \<bar>x-y\<bar> < d \<longrightarrow> a \<le> y \<and> y \<le> b"
huffman@21164
   934
      by blast
huffman@21164
   935
    hence bound': "\<forall>y. \<bar>x-y\<bar> < d \<longrightarrow> f y \<le> f x" using x_max
huffman@21164
   936
      by blast
huffman@21164
   937
    from differentiableD [OF dif [OF axb]]
huffman@21164
   938
    obtain l where der: "DERIV f x :> l" ..
huffman@21164
   939
    have "l=0" by (rule DERIV_local_max [OF der d bound'])
huffman@21164
   940
        --{*the derivative at a local maximum is zero*}
huffman@21164
   941
    thus ?thesis using ax xb der by auto
huffman@21164
   942
  next
huffman@21164
   943
    assume notaxb: "~ (a < x & x < b)"
huffman@21164
   944
    hence xeqab: "x=a | x=b" using alex xleb by arith
huffman@21164
   945
    hence fb_eq_fx: "f b = f x" by (auto simp add: eq)
huffman@21164
   946
    show ?thesis
huffman@21164
   947
    proof cases
huffman@21164
   948
      assume ax'b: "a < x' & x' < b"
huffman@21164
   949
        --{*@{term f} attains its minimum within the interval*}
chaieb@27668
   950
      hence ax': "a<x'" and x'b: "x'<b" by arith+ 
huffman@21164
   951
      from lemma_interval [OF ax' x'b]
huffman@21164
   952
      obtain d where d: "0<d" and bound: "\<forall>y. \<bar>x'-y\<bar> < d \<longrightarrow> a \<le> y \<and> y \<le> b"
huffman@21164
   953
  by blast
huffman@21164
   954
      hence bound': "\<forall>y. \<bar>x'-y\<bar> < d \<longrightarrow> f x' \<le> f y" using x'_min
huffman@21164
   955
  by blast
huffman@21164
   956
      from differentiableD [OF dif [OF ax'b]]
huffman@21164
   957
      obtain l where der: "DERIV f x' :> l" ..
huffman@21164
   958
      have "l=0" by (rule DERIV_local_min [OF der d bound'])
huffman@21164
   959
        --{*the derivative at a local minimum is zero*}
huffman@21164
   960
      thus ?thesis using ax' x'b der by auto
huffman@21164
   961
    next
huffman@21164
   962
      assume notax'b: "~ (a < x' & x' < b)"
huffman@21164
   963
        --{*@{term f} is constant througout the interval*}
huffman@21164
   964
      hence x'eqab: "x'=a | x'=b" using alex' x'leb by arith
huffman@21164
   965
      hence fb_eq_fx': "f b = f x'" by (auto simp add: eq)
huffman@21164
   966
      from dense [OF lt]
huffman@21164
   967
      obtain r where ar: "a < r" and rb: "r < b" by blast
huffman@21164
   968
      from lemma_interval [OF ar rb]
huffman@21164
   969
      obtain d where d: "0<d" and bound: "\<forall>y. \<bar>r-y\<bar> < d \<longrightarrow> a \<le> y \<and> y \<le> b"
huffman@21164
   970
  by blast
huffman@21164
   971
      have eq_fb: "\<forall>z. a \<le> z --> z \<le> b --> f z = f b"
huffman@21164
   972
      proof (clarify)
huffman@21164
   973
        fix z::real
huffman@21164
   974
        assume az: "a \<le> z" and zb: "z \<le> b"
huffman@21164
   975
        show "f z = f b"
huffman@21164
   976
        proof (rule order_antisym)
huffman@21164
   977
          show "f z \<le> f b" by (simp add: fb_eq_fx x_max az zb)
huffman@21164
   978
          show "f b \<le> f z" by (simp add: fb_eq_fx' x'_min az zb)
huffman@21164
   979
        qed
huffman@21164
   980
      qed
huffman@21164
   981
      have bound': "\<forall>y. \<bar>r-y\<bar> < d \<longrightarrow> f r = f y"
huffman@21164
   982
      proof (intro strip)
huffman@21164
   983
        fix y::real
huffman@21164
   984
        assume lt: "\<bar>r-y\<bar> < d"
huffman@21164
   985
        hence "f y = f b" by (simp add: eq_fb bound)
huffman@21164
   986
        thus "f r = f y" by (simp add: eq_fb ar rb order_less_imp_le)
huffman@21164
   987
      qed
huffman@21164
   988
      from differentiableD [OF dif [OF conjI [OF ar rb]]]
huffman@21164
   989
      obtain l where der: "DERIV f r :> l" ..
huffman@21164
   990
      have "l=0" by (rule DERIV_local_const [OF der d bound'])
huffman@21164
   991
        --{*the derivative of a constant function is zero*}
huffman@21164
   992
      thus ?thesis using ar rb der by auto
huffman@21164
   993
    qed
huffman@21164
   994
  qed
huffman@21164
   995
qed
huffman@21164
   996
huffman@21164
   997
huffman@21164
   998
subsection{*Mean Value Theorem*}
huffman@21164
   999
huffman@21164
  1000
lemma lemma_MVT:
huffman@21164
  1001
     "f a - (f b - f a)/(b-a) * a = f b - (f b - f a)/(b-a) * (b::real)"
huffman@21164
  1002
proof cases
huffman@21164
  1003
  assume "a=b" thus ?thesis by simp
huffman@21164
  1004
next
huffman@21164
  1005
  assume "a\<noteq>b"
huffman@21164
  1006
  hence ba: "b-a \<noteq> 0" by arith
huffman@21164
  1007
  show ?thesis
huffman@21164
  1008
    by (rule real_mult_left_cancel [OF ba, THEN iffD1],
huffman@21164
  1009
        simp add: right_diff_distrib,
huffman@21164
  1010
        simp add: left_diff_distrib)
huffman@21164
  1011
qed
huffman@21164
  1012
huffman@21164
  1013
theorem MVT:
huffman@21164
  1014
  assumes lt:  "a < b"
huffman@21164
  1015
      and con: "\<forall>x. a \<le> x & x \<le> b --> isCont f x"
huffman@21164
  1016
      and dif [rule_format]: "\<forall>x. a < x & x < b --> f differentiable x"
huffman@21784
  1017
  shows "\<exists>l z::real. a < z & z < b & DERIV f z :> l &
huffman@21164
  1018
                   (f(b) - f(a) = (b-a) * l)"
huffman@21164
  1019
proof -
huffman@21164
  1020
  let ?F = "%x. f x - ((f b - f a) / (b-a)) * x"
huffman@21164
  1021
  have contF: "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont ?F x" using con
huffman@23069
  1022
    by (fast intro: isCont_diff isCont_const isCont_mult isCont_ident)
huffman@21164
  1023
  have difF: "\<forall>x. a < x \<and> x < b \<longrightarrow> ?F differentiable x"
huffman@21164
  1024
  proof (clarify)
huffman@21164
  1025
    fix x::real
huffman@21164
  1026
    assume ax: "a < x" and xb: "x < b"
huffman@21164
  1027
    from differentiableD [OF dif [OF conjI [OF ax xb]]]
huffman@21164
  1028
    obtain l where der: "DERIV f x :> l" ..
huffman@21164
  1029
    show "?F differentiable x"
huffman@21164
  1030
      by (rule differentiableI [where D = "l - (f b - f a)/(b-a)"],
huffman@21164
  1031
          blast intro: DERIV_diff DERIV_cmult_Id der)
huffman@21164
  1032
  qed
huffman@21164
  1033
  from Rolle [where f = ?F, OF lt lemma_MVT contF difF]
huffman@21164
  1034
  obtain z where az: "a < z" and zb: "z < b" and der: "DERIV ?F z :> 0"
huffman@21164
  1035
    by blast
huffman@21164
  1036
  have "DERIV (%x. ((f b - f a)/(b-a)) * x) z :> (f b - f a)/(b-a)"
huffman@21164
  1037
    by (rule DERIV_cmult_Id)
huffman@21164
  1038
  hence derF: "DERIV (\<lambda>x. ?F x + (f b - f a) / (b - a) * x) z
huffman@21164
  1039
                   :> 0 + (f b - f a) / (b - a)"
huffman@21164
  1040
    by (rule DERIV_add [OF der])
huffman@21164
  1041
  show ?thesis
huffman@21164
  1042
  proof (intro exI conjI)
huffman@23441
  1043
    show "a < z" using az .
huffman@23441
  1044
    show "z < b" using zb .
huffman@21164
  1045
    show "f b - f a = (b - a) * ((f b - f a)/(b-a))" by (simp)
huffman@21164
  1046
    show "DERIV f z :> ((f b - f a)/(b-a))"  using derF by simp
huffman@21164
  1047
  qed
huffman@21164
  1048
qed
huffman@21164
  1049
hoelzl@29740
  1050
lemma MVT2:
hoelzl@29740
  1051
     "[| a < b; \<forall>x. a \<le> x & x \<le> b --> DERIV f x :> f'(x) |]
hoelzl@29740
  1052
      ==> \<exists>z::real. a < z & z < b & (f b - f a = (b - a) * f'(z))"
hoelzl@29740
  1053
apply (drule MVT)
hoelzl@29740
  1054
apply (blast intro: DERIV_isCont)
hoelzl@29740
  1055
apply (force dest: order_less_imp_le simp add: differentiable_def)
hoelzl@29740
  1056
apply (blast dest: DERIV_unique order_less_imp_le)
hoelzl@29740
  1057
done
hoelzl@29740
  1058
huffman@21164
  1059
huffman@21164
  1060
text{*A function is constant if its derivative is 0 over an interval.*}
huffman@21164
  1061
huffman@21164
  1062
lemma DERIV_isconst_end:
huffman@21164
  1063
  fixes f :: "real => real"
huffman@21164
  1064
  shows "[| a < b;
huffman@21164
  1065
         \<forall>x. a \<le> x & x \<le> b --> isCont f x;
huffman@21164
  1066
         \<forall>x. a < x & x < b --> DERIV f x :> 0 |]
huffman@21164
  1067
        ==> f b = f a"
huffman@21164
  1068
apply (drule MVT, assumption)
huffman@21164
  1069
apply (blast intro: differentiableI)
huffman@21164
  1070
apply (auto dest!: DERIV_unique simp add: diff_eq_eq)
huffman@21164
  1071
done
huffman@21164
  1072
huffman@21164
  1073
lemma DERIV_isconst1:
huffman@21164
  1074
  fixes f :: "real => real"
huffman@21164
  1075
  shows "[| a < b;
huffman@21164
  1076
         \<forall>x. a \<le> x & x \<le> b --> isCont f x;
huffman@21164
  1077
         \<forall>x. a < x & x < b --> DERIV f x :> 0 |]
huffman@21164
  1078
        ==> \<forall>x. a \<le> x & x \<le> b --> f x = f a"
huffman@21164
  1079
apply safe
huffman@21164
  1080
apply (drule_tac x = a in order_le_imp_less_or_eq, safe)
huffman@21164
  1081
apply (drule_tac b = x in DERIV_isconst_end, auto)
huffman@21164
  1082
done
huffman@21164
  1083
huffman@21164
  1084
lemma DERIV_isconst2:
huffman@21164
  1085
  fixes f :: "real => real"
huffman@21164
  1086
  shows "[| a < b;
huffman@21164
  1087
         \<forall>x. a \<le> x & x \<le> b --> isCont f x;
huffman@21164
  1088
         \<forall>x. a < x & x < b --> DERIV f x :> 0;
huffman@21164
  1089
         a \<le> x; x \<le> b |]
huffman@21164
  1090
        ==> f x = f a"
huffman@21164
  1091
apply (blast dest: DERIV_isconst1)
huffman@21164
  1092
done
huffman@21164
  1093
hoelzl@29740
  1094
lemma DERIV_isconst3: fixes a b x y :: real
hoelzl@29740
  1095
  assumes "a < b" and "x \<in> {a <..< b}" and "y \<in> {a <..< b}"
hoelzl@29740
  1096
  assumes derivable: "\<And>x. x \<in> {a <..< b} \<Longrightarrow> DERIV f x :> 0"
hoelzl@29740
  1097
  shows "f x = f y"
hoelzl@29740
  1098
proof (cases "x = y")
hoelzl@29740
  1099
  case False
hoelzl@29740
  1100
  let ?a = "min x y"
hoelzl@29740
  1101
  let ?b = "max x y"
hoelzl@29740
  1102
  
hoelzl@29740
  1103
  have "\<forall>z. ?a \<le> z \<and> z \<le> ?b \<longrightarrow> DERIV f z :> 0"
hoelzl@29740
  1104
  proof (rule allI, rule impI)
hoelzl@29740
  1105
    fix z :: real assume "?a \<le> z \<and> z \<le> ?b"
hoelzl@29740
  1106
    hence "a < z" and "z < b" using `x \<in> {a <..< b}` and `y \<in> {a <..< b}` by auto
hoelzl@29740
  1107
    hence "z \<in> {a<..<b}" by auto
hoelzl@29740
  1108
    thus "DERIV f z :> 0" by (rule derivable)
hoelzl@29740
  1109
  qed
hoelzl@29740
  1110
  hence isCont: "\<forall>z. ?a \<le> z \<and> z \<le> ?b \<longrightarrow> isCont f z"
hoelzl@29740
  1111
    and DERIV: "\<forall>z. ?a < z \<and> z < ?b \<longrightarrow> DERIV f z :> 0" using DERIV_isCont by auto
hoelzl@29740
  1112
hoelzl@29740
  1113
  have "?a < ?b" using `x \<noteq> y` by auto
hoelzl@29740
  1114
  from DERIV_isconst2[OF this isCont DERIV, of x] and DERIV_isconst2[OF this isCont DERIV, of y]
hoelzl@29740
  1115
  show ?thesis by auto
hoelzl@29740
  1116
qed auto
hoelzl@29740
  1117
huffman@21164
  1118
lemma DERIV_isconst_all:
huffman@21164
  1119
  fixes f :: "real => real"
huffman@21164
  1120
  shows "\<forall>x. DERIV f x :> 0 ==> f(x) = f(y)"
huffman@21164
  1121
apply (rule linorder_cases [of x y])
huffman@21164
  1122
apply (blast intro: sym DERIV_isCont DERIV_isconst_end)+
huffman@21164
  1123
done
huffman@21164
  1124
huffman@21164
  1125
lemma DERIV_const_ratio_const:
huffman@21784
  1126
  fixes f :: "real => real"
huffman@21784
  1127
  shows "[|a \<noteq> b; \<forall>x. DERIV f x :> k |] ==> (f(b) - f(a)) = (b-a) * k"
huffman@21164
  1128
apply (rule linorder_cases [of a b], auto)
huffman@21164
  1129
apply (drule_tac [!] f = f in MVT)
huffman@21164
  1130
apply (auto dest: DERIV_isCont DERIV_unique simp add: differentiable_def)
nipkow@23477
  1131
apply (auto dest: DERIV_unique simp add: ring_distribs diff_minus)
huffman@21164
  1132
done
huffman@21164
  1133
huffman@21164
  1134
lemma DERIV_const_ratio_const2:
huffman@21784
  1135
  fixes f :: "real => real"
huffman@21784
  1136
  shows "[|a \<noteq> b; \<forall>x. DERIV f x :> k |] ==> (f(b) - f(a))/(b-a) = k"
huffman@21164
  1137
apply (rule_tac c1 = "b-a" in real_mult_right_cancel [THEN iffD1])
huffman@21164
  1138
apply (auto dest!: DERIV_const_ratio_const simp add: mult_assoc)
huffman@21164
  1139
done
huffman@21164
  1140
huffman@21164
  1141
lemma real_average_minus_first [simp]: "((a + b) /2 - a) = (b-a)/(2::real)"
huffman@21164
  1142
by (simp)
huffman@21164
  1143
huffman@21164
  1144
lemma real_average_minus_second [simp]: "((b + a)/2 - a) = (b-a)/(2::real)"
huffman@21164
  1145
by (simp)
huffman@21164
  1146
huffman@21164
  1147
text{*Gallileo's "trick": average velocity = av. of end velocities*}
huffman@21164
  1148
huffman@21164
  1149
lemma DERIV_const_average:
huffman@21164
  1150
  fixes v :: "real => real"
huffman@21164
  1151
  assumes neq: "a \<noteq> (b::real)"
huffman@21164
  1152
      and der: "\<forall>x. DERIV v x :> k"
huffman@21164
  1153
  shows "v ((a + b)/2) = (v a + v b)/2"
huffman@21164
  1154
proof (cases rule: linorder_cases [of a b])
huffman@21164
  1155
  case equal with neq show ?thesis by simp
huffman@21164
  1156
next
huffman@21164
  1157
  case less
huffman@21164
  1158
  have "(v b - v a) / (b - a) = k"
huffman@21164
  1159
    by (rule DERIV_const_ratio_const2 [OF neq der])
huffman@21164
  1160
  hence "(b-a) * ((v b - v a) / (b-a)) = (b-a) * k" by simp
huffman@21164
  1161
  moreover have "(v ((a + b) / 2) - v a) / ((a + b) / 2 - a) = k"
huffman@21164
  1162
    by (rule DERIV_const_ratio_const2 [OF _ der], simp add: neq)
huffman@21164
  1163
  ultimately show ?thesis using neq by force
huffman@21164
  1164
next
huffman@21164
  1165
  case greater
huffman@21164
  1166
  have "(v b - v a) / (b - a) = k"
huffman@21164
  1167
    by (rule DERIV_const_ratio_const2 [OF neq der])
huffman@21164
  1168
  hence "(b-a) * ((v b - v a) / (b-a)) = (b-a) * k" by simp
huffman@21164
  1169
  moreover have " (v ((b + a) / 2) - v a) / ((b + a) / 2 - a) = k"
huffman@21164
  1170
    by (rule DERIV_const_ratio_const2 [OF _ der], simp add: neq)
huffman@21164
  1171
  ultimately show ?thesis using neq by (force simp add: add_commute)
huffman@21164
  1172
qed
huffman@21164
  1173
huffman@21164
  1174
huffman@29912
  1175
subsection {* Continuous injective functions *}
huffman@29912
  1176
huffman@21164
  1177
text{*Dull lemma: an continuous injection on an interval must have a
huffman@21164
  1178
strict maximum at an end point, not in the middle.*}
huffman@21164
  1179
huffman@21164
  1180
lemma lemma_isCont_inj:
huffman@21164
  1181
  fixes f :: "real \<Rightarrow> real"
huffman@21164
  1182
  assumes d: "0 < d"
huffman@21164
  1183
      and inj [rule_format]: "\<forall>z. \<bar>z-x\<bar> \<le> d --> g(f z) = z"
huffman@21164
  1184
      and cont: "\<forall>z. \<bar>z-x\<bar> \<le> d --> isCont f z"
huffman@21164
  1185
  shows "\<exists>z. \<bar>z-x\<bar> \<le> d & f x < f z"
huffman@21164
  1186
proof (rule ccontr)
huffman@21164
  1187
  assume  "~ (\<exists>z. \<bar>z-x\<bar> \<le> d & f x < f z)"
huffman@21164
  1188
  hence all [rule_format]: "\<forall>z. \<bar>z - x\<bar> \<le> d --> f z \<le> f x" by auto
huffman@21164
  1189
  show False
huffman@21164
  1190
  proof (cases rule: linorder_le_cases [of "f(x-d)" "f(x+d)"])
huffman@21164
  1191
    case le
huffman@21164
  1192
    from d cont all [of "x+d"]
huffman@21164
  1193
    have flef: "f(x+d) \<le> f x"
huffman@21164
  1194
     and xlex: "x - d \<le> x"
huffman@21164
  1195
     and cont': "\<forall>z. x - d \<le> z \<and> z \<le> x \<longrightarrow> isCont f z"
huffman@21164
  1196
       by (auto simp add: abs_if)
huffman@21164
  1197
    from IVT [OF le flef xlex cont']
huffman@21164
  1198
    obtain x' where "x-d \<le> x'" "x' \<le> x" "f x' = f(x+d)" by blast
huffman@21164
  1199
    moreover
huffman@21164
  1200
    hence "g(f x') = g (f(x+d))" by simp
huffman@21164
  1201
    ultimately show False using d inj [of x'] inj [of "x+d"]
huffman@22998
  1202
      by (simp add: abs_le_iff)
huffman@21164
  1203
  next
huffman@21164
  1204
    case ge
huffman@21164
  1205
    from d cont all [of "x-d"]
huffman@21164
  1206
    have flef: "f(x-d) \<le> f x"
huffman@21164
  1207
     and xlex: "x \<le> x+d"
huffman@21164
  1208
     and cont': "\<forall>z. x \<le> z \<and> z \<le> x+d \<longrightarrow> isCont f z"
huffman@21164
  1209
       by (auto simp add: abs_if)
huffman@21164
  1210
    from IVT2 [OF ge flef xlex cont']
huffman@21164
  1211
    obtain x' where "x \<le> x'" "x' \<le> x+d" "f x' = f(x-d)" by blast
huffman@21164
  1212
    moreover
huffman@21164
  1213
    hence "g(f x') = g (f(x-d))" by simp
huffman@21164
  1214
    ultimately show False using d inj [of x'] inj [of "x-d"]
huffman@22998
  1215
      by (simp add: abs_le_iff)
huffman@21164
  1216
  qed
huffman@21164
  1217
qed
huffman@21164
  1218
huffman@21164
  1219
huffman@21164
  1220
text{*Similar version for lower bound.*}
huffman@21164
  1221
huffman@21164
  1222
lemma lemma_isCont_inj2:
huffman@21164
  1223
  fixes f g :: "real \<Rightarrow> real"
huffman@21164
  1224
  shows "[|0 < d; \<forall>z. \<bar>z-x\<bar> \<le> d --> g(f z) = z;
huffman@21164
  1225
        \<forall>z. \<bar>z-x\<bar> \<le> d --> isCont f z |]
huffman@21164
  1226
      ==> \<exists>z. \<bar>z-x\<bar> \<le> d & f z < f x"
huffman@21164
  1227
apply (insert lemma_isCont_inj
huffman@21164
  1228
          [where f = "%x. - f x" and g = "%y. g(-y)" and x = x and d = d])
huffman@21164
  1229
apply (simp add: isCont_minus linorder_not_le)
huffman@21164
  1230
done
huffman@21164
  1231
huffman@21164
  1232
text{*Show there's an interval surrounding @{term "f(x)"} in
huffman@21164
  1233
@{text "f[[x - d, x + d]]"} .*}
huffman@21164
  1234
huffman@21164
  1235
lemma isCont_inj_range:
huffman@21164
  1236
  fixes f :: "real \<Rightarrow> real"
huffman@21164
  1237
  assumes d: "0 < d"
huffman@21164
  1238
      and inj: "\<forall>z. \<bar>z-x\<bar> \<le> d --> g(f z) = z"
huffman@21164
  1239
      and cont: "\<forall>z. \<bar>z-x\<bar> \<le> d --> isCont f z"
huffman@21164
  1240
  shows "\<exists>e>0. \<forall>y. \<bar>y - f x\<bar> \<le> e --> (\<exists>z. \<bar>z-x\<bar> \<le> d & f z = y)"
huffman@21164
  1241
proof -
huffman@21164
  1242
  have "x-d \<le> x+d" "\<forall>z. x-d \<le> z \<and> z \<le> x+d \<longrightarrow> isCont f z" using cont d
huffman@22998
  1243
    by (auto simp add: abs_le_iff)
huffman@21164
  1244
  from isCont_Lb_Ub [OF this]
huffman@21164
  1245
  obtain L M
huffman@21164
  1246
  where all1 [rule_format]: "\<forall>z. x-d \<le> z \<and> z \<le> x+d \<longrightarrow> L \<le> f z \<and> f z \<le> M"
huffman@21164
  1247
    and all2 [rule_format]:
huffman@21164
  1248
           "\<forall>y. L \<le> y \<and> y \<le> M \<longrightarrow> (\<exists>z. x-d \<le> z \<and> z \<le> x+d \<and> f z = y)"
huffman@21164
  1249
    by auto
huffman@21164
  1250
  with d have "L \<le> f x & f x \<le> M" by simp
huffman@21164
  1251
  moreover have "L \<noteq> f x"
huffman@21164
  1252
  proof -
huffman@21164
  1253
    from lemma_isCont_inj2 [OF d inj cont]
huffman@21164
  1254
    obtain u where "\<bar>u - x\<bar> \<le> d" "f u < f x"  by auto
huffman@21164
  1255
    thus ?thesis using all1 [of u] by arith
huffman@21164
  1256
  qed
huffman@21164
  1257
  moreover have "f x \<noteq> M"
huffman@21164
  1258
  proof -
huffman@21164
  1259
    from lemma_isCont_inj [OF d inj cont]
huffman@21164
  1260
    obtain u where "\<bar>u - x\<bar> \<le> d" "f x < f u"  by auto
huffman@21164
  1261
    thus ?thesis using all1 [of u] by arith
huffman@21164
  1262
  qed
huffman@21164
  1263
  ultimately have "L < f x & f x < M" by arith
huffman@21164
  1264
  hence "0 < f x - L" "0 < M - f x" by arith+
huffman@21164
  1265
  from real_lbound_gt_zero [OF this]
huffman@21164
  1266
  obtain e where e: "0 < e" "e < f x - L" "e < M - f x" by auto
huffman@21164
  1267
  thus ?thesis
huffman@21164
  1268
  proof (intro exI conjI)
huffman@23441
  1269
    show "0<e" using e(1) .
huffman@21164
  1270
    show "\<forall>y. \<bar>y - f x\<bar> \<le> e \<longrightarrow> (\<exists>z. \<bar>z - x\<bar> \<le> d \<and> f z = y)"
huffman@21164
  1271
    proof (intro strip)
huffman@21164
  1272
      fix y::real
huffman@21164
  1273
      assume "\<bar>y - f x\<bar> \<le> e"
huffman@21164
  1274
      with e have "L \<le> y \<and> y \<le> M" by arith
huffman@21164
  1275
      from all2 [OF this]
huffman@21164
  1276
      obtain z where "x - d \<le> z" "z \<le> x + d" "f z = y" by blast
chaieb@27668
  1277
      thus "\<exists>z. \<bar>z - x\<bar> \<le> d \<and> f z = y" 
huffman@22998
  1278
        by (force simp add: abs_le_iff)
huffman@21164
  1279
    qed
huffman@21164
  1280
  qed
huffman@21164
  1281
qed
huffman@21164
  1282
huffman@21164
  1283
huffman@21164
  1284
text{*Continuity of inverse function*}
huffman@21164
  1285
huffman@21164
  1286
lemma isCont_inverse_function:
huffman@21164
  1287
  fixes f g :: "real \<Rightarrow> real"
huffman@21164
  1288
  assumes d: "0 < d"
huffman@21164
  1289
      and inj: "\<forall>z. \<bar>z-x\<bar> \<le> d --> g(f z) = z"
huffman@21164
  1290
      and cont: "\<forall>z. \<bar>z-x\<bar> \<le> d --> isCont f z"
huffman@21164
  1291
  shows "isCont g (f x)"
huffman@21164
  1292
proof (simp add: isCont_iff LIM_eq)
huffman@21164
  1293
  show "\<forall>r. 0 < r \<longrightarrow>
huffman@21164
  1294
         (\<exists>s>0. \<forall>z. z\<noteq>0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>g(f x + z) - g(f x)\<bar> < r)"
huffman@21164
  1295
  proof (intro strip)
huffman@21164
  1296
    fix r::real
huffman@21164
  1297
    assume r: "0<r"
huffman@21164
  1298
    from real_lbound_gt_zero [OF r d]
huffman@21164
  1299
    obtain e where e: "0 < e" and e_lt: "e < r \<and> e < d" by blast
huffman@21164
  1300
    with inj cont
huffman@21164
  1301
    have e_simps: "\<forall>z. \<bar>z-x\<bar> \<le> e --> g (f z) = z"
huffman@21164
  1302
                  "\<forall>z. \<bar>z-x\<bar> \<le> e --> isCont f z"   by auto
huffman@21164
  1303
    from isCont_inj_range [OF e this]
huffman@21164
  1304
    obtain e' where e': "0 < e'"
huffman@21164
  1305
        and all: "\<forall>y. \<bar>y - f x\<bar> \<le> e' \<longrightarrow> (\<exists>z. \<bar>z - x\<bar> \<le> e \<and> f z = y)"
huffman@21164
  1306
          by blast
huffman@21164
  1307
    show "\<exists>s>0. \<forall>z. z\<noteq>0 \<and> \<bar>z\<bar> < s \<longrightarrow> \<bar>g(f x + z) - g(f x)\<bar> < r"
huffman@21164
  1308
    proof (intro exI conjI)
huffman@23441
  1309
      show "0<e'" using e' .
huffman@21164
  1310
      show "\<forall>z. z \<noteq> 0 \<and> \<bar>z\<bar> < e' \<longrightarrow> \<bar>g (f x + z) - g (f x)\<bar> < r"
huffman@21164
  1311
      proof (intro strip)
huffman@21164
  1312
        fix z::real
huffman@21164
  1313
        assume z: "z \<noteq> 0 \<and> \<bar>z\<bar> < e'"
huffman@21164
  1314
        with e e_lt e_simps all [rule_format, of "f x + z"]
huffman@21164
  1315
        show "\<bar>g (f x + z) - g (f x)\<bar> < r" by force
huffman@21164
  1316
      qed
huffman@21164
  1317
    qed
huffman@21164
  1318
  qed
huffman@21164
  1319
qed
huffman@21164
  1320
huffman@23041
  1321
text {* Derivative of inverse function *}
huffman@23041
  1322
huffman@23041
  1323
lemma DERIV_inverse_function:
huffman@23041
  1324
  fixes f g :: "real \<Rightarrow> real"
huffman@23041
  1325
  assumes der: "DERIV f (g x) :> D"
huffman@23041
  1326
  assumes neq: "D \<noteq> 0"
huffman@23044
  1327
  assumes a: "a < x" and b: "x < b"
huffman@23044
  1328
  assumes inj: "\<forall>y. a < y \<and> y < b \<longrightarrow> f (g y) = y"
huffman@23041
  1329
  assumes cont: "isCont g x"
huffman@23041
  1330
  shows "DERIV g x :> inverse D"
huffman@23041
  1331
unfolding DERIV_iff2
huffman@23044
  1332
proof (rule LIM_equal2)
huffman@23044
  1333
  show "0 < min (x - a) (b - x)"
chaieb@27668
  1334
    using a b by arith 
huffman@23044
  1335
next
huffman@23041
  1336
  fix y
huffman@23044
  1337
  assume "norm (y - x) < min (x - a) (b - x)"
chaieb@27668
  1338
  hence "a < y" and "y < b" 
huffman@23044
  1339
    by (simp_all add: abs_less_iff)
huffman@23041
  1340
  thus "(g y - g x) / (y - x) =
huffman@23041
  1341
        inverse ((f (g y) - x) / (g y - g x))"
huffman@23041
  1342
    by (simp add: inj)
huffman@23041
  1343
next
huffman@23041
  1344
  have "(\<lambda>z. (f z - f (g x)) / (z - g x)) -- g x --> D"
huffman@23041
  1345
    by (rule der [unfolded DERIV_iff2])
huffman@23041
  1346
  hence 1: "(\<lambda>z. (f z - x) / (z - g x)) -- g x --> D"
huffman@23044
  1347
    using inj a b by simp
huffman@23041
  1348
  have 2: "\<exists>d>0. \<forall>y. y \<noteq> x \<and> norm (y - x) < d \<longrightarrow> g y \<noteq> g x"
huffman@23041
  1349
  proof (safe intro!: exI)
huffman@23044
  1350
    show "0 < min (x - a) (b - x)"
huffman@23044
  1351
      using a b by simp
huffman@23041
  1352
  next
huffman@23041
  1353
    fix y
huffman@23044
  1354
    assume "norm (y - x) < min (x - a) (b - x)"
huffman@23044
  1355
    hence y: "a < y" "y < b"
huffman@23044
  1356
      by (simp_all add: abs_less_iff)
huffman@23041
  1357
    assume "g y = g x"
huffman@23041
  1358
    hence "f (g y) = f (g x)" by simp
huffman@23044
  1359
    hence "y = x" using inj y a b by simp
huffman@23041
  1360
    also assume "y \<noteq> x"
huffman@23041
  1361
    finally show False by simp
huffman@23041
  1362
  qed
huffman@23041
  1363
  have "(\<lambda>y. (f (g y) - x) / (g y - g x)) -- x --> D"
huffman@23041
  1364
    using cont 1 2 by (rule isCont_LIM_compose2)
huffman@23041
  1365
  thus "(\<lambda>y. inverse ((f (g y) - x) / (g y - g x)))
huffman@23041
  1366
        -- x --> inverse D"
huffman@23041
  1367
    using neq by (rule LIM_inverse)
huffman@23041
  1368
qed
huffman@23041
  1369
huffman@29912
  1370
huffman@29912
  1371
subsection {* Generalized Mean Value Theorem *}
huffman@29912
  1372
huffman@21164
  1373
theorem GMVT:
huffman@21784
  1374
  fixes a b :: real
huffman@21164
  1375
  assumes alb: "a < b"
huffman@21164
  1376
  and fc: "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont f x"
huffman@21164
  1377
  and fd: "\<forall>x. a < x \<and> x < b \<longrightarrow> f differentiable x"
huffman@21164
  1378
  and gc: "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont g x"
huffman@21164
  1379
  and gd: "\<forall>x. a < x \<and> x < b \<longrightarrow> g differentiable x"
huffman@21164
  1380
  shows "\<exists>g'c f'c c. DERIV g c :> g'c \<and> DERIV f c :> f'c \<and> a < c \<and> c < b \<and> ((f b - f a) * g'c) = ((g b - g a) * f'c)"
huffman@21164
  1381
proof -
huffman@21164
  1382
  let ?h = "\<lambda>x. (f b - f a)*(g x) - (g b - g a)*(f x)"
huffman@21164
  1383
  from prems have "a < b" by simp
huffman@21164
  1384
  moreover have "\<forall>x. a \<le> x \<and> x \<le> b \<longrightarrow> isCont ?h x"
huffman@21164
  1385
  proof -
huffman@21164
  1386
    have "\<forall>x. a <= x \<and> x <= b \<longrightarrow> isCont (\<lambda>x. f b - f a) x" by simp
huffman@21164
  1387
    with gc have "\<forall>x. a <= x \<and> x <= b \<longrightarrow> isCont (\<lambda>x. (f b - f a) * g x) x"
huffman@21164
  1388
      by (auto intro: isCont_mult)
huffman@21164
  1389
    moreover
huffman@21164
  1390
    have "\<forall>x. a <= x \<and> x <= b \<longrightarrow> isCont (\<lambda>x. g b - g a) x" by simp
huffman@21164
  1391
    with fc have "\<forall>x. a <= x \<and> x <= b \<longrightarrow> isCont (\<lambda>x. (g b - g a) * f x) x"
huffman@21164
  1392
      by (auto intro: isCont_mult)
huffman@21164
  1393
    ultimately show ?thesis
huffman@21164
  1394
      by (fastsimp intro: isCont_diff)
huffman@21164
  1395
  qed
huffman@21164
  1396
  moreover
huffman@21164
  1397
  have "\<forall>x. a < x \<and> x < b \<longrightarrow> ?h differentiable x"
huffman@21164
  1398
  proof -
huffman@21164
  1399
    have "\<forall>x. a < x \<and> x < b \<longrightarrow> (\<lambda>x. f b - f a) differentiable x" by (simp add: differentiable_const)
huffman@21164
  1400
    with gd have "\<forall>x. a < x \<and> x < b \<longrightarrow> (\<lambda>x. (f b - f a) * g x) differentiable x" by (simp add: differentiable_mult)
huffman@21164
  1401
    moreover
huffman@21164
  1402
    have "\<forall>x. a < x \<and> x < b \<longrightarrow> (\<lambda>x. g b - g a) differentiable x" by (simp add: differentiable_const)
huffman@21164
  1403
    with fd have "\<forall>x. a < x \<and> x < b \<longrightarrow> (\<lambda>x. (g b - g a) * f x) differentiable x" by (simp add: differentiable_mult)
huffman@21164
  1404
    ultimately show ?thesis by (simp add: differentiable_diff)
huffman@21164
  1405
  qed
huffman@21164
  1406
  ultimately have "\<exists>l z. a < z \<and> z < b \<and> DERIV ?h z :> l \<and> ?h b - ?h a = (b - a) * l" by (rule MVT)
huffman@21164
  1407
  then obtain l where ldef: "\<exists>z. a < z \<and> z < b \<and> DERIV ?h z :> l \<and> ?h b - ?h a = (b - a) * l" ..
huffman@21164
  1408
  then obtain c where cdef: "a < c \<and> c < b \<and> DERIV ?h c :> l \<and> ?h b - ?h a = (b - a) * l" ..
huffman@21164
  1409
huffman@21164
  1410
  from cdef have cint: "a < c \<and> c < b" by auto
huffman@21164
  1411
  with gd have "g differentiable c" by simp
huffman@21164
  1412
  hence "\<exists>D. DERIV g c :> D" by (rule differentiableD)
huffman@21164
  1413
  then obtain g'c where g'cdef: "DERIV g c :> g'c" ..
huffman@21164
  1414
huffman@21164
  1415
  from cdef have "a < c \<and> c < b" by auto
huffman@21164
  1416
  with fd have "f differentiable c" by simp
huffman@21164
  1417
  hence "\<exists>D. DERIV f c :> D" by (rule differentiableD)
huffman@21164
  1418
  then obtain f'c where f'cdef: "DERIV f c :> f'c" ..
huffman@21164
  1419
huffman@21164
  1420
  from cdef have "DERIV ?h c :> l" by auto
huffman@21164
  1421
  moreover
huffman@21164
  1422
  {
huffman@23441
  1423
    have "DERIV (\<lambda>x. (f b - f a) * g x) c :> g'c * (f b - f a)"
huffman@21164
  1424
      apply (insert DERIV_const [where k="f b - f a"])
huffman@21164
  1425
      apply (drule meta_spec [of _ c])
huffman@23441
  1426
      apply (drule DERIV_mult [OF _ g'cdef])
huffman@23441
  1427
      by simp
huffman@23441
  1428
    moreover have "DERIV (\<lambda>x. (g b - g a) * f x) c :> f'c * (g b - g a)"
huffman@21164
  1429
      apply (insert DERIV_const [where k="g b - g a"])
huffman@21164
  1430
      apply (drule meta_spec [of _ c])
huffman@23441
  1431
      apply (drule DERIV_mult [OF _ f'cdef])
huffman@23441
  1432
      by simp
huffman@21164
  1433
    ultimately have "DERIV ?h c :>  g'c * (f b - f a) - f'c * (g b - g a)"
huffman@21164
  1434
      by (simp add: DERIV_diff)
huffman@21164
  1435
  }
huffman@21164
  1436
  ultimately have leq: "l =  g'c * (f b - f a) - f'c * (g b - g a)" by (rule DERIV_unique)
huffman@21164
  1437
huffman@21164
  1438
  {
huffman@21164
  1439
    from cdef have "?h b - ?h a = (b - a) * l" by auto
huffman@21164
  1440
    also with leq have "\<dots> = (b - a) * (g'c * (f b - f a) - f'c * (g b - g a))" by simp
huffman@21164
  1441
    finally have "?h b - ?h a = (b - a) * (g'c * (f b - f a) - f'c * (g b - g a))" by simp
huffman@21164
  1442
  }
huffman@21164
  1443
  moreover
huffman@21164
  1444
  {
huffman@21164
  1445
    have "?h b - ?h a =
huffman@21164
  1446
         ((f b)*(g b) - (f a)*(g b) - (g b)*(f b) + (g a)*(f b)) -
huffman@21164
  1447
          ((f b)*(g a) - (f a)*(g a) - (g b)*(f a) + (g a)*(f a))"
nipkow@29667
  1448
      by (simp add: algebra_simps)
huffman@21164
  1449
    hence "?h b - ?h a = 0" by auto
huffman@21164
  1450
  }
huffman@21164
  1451
  ultimately have "(b - a) * (g'c * (f b - f a) - f'c * (g b - g a)) = 0" by auto
huffman@21164
  1452
  with alb have "g'c * (f b - f a) - f'c * (g b - g a) = 0" by simp
huffman@21164
  1453
  hence "g'c * (f b - f a) = f'c * (g b - g a)" by simp
huffman@21164
  1454
  hence "(f b - f a) * g'c = (g b - g a) * f'c" by (simp add: mult_ac)
huffman@21164
  1455
huffman@21164
  1456
  with g'cdef f'cdef cint show ?thesis by auto
huffman@21164
  1457
qed
huffman@21164
  1458
huffman@29468
  1459
huffman@29166
  1460
subsection {* Theorems about Limits *}
huffman@29166
  1461
huffman@29166
  1462
(* need to rename second isCont_inverse *)
huffman@29166
  1463
huffman@29166
  1464
lemma isCont_inv_fun:
huffman@29166
  1465
  fixes f g :: "real \<Rightarrow> real"
huffman@29166
  1466
  shows "[| 0 < d; \<forall>z. \<bar>z - x\<bar> \<le> d --> g(f(z)) = z;  
huffman@29166
  1467
         \<forall>z. \<bar>z - x\<bar> \<le> d --> isCont f z |]  
huffman@29166
  1468
      ==> isCont g (f x)"
huffman@29166
  1469
by (rule isCont_inverse_function)
huffman@29166
  1470
huffman@29166
  1471
lemma isCont_inv_fun_inv:
huffman@29166
  1472
  fixes f g :: "real \<Rightarrow> real"
huffman@29166
  1473
  shows "[| 0 < d;  
huffman@29166
  1474
         \<forall>z. \<bar>z - x\<bar> \<le> d --> g(f(z)) = z;  
huffman@29166
  1475
         \<forall>z. \<bar>z - x\<bar> \<le> d --> isCont f z |]  
huffman@29166
  1476
       ==> \<exists>e. 0 < e &  
huffman@29166
  1477
             (\<forall>y. 0 < \<bar>y - f(x)\<bar> & \<bar>y - f(x)\<bar> < e --> f(g(y)) = y)"
huffman@29166
  1478
apply (drule isCont_inj_range)
huffman@29166
  1479
prefer 2 apply (assumption, assumption, auto)
huffman@29166
  1480
apply (rule_tac x = e in exI, auto)
huffman@29166
  1481
apply (rotate_tac 2)
huffman@29166
  1482
apply (drule_tac x = y in spec, auto)
huffman@29166
  1483
done
huffman@29166
  1484
huffman@29166
  1485
huffman@29166
  1486
text{*Bartle/Sherbert: Introduction to Real Analysis, Theorem 4.2.9, p. 110*}
huffman@29166
  1487
lemma LIM_fun_gt_zero:
huffman@29166
  1488
     "[| f -- c --> (l::real); 0 < l |]  
huffman@29166
  1489
         ==> \<exists>r. 0 < r & (\<forall>x::real. x \<noteq> c & \<bar>c - x\<bar> < r --> 0 < f x)"
huffman@29166
  1490
apply (auto simp add: LIM_def)
huffman@29166
  1491
apply (drule_tac x = "l/2" in spec, safe, force)
huffman@29166
  1492
apply (rule_tac x = s in exI)
huffman@29166
  1493
apply (auto simp only: abs_less_iff)
huffman@29166
  1494
done
huffman@29166
  1495
huffman@29166
  1496
lemma LIM_fun_less_zero:
huffman@29166
  1497
     "[| f -- c --> (l::real); l < 0 |]  
huffman@29166
  1498
      ==> \<exists>r. 0 < r & (\<forall>x::real. x \<noteq> c & \<bar>c - x\<bar> < r --> f x < 0)"
huffman@29166
  1499
apply (auto simp add: LIM_def)
huffman@29166
  1500
apply (drule_tac x = "-l/2" in spec, safe, force)
huffman@29166
  1501
apply (rule_tac x = s in exI)
huffman@29166
  1502
apply (auto simp only: abs_less_iff)
huffman@29166
  1503
done
huffman@29166
  1504
huffman@29166
  1505
huffman@29166
  1506
lemma LIM_fun_not_zero:
huffman@29166
  1507
     "[| f -- c --> (l::real); l \<noteq> 0 |] 
huffman@29166
  1508
      ==> \<exists>r. 0 < r & (\<forall>x::real. x \<noteq> c & \<bar>c - x\<bar> < r --> f x \<noteq> 0)"
huffman@29166
  1509
apply (cut_tac x = l and y = 0 in linorder_less_linear, auto)
huffman@29166
  1510
apply (drule LIM_fun_less_zero)
huffman@29166
  1511
apply (drule_tac [3] LIM_fun_gt_zero)
huffman@29166
  1512
apply force+
huffman@29166
  1513
done
huffman@29166
  1514
huffman@21164
  1515
end