| author | huffman | 
| Thu, 28 May 2009 17:24:18 -0700 | |
| changeset 31291 | a2f737a72655 | 
| parent 31148 | 7ba7c1f8bc22 | 
| child 31881 | eba74a5790d2 | 
| permissions | -rw-r--r-- | 
| 28952 
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
 haftmann parents: 
27239diff
changeset | 1 | (* Author : Jacques D. Fleuriot | 
| 12224 | 2 | Copyright : 2001 University of Edinburgh | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 3 | Conversion to Isar and new proofs by Lawrence C Paulson, 2004 | 
| 12224 | 4 | *) | 
| 5 | ||
| 15944 | 6 | header{*MacLaurin Series*}
 | 
| 7 | ||
| 15131 | 8 | theory MacLaurin | 
| 29811 
026b0f9f579f
fixed Proofs and dependencies ; Theory Dense_Linear_Order moved to Library
 chaieb@chaieb-laptop parents: 
29803diff
changeset | 9 | imports Transcendental | 
| 15131 | 10 | begin | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 11 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 12 | subsection{*Maclaurin's Theorem with Lagrange Form of Remainder*}
 | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 13 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 14 | text{*This is a very long, messy proof even now that it's been broken down
 | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 15 | into lemmas.*} | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 16 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 17 | lemma Maclaurin_lemma: | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 18 | "0 < h ==> | 
| 15539 | 19 | \<exists>B. f h = (\<Sum>m=0..<n. (j m / real (fact m)) * (h^m)) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 20 | (B * ((h^n) / real(fact n)))" | 
| 15539 | 21 | apply (rule_tac x = "(f h - (\<Sum>m=0..<n. (j m / real (fact m)) * h^m)) * | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 22 | real(fact n) / (h^n)" | 
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 23 | in exI) | 
| 15539 | 24 | apply (simp) | 
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 25 | done | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 26 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 27 | lemma eq_diff_eq': "(x = y - z) = (y = x + (z::real))" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 28 | by arith | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 29 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 30 | text{*A crude tactic to differentiate by proof.*}
 | 
| 24180 | 31 | |
| 32 | lemmas deriv_rulesI = | |
| 33 | DERIV_ident DERIV_const DERIV_cos DERIV_cmult | |
| 34 | DERIV_sin DERIV_exp DERIV_inverse DERIV_pow | |
| 35 | DERIV_add DERIV_diff DERIV_mult DERIV_minus | |
| 36 | DERIV_inverse_fun DERIV_quotient DERIV_fun_pow | |
| 37 | DERIV_fun_exp DERIV_fun_sin DERIV_fun_cos | |
| 38 | DERIV_ident DERIV_const DERIV_cos | |
| 39 | ||
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 40 | ML | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 41 | {*
 | 
| 19765 | 42 | local | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 43 | exception DERIV_name; | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 44 | fun get_fun_name (_ $ (Const ("Lim.deriv",_) $ Abs(_,_, Const (f,_) $ _) $ _ $ _)) = f
 | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 45 | |   get_fun_name (_ $ (_ $ (Const ("Lim.deriv",_) $ Abs(_,_, Const (f,_) $ _) $ _ $ _))) = f
 | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 46 | | get_fun_name _ = raise DERIV_name; | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 47 | |
| 24180 | 48 | in | 
| 49 | ||
| 27227 | 50 | fun deriv_tac ctxt = SUBGOAL (fn (prem, i) => | 
| 51 |   resolve_tac @{thms deriv_rulesI} i ORELSE
 | |
| 27239 | 52 |     ((rtac (read_instantiate ctxt [(("f", 0), get_fun_name prem)]
 | 
| 27227 | 53 |                      @{thm DERIV_chain2}) i) handle DERIV_name => no_tac));
 | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 54 | |
| 27227 | 55 | fun DERIV_tac ctxt = ALLGOALS (fn i => REPEAT (deriv_tac ctxt i)); | 
| 19765 | 56 | |
| 57 | end | |
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 58 | *} | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 59 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 60 | lemma Maclaurin_lemma2: | 
| 29187 | 61 | assumes diff: "\<forall>m t. m < n \<and> 0\<le>t \<and> t\<le>h \<longrightarrow> DERIV (diff m) t :> diff (Suc m) t" | 
| 62 | assumes n: "n = Suc k" | |
| 63 | assumes difg: "difg = | |
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 64 | (\<lambda>m t. diff m t - | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 65 | ((\<Sum>p = 0..<n - m. diff (m + p) 0 / real (fact p) * t ^ p) + | 
| 29187 | 66 | B * (t ^ (n - m) / real (fact (n - m)))))" | 
| 67 | shows | |
| 68 | "\<forall>m t. m < n & 0 \<le> t & t \<le> h --> DERIV (difg m) t :> difg (Suc m) t" | |
| 69 | unfolding difg | |
| 70 | apply clarify | |
| 71 | apply (rule DERIV_diff) | |
| 72 | apply (simp add: diff) | |
| 73 | apply (simp only: n) | |
| 74 | apply (rule DERIV_add) | |
| 75 | apply (rule_tac [2] DERIV_cmult) | |
| 76 | apply (rule_tac [2] lemma_DERIV_subst) | |
| 77 | apply (rule_tac [2] DERIV_quotient) | |
| 78 | apply (rule_tac [3] DERIV_const) | |
| 79 | apply (rule_tac [2] DERIV_pow) | |
| 80 | prefer 3 apply (simp add: fact_diff_Suc) | |
| 81 | prefer 2 apply simp | |
| 82 | apply (frule less_iff_Suc_add [THEN iffD1], clarify) | |
| 83 | apply (simp del: setsum_op_ivl_Suc) | |
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29811diff
changeset | 84 | apply (insert sumr_offset4 [of "Suc 0"]) | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 85 | apply (simp del: setsum_op_ivl_Suc fact_Suc power_Suc) | 
| 29187 | 86 | apply (rule lemma_DERIV_subst) | 
| 87 | apply (rule DERIV_add) | |
| 88 | apply (rule_tac [2] DERIV_const) | |
| 89 | apply (rule DERIV_sumr, clarify) | |
| 90 | prefer 2 apply simp | |
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 91 | apply (simp (no_asm) add: divide_inverse mult_assoc del: fact_Suc power_Suc) | 
| 29187 | 92 | apply (rule DERIV_cmult) | 
| 93 | apply (rule lemma_DERIV_subst) | |
| 94 | apply (best intro: DERIV_chain2 intro!: DERIV_intros) | |
| 95 | apply (subst fact_Suc) | |
| 96 | apply (subst real_of_nat_mult) | |
| 97 | apply (simp add: mult_ac) | |
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 98 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 99 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 100 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 101 | lemma Maclaurin: | 
| 29187 | 102 | assumes h: "0 < h" | 
| 103 | assumes n: "0 < n" | |
| 104 | assumes diff_0: "diff 0 = f" | |
| 105 | assumes diff_Suc: | |
| 106 | "\<forall>m t. m < n & 0 \<le> t & t \<le> h --> DERIV (diff m) t :> diff (Suc m) t" | |
| 107 | shows | |
| 108 | "\<exists>t. 0 < t & t < h & | |
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 109 | f h = | 
| 15539 | 110 |               setsum (%m. (diff m 0 / real (fact m)) * h ^ m) {0..<n} +
 | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 111 | (diff n t / real (fact n)) * h ^ n" | 
| 29187 | 112 | proof - | 
| 113 | from n obtain m where m: "n = Suc m" | |
| 114 | by (cases n, simp add: n) | |
| 115 | ||
| 116 | obtain B where f_h: "f h = | |
| 117 | (\<Sum>m = 0..<n. diff m (0\<Colon>real) / real (fact m) * h ^ m) + | |
| 118 | B * (h ^ n / real (fact n))" | |
| 119 | using Maclaurin_lemma [OF h] .. | |
| 120 | ||
| 121 | obtain g where g_def: "g = (%t. f t - | |
| 122 |     (setsum (%m. (diff m 0 / real(fact m)) * t^m) {0..<n}
 | |
| 123 | + (B * (t^n / real(fact n)))))" by blast | |
| 124 | ||
| 125 | have g2: "g 0 = 0 & g h = 0" | |
| 126 | apply (simp add: m f_h g_def del: setsum_op_ivl_Suc) | |
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29811diff
changeset | 127 | apply (cut_tac n = m and k = "Suc 0" in sumr_offset2) | 
| 29187 | 128 | apply (simp add: eq_diff_eq' diff_0 del: setsum_op_ivl_Suc) | 
| 129 | done | |
| 130 | ||
| 131 | obtain difg where difg_def: "difg = (%m t. diff m t - | |
| 132 |     (setsum (%p. (diff (m + p) 0 / real (fact p)) * (t ^ p)) {0..<n-m}
 | |
| 133 | + (B * ((t ^ (n - m)) / real (fact (n - m))))))" by blast | |
| 134 | ||
| 135 | have difg_0: "difg 0 = g" | |
| 136 | unfolding difg_def g_def by (simp add: diff_0) | |
| 137 | ||
| 138 | have difg_Suc: "\<forall>(m\<Colon>nat) t\<Colon>real. | |
| 139 | m < n \<and> (0\<Colon>real) \<le> t \<and> t \<le> h \<longrightarrow> DERIV (difg m) t :> difg (Suc m) t" | |
| 140 | using diff_Suc m difg_def by (rule Maclaurin_lemma2) | |
| 141 | ||
| 142 | have difg_eq_0: "\<forall>m. m < n --> difg m 0 = 0" | |
| 143 | apply clarify | |
| 144 | apply (simp add: m difg_def) | |
| 145 | apply (frule less_iff_Suc_add [THEN iffD1], clarify) | |
| 146 | apply (simp del: setsum_op_ivl_Suc) | |
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29811diff
changeset | 147 | apply (insert sumr_offset4 [of "Suc 0"]) | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 148 | apply (simp del: setsum_op_ivl_Suc fact_Suc) | 
| 29187 | 149 | done | 
| 150 | ||
| 151 | have isCont_difg: "\<And>m x. \<lbrakk>m < n; 0 \<le> x; x \<le> h\<rbrakk> \<Longrightarrow> isCont (difg m) x" | |
| 152 | by (rule DERIV_isCont [OF difg_Suc [rule_format]]) simp | |
| 153 | ||
| 154 | have differentiable_difg: | |
| 155 | "\<And>m x. \<lbrakk>m < n; 0 \<le> x; x \<le> h\<rbrakk> \<Longrightarrow> difg m differentiable x" | |
| 156 | by (rule differentiableI [OF difg_Suc [rule_format]]) simp | |
| 157 | ||
| 158 | have difg_Suc_eq_0: "\<And>m t. \<lbrakk>m < n; 0 \<le> t; t \<le> h; DERIV (difg m) t :> 0\<rbrakk> | |
| 159 | \<Longrightarrow> difg (Suc m) t = 0" | |
| 160 | by (rule DERIV_unique [OF difg_Suc [rule_format]]) simp | |
| 161 | ||
| 162 | have "m < n" using m by simp | |
| 163 | ||
| 164 | have "\<exists>t. 0 < t \<and> t < h \<and> DERIV (difg m) t :> 0" | |
| 165 | using `m < n` | |
| 166 | proof (induct m) | |
| 167 | case 0 | |
| 168 | show ?case | |
| 169 | proof (rule Rolle) | |
| 170 | show "0 < h" by fact | |
| 171 | show "difg 0 0 = difg 0 h" by (simp add: difg_0 g2) | |
| 172 | show "\<forall>x. 0 \<le> x \<and> x \<le> h \<longrightarrow> isCont (difg (0\<Colon>nat)) x" | |
| 173 | by (simp add: isCont_difg n) | |
| 174 | show "\<forall>x. 0 < x \<and> x < h \<longrightarrow> difg (0\<Colon>nat) differentiable x" | |
| 175 | by (simp add: differentiable_difg n) | |
| 176 | qed | |
| 177 | next | |
| 178 | case (Suc m') | |
| 179 | hence "\<exists>t. 0 < t \<and> t < h \<and> DERIV (difg m') t :> 0" by simp | |
| 180 | then obtain t where t: "0 < t" "t < h" "DERIV (difg m') t :> 0" by fast | |
| 181 | have "\<exists>t'. 0 < t' \<and> t' < t \<and> DERIV (difg (Suc m')) t' :> 0" | |
| 182 | proof (rule Rolle) | |
| 183 | show "0 < t" by fact | |
| 184 | show "difg (Suc m') 0 = difg (Suc m') t" | |
| 185 | using t `Suc m' < n` by (simp add: difg_Suc_eq_0 difg_eq_0) | |
| 186 | show "\<forall>x. 0 \<le> x \<and> x \<le> t \<longrightarrow> isCont (difg (Suc m')) x" | |
| 187 | using `t < h` `Suc m' < n` by (simp add: isCont_difg) | |
| 188 | show "\<forall>x. 0 < x \<and> x < t \<longrightarrow> difg (Suc m') differentiable x" | |
| 189 | using `t < h` `Suc m' < n` by (simp add: differentiable_difg) | |
| 190 | qed | |
| 191 | thus ?case | |
| 192 | using `t < h` by auto | |
| 193 | qed | |
| 194 | ||
| 195 | then obtain t where "0 < t" "t < h" "DERIV (difg m) t :> 0" by fast | |
| 196 | ||
| 197 | hence "difg (Suc m) t = 0" | |
| 198 | using `m < n` by (simp add: difg_Suc_eq_0) | |
| 199 | ||
| 200 | show ?thesis | |
| 201 | proof (intro exI conjI) | |
| 202 | show "0 < t" by fact | |
| 203 | show "t < h" by fact | |
| 204 | show "f h = | |
| 205 | (\<Sum>m = 0..<n. diff m 0 / real (fact m) * h ^ m) + | |
| 206 | diff n t / real (fact n) * h ^ n" | |
| 207 | using `difg (Suc m) t = 0` | |
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 208 | by (simp add: m f_h difg_def del: fact_Suc) | 
| 29187 | 209 | qed | 
| 210 | ||
| 211 | qed | |
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 212 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 213 | lemma Maclaurin_objl: | 
| 25162 | 214 | "0 < h & n>0 & diff 0 = f & | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 215 | (\<forall>m t. m < n & 0 \<le> t & t \<le> h --> DERIV (diff m) t :> diff (Suc m) t) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 216 | --> (\<exists>t. 0 < t & t < h & | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 217 | f h = (\<Sum>m=0..<n. diff m 0 / real (fact m) * h ^ m) + | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 218 | diff n t / real (fact n) * h ^ n)" | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 219 | by (blast intro: Maclaurin) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 220 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 221 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 222 | lemma Maclaurin2: | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 223 | "[| 0 < h; diff 0 = f; | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 224 | \<forall>m t. | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 225 | m < n & 0 \<le> t & t \<le> h --> DERIV (diff m) t :> diff (Suc m) t |] | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 226 | ==> \<exists>t. 0 < t & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 227 | t \<le> h & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 228 | f h = | 
| 15539 | 229 | (\<Sum>m=0..<n. diff m 0 / real (fact m) * h ^ m) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 230 | diff n t / real (fact n) * h ^ n" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 231 | apply (case_tac "n", auto) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 232 | apply (drule Maclaurin, auto) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 233 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 234 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 235 | lemma Maclaurin2_objl: | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 236 | "0 < h & diff 0 = f & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 237 | (\<forall>m t. | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 238 | m < n & 0 \<le> t & t \<le> h --> DERIV (diff m) t :> diff (Suc m) t) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 239 | --> (\<exists>t. 0 < t & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 240 | t \<le> h & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 241 | f h = | 
| 15539 | 242 | (\<Sum>m=0..<n. diff m 0 / real (fact m) * h ^ m) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 243 | diff n t / real (fact n) * h ^ n)" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 244 | by (blast intro: Maclaurin2) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 245 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 246 | lemma Maclaurin_minus: | 
| 25162 | 247 | "[| h < 0; n > 0; diff 0 = f; | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 248 | \<forall>m t. m < n & h \<le> t & t \<le> 0 --> DERIV (diff m) t :> diff (Suc m) t |] | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 249 | ==> \<exists>t. h < t & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 250 | t < 0 & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 251 | f h = | 
| 15539 | 252 | (\<Sum>m=0..<n. diff m 0 / real (fact m) * h ^ m) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 253 | diff n t / real (fact n) * h ^ n" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 254 | apply (cut_tac f = "%x. f (-x)" | 
| 23177 | 255 | and diff = "%n x. (-1 ^ n) * diff n (-x)" | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 256 | and h = "-h" and n = n in Maclaurin_objl) | 
| 15539 | 257 | apply (simp) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 258 | apply safe | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 259 | apply (subst minus_mult_right) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 260 | apply (rule DERIV_cmult) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 261 | apply (rule lemma_DERIV_subst) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 262 | apply (rule DERIV_chain2 [where g=uminus]) | 
| 23069 
cdfff0241c12
rename lemmas LIM_ident, isCont_ident, DERIV_ident
 huffman parents: 
