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