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