22985diff
changeset | 263 | apply (rule_tac [2] DERIV_minus, rule_tac [2] DERIV_ident) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 264 | prefer 2 apply force | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 265 | apply force | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 266 | apply (rule_tac x = "-t" in exI, auto) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 267 | apply (subgoal_tac "(\<Sum>m = 0..<n. -1 ^ m * diff m 0 * (-h)^m / real(fact m)) = | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 268 | (\<Sum>m = 0..<n. diff m 0 * h ^ m / real(fact m))") | 
| 15536 | 269 | apply (rule_tac [2] setsum_cong[OF refl]) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 270 | apply (auto simp add: divide_inverse power_mult_distrib [symmetric]) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 271 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 272 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 273 | lemma Maclaurin_minus_objl: | 
| 25162 | 274 | "(h < 0 & n > 0 & diff 0 = f & | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 275 | (\<forall>m t. | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 276 | m < n & h \<le> t & t \<le> 0 --> DERIV (diff m) t :> diff (Suc m) t)) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 277 | --> (\<exists>t. h < t & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 278 | t < 0 & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 279 | f h = | 
| 15539 | 280 | (\<Sum>m=0..<n. diff m 0 / real (fact m) * h ^ m) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 281 | diff n t / real (fact n) * h ^ n)" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 282 | by (blast intro: Maclaurin_minus) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 283 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 284 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 285 | subsection{*More Convenient "Bidirectional" Version.*}
 | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 286 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 287 | (* not good for PVS sin_approx, cos_approx *) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 288 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 289 | lemma Maclaurin_bi_le_lemma [rule_format]: | 
| 25162 | 290 | "n>0 \<longrightarrow> | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 291 | diff 0 0 = | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 292 | (\<Sum>m = 0..<n. diff m 0 * 0 ^ m / real (fact m)) + | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 293 | diff n 0 * 0 ^ n / real (fact n)" | 
| 15251 | 294 | by (induct "n", auto) | 
| 14738 | 295 | |
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 296 | lemma Maclaurin_bi_le: | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 297 | "[| diff 0 = f; | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 298 | \<forall>m t. m < n & abs t \<le> abs x --> DERIV (diff m) t :> diff (Suc m) t |] | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 299 | ==> \<exists>t. abs t \<le> abs x & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 300 | f x = | 
| 15539 | 301 | (\<Sum>m=0..<n. diff m 0 / real (fact m) * x ^ m) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 302 | diff n t / real (fact n) * x ^ n" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 303 | apply (case_tac "n = 0", force) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 304 | apply (case_tac "x = 0") | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 305 | apply (rule_tac x = 0 in exI) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 306 | apply (force simp add: Maclaurin_bi_le_lemma) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 307 | apply (cut_tac x = x and y = 0 in linorder_less_linear, auto) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 308 |  txt{*Case 1, where @{term "x < 0"}*}
 | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 309 | apply (cut_tac f = "diff 0" and diff = diff and h = x and n = n in Maclaurin_minus_objl, safe) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 310 | apply (simp add: abs_if) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 311 | apply (rule_tac x = t in exI) | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 312 | apply (simp add: abs_if) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 313 | txt{*Case 2, where @{term "0 < x"}*}
 | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 314 | apply (cut_tac f = "diff 0" and diff = diff and h = x and n = n in Maclaurin_objl, safe) | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 315 | apply (simp add: abs_if) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 316 | apply (rule_tac x = t in exI) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 317 | apply (simp add: abs_if) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 318 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 319 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 320 | lemma Maclaurin_all_lt: | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 321 | "[| diff 0 = f; | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 322 | \<forall>m x. DERIV (diff m) x :> diff(Suc m) x; | 
| 25162 | 323 | x ~= 0; n > 0 | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 324 | |] ==> \<exists>t. 0 < abs t & abs t < abs x & | 
| 15539 | 325 | f x = (\<Sum>m=0..<n. (diff m 0 / real (fact m)) * x ^ m) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 326 | (diff n t / real (fact n)) * x ^ n" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 327 | apply (rule_tac x = x and y = 0 in linorder_cases) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 328 | prefer 2 apply blast | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 329 | apply (drule_tac [2] diff=diff in Maclaurin) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 330 | apply (drule_tac diff=diff in Maclaurin_minus, simp_all, safe) | 
| 15229 | 331 | apply (rule_tac [!] x = t in exI, auto) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 332 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 333 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 334 | lemma Maclaurin_all_lt_objl: | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 335 | "diff 0 = f & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 336 | (\<forall>m x. DERIV (diff m) x :> diff(Suc m) x) & | 
| 25162 | 337 | x ~= 0 & n > 0 | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 338 | --> (\<exists>t. 0 < abs t & abs t < abs x & | 
| 15539 | 339 | f x = (\<Sum>m=0..<n. (diff m 0 / real (fact m)) * x ^ m) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 340 | (diff n t / real (fact n)) * x ^ n)" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 341 | by (blast intro: Maclaurin_all_lt) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 342 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 343 | lemma Maclaurin_zero [rule_format]: | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 344 | "x = (0::real) | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 345 | ==> n \<noteq> 0 --> | 
| 15539 | 346 | (\<Sum>m=0..<n. (diff m (0::real) / real (fact m)) * x ^ m) = | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 347 | diff 0 0" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 348 | by (induct n, auto) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 349 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 350 | lemma Maclaurin_all_le: "[| diff 0 = f; | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 351 | \<forall>m x. DERIV (diff m) x :> diff (Suc m) x | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 352 | |] ==> \<exists>t. abs t \<le> abs x & | 
| 15539 | 353 | f x = (\<Sum>m=0..<n. (diff m 0 / real (fact m)) * x ^ m) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 354 | (diff n t / real (fact n)) * x ^ n" | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 355 | apply(cases "n=0") | 
| 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 356 | apply (force) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 357 | apply (case_tac "x = 0") | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 358 | apply (frule_tac diff = diff and n = n in Maclaurin_zero, assumption) | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 359 | apply (drule not0_implies_Suc) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 360 | apply (rule_tac x = 0 in exI, force) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 361 | apply (frule_tac diff = diff and n = n in Maclaurin_all_lt, auto) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 362 | apply (rule_tac x = t in exI, auto) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 363 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 364 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 365 | lemma Maclaurin_all_le_objl: "diff 0 = f & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 366 | (\<forall>m x. DERIV (diff m) x :> diff (Suc m) x) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 367 | --> (\<exists>t. abs t \<le> abs x & | 
| 15539 | 368 | f x = (\<Sum>m=0..<n. (diff m 0 / real (fact m)) * x ^ m) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 369 | (diff n t / real (fact n)) * x ^ n)" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 370 | by (blast intro: Maclaurin_all_le) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 371 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 372 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 373 | subsection{*Version for Exponential Function*}
 | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 374 | |
| 25162 | 375 | lemma Maclaurin_exp_lt: "[| x ~= 0; n > 0 |] | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 376 | ==> (\<exists>t. 0 < abs t & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 377 | abs t < abs x & | 
| 15539 | 378 | exp x = (\<Sum>m=0..<n. (x ^ m) / real (fact m)) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 379 | (exp t / real (fact n)) * x ^ n)" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 380 | by (cut_tac diff = "%n. exp" and f = exp and x = x and n = n in Maclaurin_all_lt_objl, auto) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 381 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 382 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 383 | lemma Maclaurin_exp_le: | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 384 | "\<exists>t. abs t \<le> abs x & | 
| 15539 | 385 | exp x = (\<Sum>m=0..<n. (x ^ m) / real (fact m)) + | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 386 | (exp t / real (fact n)) * x ^ n" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 387 | by (cut_tac diff = "%n. exp" and f = exp and x = x and n = n in Maclaurin_all_le_objl, auto) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 388 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 389 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 390 | subsection{*Version for Sine Function*}
 | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 391 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 392 | lemma mod_exhaust_less_4: | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 393 | "m mod 4 = 0 | m mod 4 = 1 | m mod 4 = 2 | m mod 4 = (3::nat)" | 
| 20217 
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
 webertj parents: 
19765diff
changeset | 394 | by auto | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 395 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 396 | lemma Suc_Suc_mult_two_diff_two [rule_format, simp]: | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 397 | "n\<noteq>0 --> Suc (Suc (2 * n - 2)) = 2*n" | 
| 15251 | 398 | by (induct "n", auto) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 399 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 400 | lemma lemma_Suc_Suc_4n_diff_2 [rule_format, simp]: | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 401 | "n\<noteq>0 --> Suc (Suc (4*n - 2)) = 4*n" | 
| 15251 | 402 | by (induct "n", auto) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 403 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 404 | lemma Suc_mult_two_diff_one [rule_format, simp]: | 
| 25134 
3d4953e88449
Eliminated most of the neq0_conv occurrences. As a result, many
 nipkow parents: 
25112diff
changeset | 405 | "n\<noteq>0 --> Suc (2 * n - 1) = 2*n" | 
| 15251 | 406 | by (induct "n", auto) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 407 | |
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 408 | |
| 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 409 | text{*It is unclear why so many variant results are needed.*}
 | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 410 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 411 | lemma Maclaurin_sin_expansion2: | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 412 | "\<exists>t. abs t \<le> abs x & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 413 | sin x = | 
| 15539 | 414 | (\<Sum>m=0..<n. (if even m then 0 | 
| 23177 | 415 | else (-1 ^ ((m - Suc 0) div 2)) / real (fact m)) * | 
| 15539 | 416 | x ^ m) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 417 | + ((sin(t + 1/2 * real (n) *pi) / real (fact n)) * x ^ n)" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 418 | apply (cut_tac f = sin and n = n and x = x | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 419 | and diff = "%n x. sin (x + 1/2*real n * pi)" in Maclaurin_all_lt_objl) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 420 | apply safe | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 421 | apply (simp (no_asm)) | 
| 15539 | 422 | apply (simp (no_asm)) | 
| 23242 | 423 | apply (case_tac "n", clarify, simp, simp add: lemma_STAR_sin) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 424 | apply (rule ccontr, simp) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 425 | apply (drule_tac x = x in spec, simp) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 426 | apply (erule ssubst) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 427 | apply (rule_tac x = t in exI, simp) | 
| 15536 | 428 | apply (rule setsum_cong[OF refl]) | 
| 15539 | 429 | apply (auto simp add: sin_zero_iff odd_Suc_mult_two_ex) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 430 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 431 | |
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 432 | lemma Maclaurin_sin_expansion: | 
| 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 433 | "\<exists>t. sin x = | 
| 15539 | 434 | (\<Sum>m=0..<n. (if even m then 0 | 
| 23177 | 435 | else (-1 ^ ((m - Suc 0) div 2)) / real (fact m)) * | 
| 15539 | 436 | x ^ m) | 
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 437 | + ((sin(t + 1/2 * real (n) *pi) / real (fact n)) * x ^ n)" | 
| 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 438 | apply (insert Maclaurin_sin_expansion2 [of x n]) | 
| 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 439 | apply (blast intro: elim:); | 
| 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 440 | done | 
| 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 441 | |
| 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 442 | |
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 443 | lemma Maclaurin_sin_expansion3: | 
| 25162 | 444 | "[| n > 0; 0 < x |] ==> | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 445 | \<exists>t. 0 < t & t < x & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 446 | sin x = | 
| 15539 | 447 | (\<Sum>m=0..<n. (if even m then 0 | 
| 23177 | 448 | else (-1 ^ ((m - Suc 0) div 2)) / real (fact m)) * | 
| 15539 | 449 | x ^ m) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 450 | + ((sin(t + 1/2 * real(n) *pi) / real (fact n)) * x ^ n)" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 451 | apply (cut_tac f = sin and n = n and h = x and diff = "%n x. sin (x + 1/2*real (n) *pi)" in Maclaurin_objl) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 452 | apply safe | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 453 | apply simp | 
| 15539 | 454 | apply (simp (no_asm)) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 455 | apply (erule ssubst) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 456 | apply (rule_tac x = t in exI, simp) | 
| 15536 | 457 | apply (rule setsum_cong[OF refl]) | 
| 15539 | 458 | apply (auto simp add: sin_zero_iff odd_Suc_mult_two_ex) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 459 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 460 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 461 | lemma Maclaurin_sin_expansion4: | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 462 | "0 < x ==> | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 463 | \<exists>t. 0 < t & t \<le> x & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 464 | sin x = | 
| 15539 | 465 | (\<Sum>m=0..<n. (if even m then 0 | 
| 23177 | 466 | else (-1 ^ ((m - Suc 0) div 2)) / real (fact m)) * | 
| 15539 | 467 | x ^ m) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 468 | + ((sin(t + 1/2 * real (n) *pi) / real (fact n)) * x ^ n)" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 469 | apply (cut_tac f = sin and n = n and h = x and diff = "%n x. sin (x + 1/2*real (n) *pi)" in Maclaurin2_objl) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 470 | apply safe | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 471 | apply simp | 
| 15539 | 472 | apply (simp (no_asm)) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 473 | apply (erule ssubst) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 474 | apply (rule_tac x = t in exI, simp) | 
| 15536 | 475 | apply (rule setsum_cong[OF refl]) | 
| 15539 | 476 | apply (auto simp add: sin_zero_iff odd_Suc_mult_two_ex) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 477 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 478 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 479 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 480 | subsection{*Maclaurin Expansion for Cosine Function*}
 | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 481 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 482 | lemma sumr_cos_zero_one [simp]: | 
| 15539 | 483 | "(\<Sum>m=0..<(Suc n). | 
| 23177 | 484 | (if even m then -1 ^ (m div 2)/(real (fact m)) else 0) * 0 ^ m) = 1" | 
| 15251 | 485 | by (induct "n", auto) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 486 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 487 | lemma Maclaurin_cos_expansion: | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 488 | "\<exists>t. abs t \<le> abs x & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 489 | cos x = | 
| 15539 | 490 | (\<Sum>m=0..<n. (if even m | 
| 23177 | 491 | then -1 ^ (m div 2)/(real (fact m)) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 492 | else 0) * | 
| 15539 | 493 | x ^ m) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 494 | + ((cos(t + 1/2 * real (n) *pi) / real (fact n)) * x ^ n)" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 495 | apply (cut_tac f = cos and n = n and x = x and diff = "%n x. cos (x + 1/2*real (n) *pi)" in Maclaurin_all_lt_objl) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 496 | apply safe | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 497 | apply (simp (no_asm)) | 
| 15539 | 498 | apply (simp (no_asm)) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 499 | apply (case_tac "n", simp) | 
| 15561 | 500 | apply (simp del: setsum_op_ivl_Suc) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 501 | apply (rule ccontr, simp) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 502 | apply (drule_tac x = x in spec, simp) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 503 | apply (erule ssubst) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 504 | apply (rule_tac x = t in exI, simp) | 
| 15536 | 505 | apply (rule setsum_cong[OF refl]) | 
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 506 | apply (auto simp add: cos_zero_iff even_mult_two_ex) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 507 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 508 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 509 | lemma Maclaurin_cos_expansion2: | 
| 25162 | 510 | "[| 0 < x; n > 0 |] ==> | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 511 | \<exists>t. 0 < t & t < x & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 512 | cos x = | 
| 15539 | 513 | (\<Sum>m=0..<n. (if even m | 
| 23177 | 514 | then -1 ^ (m div 2)/(real (fact m)) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 515 | else 0) * | 
| 15539 | 516 | x ^ m) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 517 | + ((cos(t + 1/2 * real (n) *pi) / real (fact n)) * x ^ n)" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 518 | apply (cut_tac f = cos and n = n and h = x and diff = "%n x. cos (x + 1/2*real (n) *pi)" in Maclaurin_objl) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 519 | apply safe | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 520 | apply simp | 
| 15539 | 521 | apply (simp (no_asm)) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 522 | apply (erule ssubst) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 523 | apply (rule_tac x = t in exI, simp) | 
| 15536 | 524 | apply (rule setsum_cong[OF refl]) | 
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 525 | apply (auto simp add: cos_zero_iff even_mult_two_ex) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 526 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 527 | |
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 528 | lemma Maclaurin_minus_cos_expansion: | 
| 25162 | 529 | "[| x < 0; n > 0 |] ==> | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 530 | \<exists>t. x < t & t < 0 & | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 531 | cos x = | 
| 15539 | 532 | (\<Sum>m=0..<n. (if even m | 
| 23177 | 533 | then -1 ^ (m div 2)/(real (fact m)) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 534 | else 0) * | 
| 15539 | 535 | x ^ m) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 536 | + ((cos(t + 1/2 * real (n) *pi) / real (fact n)) * x ^ n)" | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 537 | apply (cut_tac f = cos and n = n and h = x and diff = "%n x. cos (x + 1/2*real (n) *pi)" in Maclaurin_minus_objl) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 538 | apply safe | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 539 | apply simp | 
| 15539 | 540 | apply (simp (no_asm)) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 541 | apply (erule ssubst) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 542 | apply (rule_tac x = t in exI, simp) | 
| 15536 | 543 | apply (rule setsum_cong[OF refl]) | 
| 15234 
ec91a90c604e
simplification tweaks for better arithmetic reasoning
 paulson parents: 
15229diff
changeset | 544 | apply (auto simp add: cos_zero_iff even_mult_two_ex) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 545 | done | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 546 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 547 | (* ------------------------------------------------------------------------- *) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 548 | (* Version for ln(1 +/- x). Where is it?? *) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 549 | (* ------------------------------------------------------------------------- *) | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 550 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 551 | lemma sin_bound_lemma: | 
| 15081 | 552 | "[|x = y; abs u \<le> (v::real) |] ==> \<bar>(x + u) - y\<bar> \<le> v" | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 553 | by auto | 
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 554 | |
| 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 555 | lemma Maclaurin_sin_bound: | 
| 23177 | 556 | "abs(sin x - (\<Sum>m=0..<n. (if even m then 0 else (-1 ^ ((m - Suc 0) div 2)) / real (fact m)) * | 
| 15081 | 557 | x ^ m)) \<le> inverse(real (fact n)) * \<bar>x\<bar> ^ n" | 
| 14738 | 558 | proof - | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 559 | have "!! x (y::real). x \<le> 1 \<Longrightarrow> 0 \<le> y \<Longrightarrow> x * y \<le> 1 * y" | 
| 14738 | 560 | by (rule_tac mult_right_mono,simp_all) | 
| 561 | note est = this[simplified] | |
| 22985 | 562 | let ?diff = "\<lambda>(n::nat) x. if n mod 4 = 0 then sin(x) else if n mod 4 = 1 then cos(x) else if n mod 4 = 2 then -sin(x) else -cos(x)" | 
| 563 | have diff_0: "?diff 0 = sin" by simp | |
| 564 | have DERIV_diff: "\<forall>m x. DERIV (?diff m) x :> ?diff (Suc m) x" | |
| 565 | apply (clarify) | |
| 566 | apply (subst (1 2 3) mod_Suc_eq_Suc_mod) | |
| 567 | apply (cut_tac m=m in mod_exhaust_less_4) | |
| 568 | apply (safe, simp_all) | |
| 569 | apply (rule DERIV_minus, simp) | |
| 570 | apply (rule lemma_DERIV_subst, rule DERIV_minus, rule DERIV_cos, simp) | |
| 571 | done | |
| 572 | from Maclaurin_all_le [OF diff_0 DERIV_diff] | |
| 573 | obtain t where t1: "\<bar>t\<bar> \<le> \<bar>x\<bar>" and | |
| 574 | t2: "sin x = (\<Sum>m = 0..<n. ?diff m 0 / real (fact m) * x ^ m) + | |
| 575 | ?diff n t / real (fact n) * x ^ n" by fast | |
| 576 | have diff_m_0: | |
| 577 | "\<And>m. ?diff m 0 = (if even m then 0 | |
| 23177 | 578 | else -1 ^ ((m - Suc 0) div 2))" | 
| 22985 | 579 | apply (subst even_even_mod_4_iff) | 
| 580 | apply (cut_tac m=m in mod_exhaust_less_4) | |
| 581 | apply (elim disjE, simp_all) | |
| 582 | apply (safe dest!: mod_eqD, simp_all) | |
| 583 | done | |
| 14738 | 584 | show ?thesis | 
| 22985 | 585 | apply (subst t2) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 586 | apply (rule sin_bound_lemma) | 
| 15536 | 587 | apply (rule setsum_cong[OF refl]) | 
| 22985 | 588 | apply (subst diff_m_0, simp) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 589 | apply (auto intro: mult_right_mono [where b=1, simplified] mult_right_mono | 
| 16775 
c1b87ef4a1c3
added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
 avigad parents: 
15944diff
changeset | 590 | simp add: est mult_nonneg_nonneg mult_ac divide_inverse | 
| 16924 | 591 | power_abs [symmetric] abs_mult) | 
| 14738 | 592 | done | 
| 593 | qed | |
| 594 | ||
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
14738diff
changeset | 595 | end |