| author | wenzelm | 
| Thu, 11 Jul 2013 15:56:12 +0200 | |
| changeset 52598 | cad097fb46de | 
| parent 52139 | 40fe6b80b481 | 
| child 53015 | a1119cf551e8 | 
| permissions | -rw-r--r-- | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 1 | (* Title: HOL/Transcendental.thy | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 2 | Author: Jacques D. Fleuriot, University of Cambridge, University of Edinburgh | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3 | Author: Lawrence C Paulson | 
| 51527 | 4 | Author: Jeremy Avigad | 
| 5 | ||
| 12196 | 6 | *) | 
| 7 | ||
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 8 | header{*Power Series, Transcendental Functions etc.*}
 | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 9 | |
| 15131 | 10 | theory Transcendental | 
| 25600 | 11 | imports Fact Series Deriv NthRoot | 
| 15131 | 12 | begin | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 13 | |
| 29164 | 14 | subsection {* Properties of Power Series *}
 | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 15 | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 16 | lemma lemma_realpow_diff: | 
| 31017 | 17 | fixes y :: "'a::monoid_mult" | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 18 | shows "p \<le> n \<Longrightarrow> y ^ (Suc n - p) = (y ^ (n - p)) * y" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 19 | proof - | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 20 | assume "p \<le> n" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 21 | hence "Suc n - p = Suc (n - p)" by (rule Suc_diff_le) | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 22 | thus ?thesis by (simp add: power_commutes) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 23 | qed | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 24 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 25 | lemma lemma_realpow_diff_sumr: | 
| 31017 | 26 |   fixes y :: "'a::{comm_semiring_0,monoid_mult}" shows
 | 
| 41970 | 27 | "(\<Sum>p=0..<Suc n. (x ^ p) * y ^ (Suc n - p)) = | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 28 | y * (\<Sum>p=0..<Suc n. (x ^ p) * y ^ (n - p))" | 
| 29163 | 29 | by (simp add: setsum_right_distrib lemma_realpow_diff mult_ac | 
| 33549 | 30 | del: setsum_op_ivl_Suc) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 31 | |
| 15229 | 32 | lemma lemma_realpow_diff_sumr2: | 
| 31017 | 33 |   fixes y :: "'a::{comm_ring,monoid_mult}" shows
 | 
| 41970 | 34 | "x ^ (Suc n) - y ^ (Suc n) = | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 35 | (x - y) * (\<Sum>p=0..<Suc n. (x ^ p) * y ^ (n - p))" | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 36 | apply (induct n, simp) | 
| 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 37 | apply (simp del: setsum_op_ivl_Suc) | 
| 15561 | 38 | apply (subst setsum_op_ivl_Suc) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 39 | apply (subst lemma_realpow_diff_sumr) | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 40 | apply (simp add: distrib_left del: setsum_op_ivl_Suc) | 
| 34974 
18b41bba42b5
new theory Algebras.thy for generic algebraic structures
 haftmann parents: 
33667diff
changeset | 41 | apply (subst mult_left_commute [of "x - y"]) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 42 | apply (erule subst) | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 43 | apply (simp add: algebra_simps) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 44 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 45 | |
| 15229 | 46 | lemma lemma_realpow_rev_sumr: | 
| 41970 | 47 | "(\<Sum>p=0..<Suc n. (x ^ p) * (y ^ (n - p))) = | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 48 | (\<Sum>p=0..<Suc n. (x ^ (n - p)) * (y ^ p))" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 49 | apply (rule setsum_reindex_cong [where f="\<lambda>i. n - i"]) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 50 | apply (rule inj_onI, simp) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 51 | apply auto | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 52 | apply (rule_tac x="n - x" in image_eqI, simp, simp) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 53 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 54 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 55 | text{*Power series has a `circle` of convergence, i.e. if it sums for @{term
 | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 56 | x}, then it sums absolutely for @{term z} with @{term "\<bar>z\<bar> < \<bar>x\<bar>"}.*}
 | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 57 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 58 | lemma powser_insidea: | 
| 44726 | 59 | fixes x z :: "'a::real_normed_field" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 60 | assumes 1: "summable (\<lambda>n. f n * x ^ n)" | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 61 | assumes 2: "norm z < norm x" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 62 | shows "summable (\<lambda>n. norm (f n * z ^ n))" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 63 | proof - | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 64 | from 2 have x_neq_0: "x \<noteq> 0" by clarsimp | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 65 | from 1 have "(\<lambda>n. f n * x ^ n) ----> 0" | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 66 | by (rule summable_LIMSEQ_zero) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 67 | hence "convergent (\<lambda>n. f n * x ^ n)" | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 68 | by (rule convergentI) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 69 | hence "Cauchy (\<lambda>n. f n * x ^ n)" | 
| 44726 | 70 | by (rule convergent_Cauchy) | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 71 | hence "Bseq (\<lambda>n. f n * x ^ n)" | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 72 | by (rule Cauchy_Bseq) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 73 | then obtain K where 3: "0 < K" and 4: "\<forall>n. norm (f n * x ^ n) \<le> K" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 74 | by (simp add: Bseq_def, safe) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 75 | have "\<exists>N. \<forall>n\<ge>N. norm (norm (f n * z ^ n)) \<le> | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 76 | K * norm (z ^ n) * inverse (norm (x ^ n))" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 77 | proof (intro exI allI impI) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 78 | fix n::nat assume "0 \<le> n" | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 79 | have "norm (norm (f n * z ^ n)) * norm (x ^ n) = | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 80 | norm (f n * x ^ n) * norm (z ^ n)" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 81 | by (simp add: norm_mult abs_mult) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 82 | also have "\<dots> \<le> K * norm (z ^ n)" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 83 | by (simp only: mult_right_mono 4 norm_ge_zero) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 84 | also have "\<dots> = K * norm (z ^ n) * (inverse (norm (x ^ n)) * norm (x ^ n))" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 85 | by (simp add: x_neq_0) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 86 | also have "\<dots> = K * norm (z ^ n) * inverse (norm (x ^ n)) * norm (x ^ n)" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 87 | by (simp only: mult_assoc) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 88 | finally show "norm (norm (f n * z ^ n)) \<le> | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 89 | K * norm (z ^ n) * inverse (norm (x ^ n))" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 90 | by (simp add: mult_le_cancel_right x_neq_0) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 91 | qed | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 92 | moreover have "summable (\<lambda>n. K * norm (z ^ n) * inverse (norm (x ^ n)))" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 93 | proof - | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 94 | from 2 have "norm (norm (z * inverse x)) < 1" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 95 | using x_neq_0 | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 96 | by (simp add: nonzero_norm_divide divide_inverse [symmetric]) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 97 | hence "summable (\<lambda>n. norm (z * inverse x) ^ n)" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 98 | by (rule summable_geometric) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 99 | hence "summable (\<lambda>n. K * norm (z * inverse x) ^ n)" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 100 | by (rule summable_mult) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 101 | thus "summable (\<lambda>n. K * norm (z ^ n) * inverse (norm (x ^ n)))" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 102 | using x_neq_0 | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 103 | by (simp add: norm_mult nonzero_norm_inverse power_mult_distrib | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 104 | power_inverse norm_power mult_assoc) | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 105 | qed | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 106 | ultimately show "summable (\<lambda>n. norm (f n * z ^ n))" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 107 | by (rule summable_comparison_test) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 108 | qed | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 109 | |
| 15229 | 110 | lemma powser_inside: | 
| 31017 | 111 |   fixes f :: "nat \<Rightarrow> 'a::{real_normed_field,banach}" shows
 | 
| 41970 | 112 | "[| summable (%n. f(n) * (x ^ n)); norm z < norm x |] | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 113 | ==> summable (%n. f(n) * (z ^ n))" | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 114 | by (rule powser_insidea [THEN summable_norm_cancel]) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 115 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 116 | lemma sum_split_even_odd: fixes f :: "nat \<Rightarrow> real" shows | 
| 41970 | 117 | "(\<Sum> i = 0 ..< 2 * n. if even i then f i else g i) = | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 118 | (\<Sum> i = 0 ..< n. f (2 * i)) + (\<Sum> i = 0 ..< n. g (2 * i + 1))" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 119 | proof (induct n) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 120 | case (Suc n) | 
| 41970 | 121 | have "(\<Sum> i = 0 ..< 2 * Suc n. if even i then f i else g i) = | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 122 | (\<Sum> i = 0 ..< n. f (2 * i)) + (\<Sum> i = 0 ..< n. g (2 * i + 1)) + (f (2 * n) + g (2 * n + 1))" | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 123 | using Suc.hyps unfolding One_nat_def by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 124 | also have "\<dots> = (\<Sum> i = 0 ..< Suc n. f (2 * i)) + (\<Sum> i = 0 ..< Suc n. g (2 * i + 1))" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 125 | finally show ?case . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 126 | qed auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 127 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 128 | lemma sums_if': fixes g :: "nat \<Rightarrow> real" assumes "g sums x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 129 | shows "(\<lambda> n. if even n then 0 else g ((n - 1) div 2)) sums x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 130 | unfolding sums_def | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 131 | proof (rule LIMSEQ_I) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 132 | fix r :: real assume "0 < r" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 133 | from `g sums x`[unfolded sums_def, THEN LIMSEQ_D, OF this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 134 |   obtain no where no_eq: "\<And> n. n \<ge> no \<Longrightarrow> (norm (setsum g { 0..<n } - x) < r)" by blast
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 135 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 136 | let ?SUM = "\<lambda> m. \<Sum> i = 0 ..< m. if even i then 0 else g ((i - 1) div 2)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 137 |   { fix m assume "m \<ge> 2 * no" hence "m div 2 \<ge> no" by auto
 | 
| 41970 | 138 |     have sum_eq: "?SUM (2 * (m div 2)) = setsum g { 0 ..< m div 2 }"
 | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 139 | using sum_split_even_odd by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 140 | hence "(norm (?SUM (2 * (m div 2)) - x) < r)" using no_eq unfolding sum_eq using `m div 2 \<ge> no` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 141 | moreover | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 142 | have "?SUM (2 * (m div 2)) = ?SUM m" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 143 | proof (cases "even m") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 144 | case True show ?thesis unfolding even_nat_div_two_times_two[OF True, unfolded numeral_2_eq_2[symmetric]] .. | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 145 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 146 | case False hence "even (Suc m)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 147 | from even_nat_div_two_times_two[OF this, unfolded numeral_2_eq_2[symmetric]] odd_nat_plus_one_div_two[OF False, unfolded numeral_2_eq_2[symmetric]] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 148 | have eq: "Suc (2 * (m div 2)) = m" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 149 | hence "even (2 * (m div 2))" using `odd m` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 150 | have "?SUM m = ?SUM (Suc (2 * (m div 2)))" unfolding eq .. | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 151 | also have "\<dots> = ?SUM (2 * (m div 2))" using `even (2 * (m div 2))` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 152 | finally show ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 153 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 154 | ultimately have "(norm (?SUM m - x) < r)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 155 | } | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 156 | thus "\<exists> no. \<forall> m \<ge> no. norm (?SUM m - x) < r" by blast | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 157 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 158 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 159 | lemma sums_if: fixes g :: "nat \<Rightarrow> real" assumes "g sums x" and "f sums y" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 160 | shows "(\<lambda> n. if even n then f (n div 2) else g ((n - 1) div 2)) sums (x + y)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 161 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 162 | let ?s = "\<lambda> n. if even n then 0 else f ((n - 1) div 2)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 163 |   { fix B T E have "(if B then (0 :: real) else E) + (if B then T else 0) = (if B then T else E)"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 164 | by (cases B) auto } note if_sum = this | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 165 | have g_sums: "(\<lambda> n. if even n then 0 else g ((n - 1) div 2)) sums x" using sums_if'[OF `g sums x`] . | 
| 41970 | 166 |   {
 | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 167 | have "?s 0 = 0" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 168 | have Suc_m1: "\<And> n. Suc n - 1 = n" by auto | 
| 41550 | 169 | have if_eq: "\<And>B T E. (if \<not> B then T else E) = (if B then E else T)" by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 170 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 171 | have "?s sums y" using sums_if'[OF `f sums y`] . | 
| 41970 | 172 | from this[unfolded sums_def, THEN LIMSEQ_Suc] | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 173 | have "(\<lambda> n. if even n then f (n div 2) else 0) sums y" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 174 | unfolding sums_def setsum_shift_lb_Suc0_0_upt[where f="?s", OF `?s 0 = 0`, symmetric] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 175 | image_Suc_atLeastLessThan[symmetric] setsum_reindex[OF inj_Suc, unfolded comp_def] | 
| 31148 | 176 | even_Suc Suc_m1 if_eq . | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 177 | } from sums_add[OF g_sums this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 178 | show ?thesis unfolding if_sum . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 179 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 180 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 181 | subsection {* Alternating series test / Leibniz formula *}
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 182 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 183 | lemma sums_alternating_upper_lower: | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 184 | fixes a :: "nat \<Rightarrow> real" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 185 | assumes mono: "\<And>n. a (Suc n) \<le> a n" and a_pos: "\<And>n. 0 \<le> a n" and "a ----> 0" | 
| 41970 | 186 | shows "\<exists>l. ((\<forall>n. (\<Sum>i=0..<2*n. -1^i*a i) \<le> l) \<and> (\<lambda> n. \<Sum>i=0..<2*n. -1^i*a i) ----> l) \<and> | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 187 | ((\<forall>n. l \<le> (\<Sum>i=0..<2*n + 1. -1^i*a i)) \<and> (\<lambda> n. \<Sum>i=0..<2*n + 1. -1^i*a i) ----> l)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 188 | (is "\<exists>l. ((\<forall>n. ?f n \<le> l) \<and> _) \<and> ((\<forall>n. l \<le> ?g n) \<and> _)") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 189 | proof - | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 190 | have fg_diff: "\<And>n. ?f n - ?g n = - a (2 * n)" unfolding One_nat_def by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 191 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 192 | have "\<forall> n. ?f n \<le> ?f (Suc n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 193 | proof fix n show "?f n \<le> ?f (Suc n)" using mono[of "2*n"] by auto qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 194 | moreover | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 195 | have "\<forall> n. ?g (Suc n) \<le> ?g n" | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 196 | proof fix n show "?g (Suc n) \<le> ?g n" using mono[of "Suc (2*n)"] | 
| 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 197 | unfolding One_nat_def by auto qed | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 198 | moreover | 
| 41970 | 199 | have "\<forall> n. ?f n \<le> ?g n" | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 200 | proof fix n show "?f n \<le> ?g n" using fg_diff a_pos | 
| 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 201 | unfolding One_nat_def by auto qed | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 202 | moreover | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 203 | have "(\<lambda> n. ?f n - ?g n) ----> 0" unfolding fg_diff | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 204 | proof (rule LIMSEQ_I) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 205 | fix r :: real assume "0 < r" | 
| 41970 | 206 | with `a ----> 0`[THEN LIMSEQ_D] | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 207 | obtain N where "\<And> n. n \<ge> N \<Longrightarrow> norm (a n - 0) < r" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 208 | hence "\<forall> n \<ge> N. norm (- a (2 * n) - 0) < r" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 209 | thus "\<exists> N. \<forall> n \<ge> N. norm (- a (2 * n) - 0) < r" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 210 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 211 | ultimately | 
| 51477 
2990382dc066
clean up lemma_nest_unique and renamed to nested_sequence_unique
 hoelzl parents: 
50347diff
changeset | 212 | show ?thesis by (rule nested_sequence_unique) | 
| 41970 | 213 | qed | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 214 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 215 | lemma summable_Leibniz': fixes a :: "nat \<Rightarrow> real" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 216 | assumes a_zero: "a ----> 0" and a_pos: "\<And> n. 0 \<le> a n" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 217 | and a_monotone: "\<And> n. a (Suc n) \<le> a n" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 218 | shows summable: "summable (\<lambda> n. (-1)^n * a n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 219 | and "\<And>n. (\<Sum>i=0..<2*n. (-1)^i*a i) \<le> (\<Sum>i. (-1)^i*a i)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 220 | and "(\<lambda>n. \<Sum>i=0..<2*n. (-1)^i*a i) ----> (\<Sum>i. (-1)^i*a i)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 221 | and "\<And>n. (\<Sum>i. (-1)^i*a i) \<le> (\<Sum>i=0..<2*n+1. (-1)^i*a i)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 222 | and "(\<lambda>n. \<Sum>i=0..<2*n+1. (-1)^i*a i) ----> (\<Sum>i. (-1)^i*a i)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 223 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 224 | let "?S n" = "(-1)^n * a n" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 225 | let "?P n" = "\<Sum>i=0..<n. ?S i" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 226 | let "?f n" = "?P (2 * n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 227 | let "?g n" = "?P (2 * n + 1)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 228 | obtain l :: real where below_l: "\<forall> n. ?f n \<le> l" and "?f ----> l" and above_l: "\<forall> n. l \<le> ?g n" and "?g ----> l" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 229 | using sums_alternating_upper_lower[OF a_monotone a_pos a_zero] by blast | 
| 41970 | 230 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 231 | let ?Sa = "\<lambda> m. \<Sum> n = 0..<m. ?S n" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 232 | have "?Sa ----> l" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 233 | proof (rule LIMSEQ_I) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 234 | fix r :: real assume "0 < r" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 235 | |
| 41970 | 236 | with `?f ----> l`[THEN LIMSEQ_D] | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 237 | obtain f_no where f: "\<And> n. n \<ge> f_no \<Longrightarrow> norm (?f n - l) < r" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 238 | |
| 41970 | 239 | from `0 < r` `?g ----> l`[THEN LIMSEQ_D] | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 240 | obtain g_no where g: "\<And> n. n \<ge> g_no \<Longrightarrow> norm (?g n - l) < r" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 241 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 242 |     { fix n :: nat
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 243 | assume "n \<ge> (max (2 * f_no) (2 * g_no))" hence "n \<ge> 2 * f_no" and "n \<ge> 2 * g_no" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 244 | have "norm (?Sa n - l) < r" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 245 | proof (cases "even n") | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 246 | case True from even_nat_div_two_times_two[OF this] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 247 | have n_eq: "2 * (n div 2) = n" unfolding numeral_2_eq_2[symmetric] by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 248 | with `n \<ge> 2 * f_no` have "n div 2 \<ge> f_no" by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 249 | from f[OF this] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 250 | show ?thesis unfolding n_eq atLeastLessThanSuc_atLeastAtMost . | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 251 | next | 
| 35213 | 252 | case False hence "even (n - 1)" by simp | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 253 | from even_nat_div_two_times_two[OF this] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 254 | have n_eq: "2 * ((n - 1) div 2) = n - 1" unfolding numeral_2_eq_2[symmetric] by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 255 | hence range_eq: "n - 1 + 1 = n" using odd_pos[OF False] by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 256 | |
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 257 | from n_eq `n \<ge> 2 * g_no` have "(n - 1) div 2 \<ge> g_no" by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 258 | from g[OF this] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 259 | show ?thesis unfolding n_eq atLeastLessThanSuc_atLeastAtMost range_eq . | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 260 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 261 | } | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 262 | thus "\<exists> no. \<forall> n \<ge> no. norm (?Sa n - l) < r" by blast | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 263 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 264 | hence sums_l: "(\<lambda>i. (-1)^i * a i) sums l" unfolding sums_def atLeastLessThanSuc_atLeastAtMost[symmetric] . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 265 | thus "summable ?S" using summable_def by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 266 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 267 | have "l = suminf ?S" using sums_unique[OF sums_l] . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 268 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 269 |   { fix n show "suminf ?S \<le> ?g n" unfolding sums_unique[OF sums_l, symmetric] using above_l by auto }
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 270 |   { fix n show "?f n \<le> suminf ?S" unfolding sums_unique[OF sums_l, symmetric] using below_l by auto }
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 271 | show "?g ----> suminf ?S" using `?g ----> l` `l = suminf ?S` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 272 | show "?f ----> suminf ?S" using `?f ----> l` `l = suminf ?S` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 273 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 274 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 275 | theorem summable_Leibniz: fixes a :: "nat \<Rightarrow> real" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 276 | assumes a_zero: "a ----> 0" and "monoseq a" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 277 | shows "summable (\<lambda> n. (-1)^n * a n)" (is "?summable") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 278 |   and "0 < a 0 \<longrightarrow> (\<forall>n. (\<Sum>i. -1^i*a i) \<in> { \<Sum>i=0..<2*n. -1^i * a i .. \<Sum>i=0..<2*n+1. -1^i * a i})" (is "?pos")
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 279 |   and "a 0 < 0 \<longrightarrow> (\<forall>n. (\<Sum>i. -1^i*a i) \<in> { \<Sum>i=0..<2*n+1. -1^i * a i .. \<Sum>i=0..<2*n. -1^i * a i})" (is "?neg")
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 280 | and "(\<lambda>n. \<Sum>i=0..<2*n. -1^i*a i) ----> (\<Sum>i. -1^i*a i)" (is "?f") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 281 | and "(\<lambda>n. \<Sum>i=0..<2*n+1. -1^i*a i) ----> (\<Sum>i. -1^i*a i)" (is "?g") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 282 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 283 | have "?summable \<and> ?pos \<and> ?neg \<and> ?f \<and> ?g" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 284 | proof (cases "(\<forall> n. 0 \<le> a n) \<and> (\<forall>m. \<forall>n\<ge>m. a n \<le> a m)") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 285 | case True | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 286 | hence ord: "\<And>n m. m \<le> n \<Longrightarrow> a n \<le> a m" and ge0: "\<And> n. 0 \<le> a n" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 287 |     { fix n have "a (Suc n) \<le> a n" using ord[where n="Suc n" and m=n] by auto }
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 288 | note leibniz = summable_Leibniz'[OF `a ----> 0` ge0] and mono = this | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 289 | from leibniz[OF mono] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 290 | show ?thesis using `0 \<le> a 0` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 291 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 292 | let ?a = "\<lambda> n. - a n" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 293 | case False | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 294 | with monoseq_le[OF `monoseq a` `a ----> 0`] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 295 | have "(\<forall> n. a n \<le> 0) \<and> (\<forall>m. \<forall>n\<ge>m. a m \<le> a n)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 296 | hence ord: "\<And>n m. m \<le> n \<Longrightarrow> ?a n \<le> ?a m" and ge0: "\<And> n. 0 \<le> ?a n" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 297 |     { fix n have "?a (Suc n) \<le> ?a n" using ord[where n="Suc n" and m=n] by auto }
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 298 | note monotone = this | 
| 44568 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 huffman parents: 
44319diff
changeset | 299 | note leibniz = summable_Leibniz'[OF _ ge0, of "\<lambda>x. x", OF tendsto_minus[OF `a ----> 0`, unfolded minus_zero] monotone] | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 300 | have "summable (\<lambda> n. (-1)^n * ?a n)" using leibniz(1) by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 301 | then obtain l where "(\<lambda> n. (-1)^n * ?a n) sums l" unfolding summable_def by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 302 | from this[THEN sums_minus] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 303 | have "(\<lambda> n. (-1)^n * a n) sums -l" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 304 | hence ?summable unfolding summable_def by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 305 | moreover | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 306 | have "\<And> a b :: real. \<bar> - a - - b \<bar> = \<bar>a - b\<bar>" unfolding minus_diff_minus by auto | 
| 41970 | 307 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 308 | from suminf_minus[OF leibniz(1), unfolded mult_minus_right minus_minus] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 309 | have move_minus: "(\<Sum>n. - (-1 ^ n * a n)) = - (\<Sum>n. -1 ^ n * a n)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 310 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 311 | have ?pos using `0 \<le> ?a 0` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 312 | moreover have ?neg using leibniz(2,4) unfolding mult_minus_right setsum_negf move_minus neg_le_iff_le by auto | 
| 44568 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 huffman parents: 
44319diff
changeset | 313 | moreover have ?f and ?g using leibniz(3,5)[unfolded mult_minus_right setsum_negf move_minus, THEN tendsto_minus_cancel] by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 314 | ultimately show ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 315 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 316 | from this[THEN conjunct1] this[THEN conjunct2, THEN conjunct1] this[THEN conjunct2, THEN conjunct2, THEN conjunct1] this[THEN conjunct2, THEN conjunct2, THEN conjunct2, THEN conjunct1] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 317 | this[THEN conjunct2, THEN conjunct2, THEN conjunct2, THEN conjunct2] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 318 | show ?summable and ?pos and ?neg and ?f and ?g . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 319 | qed | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 320 | |
| 29164 | 321 | subsection {* Term-by-Term Differentiability of Power Series *}
 | 
| 23043 | 322 | |
| 323 | definition | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 324 | diffs :: "(nat => 'a::ring_1) => nat => 'a" where | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 325 | "diffs c = (%n. of_nat (Suc n) * c(Suc n))" | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 326 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 327 | text{*Lemma about distributing negation over it*}
 | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 328 | lemma diffs_minus: "diffs (%n. - c n) = (%n. - diffs c n)" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 329 | by (simp add: diffs_def) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 330 | |
| 29163 | 331 | lemma sums_Suc_imp: | 
| 332 | assumes f: "f 0 = 0" | |
| 333 | shows "(\<lambda>n. f (Suc n)) sums s \<Longrightarrow> (\<lambda>n. f n) sums s" | |
| 334 | unfolding sums_def | |
| 335 | apply (rule LIMSEQ_imp_Suc) | |
| 336 | apply (subst setsum_shift_lb_Suc0_0_upt [where f=f, OF f, symmetric]) | |
| 337 | apply (simp only: setsum_shift_bounds_Suc_ivl) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 338 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 339 | |
| 15229 | 340 | lemma diffs_equiv: | 
| 41970 | 341 |   fixes x :: "'a::{real_normed_vector, ring_1}"
 | 
| 342 | shows "summable (%n. (diffs c)(n) * (x ^ n)) ==> | |
| 343 | (%n. of_nat n * c(n) * (x ^ (n - Suc 0))) sums | |
| 15546 | 344 | (\<Sum>n. (diffs c)(n) * (x ^ n))" | 
| 29163 | 345 | unfolding diffs_def | 
| 346 | apply (drule summable_sums) | |
| 347 | apply (rule sums_Suc_imp, simp_all) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 348 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 349 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 350 | lemma lemma_termdiff1: | 
| 31017 | 351 |   fixes z :: "'a :: {monoid_mult,comm_ring}" shows
 | 
| 41970 | 352 | "(\<Sum>p=0..<m. (((z + h) ^ (m - p)) * (z ^ p)) - (z ^ m)) = | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 353 | (\<Sum>p=0..<m. (z ^ p) * (((z + h) ^ (m - p)) - (z ^ (m - p))))" | 
| 41550 | 354 | by(auto simp add: algebra_simps power_add [symmetric]) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 355 | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 356 | lemma sumr_diff_mult_const2: | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 357 |   "setsum f {0..<n} - of_nat n * (r::'a::ring_1) = (\<Sum>i = 0..<n. f i - r)"
 | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 358 | by (simp add: setsum_subtractf) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 359 | |
| 15229 | 360 | lemma lemma_termdiff2: | 
| 31017 | 361 |   fixes h :: "'a :: {field}"
 | 
| 20860 | 362 | assumes h: "h \<noteq> 0" shows | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 363 | "((z + h) ^ n - z ^ n) / h - of_nat n * z ^ (n - Suc 0) = | 
| 20860 | 364 | h * (\<Sum>p=0..< n - Suc 0. \<Sum>q=0..< n - Suc 0 - p. | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 365 | (z + h) ^ q * z ^ (n - 2 - q))" (is "?lhs = ?rhs") | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 366 | apply (subgoal_tac "h * ?lhs = h * ?rhs", simp add: h) | 
| 20860 | 367 | apply (simp add: right_diff_distrib diff_divide_distrib h) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 368 | apply (simp add: mult_assoc [symmetric]) | 
| 20860 | 369 | apply (cases "n", simp) | 
| 370 | apply (simp add: lemma_realpow_diff_sumr2 h | |
| 371 | right_diff_distrib [symmetric] mult_assoc | |
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 372 | del: power_Suc setsum_op_ivl_Suc of_nat_Suc) | 
| 20860 | 373 | apply (subst lemma_realpow_rev_sumr) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 374 | apply (subst sumr_diff_mult_const2) | 
| 20860 | 375 | apply simp | 
| 376 | apply (simp only: lemma_termdiff1 setsum_right_distrib) | |
| 377 | apply (rule setsum_cong [OF refl]) | |
| 15539 | 378 | apply (simp add: diff_minus [symmetric] less_iff_Suc_add) | 
| 20860 | 379 | apply (clarify) | 
| 380 | apply (simp add: setsum_right_distrib lemma_realpow_diff_sumr2 mult_ac | |
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 381 | del: setsum_op_ivl_Suc power_Suc) | 
| 20860 | 382 | apply (subst mult_assoc [symmetric], subst power_add [symmetric]) | 
| 383 | apply (simp add: mult_ac) | |
| 384 | done | |
| 385 | ||
| 386 | lemma real_setsum_nat_ivl_bounded2: | |
| 35028 
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
 haftmann parents: 
34974diff
changeset | 387 | fixes K :: "'a::linordered_semidom" | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 388 | assumes f: "\<And>p::nat. p < n \<Longrightarrow> f p \<le> K" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 389 | assumes K: "0 \<le> K" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 390 |   shows "setsum f {0..<n-k} \<le> of_nat n * K"
 | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 391 | apply (rule order_trans [OF setsum_mono]) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 392 | apply (rule f, simp) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 393 | apply (simp add: mult_right_mono K) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 394 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 395 | |
| 15229 | 396 | lemma lemma_termdiff3: | 
| 31017 | 397 |   fixes h z :: "'a::{real_normed_field}"
 | 
| 20860 | 398 | assumes 1: "h \<noteq> 0" | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 399 | assumes 2: "norm z \<le> K" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 400 | assumes 3: "norm (z + h) \<le> K" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 401 | shows "norm (((z + h) ^ n - z ^ n) / h - of_nat n * z ^ (n - Suc 0)) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 402 | \<le> of_nat n * of_nat (n - Suc 0) * K ^ (n - 2) * norm h" | 
| 20860 | 403 | proof - | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 404 | have "norm (((z + h) ^ n - z ^ n) / h - of_nat n * z ^ (n - Suc 0)) = | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 405 | norm (\<Sum>p = 0..<n - Suc 0. \<Sum>q = 0..<n - Suc 0 - p. | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 406 | (z + h) ^ q * z ^ (n - 2 - q)) * norm h" | 
| 20860 | 407 | apply (subst lemma_termdiff2 [OF 1]) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 408 | apply (subst norm_mult) | 
| 20860 | 409 | apply (rule mult_commute) | 
| 410 | done | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 411 | also have "\<dots> \<le> of_nat n * (of_nat (n - Suc 0) * K ^ (n - 2)) * norm h" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 412 | proof (rule mult_right_mono [OF _ norm_ge_zero]) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 413 | from norm_ge_zero 2 have K: "0 \<le> K" by (rule order_trans) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 414 | have le_Kn: "\<And>i j n. i + j = n \<Longrightarrow> norm ((z + h) ^ i * z ^ j) \<le> K ^ n" | 
| 20860 | 415 | apply (erule subst) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 416 | apply (simp only: norm_mult norm_power power_add) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 417 | apply (intro mult_mono power_mono 2 3 norm_ge_zero zero_le_power K) | 
| 20860 | 418 | done | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 419 | show "norm (\<Sum>p = 0..<n - Suc 0. \<Sum>q = 0..<n - Suc 0 - p. | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 420 | (z + h) ^ q * z ^ (n - 2 - q)) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 421 | \<le> of_nat n * (of_nat (n - Suc 0) * K ^ (n - 2))" | 
| 20860 | 422 | apply (intro | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 423 | order_trans [OF norm_setsum] | 
| 20860 | 424 | real_setsum_nat_ivl_bounded2 | 
| 425 | mult_nonneg_nonneg | |
| 47489 | 426 | of_nat_0_le_iff | 
| 20860 | 427 | zero_le_power K) | 
| 428 | apply (rule le_Kn, simp) | |
| 429 | done | |
| 430 | qed | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 431 | also have "\<dots> = of_nat n * of_nat (n - Suc 0) * K ^ (n - 2) * norm h" | 
| 20860 | 432 | by (simp only: mult_assoc) | 
| 433 | finally show ?thesis . | |
| 434 | qed | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 435 | |
| 20860 | 436 | lemma lemma_termdiff4: | 
| 31017 | 437 |   fixes f :: "'a::{real_normed_field} \<Rightarrow>
 | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 438 | 'b::real_normed_vector" | 
| 20860 | 439 | assumes k: "0 < (k::real)" | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 440 | assumes le: "\<And>h. \<lbrakk>h \<noteq> 0; norm h < k\<rbrakk> \<Longrightarrow> norm (f h) \<le> K * norm h" | 
| 20860 | 441 | shows "f -- 0 --> 0" | 
| 31338 
d41a8ba25b67
generalize constants from Lim.thy to class metric_space
 huffman parents: 
31271diff
changeset | 442 | unfolding LIM_eq diff_0_right | 
| 29163 | 443 | proof (safe) | 
| 444 | let ?h = "of_real (k / 2)::'a" | |
| 445 | have "?h \<noteq> 0" and "norm ?h < k" using k by simp_all | |
| 446 | hence "norm (f ?h) \<le> K * norm ?h" by (rule le) | |
| 447 | hence "0 \<le> K * norm ?h" by (rule order_trans [OF norm_ge_zero]) | |
| 448 | hence zero_le_K: "0 \<le> K" using k by (simp add: zero_le_mult_iff) | |
| 449 | ||
| 20860 | 450 | fix r::real assume r: "0 < r" | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 451 | show "\<exists>s. 0 < s \<and> (\<forall>x. x \<noteq> 0 \<and> norm x < s \<longrightarrow> norm (f x) < r)" | 
| 20860 | 452 | proof (cases) | 
| 453 | assume "K = 0" | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 454 | with k r le have "0 < k \<and> (\<forall>x. x \<noteq> 0 \<and> norm x < k \<longrightarrow> norm (f x) < r)" | 
| 20860 | 455 | by simp | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 456 | thus "\<exists>s. 0 < s \<and> (\<forall>x. x \<noteq> 0 \<and> norm x < s \<longrightarrow> norm (f x) < r)" .. | 
| 20860 | 457 | next | 
| 458 | assume K_neq_zero: "K \<noteq> 0" | |
| 459 | with zero_le_K have K: "0 < K" by simp | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 460 | show "\<exists>s. 0 < s \<and> (\<forall>x. x \<noteq> 0 \<and> norm x < s \<longrightarrow> norm (f x) < r)" | 
| 20860 | 461 | proof (rule exI, safe) | 
| 462 | from k r K show "0 < min k (r * inverse K / 2)" | |
| 463 | by (simp add: mult_pos_pos positive_imp_inverse_positive) | |
| 464 | next | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 465 | fix x::'a | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 466 | assume x1: "x \<noteq> 0" and x2: "norm x < min k (r * inverse K / 2)" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 467 | from x2 have x3: "norm x < k" and x4: "norm x < r * inverse K / 2" | 
| 20860 | 468 | by simp_all | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 469 | from x1 x3 le have "norm (f x) \<le> K * norm x" by simp | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 470 | also from x4 K have "K * norm x < K * (r * inverse K / 2)" | 
| 20860 | 471 | by (rule mult_strict_left_mono) | 
| 472 | also have "\<dots> = r / 2" | |
| 473 | using K_neq_zero by simp | |
| 474 | also have "r / 2 < r" | |
| 475 | using r by simp | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 476 | finally show "norm (f x) < r" . | 
| 20860 | 477 | qed | 
| 478 | qed | |
| 479 | qed | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 480 | |
| 15229 | 481 | lemma lemma_termdiff5: | 
| 31017 | 482 |   fixes g :: "'a::{real_normed_field} \<Rightarrow>
 | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 483 | nat \<Rightarrow> 'b::banach" | 
| 20860 | 484 | assumes k: "0 < (k::real)" | 
| 485 | assumes f: "summable f" | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 486 | assumes le: "\<And>h n. \<lbrakk>h \<noteq> 0; norm h < k\<rbrakk> \<Longrightarrow> norm (g h n) \<le> f n * norm h" | 
| 20860 | 487 | shows "(\<lambda>h. suminf (g h)) -- 0 --> 0" | 
| 488 | proof (rule lemma_termdiff4 [OF k]) | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 489 | fix h::'a assume "h \<noteq> 0" and "norm h < k" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 490 | hence A: "\<forall>n. norm (g h n) \<le> f n * norm h" | 
| 20860 | 491 | by (simp add: le) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 492 | hence "\<exists>N. \<forall>n\<ge>N. norm (norm (g h n)) \<le> f n * norm h" | 
| 20860 | 493 | by simp | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 494 | moreover from f have B: "summable (\<lambda>n. f n * norm h)" | 
| 20860 | 495 | by (rule summable_mult2) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 496 | ultimately have C: "summable (\<lambda>n. norm (g h n))" | 
| 20860 | 497 | by (rule summable_comparison_test) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 498 | hence "norm (suminf (g h)) \<le> (\<Sum>n. norm (g h n))" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 499 | by (rule summable_norm) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 500 | also from A C B have "(\<Sum>n. norm (g h n)) \<le> (\<Sum>n. f n * norm h)" | 
| 20860 | 501 | by (rule summable_le) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 502 | also from f have "(\<Sum>n. f n * norm h) = suminf f * norm h" | 
| 20860 | 503 | by (rule suminf_mult2 [symmetric]) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 504 | finally show "norm (suminf (g h)) \<le> suminf f * norm h" . | 
| 20860 | 505 | qed | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 506 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 507 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 508 | text{* FIXME: Long proofs*}
 | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 509 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 510 | lemma termdiffs_aux: | 
| 31017 | 511 |   fixes x :: "'a::{real_normed_field,banach}"
 | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 512 | assumes 1: "summable (\<lambda>n. diffs (diffs c) n * K ^ n)" | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 513 | assumes 2: "norm x < norm K" | 
| 20860 | 514 | shows "(\<lambda>h. \<Sum>n. c n * (((x + h) ^ n - x ^ n) / h | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 515 | - of_nat n * x ^ (n - Suc 0))) -- 0 --> 0" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 516 | proof - | 
| 20860 | 517 | from dense [OF 2] | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 518 | obtain r where r1: "norm x < r" and r2: "r < norm K" by fast | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 519 | from norm_ge_zero r1 have r: "0 < r" | 
| 20860 | 520 | by (rule order_le_less_trans) | 
| 521 | hence r_neq_0: "r \<noteq> 0" by simp | |
| 522 | show ?thesis | |
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 523 | proof (rule lemma_termdiff5) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 524 | show "0 < r - norm x" using r1 by simp | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 525 | next | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 526 | from r r2 have "norm (of_real r::'a) < norm K" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 527 | by simp | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 528 | with 1 have "summable (\<lambda>n. norm (diffs (diffs c) n * (of_real r ^ n)))" | 
| 20860 | 529 | by (rule powser_insidea) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 530 | hence "summable (\<lambda>n. diffs (diffs (\<lambda>n. norm (c n))) n * r ^ n)" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 531 | using r | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 532 | by (simp add: diffs_def norm_mult norm_power del: of_nat_Suc) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 533 | hence "summable (\<lambda>n. of_nat n * diffs (\<lambda>n. norm (c n)) n * r ^ (n - Suc 0))" | 
| 20860 | 534 | by (rule diffs_equiv [THEN sums_summable]) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 535 | also have "(\<lambda>n. of_nat n * diffs (\<lambda>n. norm (c n)) n * r ^ (n - Suc 0)) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 536 | = (\<lambda>n. diffs (%m. of_nat (m - Suc 0) * norm (c m) * inverse r) n * (r ^ n))" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 537 | apply (rule ext) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 538 | apply (simp add: diffs_def) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 539 | apply (case_tac n, simp_all add: r_neq_0) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 540 | done | 
| 41970 | 541 | finally have "summable | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 542 | (\<lambda>n. of_nat n * (of_nat (n - Suc 0) * norm (c n) * inverse r) * r ^ (n - Suc 0))" | 
| 20860 | 543 | by (rule diffs_equiv [THEN sums_summable]) | 
| 544 | also have | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 545 | "(\<lambda>n. of_nat n * (of_nat (n - Suc 0) * norm (c n) * inverse r) * | 
| 20860 | 546 | r ^ (n - Suc 0)) = | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 547 | (\<lambda>n. norm (c n) * of_nat n * of_nat (n - Suc 0) * r ^ (n - 2))" | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 548 | apply (rule ext) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 549 | apply (case_tac "n", simp) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 550 | apply (case_tac "nat", simp) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 551 | apply (simp add: r_neq_0) | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 552 | done | 
| 20860 | 553 | finally show | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 554 | "summable (\<lambda>n. norm (c n) * of_nat n * of_nat (n - Suc 0) * r ^ (n - 2))" . | 
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 555 | next | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 556 | fix h::'a and n::nat | 
| 20860 | 557 | assume h: "h \<noteq> 0" | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 558 | assume "norm h < r - norm x" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 559 | hence "norm x + norm h < r" by simp | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 560 | with norm_triangle_ineq have xh: "norm (x + h) < r" | 
| 20860 | 561 | by (rule order_le_less_trans) | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 562 | show "norm (c n * (((x + h) ^ n - x ^ n) / h - of_nat n * x ^ (n - Suc 0))) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 563 | \<le> norm (c n) * of_nat n * of_nat (n - Suc 0) * r ^ (n - 2) * norm h" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 564 | apply (simp only: norm_mult mult_assoc) | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 565 | apply (rule mult_left_mono [OF _ norm_ge_zero]) | 
| 20860 | 566 | apply (simp (no_asm) add: mult_assoc [symmetric]) | 
| 567 | apply (rule lemma_termdiff3) | |
| 568 | apply (rule h) | |
| 569 | apply (rule r1 [THEN order_less_imp_le]) | |
| 570 | apply (rule xh [THEN order_less_imp_le]) | |
| 571 | done | |
| 20849 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 572 | qed | 
| 
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
 huffman parents: 
20692diff
changeset | 573 | qed | 
| 20217 
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
 webertj parents: 
19765diff
changeset | 574 | |
| 20860 | 575 | lemma termdiffs: | 
| 31017 | 576 |   fixes K x :: "'a::{real_normed_field,banach}"
 | 
| 20860 | 577 | assumes 1: "summable (\<lambda>n. c n * K ^ n)" | 
| 578 | assumes 2: "summable (\<lambda>n. (diffs c) n * K ^ n)" | |
| 579 | assumes 3: "summable (\<lambda>n. (diffs (diffs c)) n * K ^ n)" | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 580 | assumes 4: "norm x < norm K" | 
| 20860 | 581 | shows "DERIV (\<lambda>x. \<Sum>n. c n * x ^ n) x :> (\<Sum>n. (diffs c) n * x ^ n)" | 
| 29163 | 582 | unfolding deriv_def | 
| 583 | proof (rule LIM_zero_cancel) | |
| 20860 | 584 | show "(\<lambda>h. (suminf (\<lambda>n. c n * (x + h) ^ n) - suminf (\<lambda>n. c n * x ^ n)) / h | 
| 585 | - suminf (\<lambda>n. diffs c n * x ^ n)) -- 0 --> 0" | |
| 586 | proof (rule LIM_equal2) | |
| 29163 | 587 | show "0 < norm K - norm x" using 4 by (simp add: less_diff_eq) | 
| 20860 | 588 | next | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 589 | fix h :: 'a | 
| 20860 | 590 | assume "h \<noteq> 0" | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 591 | assume "norm (h - 0) < norm K - norm x" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 592 | hence "norm x + norm h < norm K" by simp | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 593 | hence 5: "norm (x + h) < norm K" | 
| 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 594 | by (rule norm_triangle_ineq [THEN order_le_less_trans]) | 
| 20860 | 595 | have A: "summable (\<lambda>n. c n * x ^ n)" | 
| 596 | by (rule powser_inside [OF 1 4]) | |
| 597 | have B: "summable (\<lambda>n. c n * (x + h) ^ n)" | |
| 598 | by (rule powser_inside [OF 1 5]) | |
| 599 | have C: "summable (\<lambda>n. diffs c n * x ^ n)" | |
| 600 | by (rule powser_inside [OF 2 4]) | |
| 601 | show "((\<Sum>n. c n * (x + h) ^ n) - (\<Sum>n. c n * x ^ n)) / h | |
| 41970 | 602 | - (\<Sum>n. diffs c n * x ^ n) = | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 603 | (\<Sum>n. c n * (((x + h) ^ n - x ^ n) / h - of_nat n * x ^ (n - Suc 0)))" | 
| 20860 | 604 | apply (subst sums_unique [OF diffs_equiv [OF C]]) | 
| 605 | apply (subst suminf_diff [OF B A]) | |
| 606 | apply (subst suminf_divide [symmetric]) | |
| 607 | apply (rule summable_diff [OF B A]) | |
| 608 | apply (subst suminf_diff) | |
| 609 | apply (rule summable_divide) | |
| 610 | apply (rule summable_diff [OF B A]) | |
| 611 | apply (rule sums_summable [OF diffs_equiv [OF C]]) | |
| 29163 | 612 | apply (rule arg_cong [where f="suminf"], rule ext) | 
| 29667 | 613 | apply (simp add: algebra_simps) | 
| 20860 | 614 | done | 
| 615 | next | |
| 616 | show "(\<lambda>h. \<Sum>n. c n * (((x + h) ^ n - x ^ n) / h - | |
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 617 | of_nat n * x ^ (n - Suc 0))) -- 0 --> 0" | 
| 20860 | 618 | by (rule termdiffs_aux [OF 3 4]) | 
| 619 | qed | |
| 620 | qed | |
| 621 | ||
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 622 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 623 | subsection {* Derivability of power series *}
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 624 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 625 | lemma DERIV_series': fixes f :: "real \<Rightarrow> nat \<Rightarrow> real" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 626 | assumes DERIV_f: "\<And> n. DERIV (\<lambda> x. f x n) x0 :> (f' x0 n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 627 |   and allf_summable: "\<And> x. x \<in> {a <..< b} \<Longrightarrow> summable (f x)" and x0_in_I: "x0 \<in> {a <..< b}"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 628 | and "summable (f' x0)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 629 |   and "summable L" and L_def: "\<And> n x y. \<lbrakk> x \<in> { a <..< b} ; y \<in> { a <..< b} \<rbrakk> \<Longrightarrow> \<bar> f x n - f y n \<bar> \<le> L n * \<bar> x - y \<bar>"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 630 | shows "DERIV (\<lambda> x. suminf (f x)) x0 :> (suminf (f' x0))" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 631 | unfolding deriv_def | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 632 | proof (rule LIM_I) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 633 | fix r :: real assume "0 < r" hence "0 < r/3" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 634 | |
| 41970 | 635 | obtain N_L where N_L: "\<And> n. N_L \<le> n \<Longrightarrow> \<bar> \<Sum> i. L (i + n) \<bar> < r/3" | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 636 | using suminf_exist_split[OF `0 < r/3` `summable L`] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 637 | |
| 41970 | 638 | obtain N_f' where N_f': "\<And> n. N_f' \<le> n \<Longrightarrow> \<bar> \<Sum> i. f' x0 (i + n) \<bar> < r/3" | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 639 | using suminf_exist_split[OF `0 < r/3` `summable (f' x0)`] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 640 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 641 | let ?N = "Suc (max N_L N_f')" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 642 | have "\<bar> \<Sum> i. f' x0 (i + ?N) \<bar> < r/3" (is "?f'_part < r/3") and | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 643 | L_estimate: "\<bar> \<Sum> i. L (i + ?N) \<bar> < r/3" using N_L[of "?N"] and N_f' [of "?N"] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 644 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 645 | let "?diff i x" = "(f (x0 + x) i - f x0 i) / x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 646 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 647 | let ?r = "r / (3 * real ?N)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 648 | have "0 < 3 * real ?N" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 649 | from divide_pos_pos[OF `0 < r` this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 650 | have "0 < ?r" . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 651 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 652 | let "?s n" = "SOME s. 0 < s \<and> (\<forall> x. x \<noteq> 0 \<and> \<bar> x \<bar> < s \<longrightarrow> \<bar> ?diff n x - f' x0 n \<bar> < ?r)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 653 |   def S' \<equiv> "Min (?s ` { 0 ..< ?N })"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 654 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 655 | have "0 < S'" unfolding S'_def | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 656 | proof (rule iffD2[OF Min_gr_iff]) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 657 |     show "\<forall> x \<in> (?s ` { 0 ..< ?N }). 0 < x"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 658 | proof (rule ballI) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 659 |       fix x assume "x \<in> ?s ` {0..<?N}"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 660 |       then obtain n where "x = ?s n" and "n \<in> {0..<?N}" using image_iff[THEN iffD1] by blast
 | 
| 41970 | 661 | from DERIV_D[OF DERIV_f[where n=n], THEN LIM_D, OF `0 < ?r`, unfolded real_norm_def] | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 662 | obtain s where s_bound: "0 < s \<and> (\<forall>x. x \<noteq> 0 \<and> \<bar>x\<bar> < s \<longrightarrow> \<bar>?diff n x - f' x0 n\<bar> < ?r)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 663 | have "0 < ?s n" by (rule someI2[where a=s], auto simp add: s_bound) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 664 | thus "0 < x" unfolding `x = ?s n` . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 665 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 666 | qed auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 667 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 668 | def S \<equiv> "min (min (x0 - a) (b - x0)) S'" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 669 | hence "0 < S" and S_a: "S \<le> x0 - a" and S_b: "S \<le> b - x0" and "S \<le> S'" using x0_in_I and `0 < S'` | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 670 | by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 671 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 672 |   { fix x assume "x \<noteq> 0" and "\<bar> x \<bar> < S"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 673 |     hence x_in_I: "x0 + x \<in> { a <..< b }" using S_a S_b by auto
 | 
| 41970 | 674 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 675 | note diff_smbl = summable_diff[OF allf_summable[OF x_in_I] allf_summable[OF x0_in_I]] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 676 | note div_smbl = summable_divide[OF diff_smbl] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 677 | note all_smbl = summable_diff[OF div_smbl `summable (f' x0)`] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 678 | note ign = summable_ignore_initial_segment[where k="?N"] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 679 | note diff_shft_smbl = summable_diff[OF ign[OF allf_summable[OF x_in_I]] ign[OF allf_summable[OF x0_in_I]]] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 680 | note div_shft_smbl = summable_divide[OF diff_shft_smbl] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 681 | note all_shft_smbl = summable_diff[OF div_smbl ign[OF `summable (f' x0)`]] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 682 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 683 |     { fix n
 | 
| 41970 | 684 | have "\<bar> ?diff (n + ?N) x \<bar> \<le> L (n + ?N) * \<bar> (x0 + x) - x0 \<bar> / \<bar> x \<bar>" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 685 | using divide_right_mono[OF L_def[OF x_in_I x0_in_I] abs_ge_zero] unfolding abs_divide . | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 686 | hence "\<bar> ( \<bar> ?diff (n + ?N) x \<bar>) \<bar> \<le> L (n + ?N)" using `x \<noteq> 0` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 687 | } note L_ge = summable_le2[OF allI[OF this] ign[OF `summable L`]] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 688 | from order_trans[OF summable_rabs[OF conjunct1[OF L_ge]] L_ge[THEN conjunct2]] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 689 | have "\<bar> \<Sum> i. ?diff (i + ?N) x \<bar> \<le> (\<Sum> i. L (i + ?N))" . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 690 | hence "\<bar> \<Sum> i. ?diff (i + ?N) x \<bar> \<le> r / 3" (is "?L_part \<le> r/3") using L_estimate by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 691 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 692 |     have "\<bar>\<Sum>n \<in> { 0 ..< ?N}. ?diff n x - f' x0 n \<bar> \<le> (\<Sum>n \<in> { 0 ..< ?N}. \<bar>?diff n x - f' x0 n \<bar>)" ..
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 693 |     also have "\<dots> < (\<Sum>n \<in> { 0 ..< ?N}. ?r)"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 694 | proof (rule setsum_strict_mono) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 695 |       fix n assume "n \<in> { 0 ..< ?N}"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 696 | have "\<bar> x \<bar> < S" using `\<bar> x \<bar> < S` . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 697 | also have "S \<le> S'" using `S \<le> S'` . | 
| 41970 | 698 | also have "S' \<le> ?s n" unfolding S'_def | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 699 | proof (rule Min_le_iff[THEN iffD2]) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 700 |         have "?s n \<in> (?s ` {0..<?N}) \<and> ?s n \<le> ?s n" using `n \<in> { 0 ..< ?N}` by auto
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 701 |         thus "\<exists> a \<in> (?s ` {0..<?N}). a \<le> ?s n" by blast
 | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 702 | qed auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 703 | finally have "\<bar> x \<bar> < ?s n" . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 704 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 705 | from DERIV_D[OF DERIV_f[where n=n], THEN LIM_D, OF `0 < ?r`, unfolded real_norm_def diff_0_right, unfolded some_eq_ex[symmetric], THEN conjunct2] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 706 | have "\<forall>x. x \<noteq> 0 \<and> \<bar>x\<bar> < ?s n \<longrightarrow> \<bar>?diff n x - f' x0 n\<bar> < ?r" . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 707 | with `x \<noteq> 0` and `\<bar>x\<bar> < ?s n` | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 708 | show "\<bar>?diff n x - f' x0 n\<bar> < ?r" by blast | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 709 | qed auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 710 |     also have "\<dots> = of_nat (card {0 ..< ?N}) * ?r" by (rule setsum_constant)
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 711 | also have "\<dots> = real ?N * ?r" unfolding real_eq_of_nat by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 712 | also have "\<dots> = r/3" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 713 |     finally have "\<bar>\<Sum>n \<in> { 0 ..< ?N}. ?diff n x - f' x0 n \<bar> < r / 3" (is "?diff_part < r / 3") .
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 714 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 715 | from suminf_diff[OF allf_summable[OF x_in_I] allf_summable[OF x0_in_I]] | 
| 41970 | 716 | have "\<bar> (suminf (f (x0 + x)) - (suminf (f x0))) / x - suminf (f' x0) \<bar> = | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 717 | \<bar> \<Sum>n. ?diff n x - f' x0 n \<bar>" unfolding suminf_diff[OF div_smbl `summable (f' x0)`, symmetric] using suminf_divide[OF diff_smbl, symmetric] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 718 | also have "\<dots> \<le> ?diff_part + \<bar> (\<Sum>n. ?diff (n + ?N) x) - (\<Sum> n. f' x0 (n + ?N)) \<bar>" unfolding suminf_split_initial_segment[OF all_smbl, where k="?N"] unfolding suminf_diff[OF div_shft_smbl ign[OF `summable (f' x0)`]] by (rule abs_triangle_ineq) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 719 | also have "\<dots> \<le> ?diff_part + ?L_part + ?f'_part" using abs_triangle_ineq4 by auto | 
| 41970 | 720 | also have "\<dots> < r /3 + r/3 + r/3" | 
| 36842 | 721 | using `?diff_part < r/3` `?L_part \<le> r/3` and `?f'_part < r/3` | 
| 722 | by (rule add_strict_mono [OF add_less_le_mono]) | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 723 | finally have "\<bar> (suminf (f (x0 + x)) - (suminf (f x0))) / x - suminf (f' x0) \<bar> < r" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 724 | by auto | 
| 41970 | 725 | } thus "\<exists> s > 0. \<forall> x. x \<noteq> 0 \<and> norm (x - 0) < s \<longrightarrow> | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 726 | norm (((\<Sum>n. f (x0 + x) n) - (\<Sum>n. f x0 n)) / x - (\<Sum>n. f' x0 n)) < r" using `0 < S` | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 727 | unfolding real_norm_def diff_0_right by blast | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 728 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 729 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 730 | lemma DERIV_power_series': fixes f :: "nat \<Rightarrow> real" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 731 |   assumes converges: "\<And> x. x \<in> {-R <..< R} \<Longrightarrow> summable (\<lambda> n. f n * real (Suc n) * x^n)"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 732 |   and x0_in_I: "x0 \<in> {-R <..< R}" and "0 < R"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 733 | shows "DERIV (\<lambda> x. (\<Sum> n. f n * x^(Suc n))) x0 :> (\<Sum> n. f n * real (Suc n) * x0^n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 734 | (is "DERIV (\<lambda> x. (suminf (?f x))) x0 :> (suminf (?f' x0))") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 735 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 736 |   { fix R' assume "0 < R'" and "R' < R" and "-R' < x0" and "x0 < R'"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 737 |     hence "x0 \<in> {-R' <..< R'}" and "R' \<in> {-R <..< R}" and "x0 \<in> {-R <..< R}" by auto
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 738 | have "DERIV (\<lambda> x. (suminf (?f x))) x0 :> (suminf (?f' x0))" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 739 | proof (rule DERIV_series') | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 740 | show "summable (\<lambda> n. \<bar>f n * real (Suc n) * R'^n\<bar>)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 741 | proof - | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 742 | have "(R' + R) / 2 < R" and "0 < (R' + R) / 2" using `0 < R'` `0 < R` `R' < R` by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 743 |         hence in_Rball: "(R' + R) / 2 \<in> {-R <..< R}" using `R' < R` by auto
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 744 | have "norm R' < norm ((R' + R) / 2)" using `0 < R'` `0 < R` `R' < R` by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 745 | from powser_insidea[OF converges[OF in_Rball] this] show ?thesis by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 746 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 747 |       { fix n x y assume "x \<in> {-R' <..< R'}" and "y \<in> {-R' <..< R'}"
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 748 | show "\<bar>?f x n - ?f y n\<bar> \<le> \<bar>f n * real (Suc n) * R'^n\<bar> * \<bar>x-y\<bar>" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 749 | proof - | 
| 41970 | 750 | have "\<bar>f n * x ^ (Suc n) - f n * y ^ (Suc n)\<bar> = (\<bar>f n\<bar> * \<bar>x-y\<bar>) * \<bar>\<Sum>p = 0..<Suc n. x ^ p * y ^ (n - p)\<bar>" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 751 | unfolding right_diff_distrib[symmetric] lemma_realpow_diff_sumr2 abs_mult by auto | 
| 41970 | 752 | also have "\<dots> \<le> (\<bar>f n\<bar> * \<bar>x-y\<bar>) * (\<bar>real (Suc n)\<bar> * \<bar>R' ^ n\<bar>)" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 753 | proof (rule mult_left_mono) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 754 | have "\<bar>\<Sum>p = 0..<Suc n. x ^ p * y ^ (n - p)\<bar> \<le> (\<Sum>p = 0..<Suc n. \<bar>x ^ p * y ^ (n - p)\<bar>)" by (rule setsum_abs) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 755 | also have "\<dots> \<le> (\<Sum>p = 0..<Suc n. R' ^ n)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 756 | proof (rule setsum_mono) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 757 |               fix p assume "p \<in> {0..<Suc n}" hence "p \<le> n" by auto
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 758 |               { fix n fix x :: real assume "x \<in> {-R'<..<R'}"
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 759 | hence "\<bar>x\<bar> \<le> R'" by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 760 | hence "\<bar>x^n\<bar> \<le> R'^n" unfolding power_abs by (rule power_mono, auto) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 761 |               } from mult_mono[OF this[OF `x \<in> {-R'<..<R'}`, of p] this[OF `y \<in> {-R'<..<R'}`, of "n-p"]] `0 < R'`
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 762 | have "\<bar>x^p * y^(n-p)\<bar> \<le> R'^p * R'^(n-p)" unfolding abs_mult by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 763 | thus "\<bar>x^p * y^(n-p)\<bar> \<le> R'^n" unfolding power_add[symmetric] using `p \<le> n` by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 764 | qed | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 765 | also have "\<dots> = real (Suc n) * R' ^ n" unfolding setsum_constant card_atLeastLessThan real_of_nat_def by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 766 | finally show "\<bar>\<Sum>p = 0..<Suc n. x ^ p * y ^ (n - p)\<bar> \<le> \<bar>real (Suc n)\<bar> * \<bar>R' ^ n\<bar>" unfolding abs_real_of_nat_cancel abs_of_nonneg[OF zero_le_power[OF less_imp_le[OF `0 < R'`]]] . | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 767 | show "0 \<le> \<bar>f n\<bar> * \<bar>x - y\<bar>" unfolding abs_mult[symmetric] by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 768 | qed | 
| 36777 
be5461582d0f
avoid using real-specific versions of generic lemmas
 huffman parents: 
36776diff
changeset | 769 | also have "\<dots> = \<bar>f n * real (Suc n) * R' ^ n\<bar> * \<bar>x - y\<bar>" unfolding abs_mult mult_assoc[symmetric] by algebra | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 770 | finally show ?thesis . | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 771 | qed } | 
| 31881 | 772 |       { fix n show "DERIV (\<lambda> x. ?f x n) x0 :> (?f' x0 n)"
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 773 | by (auto intro!: DERIV_intros simp del: power_Suc) } | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 774 |       { fix x assume "x \<in> {-R' <..< R'}" hence "R' \<in> {-R <..< R}" and "norm x < norm R'" using assms `R' < R` by auto
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 775 | have "summable (\<lambda> n. f n * x^n)" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 776 |         proof (rule summable_le2[THEN conjunct1, OF _ powser_insidea[OF converges[OF `R' \<in> {-R <..< R}`] `norm x < norm R'`]], rule allI)
 | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 777 | fix n | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 778 | have le: "\<bar>f n\<bar> * 1 \<le> \<bar>f n\<bar> * real (Suc n)" by (rule mult_left_mono, auto) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 779 | show "\<bar>f n * x ^ n\<bar> \<le> norm (f n * real (Suc n) * x ^ n)" unfolding real_norm_def abs_mult | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 780 | by (rule mult_right_mono, auto simp add: le[unfolded mult_1_right]) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 781 | qed | 
| 36777 
be5461582d0f
avoid using real-specific versions of generic lemmas
 huffman parents: 
36776diff
changeset | 782 | from this[THEN summable_mult2[where c=x], unfolded mult_assoc, unfolded mult_commute] | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 783 | show "summable (?f x)" by auto } | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 784 |       show "summable (?f' x0)" using converges[OF `x0 \<in> {-R <..< R}`] .
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 785 |       show "x0 \<in> {-R' <..< R'}" using `x0 \<in> {-R' <..< R'}` .
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 786 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 787 | } note for_subinterval = this | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 788 | let ?R = "(R + \<bar>x0\<bar>) / 2" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 789 | have "\<bar>x0\<bar> < ?R" using assms by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 790 | hence "- ?R < x0" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 791 | proof (cases "x0 < 0") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 792 | case True | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 793 | hence "- x0 < ?R" using `\<bar>x0\<bar> < ?R` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 794 | thus ?thesis unfolding neg_less_iff_less[symmetric, of "- x0"] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 795 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 796 | case False | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 797 | have "- ?R < 0" using assms by auto | 
| 41970 | 798 | also have "\<dots> \<le> x0" using False by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 799 | finally show ?thesis . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 800 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 801 | hence "0 < ?R" "?R < R" "- ?R < x0" and "x0 < ?R" using assms by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 802 | from for_subinterval[OF this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 803 | show ?thesis . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 804 | qed | 
| 29695 | 805 | |
| 29164 | 806 | subsection {* Exponential Function *}
 | 
| 23043 | 807 | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 808 | definition exp :: "'a \<Rightarrow> 'a::{real_normed_field,banach}" where
 | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 809 | "exp = (\<lambda>x. \<Sum>n. x ^ n /\<^sub>R real (fact n))" | 
| 23043 | 810 | |
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 811 | lemma summable_exp_generic: | 
| 31017 | 812 |   fixes x :: "'a::{real_normed_algebra_1,banach}"
 | 
| 25062 | 813 | defines S_def: "S \<equiv> \<lambda>n. x ^ n /\<^sub>R real (fact n)" | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 814 | shows "summable S" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 815 | proof - | 
| 25062 | 816 | have S_Suc: "\<And>n. S (Suc n) = (x * S n) /\<^sub>R real (Suc n)" | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 817 | unfolding S_def by (simp del: mult_Suc) | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 818 | obtain r :: real where r0: "0 < r" and r1: "r < 1" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 819 | using dense [OF zero_less_one] by fast | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 820 | obtain N :: nat where N: "norm x < real N * r" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 821 | using reals_Archimedean3 [OF r0] by fast | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 822 | from r1 show ?thesis | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 823 | proof (rule ratio_test [rule_format]) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 824 | fix n :: nat | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 825 | assume n: "N \<le> n" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 826 | have "norm x \<le> real N * r" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 827 | using N by (rule order_less_imp_le) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 828 | also have "real N * r \<le> real (Suc n) * r" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 829 | using r0 n by (simp add: mult_right_mono) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 830 | finally have "norm x * norm (S n) \<le> real (Suc n) * r * norm (S n)" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 831 | using norm_ge_zero by (rule mult_right_mono) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 832 | hence "norm (x * S n) \<le> real (Suc n) * r * norm (S n)" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 833 | by (rule order_trans [OF norm_mult_ineq]) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 834 | hence "norm (x * S n) / real (Suc n) \<le> r * norm (S n)" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 835 | by (simp add: pos_divide_le_eq mult_ac) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 836 | thus "norm (S (Suc n)) \<le> r * norm (S n)" | 
| 35216 | 837 | by (simp add: S_Suc inverse_eq_divide) | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 838 | qed | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 839 | qed | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 840 | |
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 841 | lemma summable_norm_exp: | 
| 31017 | 842 |   fixes x :: "'a::{real_normed_algebra_1,banach}"
 | 
| 25062 | 843 | shows "summable (\<lambda>n. norm (x ^ n /\<^sub>R real (fact n)))" | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 844 | proof (rule summable_norm_comparison_test [OF exI, rule_format]) | 
| 25062 | 845 | show "summable (\<lambda>n. norm x ^ n /\<^sub>R real (fact n))" | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 846 | by (rule summable_exp_generic) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 847 | next | 
| 25062 | 848 | fix n show "norm (x ^ n /\<^sub>R real (fact n)) \<le> norm x ^ n /\<^sub>R real (fact n)" | 
| 35216 | 849 | by (simp add: norm_power_ineq) | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 850 | qed | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 851 | |
| 23043 | 852 | lemma summable_exp: "summable (%n. inverse (real (fact n)) * x ^ n)" | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 853 | by (insert summable_exp_generic [where x=x], simp) | 
| 23043 | 854 | |
| 25062 | 855 | lemma exp_converges: "(\<lambda>n. x ^ n /\<^sub>R real (fact n)) sums exp x" | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 856 | unfolding exp_def by (rule summable_exp_generic [THEN summable_sums]) | 
| 23043 | 857 | |
| 858 | ||
| 41970 | 859 | lemma exp_fdiffs: | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 860 | "diffs (%n. inverse(real (fact n))) = (%n. inverse(real (fact n)))" | 
| 23431 
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
 huffman parents: 
23413diff
changeset | 861 | by (simp add: diffs_def mult_assoc [symmetric] real_of_nat_def of_nat_mult | 
| 23082 
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
 huffman parents: 
23069diff
changeset | 862 | del: mult_Suc of_nat_Suc) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 863 | |
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 864 | lemma diffs_of_real: "diffs (\<lambda>n. of_real (f n)) = (\<lambda>n. of_real (diffs f n))" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 865 | by (simp add: diffs_def) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 866 | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 867 | lemma DERIV_exp [simp]: "DERIV exp x :> exp(x)" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 868 | unfolding exp_def scaleR_conv_of_real | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 869 | apply (rule DERIV_cong) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 870 | apply (rule termdiffs [where K="of_real (1 + norm x)"]) | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 871 | apply (simp_all only: diffs_of_real scaleR_conv_of_real exp_fdiffs) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 872 | apply (rule exp_converges [THEN sums_summable, unfolded scaleR_conv_of_real])+ | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 873 | apply (simp del: of_real_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 874 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 875 | |
| 51527 | 876 | declare DERIV_exp[THEN DERIV_chain2, THEN DERIV_cong, DERIV_intros] | 
| 877 | ||
| 44311 | 878 | lemma isCont_exp: "isCont exp x" | 
| 879 | by (rule DERIV_exp [THEN DERIV_isCont]) | |
| 880 | ||
| 881 | lemma isCont_exp' [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. exp (f x)) a" | |
| 882 | by (rule isCont_o2 [OF _ isCont_exp]) | |
| 883 | ||
| 884 | lemma tendsto_exp [tendsto_intros]: | |
| 885 | "(f ---> a) F \<Longrightarrow> ((\<lambda>x. exp (f x)) ---> exp a) F" | |
| 886 | by (rule isCont_tendsto_compose [OF isCont_exp]) | |
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 887 | |
| 51478 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 888 | lemma continuous_exp [continuous_intros]: "continuous F f \<Longrightarrow> continuous F (\<lambda>x. exp (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 889 | unfolding continuous_def by (rule tendsto_exp) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 890 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 891 | lemma continuous_on_exp [continuous_on_intros]: "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. exp (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 892 | unfolding continuous_on_def by (auto intro: tendsto_exp) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 893 | |
| 29167 | 894 | subsubsection {* Properties of the Exponential Function *}
 | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 895 | |
| 23278 | 896 | lemma powser_zero: | 
| 31017 | 897 |   fixes f :: "nat \<Rightarrow> 'a::{real_normed_algebra_1}"
 | 
| 23278 | 898 | shows "(\<Sum>n. f n * 0 ^ n) = f 0" | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 899 | proof - | 
| 23278 | 900 | have "(\<Sum>n = 0..<1. f n * 0 ^ n) = (\<Sum>n. f n * 0 ^ n)" | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 901 | by (rule sums_unique [OF series_zero], simp add: power_0_left) | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 902 | thus ?thesis unfolding One_nat_def by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 903 | qed | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 904 | |
| 23278 | 905 | lemma exp_zero [simp]: "exp 0 = 1" | 
| 906 | unfolding exp_def by (simp add: scaleR_conv_of_real powser_zero) | |
| 907 | ||
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 908 | lemma setsum_cl_ivl_Suc2: | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 909 | "(\<Sum>i=m..Suc n. f i) = (if Suc n < m then 0 else f m + (\<Sum>i=m..n. f (Suc i)))" | 
| 28069 | 910 | by (simp add: setsum_head_Suc setsum_shift_bounds_cl_Suc_ivl | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 911 | del: setsum_cl_ivl_Suc) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 912 | |
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 913 | lemma exp_series_add: | 
| 31017 | 914 |   fixes x y :: "'a::{real_field}"
 | 
| 25062 | 915 | defines S_def: "S \<equiv> \<lambda>x n. x ^ n /\<^sub>R real (fact n)" | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 916 | shows "S (x + y) n = (\<Sum>i=0..n. S x i * S y (n - i))" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 917 | proof (induct n) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 918 | case 0 | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 919 | show ?case | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 920 | unfolding S_def by simp | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 921 | next | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 922 | case (Suc n) | 
| 25062 | 923 | have S_Suc: "\<And>x n. S x (Suc n) = (x * S x n) /\<^sub>R real (Suc n)" | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 924 | unfolding S_def by (simp del: mult_Suc) | 
| 25062 | 925 | hence times_S: "\<And>x n. x * S x n = real (Suc n) *\<^sub>R S x (Suc n)" | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 926 | by simp | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 927 | |
| 25062 | 928 | have "real (Suc n) *\<^sub>R S (x + y) (Suc n) = (x + y) * S (x + y) n" | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 929 | by (simp only: times_S) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 930 | also have "\<dots> = (x + y) * (\<Sum>i=0..n. S x i * S y (n-i))" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 931 | by (simp only: Suc) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 932 | also have "\<dots> = x * (\<Sum>i=0..n. S x i * S y (n-i)) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 933 | + y * (\<Sum>i=0..n. S x i * S y (n-i))" | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 934 | by (rule distrib_right) | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 935 | also have "\<dots> = (\<Sum>i=0..n. (x * S x i) * S y (n-i)) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 936 | + (\<Sum>i=0..n. S x i * (y * S y (n-i)))" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 937 | by (simp only: setsum_right_distrib mult_ac) | 
| 25062 | 938 | also have "\<dots> = (\<Sum>i=0..n. real (Suc i) *\<^sub>R (S x (Suc i) * S y (n-i))) | 
| 939 | + (\<Sum>i=0..n. real (Suc n-i) *\<^sub>R (S x i * S y (Suc n-i)))" | |
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 940 | by (simp add: times_S Suc_diff_le) | 
| 25062 | 941 | also have "(\<Sum>i=0..n. real (Suc i) *\<^sub>R (S x (Suc i) * S y (n-i))) = | 
| 942 | (\<Sum>i=0..Suc n. real i *\<^sub>R (S x i * S y (Suc n-i)))" | |
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 943 | by (subst setsum_cl_ivl_Suc2, simp) | 
| 25062 | 944 | also have "(\<Sum>i=0..n. real (Suc n-i) *\<^sub>R (S x i * S y (Suc n-i))) = | 
| 945 | (\<Sum>i=0..Suc n. real (Suc n-i) *\<^sub>R (S x i * S y (Suc n-i)))" | |
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 946 | by (subst setsum_cl_ivl_Suc, simp) | 
| 25062 | 947 | also have "(\<Sum>i=0..Suc n. real i *\<^sub>R (S x i * S y (Suc n-i))) + | 
| 948 | (\<Sum>i=0..Suc n. real (Suc n-i) *\<^sub>R (S x i * S y (Suc n-i))) = | |
| 949 | (\<Sum>i=0..Suc n. real (Suc n) *\<^sub>R (S x i * S y (Suc n-i)))" | |
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 950 | by (simp only: setsum_addf [symmetric] scaleR_left_distrib [symmetric] | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 951 | real_of_nat_add [symmetric], simp) | 
| 25062 | 952 | also have "\<dots> = real (Suc n) *\<^sub>R (\<Sum>i=0..Suc n. S x i * S y (Suc n-i))" | 
| 23127 | 953 | by (simp only: scaleR_right.setsum) | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 954 | finally show | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 955 | "S (x + y) (Suc n) = (\<Sum>i=0..Suc n. S x i * S y (Suc n - i))" | 
| 35216 | 956 | by (simp del: setsum_cl_ivl_Suc) | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 957 | qed | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 958 | |
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 959 | lemma exp_add: "exp (x + y) = exp x * exp y" | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 960 | unfolding exp_def | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 961 | by (simp only: Cauchy_product summable_norm_exp exp_series_add) | 
| 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 962 | |
| 29170 | 963 | lemma mult_exp_exp: "exp x * exp y = exp (x + y)" | 
| 964 | by (rule exp_add [symmetric]) | |
| 965 | ||
| 23241 | 966 | lemma exp_of_real: "exp (of_real x) = of_real (exp x)" | 
| 967 | unfolding exp_def | |
| 44282 
f0de18b62d63
remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
 huffman parents: 
43335diff
changeset | 968 | apply (subst suminf_of_real) | 
| 23241 | 969 | apply (rule summable_exp_generic) | 
| 970 | apply (simp add: scaleR_conv_of_real) | |
| 971 | done | |
| 972 | ||
| 29170 | 973 | lemma exp_not_eq_zero [simp]: "exp x \<noteq> 0" | 
| 974 | proof | |
| 975 | have "exp x * exp (- x) = 1" by (simp add: mult_exp_exp) | |
| 976 | also assume "exp x = 0" | |
| 977 | finally show "False" by simp | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 978 | qed | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 979 | |
| 29170 | 980 | lemma exp_minus: "exp (- x) = inverse (exp x)" | 
| 981 | by (rule inverse_unique [symmetric], simp add: mult_exp_exp) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 982 | |
| 29170 | 983 | lemma exp_diff: "exp (x - y) = exp x / exp y" | 
| 984 | unfolding diff_minus divide_inverse | |
| 985 | by (simp add: exp_add exp_minus) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 986 | |
| 29167 | 987 | |
| 988 | subsubsection {* Properties of the Exponential Function on Reals *}
 | |
| 989 | ||
| 29170 | 990 | text {* Comparisons of @{term "exp x"} with zero. *}
 | 
| 29167 | 991 | |
| 992 | text{*Proof: because every exponential can be seen as a square.*}
 | |
| 993 | lemma exp_ge_zero [simp]: "0 \<le> exp (x::real)" | |
| 994 | proof - | |
| 995 | have "0 \<le> exp (x/2) * exp (x/2)" by simp | |
| 996 | thus ?thesis by (simp add: exp_add [symmetric]) | |
| 997 | qed | |
| 998 | ||
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 999 | lemma exp_gt_zero [simp]: "0 < exp (x::real)" | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1000 | by (simp add: order_less_le) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1001 | |
| 29170 | 1002 | lemma not_exp_less_zero [simp]: "\<not> exp (x::real) < 0" | 
| 1003 | by (simp add: not_less) | |
| 1004 | ||
| 1005 | lemma not_exp_le_zero [simp]: "\<not> exp (x::real) \<le> 0" | |
| 1006 | by (simp add: not_le) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1007 | |
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 1008 | lemma abs_exp_cancel [simp]: "\<bar>exp x::real\<bar> = exp x" | 
| 29165 
562f95f06244
cleaned up some proofs; removed redundant simp rules
 huffman parents: 
29164diff
changeset | 1009 | by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1010 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1011 | lemma exp_real_of_nat_mult: "exp(real n * x) = exp(x) ^ n" | 
| 15251 | 1012 | apply (induct "n") | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 1013 | apply (auto simp add: real_of_nat_Suc distrib_left exp_add mult_commute) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1014 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1015 | |
| 29170 | 1016 | text {* Strict monotonicity of exponential. *}
 | 
| 1017 | ||
| 1018 | lemma exp_ge_add_one_self_aux: "0 \<le> (x::real) ==> (1 + x) \<le> exp(x)" | |
| 1019 | apply (drule order_le_imp_less_or_eq, auto) | |
| 1020 | apply (simp add: exp_def) | |
| 36777 
be5461582d0f
avoid using real-specific versions of generic lemmas
 huffman parents: 
36776diff
changeset | 1021 | apply (rule order_trans) | 
| 29170 | 1022 | apply (rule_tac [2] n = 2 and f = "(%n. inverse (real (fact n)) * x ^ n)" in series_pos_le) | 
| 1023 | apply (auto intro: summable_exp simp add: numeral_2_eq_2 zero_le_mult_iff) | |
| 1024 | done | |
| 1025 | ||
| 1026 | lemma exp_gt_one: "0 < (x::real) \<Longrightarrow> 1 < exp x" | |
| 1027 | proof - | |
| 1028 | assume x: "0 < x" | |
| 1029 | hence "1 < 1 + x" by simp | |
| 1030 | also from x have "1 + x \<le> exp x" | |
| 1031 | by (simp add: exp_ge_add_one_self_aux) | |
| 1032 | finally show ?thesis . | |
| 1033 | qed | |
| 1034 | ||
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1035 | lemma exp_less_mono: | 
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 1036 | fixes x y :: real | 
| 29165 
562f95f06244
cleaned up some proofs; removed redundant simp rules
 huffman parents: 
29164diff
changeset | 1037 | assumes "x < y" shows "exp x < exp y" | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1038 | proof - | 
| 29165 
562f95f06244
cleaned up some proofs; removed redundant simp rules
 huffman parents: 
29164diff
changeset | 1039 | from `x < y` have "0 < y - x" by simp | 
| 
562f95f06244
cleaned up some proofs; removed redundant simp rules
 huffman parents: 
29164diff
changeset | 1040 | hence "1 < exp (y - x)" by (rule exp_gt_one) | 
| 
562f95f06244
cleaned up some proofs; removed redundant simp rules
 huffman parents: 
29164diff
changeset | 1041 | hence "1 < exp y / exp x" by (simp only: exp_diff) | 
| 
562f95f06244
cleaned up some proofs; removed redundant simp rules
 huffman parents: 
29164diff
changeset | 1042 | thus "exp x < exp y" by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1043 | qed | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1044 | |
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 1045 | lemma exp_less_cancel: "exp (x::real) < exp y ==> x < y" | 
| 29170 | 1046 | apply (simp add: linorder_not_le [symmetric]) | 
| 1047 | apply (auto simp add: order_le_less exp_less_mono) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1048 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1049 | |
| 29170 | 1050 | lemma exp_less_cancel_iff [iff]: "exp (x::real) < exp y \<longleftrightarrow> x < y" | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1051 | by (auto intro: exp_less_mono exp_less_cancel) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1052 | |
| 29170 | 1053 | lemma exp_le_cancel_iff [iff]: "exp (x::real) \<le> exp y \<longleftrightarrow> x \<le> y" | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1054 | by (auto simp add: linorder_not_less [symmetric]) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1055 | |
| 29170 | 1056 | lemma exp_inj_iff [iff]: "exp (x::real) = exp y \<longleftrightarrow> x = y" | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1057 | by (simp add: order_eq_iff) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1058 | |
| 29170 | 1059 | text {* Comparisons of @{term "exp x"} with one. *}
 | 
| 1060 | ||
| 1061 | lemma one_less_exp_iff [simp]: "1 < exp (x::real) \<longleftrightarrow> 0 < x" | |
| 1062 | using exp_less_cancel_iff [where x=0 and y=x] by simp | |
| 1063 | ||
| 1064 | lemma exp_less_one_iff [simp]: "exp (x::real) < 1 \<longleftrightarrow> x < 0" | |
| 1065 | using exp_less_cancel_iff [where x=x and y=0] by simp | |
| 1066 | ||
| 1067 | lemma one_le_exp_iff [simp]: "1 \<le> exp (x::real) \<longleftrightarrow> 0 \<le> x" | |
| 1068 | using exp_le_cancel_iff [where x=0 and y=x] by simp | |
| 1069 | ||
| 1070 | lemma exp_le_one_iff [simp]: "exp (x::real) \<le> 1 \<longleftrightarrow> x \<le> 0" | |
| 1071 | using exp_le_cancel_iff [where x=x and y=0] by simp | |
| 1072 | ||
| 1073 | lemma exp_eq_one_iff [simp]: "exp (x::real) = 1 \<longleftrightarrow> x = 0" | |
| 1074 | using exp_inj_iff [where x=x and y=0] by simp | |
| 1075 | ||
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 1076 | lemma lemma_exp_total: "1 \<le> y ==> \<exists>x. 0 \<le> x & x \<le> y - 1 & exp(x::real) = y" | 
| 44755 | 1077 | proof (rule IVT) | 
| 1078 | assume "1 \<le> y" | |
| 1079 | hence "0 \<le> y - 1" by simp | |
| 1080 | hence "1 + (y - 1) \<le> exp (y - 1)" by (rule exp_ge_add_one_self_aux) | |
| 1081 | thus "y \<le> exp (y - 1)" by simp | |
| 1082 | qed (simp_all add: le_diff_eq) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1083 | |
| 23115 
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
 huffman parents: 
23112diff
changeset | 1084 | lemma exp_total: "0 < (y::real) ==> \<exists>x. exp x = y" | 
| 44755 | 1085 | proof (rule linorder_le_cases [of 1 y]) | 
| 1086 | assume "1 \<le> y" thus "\<exists>x. exp x = y" | |
| 1087 | by (fast dest: lemma_exp_total) | |
| 1088 | next | |
| 1089 | assume "0 < y" and "y \<le> 1" | |
| 1090 | hence "1 \<le> inverse y" by (simp add: one_le_inverse_iff) | |
| 1091 | then obtain x where "exp x = inverse y" by (fast dest: lemma_exp_total) | |
| 1092 | hence "exp (- x) = y" by (simp add: exp_minus) | |
| 1093 | thus "\<exists>x. exp x = y" .. | |
| 1094 | qed | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1095 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1096 | |
| 29164 | 1097 | subsection {* Natural Logarithm *}
 | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1098 | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1099 | definition ln :: "real \<Rightarrow> real" where | 
| 23043 | 1100 | "ln x = (THE u. exp u = x)" | 
| 1101 | ||
| 1102 | lemma ln_exp [simp]: "ln (exp x) = x" | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1103 | by (simp add: ln_def) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1104 | |
| 22654 
c2b6b5a9e136
new simp rule exp_ln; new standard proof of DERIV_exp_ln_one; changed imports
 huffman parents: 
22653diff
changeset | 1105 | lemma exp_ln [simp]: "0 < x \<Longrightarrow> exp (ln x) = x" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1106 | by (auto dest: exp_total) | 
| 22654 
c2b6b5a9e136
new simp rule exp_ln; new standard proof of DERIV_exp_ln_one; changed imports
 huffman parents: 
22653diff
changeset | 1107 | |
| 29171 | 1108 | lemma exp_ln_iff [simp]: "exp (ln x) = x \<longleftrightarrow> 0 < x" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1109 | by (metis exp_gt_zero exp_ln) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1110 | |
| 29171 | 1111 | lemma ln_unique: "exp y = x \<Longrightarrow> ln x = y" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1112 | by (erule subst, rule ln_exp) | 
| 29171 | 1113 | |
| 1114 | lemma ln_one [simp]: "ln 1 = 0" | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1115 | by (rule ln_unique, simp) | 
| 29171 | 1116 | |
| 1117 | lemma ln_mult: "\<lbrakk>0 < x; 0 < y\<rbrakk> \<Longrightarrow> ln (x * y) = ln x + ln y" | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1118 | by (rule ln_unique, simp add: exp_add) | 
| 29171 | 1119 | |
| 1120 | lemma ln_inverse: "0 < x \<Longrightarrow> ln (inverse x) = - ln x" | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1121 | by (rule ln_unique, simp add: exp_minus) | 
| 29171 | 1122 | |
| 1123 | lemma ln_div: "\<lbrakk>0 < x; 0 < y\<rbrakk> \<Longrightarrow> ln (x / y) = ln x - ln y" | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1124 | by (rule ln_unique, simp add: exp_diff) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1125 | |
| 29171 | 1126 | lemma ln_realpow: "0 < x \<Longrightarrow> ln (x ^ n) = real n * ln x" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1127 | by (rule ln_unique, simp add: exp_real_of_nat_mult) | 
| 29171 | 1128 | |
| 1129 | lemma ln_less_cancel_iff [simp]: "\<lbrakk>0 < x; 0 < y\<rbrakk> \<Longrightarrow> ln x < ln y \<longleftrightarrow> x < y" | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1130 | by (subst exp_less_cancel_iff [symmetric], simp) | 
| 29171 | 1131 | |
| 1132 | lemma ln_le_cancel_iff [simp]: "\<lbrakk>0 < x; 0 < y\<rbrakk> \<Longrightarrow> ln x \<le> ln y \<longleftrightarrow> x \<le> y" | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1133 | by (simp add: linorder_not_less [symmetric]) | 
| 29171 | 1134 | |
| 1135 | lemma ln_inj_iff [simp]: "\<lbrakk>0 < x; 0 < y\<rbrakk> \<Longrightarrow> ln x = ln y \<longleftrightarrow> x = y" | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1136 | by (simp add: order_eq_iff) | 
| 29171 | 1137 | |
| 1138 | lemma ln_add_one_self_le_self [simp]: "0 \<le> x \<Longrightarrow> ln (1 + x) \<le> x" | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1139 | apply (rule exp_le_cancel_iff [THEN iffD1]) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1140 | apply (simp add: exp_ge_add_one_self_aux) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1141 | done | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1142 | |
| 29171 | 1143 | lemma ln_less_self [simp]: "0 < x \<Longrightarrow> ln x < x" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1144 | by (rule order_less_le_trans [where y="ln (1 + x)"]) simp_all | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1145 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1146 | lemma ln_ge_zero [simp]: "1 \<le> x \<Longrightarrow> 0 \<le> ln x" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1147 | using ln_le_cancel_iff [of 1 x] by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1148 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1149 | lemma ln_ge_zero_imp_ge_one: "\<lbrakk>0 \<le> ln x; 0 < x\<rbrakk> \<Longrightarrow> 1 \<le> x" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1150 | using ln_le_cancel_iff [of 1 x] by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1151 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1152 | lemma ln_ge_zero_iff [simp]: "0 < x \<Longrightarrow> (0 \<le> ln x) = (1 \<le> x)" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1153 | using ln_le_cancel_iff [of 1 x] by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1154 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1155 | lemma ln_less_zero_iff [simp]: "0 < x \<Longrightarrow> (ln x < 0) = (x < 1)" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1156 | using ln_less_cancel_iff [of x 1] by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1157 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1158 | lemma ln_gt_zero: "1 < x \<Longrightarrow> 0 < ln x" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1159 | using ln_less_cancel_iff [of 1 x] by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1160 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1161 | lemma ln_gt_zero_imp_gt_one: "\<lbrakk>0 < ln x; 0 < x\<rbrakk> \<Longrightarrow> 1 < x" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1162 | using ln_less_cancel_iff [of 1 x] by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1163 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1164 | lemma ln_gt_zero_iff [simp]: "0 < x \<Longrightarrow> (0 < ln x) = (1 < x)" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1165 | using ln_less_cancel_iff [of 1 x] by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1166 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1167 | lemma ln_eq_zero_iff [simp]: "0 < x \<Longrightarrow> (ln x = 0) = (x = 1)" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1168 | using ln_inj_iff [of x 1] by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1169 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1170 | lemma ln_less_zero: "\<lbrakk>0 < x; x < 1\<rbrakk> \<Longrightarrow> ln x < 0" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1171 | by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1172 | |
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 1173 | lemma isCont_ln: "0 < x \<Longrightarrow> isCont ln x" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1174 | apply (subgoal_tac "isCont ln (exp (ln x))", simp) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1175 | apply (rule isCont_inverse_function [where f=exp], simp_all) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1176 | done | 
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 1177 | |
| 45915 | 1178 | lemma tendsto_ln [tendsto_intros]: | 
| 1179 | "\<lbrakk>(f ---> a) F; 0 < a\<rbrakk> \<Longrightarrow> ((\<lambda>x. ln (f x)) ---> ln a) F" | |
| 1180 | by (rule isCont_tendsto_compose [OF isCont_ln]) | |
| 1181 | ||
| 51478 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1182 | lemma continuous_ln: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1183 | "continuous F f \<Longrightarrow> 0 < f (Lim F (\<lambda>x. x)) \<Longrightarrow> continuous F (\<lambda>x. ln (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1184 | unfolding continuous_def by (rule tendsto_ln) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1185 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1186 | lemma isCont_ln' [continuous_intros]: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1187 | "continuous (at x) f \<Longrightarrow> 0 < f x \<Longrightarrow> continuous (at x) (\<lambda>x. ln (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1188 | unfolding continuous_at by (rule tendsto_ln) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1189 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1190 | lemma continuous_within_ln [continuous_intros]: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1191 | "continuous (at x within s) f \<Longrightarrow> 0 < f x \<Longrightarrow> continuous (at x within s) (\<lambda>x. ln (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1192 | unfolding continuous_within by (rule tendsto_ln) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1193 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1194 | lemma continuous_on_ln [continuous_on_intros]: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1195 | "continuous_on s f \<Longrightarrow> (\<forall>x\<in>s. 0 < f x) \<Longrightarrow> continuous_on s (\<lambda>x. ln (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1196 | unfolding continuous_on_def by (auto intro: tendsto_ln) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 1197 | |
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 1198 | lemma DERIV_ln: "0 < x \<Longrightarrow> DERIV ln x :> inverse x" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1199 | apply (rule DERIV_inverse_function [where f=exp and a=0 and b="x+1"]) | 
| 44317 
b7e9fa025f15
remove redundant lemma lemma_DERIV_subst in favor of DERIV_cong
 huffman parents: 
44316diff
changeset | 1200 | apply (erule DERIV_cong [OF DERIV_exp exp_ln]) | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1201 | apply (simp_all add: abs_if isCont_ln) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 1202 | done | 
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 1203 | |
| 33667 | 1204 | lemma DERIV_ln_divide: "0 < x ==> DERIV ln x :> 1 / x" | 
| 1205 | by (rule DERIV_ln[THEN DERIV_cong], simp, simp add: divide_inverse) | |
| 1206 | ||
| 51527 | 1207 | declare DERIV_ln_divide[THEN DERIV_chain2, THEN DERIV_cong, DERIV_intros] | 
| 1208 | ||
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1209 | lemma ln_series: assumes "0 < x" and "x < 2" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1210 | shows "ln x = (\<Sum> n. (-1)^n * (1 / real (n + 1)) * (x - 1)^(Suc n))" (is "ln x = suminf (?f (x - 1))") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1211 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1212 | let "?f' x n" = "(-1)^n * (x - 1)^n" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1213 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1214 | have "ln x - suminf (?f (x - 1)) = ln 1 - suminf (?f (1 - 1))" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1215 | proof (rule DERIV_isconst3[where x=x]) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1216 |     fix x :: real assume "x \<in> {0 <..< 2}" hence "0 < x" and "x < 2" by auto
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1217 | have "norm (1 - x) < 1" using `0 < x` and `x < 2` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1218 | have "1 / x = 1 / (1 - (1 - x))" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1219 | also have "\<dots> = (\<Sum> n. (1 - x)^n)" using geometric_sums[OF `norm (1 - x) < 1`] by (rule sums_unique) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1220 | also have "\<dots> = suminf (?f' x)" unfolding power_mult_distrib[symmetric] by (rule arg_cong[where f=suminf], rule arg_cong[where f="op ^"], auto) | 
| 36777 
be5461582d0f
avoid using real-specific versions of generic lemmas
 huffman parents: 
36776diff
changeset | 1221 | finally have "DERIV ln x :> suminf (?f' x)" using DERIV_ln[OF `0 < x`] unfolding divide_inverse by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1222 | moreover | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1223 | have repos: "\<And> h x :: real. h - 1 + x = h + x - 1" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1224 | have "DERIV (\<lambda>x. suminf (?f x)) (x - 1) :> (\<Sum>n. (-1)^n * (1 / real (n + 1)) * real (Suc n) * (x - 1) ^ n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1225 | proof (rule DERIV_power_series') | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1226 |       show "x - 1 \<in> {- 1<..<1}" and "(0 :: real) < 1" using `0 < x` `x < 2` by auto
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1227 |       { fix x :: real assume "x \<in> {- 1<..<1}" hence "norm (-x) < 1" by auto
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 1228 | show "summable (\<lambda>n. -1 ^ n * (1 / real (n + 1)) * real (Suc n) * x ^ n)" | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 1229 | unfolding One_nat_def | 
| 35216 | 1230 | by (auto simp add: power_mult_distrib[symmetric] summable_geometric[OF `norm (-x) < 1`]) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1231 | } | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1232 | qed | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 1233 | hence "DERIV (\<lambda>x. suminf (?f x)) (x - 1) :> suminf (?f' x)" unfolding One_nat_def by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1234 | hence "DERIV (\<lambda>x. suminf (?f (x - 1))) x :> suminf (?f' x)" unfolding DERIV_iff repos . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1235 | ultimately have "DERIV (\<lambda>x. ln x - suminf (?f (x - 1))) x :> (suminf (?f' x) - suminf (?f' x))" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1236 | by (rule DERIV_diff) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1237 | thus "DERIV (\<lambda>x. ln x - suminf (?f (x - 1))) x :> 0" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1238 | qed (auto simp add: assms) | 
| 44289 | 1239 | thus ?thesis by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 1240 | qed | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 1241 | |
| 50326 | 1242 | lemma exp_first_two_terms: "exp x = 1 + x + (\<Sum> n. inverse(fact (n+2)) * (x ^ (n+2)))" | 
| 1243 | proof - | |
| 1244 | have "exp x = suminf (%n. inverse(fact n) * (x ^ n))" | |
| 1245 | by (simp add: exp_def) | |
| 1246 | also from summable_exp have "... = (\<Sum> n::nat = 0 ..< 2. inverse(fact n) * (x ^ n)) + | |
| 1247 | (\<Sum> n. inverse(fact(n+2)) * (x ^ (n+2)))" (is "_ = ?a + _") | |
| 1248 | by (rule suminf_split_initial_segment) | |
| 1249 | also have "?a = 1 + x" | |
| 1250 | by (simp add: numeral_2_eq_2) | |
| 1251 | finally show ?thesis . | |
| 1252 | qed | |
| 1253 | ||
| 1254 | lemma exp_bound: "0 <= (x::real) ==> x <= 1 ==> exp x <= 1 + x + x^2" | |
| 1255 | proof - | |
| 1256 | assume a: "0 <= x" | |
| 1257 | assume b: "x <= 1" | |
| 1258 |   { fix n :: nat
 | |
| 1259 | have "2 * 2 ^ n \<le> fact (n + 2)" | |
| 1260 | by (induct n, simp, simp) | |
| 1261 | hence "real ((2::nat) * 2 ^ n) \<le> real (fact (n + 2))" | |
| 1262 | by (simp only: real_of_nat_le_iff) | |
| 1263 | hence "2 * 2 ^ n \<le> real (fact (n + 2))" | |
| 1264 | by simp | |
| 1265 | hence "inverse (fact (n + 2)) \<le> inverse (2 * 2 ^ n)" | |
| 1266 | by (rule le_imp_inverse_le) simp | |
| 1267 | hence "inverse (fact (n + 2)) \<le> 1/2 * (1/2)^n" | |
| 1268 | by (simp add: inverse_mult_distrib power_inverse) | |
| 1269 | hence "inverse (fact (n + 2)) * (x^n * x\<twosuperior>) \<le> 1/2 * (1/2)^n * (1 * x\<twosuperior>)" | |
| 1270 | by (rule mult_mono) | |
| 1271 | (rule mult_mono, simp_all add: power_le_one a b mult_nonneg_nonneg) | |
| 1272 | hence "inverse (fact (n + 2)) * x ^ (n + 2) \<le> (x\<twosuperior>/2) * ((1/2)^n)" | |
| 1273 | unfolding power_add by (simp add: mult_ac del: fact_Suc) } | |
| 1274 | note aux1 = this | |
| 1275 | have "(\<lambda>n. x\<twosuperior> / 2 * (1 / 2) ^ n) sums (x\<twosuperior> / 2 * (1 / (1 - 1 / 2)))" | |
| 1276 | by (intro sums_mult geometric_sums, simp) | |
| 1277 | hence aux2: "(\<lambda>n. (x::real) ^ 2 / 2 * (1 / 2) ^ n) sums x^2" | |
| 1278 | by simp | |
| 1279 | have "suminf (%n. inverse(fact (n+2)) * (x ^ (n+2))) <= x^2" | |
| 1280 | proof - | |
| 1281 | have "suminf (%n. inverse(fact (n+2)) * (x ^ (n+2))) <= | |
| 1282 | suminf (%n. (x^2/2) * ((1/2)^n))" | |
| 1283 | apply (rule summable_le) | |
| 1284 | apply (rule allI, rule aux1) | |
| 1285 | apply (rule summable_exp [THEN summable_ignore_initial_segment]) | |
| 1286 | by (rule sums_summable, rule aux2) | |
| 1287 | also have "... = x^2" | |
| 1288 | by (rule sums_unique [THEN sym], rule aux2) | |
| 1289 | finally show ?thesis . | |
| 1290 | qed | |
| 1291 | thus ?thesis unfolding exp_first_two_terms by auto | |
| 1292 | qed | |
| 1293 | ||
| 1294 | lemma ln_one_minus_pos_upper_bound: "0 <= x ==> x < 1 ==> ln (1 - x) <= - x" | |
| 1295 | proof - | |
| 1296 | assume a: "0 <= (x::real)" and b: "x < 1" | |
| 1297 | have "(1 - x) * (1 + x + x^2) = (1 - x^3)" | |
| 1298 | by (simp add: algebra_simps power2_eq_square power3_eq_cube) | |
| 1299 | also have "... <= 1" | |
| 1300 | by (auto simp add: a) | |
| 1301 | finally have "(1 - x) * (1 + x + x ^ 2) <= 1" . | |
| 1302 | moreover have c: "0 < 1 + x + x\<twosuperior>" | |
| 1303 | by (simp add: add_pos_nonneg a) | |
| 1304 | ultimately have "1 - x <= 1 / (1 + x + x^2)" | |
| 1305 | by (elim mult_imp_le_div_pos) | |
| 1306 | also have "... <= 1 / exp x" | |
| 1307 | apply (rule divide_left_mono) | |
| 1308 | apply (rule exp_bound, rule a) | |
| 1309 | apply (rule b [THEN less_imp_le]) | |
| 1310 | apply simp | |
| 1311 | apply (rule mult_pos_pos) | |
| 1312 | apply (rule c) | |
| 1313 | apply simp | |
| 1314 | done | |
| 1315 | also have "... = exp (-x)" | |
| 1316 | by (auto simp add: exp_minus divide_inverse) | |
| 1317 | finally have "1 - x <= exp (- x)" . | |
| 1318 | also have "1 - x = exp (ln (1 - x))" | |
| 1319 | proof - | |
| 1320 | have "0 < 1 - x" | |
| 1321 | by (insert b, auto) | |
| 1322 | thus ?thesis | |
| 1323 | by (auto simp only: exp_ln_iff [THEN sym]) | |
| 1324 | qed | |
| 1325 | finally have "exp (ln (1 - x)) <= exp (- x)" . | |
| 1326 | thus ?thesis by (auto simp only: exp_le_cancel_iff) | |
| 1327 | qed | |
| 1328 | ||
| 1329 | lemma exp_ge_add_one_self [simp]: "1 + (x::real) <= exp x" | |
| 1330 | apply (case_tac "0 <= x") | |
| 1331 | apply (erule exp_ge_add_one_self_aux) | |
| 1332 | apply (case_tac "x <= -1") | |
| 1333 | apply (subgoal_tac "1 + x <= 0") | |
| 1334 | apply (erule order_trans) | |
| 1335 | apply simp | |
| 1336 | apply simp | |
| 1337 | apply (subgoal_tac "1 + x = exp(ln (1 + x))") | |
| 1338 | apply (erule ssubst) | |
| 1339 | apply (subst exp_le_cancel_iff) | |
| 1340 | apply (subgoal_tac "ln (1 - (- x)) <= - (- x)") | |
| 1341 | apply simp | |
| 1342 | apply (rule ln_one_minus_pos_upper_bound) | |
| 1343 | apply auto | |
| 1344 | done | |
| 1345 | ||
| 51527 | 1346 | lemma ln_one_plus_pos_lower_bound: "0 <= x ==> x <= 1 ==> x - x^2 <= ln (1 + x)" | 
| 1347 | proof - | |
| 1348 | assume a: "0 <= x" and b: "x <= 1" | |
| 1349 | have "exp (x - x^2) = exp x / exp (x^2)" | |
| 1350 | by (rule exp_diff) | |
| 1351 | also have "... <= (1 + x + x^2) / exp (x ^2)" | |
| 1352 | apply (rule divide_right_mono) | |
| 1353 | apply (rule exp_bound) | |
| 1354 | apply (rule a, rule b) | |
| 1355 | apply simp | |
| 1356 | done | |
| 1357 | also have "... <= (1 + x + x^2) / (1 + x^2)" | |
| 1358 | apply (rule divide_left_mono) | |
| 1359 | apply (simp add: exp_ge_add_one_self_aux) | |
| 1360 | apply (simp add: a) | |
| 1361 | apply (simp add: mult_pos_pos add_pos_nonneg) | |
| 1362 | done | |
| 1363 | also from a have "... <= 1 + x" | |
| 1364 | by (simp add: field_simps add_strict_increasing zero_le_mult_iff) | |
| 1365 | finally have "exp (x - x^2) <= 1 + x" . | |
| 1366 | also have "... = exp (ln (1 + x))" | |
| 1367 | proof - | |
| 1368 | from a have "0 < 1 + x" by auto | |
| 1369 | thus ?thesis | |
| 1370 | by (auto simp only: exp_ln_iff [THEN sym]) | |
| 1371 | qed | |
| 1372 | finally have "exp (x - x ^ 2) <= exp (ln (1 + x))" . | |
| 1373 | thus ?thesis by (auto simp only: exp_le_cancel_iff) | |
| 1374 | qed | |
| 1375 | ||
| 1376 | lemma aux5: "x < 1 ==> ln(1 - x) = - ln(1 + x / (1 - x))" | |
| 1377 | proof - | |
| 1378 | assume a: "x < 1" | |
| 1379 | have "ln(1 - x) = - ln(1 / (1 - x))" | |
| 1380 | proof - | |
| 1381 | have "ln(1 - x) = - (- ln (1 - x))" | |
| 1382 | by auto | |
| 1383 | also have "- ln(1 - x) = ln 1 - ln(1 - x)" | |
| 1384 | by simp | |
| 1385 | also have "... = ln(1 / (1 - x))" | |
| 1386 | apply (rule ln_div [THEN sym]) | |
| 1387 | by (insert a, auto) | |
| 1388 | finally show ?thesis . | |
| 1389 | qed | |
| 1390 | also have " 1 / (1 - x) = 1 + x / (1 - x)" using a by(simp add:field_simps) | |
| 1391 | finally show ?thesis . | |
| 1392 | qed | |
| 1393 | ||
| 1394 | lemma ln_one_minus_pos_lower_bound: "0 <= x ==> x <= (1 / 2) ==> | |
| 1395 | - x - 2 * x^2 <= ln (1 - x)" | |
| 1396 | proof - | |
| 1397 | assume a: "0 <= x" and b: "x <= (1 / 2)" | |
| 1398 | from b have c: "x < 1" | |
| 1399 | by auto | |
| 1400 | then have "ln (1 - x) = - ln (1 + x / (1 - x))" | |
| 1401 | by (rule aux5) | |
| 1402 | also have "- (x / (1 - x)) <= ..." | |
| 1403 | proof - | |
| 1404 | have "ln (1 + x / (1 - x)) <= x / (1 - x)" | |
| 1405 | apply (rule ln_add_one_self_le_self) | |
| 1406 | apply (rule divide_nonneg_pos) | |
| 1407 | by (insert a c, auto) | |
| 1408 | thus ?thesis | |
| 1409 | by auto | |
| 1410 | qed | |
| 1411 | also have "- (x / (1 - x)) = -x / (1 - x)" | |
| 1412 | by auto | |
| 1413 | finally have d: "- x / (1 - x) <= ln (1 - x)" . | |
| 1414 | have "0 < 1 - x" using a b by simp | |
| 1415 | hence e: "-x - 2 * x^2 <= - x / (1 - x)" | |
| 1416 | using mult_right_le_one_le[of "x*x" "2*x"] a b | |
| 1417 | by (simp add:field_simps power2_eq_square) | |
| 1418 | from e d show "- x - 2 * x^2 <= ln (1 - x)" | |
| 1419 | by (rule order_trans) | |
| 1420 | qed | |
| 1421 | ||
| 1422 | lemma ln_add_one_self_le_self2: "-1 < x ==> ln(1 + x) <= x" | |
| 1423 | apply (subgoal_tac "ln (1 + x) \<le> ln (exp x)", simp) | |
| 1424 | apply (subst ln_le_cancel_iff) | |
| 1425 | apply auto | |
| 1426 | done | |
| 1427 | ||
| 1428 | lemma abs_ln_one_plus_x_minus_x_bound_nonneg: | |
| 1429 | "0 <= x ==> x <= 1 ==> abs(ln (1 + x) - x) <= x^2" | |
| 1430 | proof - | |
| 1431 | assume x: "0 <= x" | |
| 1432 | assume x1: "x <= 1" | |
| 1433 | from x have "ln (1 + x) <= x" | |
| 1434 | by (rule ln_add_one_self_le_self) | |
| 1435 | then have "ln (1 + x) - x <= 0" | |
| 1436 | by simp | |
| 1437 | then have "abs(ln(1 + x) - x) = - (ln(1 + x) - x)" | |
| 1438 | by (rule abs_of_nonpos) | |
| 1439 | also have "... = x - ln (1 + x)" | |
| 1440 | by simp | |
| 1441 | also have "... <= x^2" | |
| 1442 | proof - | |
| 1443 | from x x1 have "x - x^2 <= ln (1 + x)" | |
| 1444 | by (intro ln_one_plus_pos_lower_bound) | |
| 1445 | thus ?thesis | |
| 1446 | by simp | |
| 1447 | qed | |
| 1448 | finally show ?thesis . | |
| 1449 | qed | |
| 1450 | ||
| 1451 | lemma abs_ln_one_plus_x_minus_x_bound_nonpos: | |
| 1452 | "-(1 / 2) <= x ==> x <= 0 ==> abs(ln (1 + x) - x) <= 2 * x^2" | |
| 1453 | proof - | |
| 1454 | assume a: "-(1 / 2) <= x" | |
| 1455 | assume b: "x <= 0" | |
| 1456 | have "abs(ln (1 + x) - x) = x - ln(1 - (-x))" | |
| 1457 | apply (subst abs_of_nonpos) | |
| 1458 | apply simp | |
| 1459 | apply (rule ln_add_one_self_le_self2) | |
| 1460 | using a apply auto | |
| 1461 | done | |
| 1462 | also have "... <= 2 * x^2" | |
| 1463 | apply (subgoal_tac "- (-x) - 2 * (-x)^2 <= ln (1 - (-x))") | |
| 1464 | apply (simp add: algebra_simps) | |
| 1465 | apply (rule ln_one_minus_pos_lower_bound) | |
| 1466 | using a b apply auto | |
| 1467 | done | |
| 1468 | finally show ?thesis . | |
| 1469 | qed | |
| 1470 | ||
| 1471 | lemma abs_ln_one_plus_x_minus_x_bound: | |
| 1472 | "abs x <= 1 / 2 ==> abs(ln (1 + x) - x) <= 2 * x^2" | |
| 1473 | apply (case_tac "0 <= x") | |
| 1474 | apply (rule order_trans) | |
| 1475 | apply (rule abs_ln_one_plus_x_minus_x_bound_nonneg) | |
| 1476 | apply auto | |
| 1477 | apply (rule abs_ln_one_plus_x_minus_x_bound_nonpos) | |
| 1478 | apply auto | |
| 1479 | done | |
| 1480 | ||
| 1481 | lemma ln_x_over_x_mono: "exp 1 <= x ==> x <= y ==> (ln y / y) <= (ln x / x)" | |
| 1482 | proof - | |
| 1483 | assume x: "exp 1 <= x" "x <= y" | |
| 1484 | moreover have "0 < exp (1::real)" by simp | |
| 1485 | ultimately have a: "0 < x" and b: "0 < y" | |
| 1486 | by (fast intro: less_le_trans order_trans)+ | |
| 1487 | have "x * ln y - x * ln x = x * (ln y - ln x)" | |
| 1488 | by (simp add: algebra_simps) | |
| 1489 | also have "... = x * ln(y / x)" | |
| 1490 | by (simp only: ln_div a b) | |
| 1491 | also have "y / x = (x + (y - x)) / x" | |
| 1492 | by simp | |
| 1493 | also have "... = 1 + (y - x) / x" | |
| 1494 | using x a by (simp add: field_simps) | |
| 1495 | also have "x * ln(1 + (y - x) / x) <= x * ((y - x) / x)" | |
| 1496 | apply (rule mult_left_mono) | |
| 1497 | apply (rule ln_add_one_self_le_self) | |
| 1498 | apply (rule divide_nonneg_pos) | |
| 1499 | using x a apply simp_all | |
| 1500 | done | |
| 1501 | also have "... = y - x" using a by simp | |
| 1502 | also have "... = (y - x) * ln (exp 1)" by simp | |
| 1503 | also have "... <= (y - x) * ln x" | |
| 1504 | apply (rule mult_left_mono) | |
| 1505 | apply (subst ln_le_cancel_iff) | |
| 1506 | apply fact | |
| 1507 | apply (rule a) | |
| 1508 | apply (rule x) | |
| 1509 | using x apply simp | |
| 1510 | done | |
| 1511 | also have "... = y * ln x - x * ln x" | |
| 1512 | by (rule left_diff_distrib) | |
| 1513 | finally have "x * ln y <= y * ln x" | |
| 1514 | by arith | |
| 1515 | then have "ln y <= (y * ln x) / x" using a by (simp add: field_simps) | |
| 1516 | also have "... = y * (ln x / x)" by simp | |
| 1517 | finally show ?thesis using b by (simp add: field_simps) | |
| 1518 | qed | |
| 1519 | ||
| 1520 | lemma ln_le_minus_one: | |
| 1521 | "0 < x \<Longrightarrow> ln x \<le> x - 1" | |
| 1522 | using exp_ge_add_one_self[of "ln x"] by simp | |
| 1523 | ||
| 1524 | lemma ln_eq_minus_one: | |
| 1525 | assumes "0 < x" "ln x = x - 1" shows "x = 1" | |
| 1526 | proof - | |
| 1527 | let "?l y" = "ln y - y + 1" | |
| 1528 | have D: "\<And>x. 0 < x \<Longrightarrow> DERIV ?l x :> (1 / x - 1)" | |
| 1529 | by (auto intro!: DERIV_intros) | |
| 1530 | ||
| 1531 | show ?thesis | |
| 1532 | proof (cases rule: linorder_cases) | |
| 1533 | assume "x < 1" | |
| 1534 | from dense[OF `x < 1`] obtain a where "x < a" "a < 1" by blast | |
| 1535 | from `x < a` have "?l x < ?l a" | |
| 1536 | proof (rule DERIV_pos_imp_increasing, safe) | |
| 1537 | fix y assume "x \<le> y" "y \<le> a" | |
| 1538 | with `0 < x` `a < 1` have "0 < 1 / y - 1" "0 < y" | |
| 1539 | by (auto simp: field_simps) | |
| 1540 | with D show "\<exists>z. DERIV ?l y :> z \<and> 0 < z" | |
| 1541 | by auto | |
| 1542 | qed | |
| 1543 | also have "\<dots> \<le> 0" | |
| 1544 | using ln_le_minus_one `0 < x` `x < a` by (auto simp: field_simps) | |
| 1545 | finally show "x = 1" using assms by auto | |
| 1546 | next | |
| 1547 | assume "1 < x" | |
| 1548 | from dense[OF `1 < x`] obtain a where "1 < a" "a < x" by blast | |
| 1549 | from `a < x` have "?l x < ?l a" | |
| 1550 | proof (rule DERIV_neg_imp_decreasing, safe) | |
| 1551 | fix y assume "a \<le> y" "y \<le> x" | |
| 1552 | with `1 < a` have "1 / y - 1 < 0" "0 < y" | |
| 1553 | by (auto simp: field_simps) | |
| 1554 | with D show "\<exists>z. DERIV ?l y :> z \<and> z < 0" | |
| 1555 | by blast | |
| 1556 | qed | |
| 1557 | also have "\<dots> \<le> 0" | |
| 1558 | using ln_le_minus_one `1 < a` by (auto simp: field_simps) | |
| 1559 | finally show "x = 1" using assms by auto | |
| 1560 | qed simp | |
| 1561 | qed | |
| 1562 | ||
| 50326 | 1563 | lemma exp_at_bot: "(exp ---> (0::real)) at_bot" | 
| 1564 | unfolding tendsto_Zfun_iff | |
| 1565 | proof (rule ZfunI, simp add: eventually_at_bot_dense) | |
| 1566 | fix r :: real assume "0 < r" | |
| 1567 |   { fix x assume "x < ln r"
 | |
| 1568 | then have "exp x < exp (ln r)" | |
| 1569 | by simp | |
| 1570 | with `0 < r` have "exp x < r" | |
| 1571 | by simp } | |
| 1572 | then show "\<exists>k. \<forall>n<k. exp n < r" by auto | |
| 1573 | qed | |
| 1574 | ||
| 1575 | lemma exp_at_top: "LIM x at_top. exp x :: real :> at_top" | |
| 50346 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 1576 | by (rule filterlim_at_top_at_top[where Q="\<lambda>x. True" and P="\<lambda>x. 0 < x" and g="ln"]) | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 1577 | (auto intro: eventually_gt_at_top) | 
| 50326 | 1578 | |
| 1579 | lemma ln_at_0: "LIM x at_right 0. ln x :> at_bot" | |
| 50346 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 1580 | by (rule filterlim_at_bot_at_right[where Q="\<lambda>x. 0 < x" and P="\<lambda>x. True" and g="exp"]) | 
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51527diff
changeset | 1581 | (auto simp: eventually_at_filter) | 
| 50326 | 1582 | |
| 1583 | lemma ln_at_top: "LIM x at_top. ln x :> at_top" | |
| 50346 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 1584 | by (rule filterlim_at_top_at_top[where Q="\<lambda>x. 0 < x" and P="\<lambda>x. True" and g="exp"]) | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 1585 | (auto intro: eventually_gt_at_top) | 
| 50326 | 1586 | |
| 50347 | 1587 | lemma tendsto_power_div_exp_0: "((\<lambda>x. x ^ k / exp x) ---> (0::real)) at_top" | 
| 1588 | proof (induct k) | |
| 1589 | show "((\<lambda>x. x ^ 0 / exp x) ---> (0::real)) at_top" | |
| 1590 | by (simp add: inverse_eq_divide[symmetric]) | |
| 1591 | (metis filterlim_compose[OF tendsto_inverse_0] exp_at_top filterlim_mono | |
| 1592 | at_top_le_at_infinity order_refl) | |
| 1593 | next | |
| 1594 | case (Suc k) | |
| 1595 | show ?case | |
| 1596 | proof (rule lhospital_at_top_at_top) | |
| 1597 | show "eventually (\<lambda>x. DERIV (\<lambda>x. x ^ Suc k) x :> (real (Suc k) * x^k)) at_top" | |
| 1598 | by eventually_elim (intro DERIV_intros, simp, simp) | |
| 1599 | show "eventually (\<lambda>x. DERIV exp x :> exp x) at_top" | |
| 1600 | by eventually_elim (auto intro!: DERIV_intros) | |
| 1601 | show "eventually (\<lambda>x. exp x \<noteq> 0) at_top" | |
| 1602 | by auto | |
| 1603 | from tendsto_mult[OF tendsto_const Suc, of "real (Suc k)"] | |
| 1604 | show "((\<lambda>x. real (Suc k) * x ^ k / exp x) ---> 0) at_top" | |
| 1605 | by simp | |
| 1606 | qed (rule exp_at_top) | |
| 1607 | qed | |
| 1608 | ||
| 51527 | 1609 | |
| 1610 | definition | |
| 1611 | powr :: "[real,real] => real" (infixr "powr" 80) where | |
| 1612 |     --{*exponentation with real exponent*}
 | |
| 1613 | "x powr a = exp(a * ln x)" | |
| 1614 | ||
| 1615 | definition | |
| 1616 | log :: "[real,real] => real" where | |
| 1617 |     --{*logarithm of @{term x} to base @{term a}*}
 | |
| 1618 | "log a x = ln x / ln a" | |
| 1619 | ||
| 1620 | ||
| 1621 | lemma tendsto_log [tendsto_intros]: | |
| 1622 | "\<lbrakk>(f ---> a) F; (g ---> b) F; 0 < a; a \<noteq> 1; 0 < b\<rbrakk> \<Longrightarrow> ((\<lambda>x. log (f x) (g x)) ---> log a b) F" | |
| 1623 | unfolding log_def by (intro tendsto_intros) auto | |
| 1624 | ||
| 1625 | lemma continuous_log: | |
| 1626 | assumes "continuous F f" and "continuous F g" and "0 < f (Lim F (\<lambda>x. x))" and "f (Lim F (\<lambda>x. x)) \<noteq> 1" and "0 < g (Lim F (\<lambda>x. x))" | |
| 1627 | shows "continuous F (\<lambda>x. log (f x) (g x))" | |
| 1628 | using assms unfolding continuous_def by (rule tendsto_log) | |
| 1629 | ||
| 1630 | lemma continuous_at_within_log[continuous_intros]: | |
| 1631 | assumes "continuous (at a within s) f" "continuous (at a within s) g" and "0 < f a" and "f a \<noteq> 1" and "0 < g a" | |
| 1632 | shows "continuous (at a within s) (\<lambda>x. log (f x) (g x))" | |
| 1633 | using assms unfolding continuous_within by (rule tendsto_log) | |
| 1634 | ||
| 1635 | lemma isCont_log[continuous_intros, simp]: | |
| 1636 | assumes "isCont f a" "isCont g a" "0 < f a" "f a \<noteq> 1" "0 < g a" | |
| 1637 | shows "isCont (\<lambda>x. log (f x) (g x)) a" | |
| 1638 | using assms unfolding continuous_at by (rule tendsto_log) | |
| 1639 | ||
| 1640 | lemma continuous_on_log[continuous_on_intros]: | |
| 1641 | assumes "continuous_on s f" "continuous_on s g" and "\<forall>x\<in>s. 0 < f x" "\<forall>x\<in>s. f x \<noteq> 1" "\<forall>x\<in>s. 0 < g x" | |
| 1642 | shows "continuous_on s (\<lambda>x. log (f x) (g x))" | |
| 1643 | using assms unfolding continuous_on_def by (fast intro: tendsto_log) | |
| 1644 | ||
| 1645 | lemma powr_one_eq_one [simp]: "1 powr a = 1" | |
| 1646 | by (simp add: powr_def) | |
| 1647 | ||
| 1648 | lemma powr_zero_eq_one [simp]: "x powr 0 = 1" | |
| 1649 | by (simp add: powr_def) | |
| 1650 | ||
| 1651 | lemma powr_one_gt_zero_iff [simp]: "(x powr 1 = x) = (0 < x)" | |
| 1652 | by (simp add: powr_def) | |
| 1653 | declare powr_one_gt_zero_iff [THEN iffD2, simp] | |
| 1654 | ||
| 1655 | lemma powr_mult: | |
| 1656 | "[| 0 < x; 0 < y |] ==> (x * y) powr a = (x powr a) * (y powr a)" | |
| 1657 | by (simp add: powr_def exp_add [symmetric] ln_mult distrib_left) | |
| 1658 | ||
| 1659 | lemma powr_gt_zero [simp]: "0 < x powr a" | |
| 1660 | by (simp add: powr_def) | |
| 1661 | ||
| 1662 | lemma powr_ge_pzero [simp]: "0 <= x powr y" | |
| 1663 | by (rule order_less_imp_le, rule powr_gt_zero) | |
| 1664 | ||
| 1665 | lemma powr_not_zero [simp]: "x powr a \<noteq> 0" | |
| 1666 | by (simp add: powr_def) | |
| 1667 | ||
| 1668 | lemma powr_divide: | |
| 1669 | "[| 0 < x; 0 < y |] ==> (x / y) powr a = (x powr a)/(y powr a)" | |
| 1670 | apply (simp add: divide_inverse positive_imp_inverse_positive powr_mult) | |
| 1671 | apply (simp add: powr_def exp_minus [symmetric] exp_add [symmetric] ln_inverse) | |
| 1672 | done | |
| 1673 | ||
| 1674 | lemma powr_divide2: "x powr a / x powr b = x powr (a - b)" | |
| 1675 | apply (simp add: powr_def) | |
| 1676 | apply (subst exp_diff [THEN sym]) | |
| 1677 | apply (simp add: left_diff_distrib) | |
| 1678 | done | |
| 1679 | ||
| 1680 | lemma powr_add: "x powr (a + b) = (x powr a) * (x powr b)" | |
| 1681 | by (simp add: powr_def exp_add [symmetric] distrib_right) | |
| 1682 | ||
| 1683 | lemma powr_mult_base: | |
| 1684 | "0 < x \<Longrightarrow>x * x powr y = x powr (1 + y)" | |
| 1685 | using assms by (auto simp: powr_add) | |
| 1686 | ||
| 1687 | lemma powr_powr: "(x powr a) powr b = x powr (a * b)" | |
| 1688 | by (simp add: powr_def) | |
| 1689 | ||
| 1690 | lemma powr_powr_swap: "(x powr a) powr b = (x powr b) powr a" | |
| 1691 | by (simp add: powr_powr mult_commute) | |
| 1692 | ||
| 1693 | lemma powr_minus: "x powr (-a) = inverse (x powr a)" | |
| 1694 | by (simp add: powr_def exp_minus [symmetric]) | |
| 1695 | ||
| 1696 | lemma powr_minus_divide: "x powr (-a) = 1/(x powr a)" | |
| 1697 | by (simp add: divide_inverse powr_minus) | |
| 1698 | ||
| 1699 | lemma powr_less_mono: "[| a < b; 1 < x |] ==> x powr a < x powr b" | |
| 1700 | by (simp add: powr_def) | |
| 1701 | ||
| 1702 | lemma powr_less_cancel: "[| x powr a < x powr b; 1 < x |] ==> a < b" | |
| 1703 | by (simp add: powr_def) | |
| 1704 | ||
| 1705 | lemma powr_less_cancel_iff [simp]: "1 < x ==> (x powr a < x powr b) = (a < b)" | |
| 1706 | by (blast intro: powr_less_cancel powr_less_mono) | |
| 1707 | ||
| 1708 | lemma powr_le_cancel_iff [simp]: "1 < x ==> (x powr a \<le> x powr b) = (a \<le> b)" | |
| 1709 | by (simp add: linorder_not_less [symmetric]) | |
| 1710 | ||
| 1711 | lemma log_ln: "ln x = log (exp(1)) x" | |
| 1712 | by (simp add: log_def) | |
| 1713 | ||
| 1714 | lemma DERIV_log: assumes "x > 0" shows "DERIV (\<lambda>y. log b y) x :> 1 / (ln b * x)" | |
| 1715 | proof - | |
| 1716 | def lb \<equiv> "1 / ln b" | |
| 1717 | moreover have "DERIV (\<lambda>y. lb * ln y) x :> lb / x" | |
| 1718 | using `x > 0` by (auto intro!: DERIV_intros) | |
| 1719 | ultimately show ?thesis | |
| 1720 | by (simp add: log_def) | |
| 1721 | qed | |
| 1722 | ||
| 1723 | lemmas DERIV_log[THEN DERIV_chain2, THEN DERIV_cong, DERIV_intros] | |
| 1724 | ||
| 1725 | lemma powr_log_cancel [simp]: | |
| 1726 | "[| 0 < a; a \<noteq> 1; 0 < x |] ==> a powr (log a x) = x" | |
| 1727 | by (simp add: powr_def log_def) | |
| 1728 | ||
| 1729 | lemma log_powr_cancel [simp]: "[| 0 < a; a \<noteq> 1 |] ==> log a (a powr y) = y" | |
| 1730 | by (simp add: log_def powr_def) | |
| 1731 | ||
| 1732 | lemma log_mult: | |
| 1733 | "[| 0 < a; a \<noteq> 1; 0 < x; 0 < y |] | |
| 1734 | ==> log a (x * y) = log a x + log a y" | |
| 1735 | by (simp add: log_def ln_mult divide_inverse distrib_right) | |
| 1736 | ||
| 1737 | lemma log_eq_div_ln_mult_log: | |
| 1738 | "[| 0 < a; a \<noteq> 1; 0 < b; b \<noteq> 1; 0 < x |] | |
| 1739 | ==> log a x = (ln b/ln a) * log b x" | |
| 1740 | by (simp add: log_def divide_inverse) | |
| 1741 | ||
| 1742 | text{*Base 10 logarithms*}
 | |
| 1743 | lemma log_base_10_eq1: "0 < x ==> log 10 x = (ln (exp 1) / ln 10) * ln x" | |
| 1744 | by (simp add: log_def) | |
| 1745 | ||
| 1746 | lemma log_base_10_eq2: "0 < x ==> log 10 x = (log 10 (exp 1)) * ln x" | |
| 1747 | by (simp add: log_def) | |
| 1748 | ||
| 1749 | lemma log_one [simp]: "log a 1 = 0" | |
| 1750 | by (simp add: log_def) | |
| 1751 | ||
| 1752 | lemma log_eq_one [simp]: "[| 0 < a; a \<noteq> 1 |] ==> log a a = 1" | |
| 1753 | by (simp add: log_def) | |
| 1754 | ||
| 1755 | lemma log_inverse: | |
| 1756 | "[| 0 < a; a \<noteq> 1; 0 < x |] ==> log a (inverse x) = - log a x" | |
| 1757 | apply (rule_tac a1 = "log a x" in add_left_cancel [THEN iffD1]) | |
| 1758 | apply (simp add: log_mult [symmetric]) | |
| 1759 | done | |
| 1760 | ||
| 1761 | lemma log_divide: | |
| 1762 | "[|0 < a; a \<noteq> 1; 0 < x; 0 < y|] ==> log a (x/y) = log a x - log a y" | |
| 1763 | by (simp add: log_mult divide_inverse log_inverse) | |
| 1764 | ||
| 1765 | lemma log_less_cancel_iff [simp]: | |
| 1766 | "[| 1 < a; 0 < x; 0 < y |] ==> (log a x < log a y) = (x < y)" | |
| 1767 | apply safe | |
| 1768 | apply (rule_tac [2] powr_less_cancel) | |
| 1769 | apply (drule_tac a = "log a x" in powr_less_mono, auto) | |
| 1770 | done | |
| 1771 | ||
| 1772 | lemma log_inj: assumes "1 < b" shows "inj_on (log b) {0 <..}"
 | |
| 1773 | proof (rule inj_onI, simp) | |
| 1774 | fix x y assume pos: "0 < x" "0 < y" and *: "log b x = log b y" | |
| 1775 | show "x = y" | |
| 1776 | proof (cases rule: linorder_cases) | |
| 1777 | assume "x < y" hence "log b x < log b y" | |
| 1778 | using log_less_cancel_iff[OF `1 < b`] pos by simp | |
| 1779 | thus ?thesis using * by simp | |
| 1780 | next | |
| 1781 | assume "y < x" hence "log b y < log b x" | |
| 1782 | using log_less_cancel_iff[OF `1 < b`] pos by simp | |
| 1783 | thus ?thesis using * by simp | |
| 1784 | qed simp | |
| 1785 | qed | |
| 1786 | ||
| 1787 | lemma log_le_cancel_iff [simp]: | |
| 1788 | "[| 1 < a; 0 < x; 0 < y |] ==> (log a x \<le> log a y) = (x \<le> y)" | |
| 1789 | by (simp add: linorder_not_less [symmetric]) | |
| 1790 | ||
| 1791 | lemma zero_less_log_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> 0 < log a x \<longleftrightarrow> 1 < x" | |
| 1792 | using log_less_cancel_iff[of a 1 x] by simp | |
| 1793 | ||
| 1794 | lemma zero_le_log_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> 0 \<le> log a x \<longleftrightarrow> 1 \<le> x" | |
| 1795 | using log_le_cancel_iff[of a 1 x] by simp | |
| 1796 | ||
| 1797 | lemma log_less_zero_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> log a x < 0 \<longleftrightarrow> x < 1" | |
| 1798 | using log_less_cancel_iff[of a x 1] by simp | |
| 1799 | ||
| 1800 | lemma log_le_zero_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> log a x \<le> 0 \<longleftrightarrow> x \<le> 1" | |
| 1801 | using log_le_cancel_iff[of a x 1] by simp | |
| 1802 | ||
| 1803 | lemma one_less_log_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> 1 < log a x \<longleftrightarrow> a < x" | |
| 1804 | using log_less_cancel_iff[of a a x] by simp | |
| 1805 | ||
| 1806 | lemma one_le_log_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> 1 \<le> log a x \<longleftrightarrow> a \<le> x" | |
| 1807 | using log_le_cancel_iff[of a a x] by simp | |
| 1808 | ||
| 1809 | lemma log_less_one_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> log a x < 1 \<longleftrightarrow> x < a" | |
| 1810 | using log_less_cancel_iff[of a x a] by simp | |
| 1811 | ||
| 1812 | lemma log_le_one_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> log a x \<le> 1 \<longleftrightarrow> x \<le> a" | |
| 1813 | using log_le_cancel_iff[of a x a] by simp | |
| 1814 | ||
| 1815 | lemma powr_realpow: "0 < x ==> x powr (real n) = x^n" | |
| 1816 | apply (induct n, simp) | |
| 1817 | apply (subgoal_tac "real(Suc n) = real n + 1") | |
| 1818 | apply (erule ssubst) | |
| 1819 | apply (subst powr_add, simp, simp) | |
| 1820 | done | |
| 1821 | ||
| 52139 | 1822 | lemma powr_realpow_numeral: "0 < x \<Longrightarrow> x powr (numeral n :: real) = x^(numeral n)" | 
| 1823 | unfolding real_of_nat_numeral[symmetric] by (rule powr_realpow) | |
| 1824 | ||
| 51527 | 1825 | lemma powr_realpow2: "0 <= x ==> 0 < n ==> x^n = (if (x = 0) then 0 else x powr (real n))" | 
| 1826 | apply (case_tac "x = 0", simp, simp) | |
| 1827 | apply (rule powr_realpow [THEN sym], simp) | |
| 1828 | done | |
| 1829 | ||
| 1830 | lemma powr_int: | |
| 1831 | assumes "x > 0" | |
| 1832 | shows "x powr i = (if i \<ge> 0 then x ^ nat i else 1 / x ^ nat (-i))" | |
| 1833 | proof cases | |
| 1834 | assume "i < 0" | |
| 1835 | have r: "x powr i = 1 / x powr (-i)" by (simp add: powr_minus field_simps) | |
| 1836 | show ?thesis using `i < 0` `x > 0` by (simp add: r field_simps powr_realpow[symmetric]) | |
| 1837 | qed (simp add: assms powr_realpow[symmetric]) | |
| 1838 | ||
| 1839 | lemma powr_numeral: "0 < x \<Longrightarrow> x powr numeral n = x^numeral n" | |
| 1840 | using powr_realpow[of x "numeral n"] by simp | |
| 1841 | ||
| 1842 | lemma powr_neg_numeral: "0 < x \<Longrightarrow> x powr neg_numeral n = 1 / x^numeral n" | |
| 1843 | using powr_int[of x "neg_numeral n"] by simp | |
| 1844 | ||
| 1845 | lemma root_powr_inverse: | |
| 1846 | "0 < n \<Longrightarrow> 0 < x \<Longrightarrow> root n x = x powr (1/n)" | |
| 1847 | by (rule real_root_pos_unique) (auto simp: powr_realpow[symmetric] powr_powr) | |
| 1848 | ||
| 1849 | lemma ln_powr: "0 < x ==> 0 < y ==> ln(x powr y) = y * ln x" | |
| 1850 | by (unfold powr_def, simp) | |
| 1851 | ||
| 1852 | lemma log_powr: "0 < x ==> 0 \<le> y ==> log b (x powr y) = y * log b x" | |
| 1853 | apply (case_tac "y = 0") | |
| 1854 | apply force | |
| 1855 | apply (auto simp add: log_def ln_powr field_simps) | |
| 1856 | done | |
| 1857 | ||
| 1858 | lemma log_nat_power: "0 < x ==> log b (x^n) = real n * log b x" | |
| 1859 | apply (subst powr_realpow [symmetric]) | |
| 1860 | apply (auto simp add: log_powr) | |
| 1861 | done | |
| 1862 | ||
| 1863 | lemma ln_bound: "1 <= x ==> ln x <= x" | |
| 1864 | apply (subgoal_tac "ln(1 + (x - 1)) <= x - 1") | |
| 1865 | apply simp | |
| 1866 | apply (rule ln_add_one_self_le_self, simp) | |
| 1867 | done | |
| 1868 | ||
| 1869 | lemma powr_mono: "a <= b ==> 1 <= x ==> x powr a <= x powr b" | |
| 1870 | apply (case_tac "x = 1", simp) | |
| 1871 | apply (case_tac "a = b", simp) | |
| 1872 | apply (rule order_less_imp_le) | |
| 1873 | apply (rule powr_less_mono, auto) | |
| 1874 | done | |
| 1875 | ||
| 1876 | lemma ge_one_powr_ge_zero: "1 <= x ==> 0 <= a ==> 1 <= x powr a" | |
| 1877 | apply (subst powr_zero_eq_one [THEN sym]) | |
| 1878 | apply (rule powr_mono, assumption+) | |
| 1879 | done | |
| 1880 | ||
| 1881 | lemma powr_less_mono2: "0 < a ==> 0 < x ==> x < y ==> x powr a < | |
| 1882 | y powr a" | |
| 1883 | apply (unfold powr_def) | |
| 1884 | apply (rule exp_less_mono) | |
| 1885 | apply (rule mult_strict_left_mono) | |
| 1886 | apply (subst ln_less_cancel_iff, assumption) | |
| 1887 | apply (rule order_less_trans) | |
| 1888 | prefer 2 | |
| 1889 | apply assumption+ | |
| 1890 | done | |
| 1891 | ||
| 1892 | lemma powr_less_mono2_neg: "a < 0 ==> 0 < x ==> x < y ==> y powr a < | |
| 1893 | x powr a" | |
| 1894 | apply (unfold powr_def) | |
| 1895 | apply (rule exp_less_mono) | |
| 1896 | apply (rule mult_strict_left_mono_neg) | |
| 1897 | apply (subst ln_less_cancel_iff) | |
| 1898 | apply assumption | |
| 1899 | apply (rule order_less_trans) | |
| 1900 | prefer 2 | |
| 1901 | apply assumption+ | |
| 1902 | done | |
| 1903 | ||
| 1904 | lemma powr_mono2: "0 <= a ==> 0 < x ==> x <= y ==> x powr a <= y powr a" | |
| 1905 | apply (case_tac "a = 0", simp) | |
| 1906 | apply (case_tac "x = y", simp) | |
| 1907 | apply (rule order_less_imp_le) | |
| 1908 | apply (rule powr_less_mono2, auto) | |
| 1909 | done | |
| 1910 | ||
| 1911 | lemma powr_inj: | |
| 1912 | "0 < a \<Longrightarrow> a \<noteq> 1 \<Longrightarrow> a powr x = a powr y \<longleftrightarrow> x = y" | |
| 1913 | unfolding powr_def exp_inj_iff by simp | |
| 1914 | ||
| 1915 | lemma ln_powr_bound: "1 <= x ==> 0 < a ==> ln x <= (x powr a) / a" | |
| 1916 | apply (rule mult_imp_le_div_pos) | |
| 1917 | apply (assumption) | |
| 1918 | apply (subst mult_commute) | |
| 1919 | apply (subst ln_powr [THEN sym]) | |
| 1920 | apply auto | |
| 1921 | apply (rule ln_bound) | |
| 1922 | apply (erule ge_one_powr_ge_zero) | |
| 1923 | apply (erule order_less_imp_le) | |
| 1924 | done | |
| 1925 | ||
| 1926 | lemma ln_powr_bound2: | |
| 1927 | assumes "1 < x" and "0 < a" | |
| 1928 | shows "(ln x) powr a <= (a powr a) * x" | |
| 1929 | proof - | |
| 1930 | from assms have "ln x <= (x powr (1 / a)) / (1 / a)" | |
| 1931 | apply (intro ln_powr_bound) | |
| 1932 | apply (erule order_less_imp_le) | |
| 1933 | apply (rule divide_pos_pos) | |
| 1934 | apply simp_all | |
| 1935 | done | |
| 1936 | also have "... = a * (x powr (1 / a))" | |
| 1937 | by simp | |
| 1938 | finally have "(ln x) powr a <= (a * (x powr (1 / a))) powr a" | |
| 1939 | apply (intro powr_mono2) | |
| 1940 | apply (rule order_less_imp_le, rule assms) | |
| 1941 | apply (rule ln_gt_zero) | |
| 1942 | apply (rule assms) | |
| 1943 | apply assumption | |
| 1944 | done | |
| 1945 | also have "... = (a powr a) * ((x powr (1 / a)) powr a)" | |
| 1946 | apply (rule powr_mult) | |
| 1947 | apply (rule assms) | |
| 1948 | apply (rule powr_gt_zero) | |
| 1949 | done | |
| 1950 | also have "(x powr (1 / a)) powr a = x powr ((1 / a) * a)" | |
| 1951 | by (rule powr_powr) | |
| 1952 | also have "... = x" | |
| 1953 | apply simp | |
| 1954 | apply (subgoal_tac "a ~= 0") | |
| 1955 | using assms apply auto | |
| 1956 | done | |
| 1957 | finally show ?thesis . | |
| 1958 | qed | |
| 1959 | ||
| 1960 | lemma tendsto_powr [tendsto_intros]: | |
| 1961 | "\<lbrakk>(f ---> a) F; (g ---> b) F; 0 < a\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x powr g x) ---> a powr b) F" | |
| 1962 | unfolding powr_def by (intro tendsto_intros) | |
| 1963 | ||
| 1964 | lemma continuous_powr: | |
| 1965 | assumes "continuous F f" and "continuous F g" and "0 < f (Lim F (\<lambda>x. x))" | |
| 1966 | shows "continuous F (\<lambda>x. (f x) powr (g x))" | |
| 1967 | using assms unfolding continuous_def by (rule tendsto_powr) | |
| 1968 | ||
| 1969 | lemma continuous_at_within_powr[continuous_intros]: | |
| 1970 | assumes "continuous (at a within s) f" "continuous (at a within s) g" and "0 < f a" | |
| 1971 | shows "continuous (at a within s) (\<lambda>x. (f x) powr (g x))" | |
| 1972 | using assms unfolding continuous_within by (rule tendsto_powr) | |
| 1973 | ||
| 1974 | lemma isCont_powr[continuous_intros, simp]: | |
| 1975 | assumes "isCont f a" "isCont g a" "0 < f a" | |
| 1976 | shows "isCont (\<lambda>x. (f x) powr g x) a" | |
| 1977 | using assms unfolding continuous_at by (rule tendsto_powr) | |
| 1978 | ||
| 1979 | lemma continuous_on_powr[continuous_on_intros]: | |
| 1980 | assumes "continuous_on s f" "continuous_on s g" and "\<forall>x\<in>s. 0 < f x" | |
| 1981 | shows "continuous_on s (\<lambda>x. (f x) powr (g x))" | |
| 1982 | using assms unfolding continuous_on_def by (fast intro: tendsto_powr) | |
| 1983 | ||
| 1984 | (* FIXME: generalize by replacing d by with g x and g ---> d? *) | |
| 1985 | lemma tendsto_zero_powrI: | |
| 1986 | assumes "eventually (\<lambda>x. 0 < f x ) F" and "(f ---> 0) F" | |
| 1987 | assumes "0 < d" | |
| 1988 | shows "((\<lambda>x. f x powr d) ---> 0) F" | |
| 1989 | proof (rule tendstoI) | |
| 1990 | fix e :: real assume "0 < e" | |
| 1991 | def Z \<equiv> "e powr (1 / d)" | |
| 1992 | with `0 < e` have "0 < Z" by simp | |
| 1993 | with assms have "eventually (\<lambda>x. 0 < f x \<and> dist (f x) 0 < Z) F" | |
| 1994 | by (intro eventually_conj tendstoD) | |
| 1995 | moreover | |
| 1996 | from assms have "\<And>x. 0 < x \<and> dist x 0 < Z \<Longrightarrow> x powr d < Z powr d" | |
| 1997 | by (intro powr_less_mono2) (auto simp: dist_real_def) | |
| 1998 | with assms `0 < e` have "\<And>x. 0 < x \<and> dist x 0 < Z \<Longrightarrow> dist (x powr d) 0 < e" | |
| 1999 | unfolding dist_real_def Z_def by (auto simp: powr_powr) | |
| 2000 | ultimately | |
| 2001 | show "eventually (\<lambda>x. dist (f x powr d) 0 < e) F" by (rule eventually_elim1) | |
| 2002 | qed | |
| 2003 | ||
| 2004 | lemma tendsto_neg_powr: | |
| 2005 | assumes "s < 0" and "LIM x F. f x :> at_top" | |
| 2006 | shows "((\<lambda>x. f x powr s) ---> 0) F" | |
| 2007 | proof (rule tendstoI) | |
| 2008 | fix e :: real assume "0 < e" | |
| 2009 | def Z \<equiv> "e powr (1 / s)" | |
| 2010 | from assms have "eventually (\<lambda>x. Z < f x) F" | |
| 2011 | by (simp add: filterlim_at_top_dense) | |
| 2012 | moreover | |
| 2013 | from assms have "\<And>x. Z < x \<Longrightarrow> x powr s < Z powr s" | |
| 2014 | by (auto simp: Z_def intro!: powr_less_mono2_neg) | |
| 2015 | with assms `0 < e` have "\<And>x. Z < x \<Longrightarrow> dist (x powr s) 0 < e" | |
| 2016 | by (simp add: powr_powr Z_def dist_real_def) | |
| 2017 | ultimately | |
| 2018 | show "eventually (\<lambda>x. dist (f x powr s) 0 < e) F" by (rule eventually_elim1) | |
| 2019 | qed | |
| 2020 | ||
| 29164 | 2021 | subsection {* Sine and Cosine *}
 | 
| 2022 | ||
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2023 | definition sin_coeff :: "nat \<Rightarrow> real" where | 
| 31271 | 2024 | "sin_coeff = (\<lambda>n. if even n then 0 else -1 ^ ((n - Suc 0) div 2) / real (fact n))" | 
| 2025 | ||
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2026 | definition cos_coeff :: "nat \<Rightarrow> real" where | 
| 31271 | 2027 | "cos_coeff = (\<lambda>n. if even n then (-1 ^ (n div 2)) / real (fact n) else 0)" | 
| 2028 | ||
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2029 | definition sin :: "real \<Rightarrow> real" where | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2030 | "sin = (\<lambda>x. \<Sum>n. sin_coeff n * x ^ n)" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2031 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2032 | definition cos :: "real \<Rightarrow> real" where | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2033 | "cos = (\<lambda>x. \<Sum>n. cos_coeff n * x ^ n)" | 
| 31271 | 2034 | |
| 44319 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2035 | lemma sin_coeff_0 [simp]: "sin_coeff 0 = 0" | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2036 | unfolding sin_coeff_def by simp | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2037 | |
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2038 | lemma cos_coeff_0 [simp]: "cos_coeff 0 = 1" | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2039 | unfolding cos_coeff_def by simp | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2040 | |
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2041 | lemma sin_coeff_Suc: "sin_coeff (Suc n) = cos_coeff n / real (Suc n)" | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2042 | unfolding cos_coeff_def sin_coeff_def | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2043 | by (simp del: mult_Suc) | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2044 | |
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2045 | lemma cos_coeff_Suc: "cos_coeff (Suc n) = - sin_coeff n / real (Suc n)" | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2046 | unfolding cos_coeff_def sin_coeff_def | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2047 | by (simp del: mult_Suc, auto simp add: odd_Suc_mult_two_ex) | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2048 | |
| 31271 | 2049 | lemma summable_sin: "summable (\<lambda>n. sin_coeff n * x ^ n)" | 
| 2050 | unfolding sin_coeff_def | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2051 | apply (rule summable_comparison_test [OF _ summable_exp [where x="\<bar>x\<bar>"]]) | 
| 29164 | 2052 | apply (auto simp add: divide_inverse abs_mult power_abs [symmetric] zero_le_mult_iff) | 
| 2053 | done | |
| 2054 | ||
| 31271 | 2055 | lemma summable_cos: "summable (\<lambda>n. cos_coeff n * x ^ n)" | 
| 2056 | unfolding cos_coeff_def | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2057 | apply (rule summable_comparison_test [OF _ summable_exp [where x="\<bar>x\<bar>"]]) | 
| 29164 | 2058 | apply (auto simp add: divide_inverse abs_mult power_abs [symmetric] zero_le_mult_iff) | 
| 2059 | done | |
| 2060 | ||
| 31271 | 2061 | lemma sin_converges: "(\<lambda>n. sin_coeff n * x ^ n) sums sin(x)" | 
| 29164 | 2062 | unfolding sin_def by (rule summable_sin [THEN summable_sums]) | 
| 2063 | ||
| 31271 | 2064 | lemma cos_converges: "(\<lambda>n. cos_coeff n * x ^ n) sums cos(x)" | 
| 29164 | 2065 | unfolding cos_def by (rule summable_cos [THEN summable_sums]) | 
| 2066 | ||
| 44319 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2067 | lemma diffs_sin_coeff: "diffs sin_coeff = cos_coeff" | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2068 | by (simp add: diffs_def sin_coeff_Suc real_of_nat_def del: of_nat_Suc) | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2069 | |
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2070 | lemma diffs_cos_coeff: "diffs cos_coeff = (\<lambda>n. - sin_coeff n)" | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2071 | by (simp add: diffs_def cos_coeff_Suc real_of_nat_def del: of_nat_Suc) | 
| 29164 | 2072 | |
| 2073 | text{*Now at last we can get the derivatives of exp, sin and cos*}
 | |
| 2074 | ||
| 2075 | lemma DERIV_sin [simp]: "DERIV sin x :> cos(x)" | |
| 44319 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2076 | unfolding sin_def cos_def | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2077 | apply (rule DERIV_cong, rule termdiffs [where K="1 + \<bar>x\<bar>"]) | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2078 | apply (simp_all add: diffs_sin_coeff diffs_cos_coeff | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2079 | summable_minus summable_sin summable_cos) | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2080 | done | 
| 29164 | 2081 | |
| 51527 | 2082 | declare DERIV_sin[THEN DERIV_chain2, THEN DERIV_cong, DERIV_intros] | 
| 2083 | ||
| 29164 | 2084 | lemma DERIV_cos [simp]: "DERIV cos x :> -sin(x)" | 
| 44319 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2085 | unfolding cos_def sin_def | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2086 | apply (rule DERIV_cong, rule termdiffs [where K="1 + \<bar>x\<bar>"]) | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2087 | apply (simp_all add: diffs_sin_coeff diffs_cos_coeff diffs_minus | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2088 | summable_minus summable_sin summable_cos suminf_minus) | 
| 
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
 huffman parents: 
44318diff
changeset | 2089 | done | 
| 29164 | 2090 | |
| 51527 | 2091 | declare DERIV_cos[THEN DERIV_chain2, THEN DERIV_cong, DERIV_intros] | 
| 2092 | ||
| 44311 | 2093 | lemma isCont_sin: "isCont sin x" | 
| 2094 | by (rule DERIV_sin [THEN DERIV_isCont]) | |
| 2095 | ||
| 2096 | lemma isCont_cos: "isCont cos x" | |
| 2097 | by (rule DERIV_cos [THEN DERIV_isCont]) | |
| 2098 | ||
| 2099 | lemma isCont_sin' [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. sin (f x)) a" | |
| 2100 | by (rule isCont_o2 [OF _ isCont_sin]) | |
| 2101 | ||
| 2102 | lemma isCont_cos' [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. cos (f x)) a" | |
| 2103 | by (rule isCont_o2 [OF _ isCont_cos]) | |
| 2104 | ||
| 2105 | lemma tendsto_sin [tendsto_intros]: | |
| 2106 | "(f ---> a) F \<Longrightarrow> ((\<lambda>x. sin (f x)) ---> sin a) F" | |
| 2107 | by (rule isCont_tendsto_compose [OF isCont_sin]) | |
| 2108 | ||
| 2109 | lemma tendsto_cos [tendsto_intros]: | |
| 2110 | "(f ---> a) F \<Longrightarrow> ((\<lambda>x. cos (f x)) ---> cos a) F" | |
| 2111 | by (rule isCont_tendsto_compose [OF isCont_cos]) | |
| 29164 | 2112 | |
| 51478 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2113 | lemma continuous_sin [continuous_intros]: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2114 | "continuous F f \<Longrightarrow> continuous F (\<lambda>x. sin (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2115 | unfolding continuous_def by (rule tendsto_sin) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2116 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2117 | lemma continuous_on_sin [continuous_on_intros]: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2118 | "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. sin (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2119 | unfolding continuous_on_def by (auto intro: tendsto_sin) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2120 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2121 | lemma continuous_cos [continuous_intros]: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2122 | "continuous F f \<Longrightarrow> continuous F (\<lambda>x. cos (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2123 | unfolding continuous_def by (rule tendsto_cos) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2124 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2125 | lemma continuous_on_cos [continuous_on_intros]: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2126 | "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. cos (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2127 | unfolding continuous_on_def by (auto intro: tendsto_cos) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2128 | |
| 29164 | 2129 | subsection {* Properties of Sine and Cosine *}
 | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2130 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2131 | lemma sin_zero [simp]: "sin 0 = 0" | 
| 44311 | 2132 | unfolding sin_def sin_coeff_def by (simp add: powser_zero) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2133 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2134 | lemma cos_zero [simp]: "cos 0 = 1" | 
| 44311 | 2135 | unfolding cos_def cos_coeff_def by (simp add: powser_zero) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2136 | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2137 | lemma sin_cos_squared_add [simp]: "(sin x)\<twosuperior> + (cos x)\<twosuperior> = 1" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2138 | proof - | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2139 | have "\<forall>x. DERIV (\<lambda>x. (sin x)\<twosuperior> + (cos x)\<twosuperior>) x :> 0" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2140 | by (auto intro!: DERIV_intros) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2141 | hence "(sin x)\<twosuperior> + (cos x)\<twosuperior> = (sin 0)\<twosuperior> + (cos 0)\<twosuperior>" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2142 | by (rule DERIV_isconst_all) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2143 | thus "(sin x)\<twosuperior> + (cos x)\<twosuperior> = 1" by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2144 | qed | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2145 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2146 | lemma sin_cos_squared_add2 [simp]: "(cos x)\<twosuperior> + (sin x)\<twosuperior> = 1" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2147 | by (subst add_commute, rule sin_cos_squared_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2148 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2149 | lemma sin_cos_squared_add3 [simp]: "cos x * cos x + sin x * sin x = 1" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2150 | using sin_cos_squared_add2 [unfolded power2_eq_square] . | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2151 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2152 | lemma sin_squared_eq: "(sin x)\<twosuperior> = 1 - (cos x)\<twosuperior>" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2153 | unfolding eq_diff_eq by (rule sin_cos_squared_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2154 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2155 | lemma cos_squared_eq: "(cos x)\<twosuperior> = 1 - (sin x)\<twosuperior>" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2156 | unfolding eq_diff_eq by (rule sin_cos_squared_add2) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2157 | |
| 15081 | 2158 | lemma abs_sin_le_one [simp]: "\<bar>sin x\<bar> \<le> 1" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2159 | by (rule power2_le_imp_le, simp_all add: sin_squared_eq) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2160 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2161 | lemma sin_ge_minus_one [simp]: "-1 \<le> sin x" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2162 | using abs_sin_le_one [of x] unfolding abs_le_iff by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2163 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2164 | lemma sin_le_one [simp]: "sin x \<le> 1" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2165 | using abs_sin_le_one [of x] unfolding abs_le_iff by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2166 | |
| 15081 | 2167 | lemma abs_cos_le_one [simp]: "\<bar>cos x\<bar> \<le> 1" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2168 | by (rule power2_le_imp_le, simp_all add: cos_squared_eq) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2169 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2170 | lemma cos_ge_minus_one [simp]: "-1 \<le> cos x" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2171 | using abs_cos_le_one [of x] unfolding abs_le_iff by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2172 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2173 | lemma cos_le_one [simp]: "cos x \<le> 1" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2174 | using abs_cos_le_one [of x] unfolding abs_le_iff by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2175 | |
| 41970 | 2176 | lemma DERIV_fun_pow: "DERIV g x :> m ==> | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2177 | DERIV (%x. (g x) ^ n) x :> real n * (g x) ^ (n - 1) * m" | 
| 44311 | 2178 | by (auto intro!: DERIV_intros) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2179 | |
| 15229 | 2180 | lemma DERIV_fun_exp: | 
| 2181 | "DERIV g x :> m ==> DERIV (%x. exp(g x)) x :> exp(g x) * m" | |
| 44311 | 2182 | by (auto intro!: DERIV_intros) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2183 | |
| 15229 | 2184 | lemma DERIV_fun_sin: | 
| 2185 | "DERIV g x :> m ==> DERIV (%x. sin(g x)) x :> cos(g x) * m" | |
| 44311 | 2186 | by (auto intro!: DERIV_intros) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2187 | |
| 15229 | 2188 | lemma DERIV_fun_cos: | 
| 2189 | "DERIV g x :> m ==> DERIV (%x. cos(g x)) x :> -sin(g x) * m" | |
| 44311 | 2190 | by (auto intro!: DERIV_intros) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2191 | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2192 | lemma sin_cos_add_lemma: | 
| 41970 | 2193 | "(sin (x + y) - (sin x * cos y + cos x * sin y)) ^ 2 + | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2194 | (cos (x + y) - (cos x * cos y - sin x * sin y)) ^ 2 = 0" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2195 | (is "?f x = 0") | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2196 | proof - | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2197 | have "\<forall>x. DERIV (\<lambda>x. ?f x) x :> 0" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2198 | by (auto intro!: DERIV_intros simp add: algebra_simps) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2199 | hence "?f x = ?f 0" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2200 | by (rule DERIV_isconst_all) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2201 | thus ?thesis by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2202 | qed | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2203 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2204 | lemma sin_add: "sin (x + y) = sin x * cos y + cos x * sin y" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2205 | using sin_cos_add_lemma unfolding realpow_two_sum_zero_iff by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2206 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2207 | lemma cos_add: "cos (x + y) = cos x * cos y - sin x * sin y" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2208 | using sin_cos_add_lemma unfolding realpow_two_sum_zero_iff by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2209 | |
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2210 | lemma sin_cos_minus_lemma: | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2211 | "(sin(-x) + sin(x))\<twosuperior> + (cos(-x) - cos(x))\<twosuperior> = 0" (is "?f x = 0") | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2212 | proof - | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2213 | have "\<forall>x. DERIV (\<lambda>x. ?f x) x :> 0" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2214 | by (auto intro!: DERIV_intros simp add: algebra_simps) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2215 | hence "?f x = ?f 0" | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2216 | by (rule DERIV_isconst_all) | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2217 | thus ?thesis by simp | 
| 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2218 | qed | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2219 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2220 | lemma sin_minus [simp]: "sin (-x) = -sin(x)" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2221 | using sin_cos_minus_lemma [where x=x] by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2222 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2223 | lemma cos_minus [simp]: "cos (-x) = cos(x)" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2224 | using sin_cos_minus_lemma [where x=x] by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2225 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2226 | lemma sin_diff: "sin (x - y) = sin x * cos y - cos x * sin y" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2227 | by (simp add: diff_minus sin_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2228 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2229 | lemma sin_diff2: "sin (x - y) = cos y * sin x - sin y * cos x" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2230 | by (simp add: sin_diff mult_commute) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2231 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2232 | lemma cos_diff: "cos (x - y) = cos x * cos y + sin x * sin y" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2233 | by (simp add: diff_minus cos_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2234 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2235 | lemma cos_diff2: "cos (x - y) = cos y * cos x + sin y * sin x" | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2236 | by (simp add: cos_diff mult_commute) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2237 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2238 | lemma sin_double [simp]: "sin(2 * x) = 2* sin x * cos x" | 
| 29165 
562f95f06244
cleaned up some proofs; removed redundant simp rules
 huffman parents: 
29164diff
changeset | 2239 | using sin_add [where x=x and y=x] by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2240 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2241 | lemma cos_double: "cos(2* x) = ((cos x)\<twosuperior>) - ((sin x)\<twosuperior>)" | 
| 29165 
562f95f06244
cleaned up some proofs; removed redundant simp rules
 huffman parents: 
29164diff
changeset | 2242 | using cos_add [where x=x and y=x] | 
| 
562f95f06244
cleaned up some proofs; removed redundant simp rules
 huffman parents: 
29164diff
changeset | 2243 | by (simp add: power2_eq_square) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2244 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2245 | |
| 29164 | 2246 | subsection {* The Constant Pi *}
 | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2247 | |
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 2248 | definition pi :: "real" where | 
| 23053 | 2249 | "pi = 2 * (THE x. 0 \<le> (x::real) & x \<le> 2 & cos x = 0)" | 
| 23043 | 2250 | |
| 41970 | 2251 | text{*Show that there's a least positive @{term x} with @{term "cos(x) = 0"};
 | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2252 | hence define pi.*} | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2253 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2254 | lemma sin_paired: | 
| 41970 | 2255 | "(%n. -1 ^ n /(real (fact (2 * n + 1))) * x ^ (2 * n + 1)) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2256 | sums sin x" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2257 | proof - | 
| 31271 | 2258 | have "(\<lambda>n. \<Sum>k = n * 2..<n * 2 + 2. sin_coeff k * x ^ k) sums sin x" | 
| 44727 
d45acd50a894
modify lemma sums_group, and shorten proofs that use it
 huffman parents: 
44726diff
changeset | 2259 | by (rule sin_converges [THEN sums_group], simp) | 
| 31271 | 2260 | thus ?thesis unfolding One_nat_def sin_coeff_def by (simp add: mult_ac) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2261 | qed | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2262 | |
| 44728 | 2263 | lemma sin_gt_zero: | 
| 2264 | assumes "0 < x" and "x < 2" shows "0 < sin x" | |
| 2265 | proof - | |
| 2266 | let ?f = "\<lambda>n. \<Sum>k = n*2..<n*2+2. -1 ^ k / real (fact (2*k+1)) * x^(2*k+1)" | |
| 2267 | have pos: "\<forall>n. 0 < ?f n" | |
| 2268 | proof | |
| 2269 | fix n :: nat | |
| 2270 | let ?k2 = "real (Suc (Suc (4 * n)))" | |
| 2271 | let ?k3 = "real (Suc (Suc (Suc (4 * n))))" | |
| 2272 | have "x * x < ?k2 * ?k3" | |
| 2273 | using assms by (intro mult_strict_mono', simp_all) | |
| 2274 | hence "x * x * x * x ^ (n * 4) < ?k2 * ?k3 * x * x ^ (n * 4)" | |
| 2275 | by (intro mult_strict_right_mono zero_less_power `0 < x`) | |
| 2276 | thus "0 < ?f n" | |
| 2277 | by (simp del: mult_Suc, | |
| 2278 | simp add: less_divide_eq mult_pos_pos field_simps del: mult_Suc) | |
| 2279 | qed | |
| 2280 | have sums: "?f sums sin x" | |
| 2281 | by (rule sin_paired [THEN sums_group], simp) | |
| 2282 | show "0 < sin x" | |
| 2283 | unfolding sums_unique [OF sums] | |
| 2284 | using sums_summable [OF sums] pos | |
| 2285 | by (rule suminf_gt_zero) | |
| 2286 | qed | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2287 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2288 | lemma cos_double_less_one: "[| 0 < x; x < 2 |] ==> cos (2 * x) < 1" | 
| 44311 | 2289 | apply (cut_tac x = x in sin_gt_zero) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2290 | apply (auto simp add: cos_squared_eq cos_double) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2291 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2292 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2293 | lemma cos_paired: | 
| 23177 | 2294 | "(%n. -1 ^ n /(real (fact (2 * n))) * x ^ (2 * n)) sums cos x" | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2295 | proof - | 
| 31271 | 2296 | have "(\<lambda>n. \<Sum>k = n * 2..<n * 2 + 2. cos_coeff k * x ^ k) sums cos x" | 
| 44727 
d45acd50a894
modify lemma sums_group, and shorten proofs that use it
 huffman parents: 
44726diff
changeset | 2297 | by (rule cos_converges [THEN sums_group], simp) | 
| 31271 | 2298 | thus ?thesis unfolding cos_coeff_def by (simp add: mult_ac) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2299 | qed | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2300 | |
| 36824 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2301 | lemma real_mult_inverse_cancel: | 
| 41970 | 2302 | "[|(0::real) < x; 0 < x1; x1 * y < x * u |] | 
| 36824 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2303 | ==> inverse x * y < inverse x1 * u" | 
| 41970 | 2304 | apply (rule_tac c=x in mult_less_imp_less_left) | 
| 36824 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2305 | apply (auto simp add: mult_assoc [symmetric]) | 
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2306 | apply (simp (no_asm) add: mult_ac) | 
| 41970 | 2307 | apply (rule_tac c=x1 in mult_less_imp_less_right) | 
| 36824 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2308 | apply (auto simp add: mult_ac) | 
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2309 | done | 
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2310 | |
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2311 | lemma real_mult_inverse_cancel2: | 
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2312 | "[|(0::real) < x;0 < x1; x1 * y < x * u |] ==> y * inverse x < u * inverse x1" | 
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2313 | apply (auto dest: real_mult_inverse_cancel simp add: mult_ac) | 
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2314 | done | 
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2315 | |
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2316 | lemma realpow_num_eq_if: | 
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2317 | fixes m :: "'a::power" | 
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2318 | shows "m ^ n = (if n=0 then 1 else m * m ^ (n - 1))" | 
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2319 | by (cases n, auto) | 
| 
2e9a866141b8
move some theorems from RealPow.thy to Transcendental.thy
 huffman parents: 
36777diff
changeset | 2320 | |
| 23053 | 2321 | lemma cos_two_less_zero [simp]: "cos (2) < 0" | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2322 | apply (cut_tac x = 2 in cos_paired) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2323 | apply (drule sums_minus) | 
| 41970 | 2324 | apply (rule neg_less_iff_less [THEN iffD1]) | 
| 15539 | 2325 | apply (frule sums_unique, auto) | 
| 2326 | apply (rule_tac y = | |
| 23177 | 2327 | "\<Sum>n=0..< Suc(Suc(Suc 0)). - (-1 ^ n / (real(fact (2*n))) * 2 ^ (2*n))" | 
| 15481 | 2328 | in order_less_trans) | 
| 32047 | 2329 | apply (simp (no_asm) add: fact_num_eq_if_nat realpow_num_eq_if del: fact_Suc) | 
| 15561 | 2330 | apply (simp (no_asm) add: mult_assoc del: setsum_op_ivl_Suc) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2331 | apply (rule sumr_pos_lt_pair) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2332 | apply (erule sums_summable, safe) | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 2333 | unfolding One_nat_def | 
| 41970 | 2334 | apply (simp (no_asm) add: divide_inverse real_0_less_add_iff mult_assoc [symmetric] | 
| 32047 | 2335 | del: fact_Suc) | 
| 46240 
933f35c4e126
factor-cancellation simprocs now call the full simplifier to prove that factors are non-zero
 huffman parents: 
45915diff
changeset | 2336 | apply (simp add: inverse_eq_divide less_divide_eq del: fact_Suc) | 
| 32047 | 2337 | apply (subst fact_Suc [of "Suc (Suc (Suc (Suc (Suc (Suc (Suc (4 * d)))))))"]) | 
| 15481 | 2338 | apply (simp only: real_of_nat_mult) | 
| 23007 
e025695d9b0e
use mult_strict_mono instead of real_mult_less_mono
 huffman parents: 
22998diff
changeset | 2339 | apply (rule mult_strict_mono, force) | 
| 27483 
7c58324cd418
use real_of_nat_ge_zero instead of real_of_nat_fact_ge_zero
 huffman parents: 
25875diff
changeset | 2340 | apply (rule_tac [3] real_of_nat_ge_zero) | 
| 15481 | 2341 | prefer 2 apply force | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2342 | apply (rule real_of_nat_less_iff [THEN iffD2]) | 
| 32036 
8a9228872fbd
Moved factorial lemmas from Binomial.thy to Fact.thy and merged.
 avigad parents: 
31881diff
changeset | 2343 | apply (rule fact_less_mono_nat, auto) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2344 | done | 
| 23053 | 2345 | |
| 2346 | lemmas cos_two_neq_zero [simp] = cos_two_less_zero [THEN less_imp_neq] | |
| 2347 | lemmas cos_two_le_zero [simp] = cos_two_less_zero [THEN order_less_imp_le] | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2348 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2349 | lemma cos_is_zero: "EX! x. 0 \<le> x & x \<le> 2 & cos x = 0" | 
| 44730 | 2350 | proof (rule ex_ex1I) | 
| 2351 | show "\<exists>x. 0 \<le> x & x \<le> 2 & cos x = 0" | |
| 2352 | by (rule IVT2, simp_all) | |
| 2353 | next | |
| 2354 | fix x y | |
| 2355 | assume x: "0 \<le> x \<and> x \<le> 2 \<and> cos x = 0" | |
| 2356 | assume y: "0 \<le> y \<and> y \<le> 2 \<and> cos y = 0" | |
| 2357 | have [simp]: "\<forall>x. cos differentiable x" | |
| 2358 | unfolding differentiable_def by (auto intro: DERIV_cos) | |
| 2359 | from x y show "x = y" | |
| 2360 | apply (cut_tac less_linear [of x y], auto) | |
| 2361 | apply (drule_tac f = cos in Rolle) | |
| 2362 | apply (drule_tac [5] f = cos in Rolle) | |
| 2363 | apply (auto dest!: DERIV_cos [THEN DERIV_unique]) | |
| 2364 | apply (metis order_less_le_trans less_le sin_gt_zero) | |
| 2365 | apply (metis order_less_le_trans less_le sin_gt_zero) | |
| 2366 | done | |
| 2367 | qed | |
| 31880 | 2368 | |
| 23053 | 2369 | lemma pi_half: "pi/2 = (THE x. 0 \<le> x & x \<le> 2 & cos x = 0)" | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2370 | by (simp add: pi_def) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2371 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2372 | lemma cos_pi_half [simp]: "cos (pi / 2) = 0" | 
| 23053 | 2373 | by (simp add: pi_half cos_is_zero [THEN theI']) | 
| 2374 | ||
| 2375 | lemma pi_half_gt_zero [simp]: "0 < pi / 2" | |
| 2376 | apply (rule order_le_neq_trans) | |
| 2377 | apply (simp add: pi_half cos_is_zero [THEN theI']) | |
| 2378 | apply (rule notI, drule arg_cong [where f=cos], simp) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2379 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2380 | |
| 23053 | 2381 | lemmas pi_half_neq_zero [simp] = pi_half_gt_zero [THEN less_imp_neq, symmetric] | 
| 2382 | lemmas pi_half_ge_zero [simp] = pi_half_gt_zero [THEN order_less_imp_le] | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2383 | |
| 23053 | 2384 | lemma pi_half_less_two [simp]: "pi / 2 < 2" | 
| 2385 | apply (rule order_le_neq_trans) | |
| 2386 | apply (simp add: pi_half cos_is_zero [THEN theI']) | |
| 2387 | apply (rule notI, drule arg_cong [where f=cos], simp) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2388 | done | 
| 23053 | 2389 | |
| 2390 | lemmas pi_half_neq_two [simp] = pi_half_less_two [THEN less_imp_neq] | |
| 2391 | lemmas pi_half_le_two [simp] = pi_half_less_two [THEN order_less_imp_le] | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2392 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2393 | lemma pi_gt_zero [simp]: "0 < pi" | 
| 23053 | 2394 | by (insert pi_half_gt_zero, simp) | 
| 2395 | ||
| 2396 | lemma pi_ge_zero [simp]: "0 \<le> pi" | |
| 2397 | by (rule pi_gt_zero [THEN order_less_imp_le]) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2398 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2399 | lemma pi_neq_zero [simp]: "pi \<noteq> 0" | 
| 22998 | 2400 | by (rule pi_gt_zero [THEN less_imp_neq, THEN not_sym]) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2401 | |
| 23053 | 2402 | lemma pi_not_less_zero [simp]: "\<not> pi < 0" | 
| 2403 | by (simp add: linorder_not_less) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2404 | |
| 29165 
562f95f06244
cleaned up some proofs; removed redundant simp rules
 huffman parents: 
29164diff
changeset | 2405 | lemma minus_pi_half_less_zero: "-(pi/2) < 0" | 
| 
562f95f06244
cleaned up some proofs; removed redundant simp rules
 huffman parents: 
29164diff
changeset | 2406 | by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2407 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2408 | lemma m2pi_less_pi: "- (2 * pi) < pi" | 
| 45308 
2e84e5f0463b
extend cancellation simproc patterns to cover terms like '- (2 * pi) < pi'
 huffman parents: 
44756diff
changeset | 2409 | by simp | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2410 | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2411 | lemma sin_pi_half [simp]: "sin(pi/2) = 1" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2412 | apply (cut_tac x = "pi/2" in sin_cos_squared_add2) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2413 | apply (cut_tac sin_gt_zero [OF pi_half_gt_zero pi_half_less_two]) | 
| 36970 | 2414 | apply (simp add: power2_eq_1_iff) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2415 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2416 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2417 | lemma cos_pi [simp]: "cos pi = -1" | 
| 15539 | 2418 | by (cut_tac x = "pi/2" and y = "pi/2" in cos_add, simp) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2419 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2420 | lemma sin_pi [simp]: "sin pi = 0" | 
| 15539 | 2421 | by (cut_tac x = "pi/2" and y = "pi/2" in sin_add, simp) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2422 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2423 | lemma sin_cos_eq: "sin x = cos (pi/2 - x)" | 
| 45309 
5885ec8eb6b0
removed ad-hoc simp rules sin_cos_eq[symmetric], minus_sin_cos_eq[symmetric], cos_sin_eq[symmetric]
 huffman parents: 
45308diff
changeset | 2424 | by (simp add: cos_diff) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2425 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2426 | lemma minus_sin_cos_eq: "-sin x = cos (x + pi/2)" | 
| 15229 | 2427 | by (simp add: cos_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2428 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2429 | lemma cos_sin_eq: "cos x = sin (pi/2 - x)" | 
| 45309 
5885ec8eb6b0
removed ad-hoc simp rules sin_cos_eq[symmetric], minus_sin_cos_eq[symmetric], cos_sin_eq[symmetric]
 huffman parents: 
45308diff
changeset | 2430 | by (simp add: sin_diff) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2431 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2432 | lemma sin_periodic_pi [simp]: "sin (x + pi) = - sin x" | 
| 15229 | 2433 | by (simp add: sin_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2434 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2435 | lemma sin_periodic_pi2 [simp]: "sin (pi + x) = - sin x" | 
| 15229 | 2436 | by (simp add: sin_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2437 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2438 | lemma cos_periodic_pi [simp]: "cos (x + pi) = - cos x" | 
| 15229 | 2439 | by (simp add: cos_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2440 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2441 | lemma sin_periodic [simp]: "sin (x + 2*pi) = sin x" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2442 | by (simp add: sin_add cos_double) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2443 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2444 | lemma cos_periodic [simp]: "cos (x + 2*pi) = cos x" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2445 | by (simp add: cos_add cos_double) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2446 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2447 | lemma cos_npi [simp]: "cos (real n * pi) = -1 ^ n" | 
| 15251 | 2448 | apply (induct "n") | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 2449 | apply (auto simp add: real_of_nat_Suc distrib_right) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2450 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2451 | |
| 15383 | 2452 | lemma cos_npi2 [simp]: "cos (pi * real n) = -1 ^ n" | 
| 2453 | proof - | |
| 2454 | have "cos (pi * real n) = cos (real n * pi)" by (simp only: mult_commute) | |
| 41970 | 2455 | also have "... = -1 ^ n" by (rule cos_npi) | 
| 15383 | 2456 | finally show ?thesis . | 
| 2457 | qed | |
| 2458 | ||
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2459 | lemma sin_npi [simp]: "sin (real (n::nat) * pi) = 0" | 
| 15251 | 2460 | apply (induct "n") | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 2461 | apply (auto simp add: real_of_nat_Suc distrib_right) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2462 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2463 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2464 | lemma sin_npi2 [simp]: "sin (pi * real (n::nat)) = 0" | 
| 41970 | 2465 | by (simp add: mult_commute [of pi]) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2466 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2467 | lemma cos_two_pi [simp]: "cos (2 * pi) = 1" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2468 | by (simp add: cos_double) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2469 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2470 | lemma sin_two_pi [simp]: "sin (2 * pi) = 0" | 
| 15229 | 2471 | by simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2472 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2473 | lemma sin_gt_zero2: "[| 0 < x; x < pi/2 |] ==> 0 < sin x" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2474 | apply (rule sin_gt_zero, assumption) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2475 | apply (rule order_less_trans, assumption) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2476 | apply (rule pi_half_less_two) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2477 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2478 | |
| 41970 | 2479 | lemma sin_less_zero: | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2480 | assumes lb: "- pi/2 < x" and "x < 0" shows "sin x < 0" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2481 | proof - | 
| 41970 | 2482 | have "0 < sin (- x)" using assms by (simp only: sin_gt_zero2) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2483 | thus ?thesis by simp | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2484 | qed | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2485 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2486 | lemma pi_less_4: "pi < 4" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2487 | by (cut_tac pi_half_less_two, auto) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2488 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2489 | lemma cos_gt_zero: "[| 0 < x; x < pi/2 |] ==> 0 < cos x" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2490 | apply (cut_tac pi_less_4) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2491 | apply (cut_tac f = cos and a = 0 and b = x and y = 0 in IVT2_objl, safe, simp_all) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2492 | apply (cut_tac cos_is_zero, safe) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2493 | apply (rename_tac y z) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2494 | apply (drule_tac x = y in spec) | 
| 41970 | 2495 | apply (drule_tac x = "pi/2" in spec, simp) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2496 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2497 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2498 | lemma cos_gt_zero_pi: "[| -(pi/2) < x; x < pi/2 |] ==> 0 < cos x" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2499 | apply (rule_tac x = x and y = 0 in linorder_cases) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2500 | apply (rule cos_minus [THEN subst]) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2501 | apply (rule cos_gt_zero) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2502 | apply (auto intro: cos_gt_zero) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2503 | done | 
| 41970 | 2504 | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2505 | lemma cos_ge_zero: "[| -(pi/2) \<le> x; x \<le> pi/2 |] ==> 0 \<le> cos x" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2506 | apply (auto simp add: order_le_less cos_gt_zero_pi) | 
| 41970 | 2507 | apply (subgoal_tac "x = pi/2", auto) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2508 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2509 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2510 | lemma sin_gt_zero_pi: "[| 0 < x; x < pi |] ==> 0 < sin x" | 
| 45309 
5885ec8eb6b0
removed ad-hoc simp rules sin_cos_eq[symmetric], minus_sin_cos_eq[symmetric], cos_sin_eq[symmetric]
 huffman parents: 
45308diff
changeset | 2511 | by (simp add: sin_cos_eq cos_gt_zero_pi) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2512 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2513 | lemma pi_ge_two: "2 \<le> pi" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2514 | proof (rule ccontr) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2515 | assume "\<not> 2 \<le> pi" hence "pi < 2" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2516 | have "\<exists>y > pi. y < 2 \<and> y < 2 * pi" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2517 | proof (cases "2 < 2 * pi") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2518 | case True with dense[OF `pi < 2`] show ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2519 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2520 | case False have "pi < 2 * pi" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2521 | from dense[OF this] and False show ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2522 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2523 | then obtain y where "pi < y" and "y < 2" and "y < 2 * pi" by blast | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2524 | hence "0 < sin y" using sin_gt_zero by auto | 
| 41970 | 2525 | moreover | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2526 | have "sin y < 0" using sin_gt_zero_pi[of "y - pi"] `pi < y` and `y < 2 * pi` sin_periodic_pi[of "y - pi"] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2527 | ultimately show False by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2528 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2529 | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2530 | lemma sin_ge_zero: "[| 0 \<le> x; x \<le> pi |] ==> 0 \<le> sin x" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2531 | by (auto simp add: order_le_less sin_gt_zero_pi) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2532 | |
| 44745 | 2533 | text {* FIXME: This proof is almost identical to lemma @{text cos_is_zero}.
 | 
| 2534 | It should be possible to factor out some of the common parts. *} | |
| 2535 | ||
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2536 | lemma cos_total: "[| -1 \<le> y; y \<le> 1 |] ==> EX! x. 0 \<le> x & x \<le> pi & (cos x = y)" | 
| 44745 | 2537 | proof (rule ex_ex1I) | 
| 2538 | assume y: "-1 \<le> y" "y \<le> 1" | |
| 2539 | show "\<exists>x. 0 \<le> x & x \<le> pi & cos x = y" | |
| 2540 | by (rule IVT2, simp_all add: y) | |
| 2541 | next | |
| 2542 | fix a b | |
| 2543 | assume a: "0 \<le> a \<and> a \<le> pi \<and> cos a = y" | |
| 2544 | assume b: "0 \<le> b \<and> b \<le> pi \<and> cos b = y" | |
| 2545 | have [simp]: "\<forall>x. cos differentiable x" | |
| 2546 | unfolding differentiable_def by (auto intro: DERIV_cos) | |
| 2547 | from a b show "a = b" | |
| 2548 | apply (cut_tac less_linear [of a b], auto) | |
| 2549 | apply (drule_tac f = cos in Rolle) | |
| 2550 | apply (drule_tac [5] f = cos in Rolle) | |
| 2551 | apply (auto dest!: DERIV_cos [THEN DERIV_unique]) | |
| 2552 | apply (metis order_less_le_trans less_le sin_gt_zero_pi) | |
| 2553 | apply (metis order_less_le_trans less_le sin_gt_zero_pi) | |
| 2554 | done | |
| 2555 | qed | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2556 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2557 | lemma sin_total: | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2558 | "[| -1 \<le> y; y \<le> 1 |] ==> EX! x. -(pi/2) \<le> x & x \<le> pi/2 & (sin x = y)" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2559 | apply (rule ccontr) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2560 | apply (subgoal_tac "\<forall>x. (- (pi/2) \<le> x & x \<le> pi/2 & (sin x = y)) = (0 \<le> (x + pi/2) & (x + pi/2) \<le> pi & (cos (x + pi/2) = -y))") | 
| 18585 | 2561 | apply (erule contrapos_np) | 
| 45309 
5885ec8eb6b0
removed ad-hoc simp rules sin_cos_eq[symmetric], minus_sin_cos_eq[symmetric], cos_sin_eq[symmetric]
 huffman parents: 
45308diff
changeset | 2562 | apply simp | 
| 41970 | 2563 | apply (cut_tac y="-y" in cos_total, simp) apply simp | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2564 | apply (erule ex1E) | 
| 15229 | 2565 | apply (rule_tac a = "x - (pi/2)" in ex1I) | 
| 23286 | 2566 | apply (simp (no_asm) add: add_assoc) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2567 | apply (rotate_tac 3) | 
| 45309 
5885ec8eb6b0
removed ad-hoc simp rules sin_cos_eq[symmetric], minus_sin_cos_eq[symmetric], cos_sin_eq[symmetric]
 huffman parents: 
45308diff
changeset | 2568 | apply (drule_tac x = "xa + pi/2" in spec, safe, simp_all add: cos_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2569 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2570 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2571 | lemma reals_Archimedean4: | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2572 | "[| 0 < y; 0 \<le> x |] ==> \<exists>n. real n * y \<le> x & x < real (Suc n) * y" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2573 | apply (auto dest!: reals_Archimedean3) | 
| 41970 | 2574 | apply (drule_tac x = x in spec, clarify) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2575 | apply (subgoal_tac "x < real(LEAST m::nat. x < real m * y) * y") | 
| 41970 | 2576 | prefer 2 apply (erule LeastI) | 
| 2577 | apply (case_tac "LEAST m::nat. x < real m * y", simp) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2578 | apply (subgoal_tac "~ x < real nat * y") | 
| 41970 | 2579 | prefer 2 apply (rule not_less_Least, simp, force) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2580 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2581 | |
| 41970 | 2582 | (* Pre Isabelle99-2 proof was simpler- numerals arithmetic | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2583 | now causes some unwanted re-arrangements of literals! *) | 
| 15229 | 2584 | lemma cos_zero_lemma: | 
| 41970 | 2585 | "[| 0 \<le> x; cos x = 0 |] ==> | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2586 | \<exists>n::nat. ~even n & x = real n * (pi/2)" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2587 | apply (drule pi_gt_zero [THEN reals_Archimedean4], safe) | 
| 41970 | 2588 | apply (subgoal_tac "0 \<le> x - real n * pi & | 
| 15086 | 2589 | (x - real n * pi) \<le> pi & (cos (x - real n * pi) = 0) ") | 
| 29667 | 2590 | apply (auto simp add: algebra_simps real_of_nat_Suc) | 
| 2591 | prefer 2 apply (simp add: cos_diff) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2592 | apply (simp add: cos_diff) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2593 | apply (subgoal_tac "EX! x. 0 \<le> x & x \<le> pi & cos x = 0") | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2594 | apply (rule_tac [2] cos_total, safe) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2595 | apply (drule_tac x = "x - real n * pi" in spec) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2596 | apply (drule_tac x = "pi/2" in spec) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2597 | apply (simp add: cos_diff) | 
| 15229 | 2598 | apply (rule_tac x = "Suc (2 * n)" in exI) | 
| 29667 | 2599 | apply (simp add: real_of_nat_Suc algebra_simps, auto) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2600 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2601 | |
| 15229 | 2602 | lemma sin_zero_lemma: | 
| 41970 | 2603 | "[| 0 \<le> x; sin x = 0 |] ==> | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2604 | \<exists>n::nat. even n & x = real n * (pi/2)" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2605 | apply (subgoal_tac "\<exists>n::nat. ~ even n & x + pi/2 = real n * (pi/2) ") | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2606 | apply (clarify, rule_tac x = "n - 1" in exI) | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 2607 | apply (force simp add: odd_Suc_mult_two_ex real_of_nat_Suc distrib_right) | 
| 15085 
5693a977a767
removed some [iff] declarations from RealDef.thy, concerning inequalities
 paulson parents: 
15081diff
changeset | 2608 | apply (rule cos_zero_lemma) | 
| 45309 
5885ec8eb6b0
removed ad-hoc simp rules sin_cos_eq[symmetric], minus_sin_cos_eq[symmetric], cos_sin_eq[symmetric]
 huffman parents: 
45308diff
changeset | 2609 | apply (simp_all add: cos_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2610 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2611 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2612 | |
| 15229 | 2613 | lemma cos_zero_iff: | 
| 41970 | 2614 | "(cos x = 0) = | 
| 2615 | ((\<exists>n::nat. ~even n & (x = real n * (pi/2))) | | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2616 | (\<exists>n::nat. ~even n & (x = -(real n * (pi/2)))))" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2617 | apply (rule iffI) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2618 | apply (cut_tac linorder_linear [of 0 x], safe) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2619 | apply (drule cos_zero_lemma, assumption+) | 
| 41970 | 2620 | apply (cut_tac x="-x" in cos_zero_lemma, simp, simp) | 
| 2621 | apply (force simp add: minus_equation_iff [of x]) | |
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 2622 | apply (auto simp only: odd_Suc_mult_two_ex real_of_nat_Suc distrib_right) | 
| 15539 | 2623 | apply (auto simp add: cos_add) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2624 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2625 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2626 | (* ditto: but to a lesser extent *) | 
| 15229 | 2627 | lemma sin_zero_iff: | 
| 41970 | 2628 | "(sin x = 0) = | 
| 2629 | ((\<exists>n::nat. even n & (x = real n * (pi/2))) | | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2630 | (\<exists>n::nat. even n & (x = -(real n * (pi/2)))))" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2631 | apply (rule iffI) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2632 | apply (cut_tac linorder_linear [of 0 x], safe) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2633 | apply (drule sin_zero_lemma, assumption+) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2634 | apply (cut_tac x="-x" in sin_zero_lemma, simp, simp, safe) | 
| 41970 | 2635 | apply (force simp add: minus_equation_iff [of x]) | 
| 15539 | 2636 | apply (auto simp add: even_mult_two_ex) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2637 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2638 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2639 | lemma cos_monotone_0_pi: assumes "0 \<le> y" and "y < x" and "x \<le> pi" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2640 | shows "cos x < cos y" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2641 | proof - | 
| 33549 | 2642 | have "- (x - y) < 0" using assms by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2643 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2644 | from MVT2[OF `y < x` DERIV_cos[THEN impI, THEN allI]] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2645 | obtain z where "y < z" and "z < x" and cos_diff: "cos x - cos y = (x - y) * - sin z" by auto | 
| 33549 | 2646 | hence "0 < z" and "z < pi" using assms by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2647 | hence "0 < sin z" using sin_gt_zero_pi by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2648 | hence "cos x - cos y < 0" unfolding cos_diff minus_mult_commute[symmetric] using `- (x - y) < 0` by (rule mult_pos_neg2) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2649 | thus ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2650 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2651 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2652 | lemma cos_monotone_0_pi': assumes "0 \<le> y" and "y \<le> x" and "x \<le> pi" shows "cos x \<le> cos y" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2653 | proof (cases "y < x") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2654 | case True show ?thesis using cos_monotone_0_pi[OF `0 \<le> y` True `x \<le> pi`] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2655 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2656 | case False hence "y = x" using `y \<le> x` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2657 | thus ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2658 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2659 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2660 | lemma cos_monotone_minus_pi_0: assumes "-pi \<le> y" and "y < x" and "x \<le> 0" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2661 | shows "cos y < cos x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2662 | proof - | 
| 33549 | 2663 | have "0 \<le> -x" and "-x < -y" and "-y \<le> pi" using assms by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2664 | from cos_monotone_0_pi[OF this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2665 | show ?thesis unfolding cos_minus . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2666 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2667 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2668 | lemma cos_monotone_minus_pi_0': assumes "-pi \<le> y" and "y \<le> x" and "x \<le> 0" shows "cos y \<le> cos x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2669 | proof (cases "y < x") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2670 | case True show ?thesis using cos_monotone_minus_pi_0[OF `-pi \<le> y` True `x \<le> 0`] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2671 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2672 | case False hence "y = x" using `y \<le> x` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2673 | thus ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2674 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2675 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2676 | lemma sin_monotone_2pi': assumes "- (pi / 2) \<le> y" and "y \<le> x" and "x \<le> pi / 2" shows "sin y \<le> sin x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2677 | proof - | 
| 33549 | 2678 | have "0 \<le> y + pi / 2" and "y + pi / 2 \<le> x + pi / 2" and "x + pi /2 \<le> pi" | 
| 2679 | using pi_ge_two and assms by auto | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2680 | from cos_monotone_0_pi'[OF this] show ?thesis unfolding minus_sin_cos_eq[symmetric] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2681 | qed | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2682 | |
| 29164 | 2683 | subsection {* Tangent *}
 | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2684 | |
| 44311 | 2685 | definition tan :: "real \<Rightarrow> real" where | 
| 2686 | "tan = (\<lambda>x. sin x / cos x)" | |
| 23043 | 2687 | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2688 | lemma tan_zero [simp]: "tan 0 = 0" | 
| 44311 | 2689 | by (simp add: tan_def) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2690 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2691 | lemma tan_pi [simp]: "tan pi = 0" | 
| 44311 | 2692 | by (simp add: tan_def) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2693 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2694 | lemma tan_npi [simp]: "tan (real (n::nat) * pi) = 0" | 
| 44311 | 2695 | by (simp add: tan_def) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2696 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2697 | lemma tan_minus [simp]: "tan (-x) = - tan x" | 
| 44311 | 2698 | by (simp add: tan_def) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2699 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2700 | lemma tan_periodic [simp]: "tan (x + 2*pi) = tan x" | 
| 44311 | 2701 | by (simp add: tan_def) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2702 | |
| 41970 | 2703 | lemma lemma_tan_add1: | 
| 44311 | 2704 | "\<lbrakk>cos x \<noteq> 0; cos y \<noteq> 0\<rbrakk> \<Longrightarrow> 1 - tan x * tan y = cos (x + y)/(cos x * cos y)" | 
| 2705 | by (simp add: tan_def cos_add field_simps) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2706 | |
| 41970 | 2707 | lemma add_tan_eq: | 
| 44311 | 2708 | "\<lbrakk>cos x \<noteq> 0; cos y \<noteq> 0\<rbrakk> \<Longrightarrow> tan x + tan y = sin(x + y)/(cos x * cos y)" | 
| 2709 | by (simp add: tan_def sin_add field_simps) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2710 | |
| 15229 | 2711 | lemma tan_add: | 
| 41970 | 2712 | "[| cos x \<noteq> 0; cos y \<noteq> 0; cos (x + y) \<noteq> 0 |] | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2713 | ==> tan(x + y) = (tan(x) + tan(y))/(1 - tan(x) * tan(y))" | 
| 44311 | 2714 | by (simp add: add_tan_eq lemma_tan_add1, simp add: tan_def) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2715 | |
| 15229 | 2716 | lemma tan_double: | 
| 41970 | 2717 | "[| cos x \<noteq> 0; cos (2 * x) \<noteq> 0 |] | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2718 | ==> tan (2 * x) = (2 * tan x)/(1 - (tan(x) ^ 2))" | 
| 44311 | 2719 | using tan_add [of x x] by (simp add: power2_eq_square) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2720 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2721 | lemma tan_gt_zero: "[| 0 < x; x < pi/2 |] ==> 0 < tan x" | 
| 41970 | 2722 | by (simp add: tan_def zero_less_divide_iff sin_gt_zero2 cos_gt_zero_pi) | 
| 2723 | ||
| 2724 | lemma tan_less_zero: | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2725 | assumes lb: "- pi/2 < x" and "x < 0" shows "tan x < 0" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2726 | proof - | 
| 41970 | 2727 | have "0 < tan (- x)" using assms by (simp only: tan_gt_zero) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2728 | thus ?thesis by simp | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2729 | qed | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2730 | |
| 44756 
efcd71fbaeec
simplify proof of tan_half, removing unused assumptions
 huffman parents: 
44755diff
changeset | 2731 | lemma tan_half: "tan x = sin (2 * x) / (cos (2 * x) + 1)" | 
| 
efcd71fbaeec
simplify proof of tan_half, removing unused assumptions
 huffman parents: 
44755diff
changeset | 2732 | unfolding tan_def sin_double cos_double sin_squared_eq | 
| 
efcd71fbaeec
simplify proof of tan_half, removing unused assumptions
 huffman parents: 
44755diff
changeset | 2733 | by (simp add: power2_eq_square) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2734 | |
| 44311 | 2735 | lemma DERIV_tan [simp]: "cos x \<noteq> 0 \<Longrightarrow> DERIV tan x :> inverse ((cos x)\<twosuperior>)" | 
| 2736 | unfolding tan_def | |
| 2737 | by (auto intro!: DERIV_intros, simp add: divide_inverse power2_eq_square) | |
| 2738 | ||
| 2739 | lemma isCont_tan: "cos x \<noteq> 0 \<Longrightarrow> isCont tan x" | |
| 2740 | by (rule DERIV_tan [THEN DERIV_isCont]) | |
| 2741 | ||
| 2742 | lemma isCont_tan' [simp]: | |
| 2743 | "\<lbrakk>isCont f a; cos (f a) \<noteq> 0\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. tan (f x)) a" | |
| 2744 | by (rule isCont_o2 [OF _ isCont_tan]) | |
| 2745 | ||
| 2746 | lemma tendsto_tan [tendsto_intros]: | |
| 2747 | "\<lbrakk>(f ---> a) F; cos a \<noteq> 0\<rbrakk> \<Longrightarrow> ((\<lambda>x. tan (f x)) ---> tan a) F" | |
| 2748 | by (rule isCont_tendsto_compose [OF isCont_tan]) | |
| 2749 | ||
| 51478 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2750 | lemma continuous_tan: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2751 | "continuous F f \<Longrightarrow> cos (f (Lim F (\<lambda>x. x))) \<noteq> 0 \<Longrightarrow> continuous F (\<lambda>x. tan (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2752 | unfolding continuous_def by (rule tendsto_tan) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2753 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2754 | lemma isCont_tan'' [continuous_intros]: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2755 | "continuous (at x) f \<Longrightarrow> cos (f x) \<noteq> 0 \<Longrightarrow> continuous (at x) (\<lambda>x. tan (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2756 | unfolding continuous_at by (rule tendsto_tan) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2757 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2758 | lemma continuous_within_tan [continuous_intros]: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2759 | "continuous (at x within s) f \<Longrightarrow> cos (f x) \<noteq> 0 \<Longrightarrow> continuous (at x within s) (\<lambda>x. tan (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2760 | unfolding continuous_within by (rule tendsto_tan) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2761 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2762 | lemma continuous_on_tan [continuous_on_intros]: | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2763 | "continuous_on s f \<Longrightarrow> (\<forall>x\<in>s. cos (f x) \<noteq> 0) \<Longrightarrow> continuous_on s (\<lambda>x. tan (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2764 | unfolding continuous_on_def by (auto intro: tendsto_tan) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 2765 | |
| 44311 | 2766 | lemma LIM_cos_div_sin: "(%x. cos(x)/sin(x)) -- pi/2 --> 0" | 
| 2767 | by (rule LIM_cong_limit, (rule tendsto_intros)+, simp_all) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2768 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2769 | lemma lemma_tan_total: "0 < y ==> \<exists>x. 0 < x & x < pi/2 & y < tan x" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2770 | apply (cut_tac LIM_cos_div_sin) | 
| 31338 
d41a8ba25b67
generalize constants from Lim.thy to class metric_space
 huffman parents: 
31271diff
changeset | 2771 | apply (simp only: LIM_eq) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2772 | apply (drule_tac x = "inverse y" in spec, safe, force) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2773 | apply (drule_tac ?d1.0 = s in pi_half_gt_zero [THEN [2] real_lbound_gt_zero], safe) | 
| 15229 | 2774 | apply (rule_tac x = "(pi/2) - e" in exI) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2775 | apply (simp (no_asm_simp)) | 
| 15229 | 2776 | apply (drule_tac x = "(pi/2) - e" in spec) | 
| 45309 
5885ec8eb6b0
removed ad-hoc simp rules sin_cos_eq[symmetric], minus_sin_cos_eq[symmetric], cos_sin_eq[symmetric]
 huffman parents: 
45308diff
changeset | 2777 | apply (auto simp add: tan_def sin_diff cos_diff) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2778 | apply (rule inverse_less_iff_less [THEN iffD1]) | 
| 15079 
2ef899e4526d
conversion of Hyperreal/MacLaurin_lemmas to Isar script
 paulson parents: 
15077diff
changeset | 2779 | apply (auto simp add: divide_inverse) | 
| 36777 
be5461582d0f
avoid using real-specific versions of generic lemmas
 huffman parents: 
36776diff
changeset | 2780 | apply (rule mult_pos_pos) | 
| 15229 | 2781 | apply (subgoal_tac [3] "0 < sin e & 0 < cos e") | 
| 36777 
be5461582d0f
avoid using real-specific versions of generic lemmas
 huffman parents: 
36776diff
changeset | 2782 | apply (auto intro: cos_gt_zero sin_gt_zero2 simp add: mult_commute) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2783 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2784 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2785 | lemma tan_total_pos: "0 \<le> y ==> \<exists>x. 0 \<le> x & x < pi/2 & tan x = y" | 
| 22998 | 2786 | apply (frule order_le_imp_less_or_eq, safe) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2787 | prefer 2 apply force | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2788 | apply (drule lemma_tan_total, safe) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2789 | apply (cut_tac f = tan and a = 0 and b = x and y = y in IVT_objl) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2790 | apply (auto intro!: DERIV_tan [THEN DERIV_isCont]) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2791 | apply (drule_tac y = xa in order_le_imp_less_or_eq) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2792 | apply (auto dest: cos_gt_zero) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2793 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2794 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2795 | lemma lemma_tan_total1: "\<exists>x. -(pi/2) < x & x < (pi/2) & tan x = y" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2796 | apply (cut_tac linorder_linear [of 0 y], safe) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2797 | apply (drule tan_total_pos) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2798 | apply (cut_tac [2] y="-y" in tan_total_pos, safe) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2799 | apply (rule_tac [3] x = "-x" in exI) | 
| 44710 | 2800 | apply (auto del: exI intro!: exI) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2801 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2802 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2803 | lemma tan_total: "EX! x. -(pi/2) < x & x < (pi/2) & tan x = y" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2804 | apply (cut_tac y = y in lemma_tan_total1, auto) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2805 | apply (cut_tac x = xa and y = y in linorder_less_linear, auto) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2806 | apply (subgoal_tac [2] "\<exists>z. y < z & z < xa & DERIV tan z :> 0") | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2807 | apply (subgoal_tac "\<exists>z. xa < z & z < y & DERIV tan z :> 0") | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2808 | apply (rule_tac [4] Rolle) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2809 | apply (rule_tac [2] Rolle) | 
| 44710 | 2810 | apply (auto del: exI intro!: DERIV_tan DERIV_isCont exI | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2811 | simp add: differentiable_def) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2812 | txt{*Now, simulate TRYALL*}
 | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2813 | apply (rule_tac [!] DERIV_tan asm_rl) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2814 | apply (auto dest!: DERIV_unique [OF _ DERIV_tan] | 
| 41970 | 2815 | simp add: cos_gt_zero_pi [THEN less_imp_neq, THEN not_sym]) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2816 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2817 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2818 | lemma tan_monotone: assumes "- (pi / 2) < y" and "y < x" and "x < pi / 2" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2819 | shows "tan y < tan x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2820 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2821 | have "\<forall> x'. y \<le> x' \<and> x' \<le> x \<longrightarrow> DERIV tan x' :> inverse (cos x'^2)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2822 | proof (rule allI, rule impI) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2823 | fix x' :: real assume "y \<le> x' \<and> x' \<le> x" | 
| 33549 | 2824 | hence "-(pi/2) < x'" and "x' < pi/2" using assms by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2825 | from cos_gt_zero_pi[OF this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2826 | have "cos x' \<noteq> 0" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2827 | thus "DERIV tan x' :> inverse (cos x'^2)" by (rule DERIV_tan) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2828 | qed | 
| 41970 | 2829 | from MVT2[OF `y < x` this] | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2830 | obtain z where "y < z" and "z < x" and tan_diff: "tan x - tan y = (x - y) * inverse ((cos z)\<twosuperior>)" by auto | 
| 33549 | 2831 | hence "- (pi / 2) < z" and "z < pi / 2" using assms by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2832 | hence "0 < cos z" using cos_gt_zero_pi by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2833 | hence inv_pos: "0 < inverse ((cos z)\<twosuperior>)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2834 | have "0 < x - y" using `y < x` by auto | 
| 36777 
be5461582d0f
avoid using real-specific versions of generic lemmas
 huffman parents: 
36776diff
changeset | 2835 | from mult_pos_pos [OF this inv_pos] | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2836 | have "0 < tan x - tan y" unfolding tan_diff by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2837 | thus ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2838 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2839 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2840 | lemma tan_monotone': assumes "- (pi / 2) < y" and "y < pi / 2" and "- (pi / 2) < x" and "x < pi / 2" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2841 | shows "(y < x) = (tan y < tan x)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2842 | proof | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2843 | assume "y < x" thus "tan y < tan x" using tan_monotone and `- (pi / 2) < y` and `x < pi / 2` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2844 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2845 | assume "tan y < tan x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2846 | show "y < x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2847 | proof (rule ccontr) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2848 | assume "\<not> y < x" hence "x \<le> y" by auto | 
| 41970 | 2849 | hence "tan x \<le> tan y" | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2850 | proof (cases "x = y") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2851 | case True thus ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2852 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2853 | case False hence "x < y" using `x \<le> y` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2854 | from tan_monotone[OF `- (pi/2) < x` this `y < pi / 2`] show ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2855 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2856 | thus False using `tan y < tan x` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2857 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2858 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2859 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2860 | lemma tan_inverse: "1 / (tan y) = tan (pi / 2 - y)" unfolding tan_def sin_cos_eq[of y] cos_sin_eq[of y] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2861 | |
| 41970 | 2862 | lemma tan_periodic_pi[simp]: "tan (x + pi) = tan x" | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2863 | by (simp add: tan_def) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2864 | |
| 41970 | 2865 | lemma tan_periodic_nat[simp]: fixes n :: nat shows "tan (x + real n * pi) = tan x" | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2866 | proof (induct n arbitrary: x) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2867 | case (Suc n) | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 2868 | have split_pi_off: "x + real (Suc n) * pi = (x + real n * pi) + pi" unfolding Suc_eq_plus1 real_of_nat_add real_of_one distrib_right by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2869 | show ?case unfolding split_pi_off using Suc by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2870 | qed auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2871 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2872 | lemma tan_periodic_int[simp]: fixes i :: int shows "tan (x + real i * pi) = tan x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2873 | proof (cases "0 \<le> i") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2874 | case True hence i_nat: "real i = real (nat i)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2875 | show ?thesis unfolding i_nat by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2876 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2877 | case False hence i_nat: "real i = - real (nat (-i))" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2878 | have "tan x = tan (x + real i * pi - real i * pi)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2879 | also have "\<dots> = tan (x + real i * pi)" unfolding i_nat mult_minus_left diff_minus_eq_add by (rule tan_periodic_nat) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2880 | finally show ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2881 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 2882 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46240diff
changeset | 2883 | lemma tan_periodic_n[simp]: "tan (x + numeral n * pi) = tan x" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
46240diff
changeset | 2884 | using tan_periodic_int[of _ "numeral n" ] unfolding real_numeral . | 
| 23043 | 2885 | |
| 2886 | subsection {* Inverse Trigonometric Functions *}
 | |
| 2887 | ||
| 2888 | definition | |
| 2889 | arcsin :: "real => real" where | |
| 2890 | "arcsin y = (THE x. -(pi/2) \<le> x & x \<le> pi/2 & sin x = y)" | |
| 2891 | ||
| 2892 | definition | |
| 2893 | arccos :: "real => real" where | |
| 2894 | "arccos y = (THE x. 0 \<le> x & x \<le> pi & cos x = y)" | |
| 2895 | ||
| 41970 | 2896 | definition | 
| 23043 | 2897 | arctan :: "real => real" where | 
| 2898 | "arctan y = (THE x. -(pi/2) < x & x < pi/2 & tan x = y)" | |
| 2899 | ||
| 15229 | 2900 | lemma arcsin: | 
| 41970 | 2901 | "[| -1 \<le> y; y \<le> 1 |] | 
| 2902 | ==> -(pi/2) \<le> arcsin y & | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2903 | arcsin y \<le> pi/2 & sin(arcsin y) = y" | 
| 23011 | 2904 | unfolding arcsin_def by (rule theI' [OF sin_total]) | 
| 2905 | ||
| 2906 | lemma arcsin_pi: | |
| 41970 | 2907 | "[| -1 \<le> y; y \<le> 1 |] | 
| 23011 | 2908 | ==> -(pi/2) \<le> arcsin y & arcsin y \<le> pi & sin(arcsin y) = y" | 
| 2909 | apply (drule (1) arcsin) | |
| 2910 | apply (force intro: order_trans) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2911 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2912 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2913 | lemma sin_arcsin [simp]: "[| -1 \<le> y; y \<le> 1 |] ==> sin(arcsin y) = y" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2914 | by (blast dest: arcsin) | 
| 41970 | 2915 | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2916 | lemma arcsin_bounded: | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2917 | "[| -1 \<le> y; y \<le> 1 |] ==> -(pi/2) \<le> arcsin y & arcsin y \<le> pi/2" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2918 | by (blast dest: arcsin) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2919 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2920 | lemma arcsin_lbound: "[| -1 \<le> y; y \<le> 1 |] ==> -(pi/2) \<le> arcsin y" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2921 | by (blast dest: arcsin) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2922 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2923 | lemma arcsin_ubound: "[| -1 \<le> y; y \<le> 1 |] ==> arcsin y \<le> pi/2" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2924 | by (blast dest: arcsin) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2925 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2926 | lemma arcsin_lt_bounded: | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2927 | "[| -1 < y; y < 1 |] ==> -(pi/2) < arcsin y & arcsin y < pi/2" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2928 | apply (frule order_less_imp_le) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2929 | apply (frule_tac y = y in order_less_imp_le) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2930 | apply (frule arcsin_bounded) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2931 | apply (safe, simp) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2932 | apply (drule_tac y = "arcsin y" in order_le_imp_less_or_eq) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2933 | apply (drule_tac [2] y = "pi/2" in order_le_imp_less_or_eq, safe) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2934 | apply (drule_tac [!] f = sin in arg_cong, auto) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2935 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2936 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2937 | lemma arcsin_sin: "[|-(pi/2) \<le> x; x \<le> pi/2 |] ==> arcsin(sin x) = x" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2938 | apply (unfold arcsin_def) | 
| 23011 | 2939 | apply (rule the1_equality) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2940 | apply (rule sin_total, auto) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2941 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2942 | |
| 22975 | 2943 | lemma arccos: | 
| 41970 | 2944 | "[| -1 \<le> y; y \<le> 1 |] | 
| 22975 | 2945 | ==> 0 \<le> arccos y & arccos y \<le> pi & cos(arccos y) = y" | 
| 23011 | 2946 | unfolding arccos_def by (rule theI' [OF cos_total]) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2947 | |
| 22975 | 2948 | lemma cos_arccos [simp]: "[| -1 \<le> y; y \<le> 1 |] ==> cos(arccos y) = y" | 
| 2949 | by (blast dest: arccos) | |
| 41970 | 2950 | |
| 22975 | 2951 | lemma arccos_bounded: "[| -1 \<le> y; y \<le> 1 |] ==> 0 \<le> arccos y & arccos y \<le> pi" | 
| 2952 | by (blast dest: arccos) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2953 | |
| 22975 | 2954 | lemma arccos_lbound: "[| -1 \<le> y; y \<le> 1 |] ==> 0 \<le> arccos y" | 
| 2955 | by (blast dest: arccos) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2956 | |
| 22975 | 2957 | lemma arccos_ubound: "[| -1 \<le> y; y \<le> 1 |] ==> arccos y \<le> pi" | 
| 2958 | by (blast dest: arccos) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2959 | |
| 22975 | 2960 | lemma arccos_lt_bounded: | 
| 41970 | 2961 | "[| -1 < y; y < 1 |] | 
| 22975 | 2962 | ==> 0 < arccos y & arccos y < pi" | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2963 | apply (frule order_less_imp_le) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2964 | apply (frule_tac y = y in order_less_imp_le) | 
| 22975 | 2965 | apply (frule arccos_bounded, auto) | 
| 2966 | apply (drule_tac y = "arccos y" in order_le_imp_less_or_eq) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2967 | apply (drule_tac [2] y = pi in order_le_imp_less_or_eq, auto) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2968 | apply (drule_tac [!] f = cos in arg_cong, auto) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2969 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2970 | |
| 22975 | 2971 | lemma arccos_cos: "[|0 \<le> x; x \<le> pi |] ==> arccos(cos x) = x" | 
| 2972 | apply (simp add: arccos_def) | |
| 23011 | 2973 | apply (auto intro!: the1_equality cos_total) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2974 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2975 | |
| 22975 | 2976 | lemma arccos_cos2: "[|x \<le> 0; -pi \<le> x |] ==> arccos(cos x) = -x" | 
| 2977 | apply (simp add: arccos_def) | |
| 23011 | 2978 | apply (auto intro!: the1_equality cos_total) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2979 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 2980 | |
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2981 | lemma cos_arcsin: "\<lbrakk>-1 \<le> x; x \<le> 1\<rbrakk> \<Longrightarrow> cos (arcsin x) = sqrt (1 - x\<twosuperior>)" | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2982 | apply (subgoal_tac "x\<twosuperior> \<le> 1") | 
| 23052 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 2983 | apply (rule power2_eq_imp_eq) | 
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2984 | apply (simp add: cos_squared_eq) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2985 | apply (rule cos_ge_zero) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2986 | apply (erule (1) arcsin_lbound) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2987 | apply (erule (1) arcsin_ubound) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2988 | apply simp | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2989 | apply (subgoal_tac "\<bar>x\<bar>\<twosuperior> \<le> 1\<twosuperior>", simp) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2990 | apply (rule power_mono, simp, simp) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2991 | done | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2992 | |
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2993 | lemma sin_arccos: "\<lbrakk>-1 \<le> x; x \<le> 1\<rbrakk> \<Longrightarrow> sin (arccos x) = sqrt (1 - x\<twosuperior>)" | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2994 | apply (subgoal_tac "x\<twosuperior> \<le> 1") | 
| 23052 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 2995 | apply (rule power2_eq_imp_eq) | 
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2996 | apply (simp add: sin_squared_eq) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2997 | apply (rule sin_ge_zero) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2998 | apply (erule (1) arccos_lbound) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 2999 | apply (erule (1) arccos_ubound) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3000 | apply simp | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3001 | apply (subgoal_tac "\<bar>x\<bar>\<twosuperior> \<le> 1\<twosuperior>", simp) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3002 | apply (rule power_mono, simp, simp) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3003 | done | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3004 | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3005 | lemma arctan [simp]: | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3006 | "- (pi/2) < arctan y & arctan y < pi/2 & tan (arctan y) = y" | 
| 23011 | 3007 | unfolding arctan_def by (rule theI' [OF tan_total]) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3008 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3009 | lemma tan_arctan: "tan(arctan y) = y" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3010 | by auto | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3011 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3012 | lemma arctan_bounded: "- (pi/2) < arctan y & arctan y < pi/2" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3013 | by (auto simp only: arctan) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3014 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3015 | lemma arctan_lbound: "- (pi/2) < arctan y" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3016 | by auto | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3017 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3018 | lemma arctan_ubound: "arctan y < pi/2" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3019 | by (auto simp only: arctan) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3020 | |
| 44746 | 3021 | lemma arctan_unique: | 
| 3022 | assumes "-(pi/2) < x" and "x < pi/2" and "tan x = y" | |
| 3023 | shows "arctan y = x" | |
| 3024 | using assms arctan [of y] tan_total [of y] by (fast elim: ex1E) | |
| 3025 | ||
| 41970 | 3026 | lemma arctan_tan: | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3027 | "[|-(pi/2) < x; x < pi/2 |] ==> arctan(tan x) = x" | 
| 44746 | 3028 | by (rule arctan_unique, simp_all) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3029 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3030 | lemma arctan_zero_zero [simp]: "arctan 0 = 0" | 
| 44746 | 3031 | by (rule arctan_unique, simp_all) | 
| 3032 | ||
| 3033 | lemma arctan_minus: "arctan (- x) = - arctan x" | |
| 3034 | apply (rule arctan_unique) | |
| 3035 | apply (simp only: neg_less_iff_less arctan_ubound) | |
| 3036 | apply (metis minus_less_iff arctan_lbound) | |
| 3037 | apply simp | |
| 3038 | done | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3039 | |
| 44725 | 3040 | lemma cos_arctan_not_zero [simp]: "cos (arctan x) \<noteq> 0" | 
| 3041 | by (intro less_imp_neq [symmetric] cos_gt_zero_pi | |
| 3042 | arctan_lbound arctan_ubound) | |
| 3043 | ||
| 3044 | lemma cos_arctan: "cos (arctan x) = 1 / sqrt (1 + x\<twosuperior>)" | |
| 3045 | proof (rule power2_eq_imp_eq) | |
| 3046 | have "0 < 1 + x\<twosuperior>" by (simp add: add_pos_nonneg) | |
| 3047 | show "0 \<le> 1 / sqrt (1 + x\<twosuperior>)" by simp | |
| 3048 | show "0 \<le> cos (arctan x)" | |
| 3049 | by (intro less_imp_le cos_gt_zero_pi arctan_lbound arctan_ubound) | |
| 3050 | have "(cos (arctan x))\<twosuperior> * (1 + (tan (arctan x))\<twosuperior>) = 1" | |
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 3051 | unfolding tan_def by (simp add: distrib_left power_divide) | 
| 44725 | 3052 | thus "(cos (arctan x))\<twosuperior> = (1 / sqrt (1 + x\<twosuperior>))\<twosuperior>" | 
| 3053 | using `0 < 1 + x\<twosuperior>` by (simp add: power_divide eq_divide_eq) | |
| 3054 | qed | |
| 3055 | ||
| 3056 | lemma sin_arctan: "sin (arctan x) = x / sqrt (1 + x\<twosuperior>)" | |
| 3057 | using add_pos_nonneg [OF zero_less_one zero_le_power2 [of x]] | |
| 3058 | using tan_arctan [of x] unfolding tan_def cos_arctan | |
| 3059 | by (simp add: eq_divide_eq) | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3060 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3061 | lemma tan_sec: "cos x \<noteq> 0 ==> 1 + tan(x) ^ 2 = inverse(cos x) ^ 2" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3062 | apply (rule power_inverse [THEN subst]) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3063 | apply (rule_tac c1 = "(cos x)\<twosuperior>" in real_mult_right_cancel [THEN iffD1]) | 
| 22960 | 3064 | apply (auto dest: field_power_not_zero | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 3065 | simp add: power_mult_distrib distrib_right power_divide tan_def | 
| 30273 
ecd6f0ca62ea
declare power_Suc [simp]; remove redundant type-specific versions of power_Suc
 huffman parents: 
30082diff
changeset | 3066 | mult_assoc power_inverse [symmetric]) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3067 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3068 | |
| 44746 | 3069 | lemma arctan_less_iff: "arctan x < arctan y \<longleftrightarrow> x < y" | 
| 3070 | by (metis tan_monotone' arctan_lbound arctan_ubound tan_arctan) | |
| 3071 | ||
| 3072 | lemma arctan_le_iff: "arctan x \<le> arctan y \<longleftrightarrow> x \<le> y" | |
| 3073 | by (simp only: not_less [symmetric] arctan_less_iff) | |
| 3074 | ||
| 3075 | lemma arctan_eq_iff: "arctan x = arctan y \<longleftrightarrow> x = y" | |
| 3076 | by (simp only: eq_iff [where 'a=real] arctan_le_iff) | |
| 3077 | ||
| 3078 | lemma zero_less_arctan_iff [simp]: "0 < arctan x \<longleftrightarrow> 0 < x" | |
| 3079 | using arctan_less_iff [of 0 x] by simp | |
| 3080 | ||
| 3081 | lemma arctan_less_zero_iff [simp]: "arctan x < 0 \<longleftrightarrow> x < 0" | |
| 3082 | using arctan_less_iff [of x 0] by simp | |
| 3083 | ||
| 3084 | lemma zero_le_arctan_iff [simp]: "0 \<le> arctan x \<longleftrightarrow> 0 \<le> x" | |
| 3085 | using arctan_le_iff [of 0 x] by simp | |
| 3086 | ||
| 3087 | lemma arctan_le_zero_iff [simp]: "arctan x \<le> 0 \<longleftrightarrow> x \<le> 0" | |
| 3088 | using arctan_le_iff [of x 0] by simp | |
| 3089 | ||
| 3090 | lemma arctan_eq_zero_iff [simp]: "arctan x = 0 \<longleftrightarrow> x = 0" | |
| 3091 | using arctan_eq_iff [of x 0] by simp | |
| 3092 | ||
| 51482 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3093 | lemma continuous_on_arcsin': "continuous_on {-1 .. 1} arcsin"
 | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3094 | proof - | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3095 |   have "continuous_on (sin ` {- pi / 2 .. pi / 2}) arcsin"
 | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3096 | by (rule continuous_on_inv) (auto intro: continuous_on_intros simp: arcsin_sin) | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3097 |   also have "sin ` {- pi / 2 .. pi / 2} = {-1 .. 1}"
 | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3098 | proof safe | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3099 |     fix x :: real assume "x \<in> {-1..1}" then show "x \<in> sin ` {- pi / 2..pi / 2}"
 | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3100 | using arcsin_lbound arcsin_ubound by (intro image_eqI[where x="arcsin x"]) auto | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3101 | qed simp | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3102 | finally show ?thesis . | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3103 | qed | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3104 | |
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3105 | lemma continuous_on_arcsin [continuous_on_intros]: | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3106 | "continuous_on s f \<Longrightarrow> (\<forall>x\<in>s. -1 \<le> f x \<and> f x \<le> 1) \<Longrightarrow> continuous_on s (\<lambda>x. arcsin (f x))" | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3107 | using continuous_on_compose[of s f, OF _ continuous_on_subset[OF continuous_on_arcsin']] | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3108 | by (auto simp: comp_def subset_eq) | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3109 | |
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3110 | lemma isCont_arcsin: "-1 < x \<Longrightarrow> x < 1 \<Longrightarrow> isCont arcsin x" | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3111 |   using continuous_on_arcsin'[THEN continuous_on_subset, of "{ -1 <..< 1 }"]
 | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3112 | by (auto simp: continuous_on_eq_continuous_at subset_eq) | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3113 | |
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3114 | lemma continuous_on_arccos': "continuous_on {-1 .. 1} arccos"
 | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3115 | proof - | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3116 |   have "continuous_on (cos ` {0 .. pi}) arccos"
 | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3117 | by (rule continuous_on_inv) (auto intro: continuous_on_intros simp: arccos_cos) | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3118 |   also have "cos ` {0 .. pi} = {-1 .. 1}"
 | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3119 | proof safe | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3120 |     fix x :: real assume "x \<in> {-1..1}" then show "x \<in> cos ` {0..pi}"
 | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3121 | using arccos_lbound arccos_ubound by (intro image_eqI[where x="arccos x"]) auto | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3122 | qed simp | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3123 | finally show ?thesis . | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3124 | qed | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3125 | |
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3126 | lemma continuous_on_arccos [continuous_on_intros]: | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3127 | "continuous_on s f \<Longrightarrow> (\<forall>x\<in>s. -1 \<le> f x \<and> f x \<le> 1) \<Longrightarrow> continuous_on s (\<lambda>x. arccos (f x))" | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3128 | using continuous_on_compose[of s f, OF _ continuous_on_subset[OF continuous_on_arccos']] | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3129 | by (auto simp: comp_def subset_eq) | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3130 | |
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3131 | lemma isCont_arccos: "-1 < x \<Longrightarrow> x < 1 \<Longrightarrow> isCont arccos x" | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3132 |   using continuous_on_arccos'[THEN continuous_on_subset, of "{ -1 <..< 1 }"]
 | 
| 
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
 hoelzl parents: 
51481diff
changeset | 3133 | by (auto simp: continuous_on_eq_continuous_at subset_eq) | 
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3134 | |
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3135 | lemma isCont_arctan: "isCont arctan x" | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3136 | apply (rule arctan_lbound [of x, THEN dense, THEN exE], clarify) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3137 | apply (rule arctan_ubound [of x, THEN dense, THEN exE], clarify) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3138 | apply (subgoal_tac "isCont arctan (tan (arctan x))", simp) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3139 | apply (erule (1) isCont_inverse_function2 [where f=tan]) | 
| 33667 | 3140 | apply (metis arctan_tan order_le_less_trans order_less_le_trans) | 
| 36777 
be5461582d0f
avoid using real-specific versions of generic lemmas
 huffman parents: 
36776diff
changeset | 3141 | apply (metis cos_gt_zero_pi isCont_tan order_less_le_trans less_le) | 
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3142 | done | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3143 | |
| 51478 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 3144 | lemma tendsto_arctan [tendsto_intros]: "(f ---> x) F \<Longrightarrow> ((\<lambda>x. arctan (f x)) ---> arctan x) F" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 3145 | by (rule isCont_tendsto_compose [OF isCont_arctan]) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 3146 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 3147 | lemma continuous_arctan [continuous_intros]: "continuous F f \<Longrightarrow> continuous F (\<lambda>x. arctan (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 3148 | unfolding continuous_def by (rule tendsto_arctan) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 3149 | |
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 3150 | lemma continuous_on_arctan [continuous_on_intros]: "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. arctan (f x))" | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 3151 | unfolding continuous_on_def by (auto intro: tendsto_arctan) | 
| 
270b21f3ae0a
move continuous and continuous_on to the HOL image; isCont is an abbreviation for continuous (at x) (isCont is now restricted to a T2 space)
 hoelzl parents: 
51477diff
changeset | 3152 | |
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3153 | lemma DERIV_arcsin: | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3154 | "\<lbrakk>-1 < x; x < 1\<rbrakk> \<Longrightarrow> DERIV arcsin x :> inverse (sqrt (1 - x\<twosuperior>))" | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3155 | apply (rule DERIV_inverse_function [where f=sin and a="-1" and b="1"]) | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 3156 | apply (rule DERIV_cong [OF DERIV_sin]) | 
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3157 | apply (simp add: cos_arcsin) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3158 | apply (subgoal_tac "\<bar>x\<bar>\<twosuperior> < 1\<twosuperior>", simp) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3159 | apply (rule power_strict_mono, simp, simp, simp) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3160 | apply assumption | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3161 | apply assumption | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3162 | apply simp | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3163 | apply (erule (1) isCont_arcsin) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3164 | done | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3165 | |
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3166 | lemma DERIV_arccos: | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3167 | "\<lbrakk>-1 < x; x < 1\<rbrakk> \<Longrightarrow> DERIV arccos x :> inverse (- sqrt (1 - x\<twosuperior>))" | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3168 | apply (rule DERIV_inverse_function [where f=cos and a="-1" and b="1"]) | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 3169 | apply (rule DERIV_cong [OF DERIV_cos]) | 
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3170 | apply (simp add: sin_arccos) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3171 | apply (subgoal_tac "\<bar>x\<bar>\<twosuperior> < 1\<twosuperior>", simp) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3172 | apply (rule power_strict_mono, simp, simp, simp) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3173 | apply assumption | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3174 | apply assumption | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3175 | apply simp | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3176 | apply (erule (1) isCont_arccos) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3177 | done | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3178 | |
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3179 | lemma DERIV_arctan: "DERIV arctan x :> inverse (1 + x\<twosuperior>)" | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3180 | apply (rule DERIV_inverse_function [where f=tan and a="x - 1" and b="x + 1"]) | 
| 44308 
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
 huffman parents: 
44307diff
changeset | 3181 | apply (rule DERIV_cong [OF DERIV_tan]) | 
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3182 | apply (rule cos_arctan_not_zero) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3183 | apply (simp add: power_inverse tan_sec [symmetric]) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3184 | apply (subgoal_tac "0 < 1 + x\<twosuperior>", simp) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3185 | apply (simp add: add_pos_nonneg) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3186 | apply (simp, simp, simp, rule isCont_arctan) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3187 | done | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3188 | |
| 31880 | 3189 | declare | 
| 3190 | DERIV_arcsin[THEN DERIV_chain2, THEN DERIV_cong, DERIV_intros] | |
| 3191 | DERIV_arccos[THEN DERIV_chain2, THEN DERIV_cong, DERIV_intros] | |
| 3192 | DERIV_arctan[THEN DERIV_chain2, THEN DERIV_cong, DERIV_intros] | |
| 3193 | ||
| 50346 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3194 | lemma filterlim_tan_at_right: "filterlim tan at_bot (at_right (- pi/2))" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3195 | by (rule filterlim_at_bot_at_right[where Q="\<lambda>x. - pi/2 < x \<and> x < pi/2" and P="\<lambda>x. True" and g=arctan]) | 
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51527diff
changeset | 3196 | (auto simp: le_less eventually_at dist_real_def simp del: less_divide_eq_numeral1 | 
| 50346 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3197 | intro!: tan_monotone exI[of _ "pi/2"]) | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3198 | |
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3199 | lemma filterlim_tan_at_left: "filterlim tan at_top (at_left (pi/2))" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3200 | by (rule filterlim_at_top_at_left[where Q="\<lambda>x. - pi/2 < x \<and> x < pi/2" and P="\<lambda>x. True" and g=arctan]) | 
| 51641 
cd05e9fcc63d
remove the within-filter, replace "at" by "at _ within UNIV" (This allows to remove a couple of redundant lemmas)
 hoelzl parents: 
51527diff
changeset | 3201 | (auto simp: le_less eventually_at dist_real_def simp del: less_divide_eq_numeral1 | 
| 50346 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3202 | intro!: tan_monotone exI[of _ "pi/2"]) | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3203 | |
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3204 | lemma tendsto_arctan_at_top: "(arctan ---> (pi/2)) at_top" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3205 | proof (rule tendstoI) | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3206 | fix e :: real assume "0 < e" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3207 | def y \<equiv> "pi/2 - min (pi/2) e" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3208 | then have y: "0 \<le> y" "y < pi/2" "pi/2 \<le> e + y" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3209 | using `0 < e` by auto | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3210 | |
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3211 | show "eventually (\<lambda>x. dist (arctan x) (pi / 2) < e) at_top" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3212 | proof (intro eventually_at_top_dense[THEN iffD2] exI allI impI) | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3213 | fix x assume "tan y < x" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3214 | then have "arctan (tan y) < arctan x" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3215 | by (simp add: arctan_less_iff) | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3216 | with y have "y < arctan x" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3217 | by (subst (asm) arctan_tan) simp_all | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3218 | with arctan_ubound[of x, arith] y `0 < e` | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3219 | show "dist (arctan x) (pi / 2) < e" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3220 | by (simp add: dist_real_def) | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3221 | qed | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3222 | qed | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3223 | |
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3224 | lemma tendsto_arctan_at_bot: "(arctan ---> - (pi/2)) at_bot" | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3225 | unfolding filterlim_at_bot_mirror arctan_minus by (intro tendsto_minus tendsto_arctan_at_top) | 
| 
a75c6429c3c3
add filterlim rules for eventually monotone bijective functions; mirror rules for at_top, at_bot; apply them to prove convergence of arctan at infinity and tan at pi/2
 hoelzl parents: 
50326diff
changeset | 3226 | |
| 23043 | 3227 | subsection {* More Theorems about Sin and Cos *}
 | 
| 3228 | ||
| 23052 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3229 | lemma cos_45: "cos (pi / 4) = sqrt 2 / 2" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3230 | proof - | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3231 | let ?c = "cos (pi / 4)" and ?s = "sin (pi / 4)" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3232 | have nonneg: "0 \<le> ?c" | 
| 45308 
2e84e5f0463b
extend cancellation simproc patterns to cover terms like '- (2 * pi) < pi'
 huffman parents: 
44756diff
changeset | 3233 | by (simp add: cos_ge_zero) | 
| 23052 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3234 | have "0 = cos (pi / 4 + pi / 4)" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3235 | by simp | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3236 | also have "cos (pi / 4 + pi / 4) = ?c\<twosuperior> - ?s\<twosuperior>" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3237 | by (simp only: cos_add power2_eq_square) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3238 | also have "\<dots> = 2 * ?c\<twosuperior> - 1" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3239 | by (simp add: sin_squared_eq) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3240 | finally have "?c\<twosuperior> = (sqrt 2 / 2)\<twosuperior>" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3241 | by (simp add: power_divide) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3242 | thus ?thesis | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3243 | using nonneg by (rule power2_eq_imp_eq) simp | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3244 | qed | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3245 | |
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3246 | lemma cos_30: "cos (pi / 6) = sqrt 3 / 2" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3247 | proof - | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3248 | let ?c = "cos (pi / 6)" and ?s = "sin (pi / 6)" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3249 | have pos_c: "0 < ?c" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3250 | by (rule cos_gt_zero, simp, simp) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3251 | have "0 = cos (pi / 6 + pi / 6 + pi / 6)" | 
| 23066 
26a9157b620a
new field_combine_numerals simproc, which uses fractions as coefficients
 huffman parents: 
23053diff
changeset | 3252 | by simp | 
| 23052 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3253 | also have "\<dots> = (?c * ?c - ?s * ?s) * ?c - (?s * ?c + ?c * ?s) * ?s" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3254 | by (simp only: cos_add sin_add) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3255 | also have "\<dots> = ?c * (?c\<twosuperior> - 3 * ?s\<twosuperior>)" | 
| 29667 | 3256 | by (simp add: algebra_simps power2_eq_square) | 
| 23052 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3257 | finally have "?c\<twosuperior> = (sqrt 3 / 2)\<twosuperior>" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3258 | using pos_c by (simp add: sin_squared_eq power_divide) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3259 | thus ?thesis | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3260 | using pos_c [THEN order_less_imp_le] | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3261 | by (rule power2_eq_imp_eq) simp | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3262 | qed | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3263 | |
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3264 | lemma sin_45: "sin (pi / 4) = sqrt 2 / 2" | 
| 45309 
5885ec8eb6b0
removed ad-hoc simp rules sin_cos_eq[symmetric], minus_sin_cos_eq[symmetric], cos_sin_eq[symmetric]
 huffman parents: 
45308diff
changeset | 3265 | by (simp add: sin_cos_eq cos_45) | 
| 23052 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3266 | |
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3267 | lemma sin_60: "sin (pi / 3) = sqrt 3 / 2" | 
| 45309 
5885ec8eb6b0
removed ad-hoc simp rules sin_cos_eq[symmetric], minus_sin_cos_eq[symmetric], cos_sin_eq[symmetric]
 huffman parents: 
45308diff
changeset | 3268 | by (simp add: sin_cos_eq cos_30) | 
| 23052 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3269 | |
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3270 | lemma cos_60: "cos (pi / 3) = 1 / 2" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3271 | apply (rule power2_eq_imp_eq) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3272 | apply (simp add: cos_squared_eq sin_60 power_divide) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3273 | apply (rule cos_ge_zero, rule order_trans [where y=0], simp_all) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3274 | done | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3275 | |
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3276 | lemma sin_30: "sin (pi / 6) = 1 / 2" | 
| 45309 
5885ec8eb6b0
removed ad-hoc simp rules sin_cos_eq[symmetric], minus_sin_cos_eq[symmetric], cos_sin_eq[symmetric]
 huffman parents: 
45308diff
changeset | 3277 | by (simp add: sin_cos_eq cos_60) | 
| 23052 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3278 | |
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3279 | lemma tan_30: "tan (pi / 6) = 1 / sqrt 3" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3280 | unfolding tan_def by (simp add: sin_30 cos_30) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3281 | |
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3282 | lemma tan_45: "tan (pi / 4) = 1" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3283 | unfolding tan_def by (simp add: sin_45 cos_45) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3284 | |
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3285 | lemma tan_60: "tan (pi / 3) = sqrt 3" | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3286 | unfolding tan_def by (simp add: sin_60 cos_60) | 
| 
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
 huffman parents: 
23049diff
changeset | 3287 | |
| 15383 | 3288 | lemma sin_cos_npi [simp]: "sin (real (Suc (2 * n)) * pi / 2) = (-1) ^ n" | 
| 3289 | proof - | |
| 3290 | have "sin ((real n + 1/2) * pi) = cos (real n * pi)" | |
| 29667 | 3291 | by (auto simp add: algebra_simps sin_add) | 
| 15383 | 3292 | thus ?thesis | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 3293 | by (simp add: real_of_nat_Suc distrib_right add_divide_distrib | 
| 15383 | 3294 | mult_commute [of pi]) | 
| 3295 | qed | |
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3296 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3297 | lemma cos_2npi [simp]: "cos (2 * real (n::nat) * pi) = 1" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3298 | by (simp add: cos_double mult_assoc power_add [symmetric] numeral_2_eq_2) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3299 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3300 | lemma cos_3over2_pi [simp]: "cos (3 / 2 * pi) = 0" | 
| 23066 
26a9157b620a
new field_combine_numerals simproc, which uses fractions as coefficients
 huffman parents: 
23053diff
changeset | 3301 | apply (subgoal_tac "cos (pi + pi/2) = 0", simp) | 
| 
26a9157b620a
new field_combine_numerals simproc, which uses fractions as coefficients
 huffman parents: 
23053diff
changeset | 3302 | apply (subst cos_add, simp) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3303 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3304 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3305 | lemma sin_2npi [simp]: "sin (2 * real (n::nat) * pi) = 0" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3306 | by (auto simp add: mult_assoc) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3307 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3308 | lemma sin_3over2_pi [simp]: "sin (3 / 2 * pi) = - 1" | 
| 23066 
26a9157b620a
new field_combine_numerals simproc, which uses fractions as coefficients
 huffman parents: 
23053diff
changeset | 3309 | apply (subgoal_tac "sin (pi + pi/2) = - 1", simp) | 
| 
26a9157b620a
new field_combine_numerals simproc, which uses fractions as coefficients
 huffman parents: 
23053diff
changeset | 3310 | apply (subst sin_add, simp) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3311 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3312 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3313 | lemma cos_pi_eq_zero [simp]: "cos (pi * real (Suc (2 * m)) / 2) = 0" | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47489diff
changeset | 3314 | by (simp only: cos_add sin_add real_of_nat_Suc distrib_right distrib_left add_divide_distrib, auto) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3315 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3316 | lemma DERIV_cos_add [simp]: "DERIV (%x. cos (x + k)) xa :> - sin (xa + k)" | 
| 31881 | 3317 | by (auto intro!: DERIV_intros) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3318 | |
| 15081 | 3319 | lemma sin_zero_abs_cos_one: "sin x = 0 ==> \<bar>cos x\<bar> = 1" | 
| 15539 | 3320 | by (auto simp add: sin_zero_iff even_mult_two_ex) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3321 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3322 | lemma cos_one_sin_zero: "cos x = 1 ==> sin x = 0" | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3323 | by (cut_tac x = x in sin_cos_squared_add3, auto) | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3324 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3325 | subsection {* Machins formula *}
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3326 | |
| 44746 | 3327 | lemma arctan_one: "arctan 1 = pi / 4" | 
| 3328 | by (rule arctan_unique, simp_all add: tan_45 m2pi_less_pi) | |
| 3329 | ||
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3330 | lemma tan_total_pi4: assumes "\<bar>x\<bar> < 1" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3331 | shows "\<exists> z. - (pi / 4) < z \<and> z < pi / 4 \<and> tan z = x" | 
| 44746 | 3332 | proof | 
| 3333 | show "- (pi / 4) < arctan x \<and> arctan x < pi / 4 \<and> tan (arctan x) = x" | |
| 3334 | unfolding arctan_one [symmetric] arctan_minus [symmetric] | |
| 3335 | unfolding arctan_less_iff using assms by auto | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3336 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3337 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3338 | lemma arctan_add: assumes "\<bar>x\<bar> \<le> 1" and "\<bar>y\<bar> < 1" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3339 | shows "arctan x + arctan y = arctan ((x + y) / (1 - x * y))" | 
| 44746 | 3340 | proof (rule arctan_unique [symmetric]) | 
| 3341 | have "- (pi / 4) \<le> arctan x" and "- (pi / 4) < arctan y" | |
| 3342 | unfolding arctan_one [symmetric] arctan_minus [symmetric] | |
| 3343 | unfolding arctan_le_iff arctan_less_iff using assms by auto | |
| 3344 | from add_le_less_mono [OF this] | |
| 3345 | show 1: "- (pi / 2) < arctan x + arctan y" by simp | |
| 3346 | have "arctan x \<le> pi / 4" and "arctan y < pi / 4" | |
| 3347 | unfolding arctan_one [symmetric] | |
| 3348 | unfolding arctan_le_iff arctan_less_iff using assms by auto | |
| 3349 | from add_le_less_mono [OF this] | |
| 3350 | show 2: "arctan x + arctan y < pi / 2" by simp | |
| 3351 | show "tan (arctan x + arctan y) = (x + y) / (1 - x * y)" | |
| 3352 | using cos_gt_zero_pi [OF 1 2] by (simp add: tan_add) | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3353 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3354 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3355 | theorem machin: "pi / 4 = 4 * arctan (1/5) - arctan (1 / 239)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3356 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3357 | have "\<bar>1 / 5\<bar> < (1 :: real)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3358 | from arctan_add[OF less_imp_le[OF this] this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3359 | have "2 * arctan (1 / 5) = arctan (5 / 12)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3360 | moreover | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3361 | have "\<bar>5 / 12\<bar> < (1 :: real)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3362 | from arctan_add[OF less_imp_le[OF this] this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3363 | have "2 * arctan (5 / 12) = arctan (120 / 119)" by auto | 
| 41970 | 3364 | moreover | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3365 | have "\<bar>1\<bar> \<le> (1::real)" and "\<bar>1 / 239\<bar> < (1::real)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3366 | from arctan_add[OF this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3367 | have "arctan 1 + arctan (1 / 239) = arctan (120 / 119)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3368 | ultimately have "arctan 1 + arctan (1 / 239) = 4 * arctan (1 / 5)" by auto | 
| 44746 | 3369 | thus ?thesis unfolding arctan_one by algebra | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3370 | qed | 
| 44746 | 3371 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3372 | subsection {* Introducing the arcus tangens power series *}
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3373 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3374 | lemma monoseq_arctan_series: fixes x :: real | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3375 | assumes "\<bar>x\<bar> \<le> 1" shows "monoseq (\<lambda> n. 1 / real (n*2+1) * x^(n*2+1))" (is "monoseq ?a") | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 3376 | proof (cases "x = 0") case True thus ?thesis unfolding monoseq_def One_nat_def by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3377 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3378 | case False | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3379 | have "norm x \<le> 1" and "x \<le> 1" and "-1 \<le> x" using assms by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3380 | show "monoseq ?a" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3381 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3382 |     { fix n fix x :: real assume "0 \<le> x" and "x \<le> 1"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3383 | have "1 / real (Suc (Suc n * 2)) * x ^ Suc (Suc n * 2) \<le> 1 / real (Suc (n * 2)) * x ^ Suc (n * 2)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3384 | proof (rule mult_mono) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3385 | show "1 / real (Suc (Suc n * 2)) \<le> 1 / real (Suc (n * 2))" by (rule frac_le) simp_all | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3386 | show "0 \<le> 1 / real (Suc (n * 2))" by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3387 | show "x ^ Suc (Suc n * 2) \<le> x ^ Suc (n * 2)" by (rule power_decreasing) (simp_all add: `0 \<le> x` `x \<le> 1`) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3388 | show "0 \<le> x ^ Suc (Suc n * 2)" by (rule zero_le_power) (simp add: `0 \<le> x`) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3389 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3390 | } note mono = this | 
| 41970 | 3391 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3392 | show ?thesis | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3393 | proof (cases "0 \<le> x") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3394 | case True from mono[OF this `x \<le> 1`, THEN allI] | 
| 31790 | 3395 | show ?thesis unfolding Suc_eq_plus1[symmetric] by (rule mono_SucI2) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3396 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3397 | case False hence "0 \<le> -x" and "-x \<le> 1" using `-1 \<le> x` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3398 | from mono[OF this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3399 | have "\<And>n. 1 / real (Suc (Suc n * 2)) * x ^ Suc (Suc n * 2) \<ge> 1 / real (Suc (n * 2)) * x ^ Suc (n * 2)" using `0 \<le> -x` by auto | 
| 31790 | 3400 | thus ?thesis unfolding Suc_eq_plus1[symmetric] by (rule mono_SucI1[OF allI]) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3401 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3402 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3403 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3404 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3405 | lemma zeroseq_arctan_series: fixes x :: real | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3406 | assumes "\<bar>x\<bar> \<le> 1" shows "(\<lambda> n. 1 / real (n*2+1) * x^(n*2+1)) ----> 0" (is "?a ----> 0") | 
| 44568 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 huffman parents: 
44319diff
changeset | 3407 | proof (cases "x = 0") case True thus ?thesis unfolding One_nat_def by (auto simp add: tendsto_const) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3408 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3409 | case False | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3410 | have "norm x \<le> 1" and "x \<le> 1" and "-1 \<le> x" using assms by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3411 | show "?a ----> 0" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3412 | proof (cases "\<bar>x\<bar> < 1") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3413 | case True hence "norm x < 1" by auto | 
| 44568 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 huffman parents: 
44319diff
changeset | 3414 | from tendsto_mult[OF LIMSEQ_inverse_real_of_nat LIMSEQ_power_zero[OF `norm x < 1`, THEN LIMSEQ_Suc]] | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 3415 | have "(\<lambda>n. 1 / real (n + 1) * x ^ (n + 1)) ----> 0" | 
| 31790 | 3416 | unfolding inverse_eq_divide Suc_eq_plus1 by simp | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 3417 | then show ?thesis using pos2 by (rule LIMSEQ_linear) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3418 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3419 | case False hence "x = -1 \<or> x = 1" using `\<bar>x\<bar> \<le> 1` by auto | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 3420 | hence n_eq: "\<And> n. x ^ (n * 2 + 1) = x" unfolding One_nat_def by auto | 
| 44568 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 huffman parents: 
44319diff
changeset | 3421 | from tendsto_mult[OF LIMSEQ_inverse_real_of_nat[THEN LIMSEQ_linear, OF pos2, unfolded inverse_eq_divide] tendsto_const[of x]] | 
| 31790 | 3422 | show ?thesis unfolding n_eq Suc_eq_plus1 by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3423 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3424 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3425 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3426 | lemma summable_arctan_series: fixes x :: real and n :: nat | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3427 | assumes "\<bar>x\<bar> \<le> 1" shows "summable (\<lambda> k. (-1)^k * (1 / real (k*2+1) * x ^ (k*2+1)))" (is "summable (?c x)") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3428 | by (rule summable_Leibniz(1), rule zeroseq_arctan_series[OF assms], rule monoseq_arctan_series[OF assms]) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3429 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3430 | lemma less_one_imp_sqr_less_one: fixes x :: real assumes "\<bar>x\<bar> < 1" shows "x^2 < 1" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3431 | proof - | 
| 38642 
8fa437809c67
dropped type classes mult_mono and mult_mono1; tuned names of technical rule duplicates
 haftmann parents: 
37887diff
changeset | 3432 | from mult_left_mono[OF less_imp_le[OF `\<bar>x\<bar> < 1`] abs_ge_zero[of x]] | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3433 | have "\<bar> x^2 \<bar> < 1" using `\<bar> x \<bar> < 1` unfolding numeral_2_eq_2 power_Suc2 by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3434 | thus ?thesis using zero_le_power2 by auto | 
| 41970 | 3435 | qed | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3436 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3437 | lemma DERIV_arctan_series: assumes "\<bar> x \<bar> < 1" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3438 | shows "DERIV (\<lambda> x'. \<Sum> k. (-1)^k * (1 / real (k*2+1) * x' ^ (k*2+1))) x :> (\<Sum> k. (-1)^k * x^(k*2))" (is "DERIV ?arctan _ :> ?Int") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3439 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3440 | let "?f n" = "if even n then (-1)^(n div 2) * 1 / real (Suc n) else 0" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3441 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3442 |   { fix n :: nat assume "even n" hence "2 * (n div 2) = n" by presburger } note n_even=this
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3443 | have if_eq: "\<And> n x'. ?f n * real (Suc n) * x'^n = (if even n then (-1)^(n div 2) * x'^(2 * (n div 2)) else 0)" using n_even by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3444 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3445 |   { fix x :: real assume "\<bar>x\<bar> < 1" hence "x^2 < 1" by (rule less_one_imp_sqr_less_one)
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3446 | have "summable (\<lambda> n. -1 ^ n * (x^2) ^n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3447 | by (rule summable_Leibniz(1), auto intro!: LIMSEQ_realpow_zero monoseq_realpow `x^2 < 1` order_less_imp_le[OF `x^2 < 1`]) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3448 | hence "summable (\<lambda> n. -1 ^ n * x^(2*n))" unfolding power_mult . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3449 | } note summable_Integral = this | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3450 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3451 |   { fix f :: "nat \<Rightarrow> real"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3452 | have "\<And> x. f sums x = (\<lambda> n. if even n then f (n div 2) else 0) sums x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3453 | proof | 
| 41970 | 3454 | fix x :: real assume "f sums x" | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3455 | from sums_if[OF sums_zero this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3456 | show "(\<lambda> n. if even n then f (n div 2) else 0) sums x" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3457 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3458 | fix x :: real assume "(\<lambda> n. if even n then f (n div 2) else 0) sums x" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3459 | from LIMSEQ_linear[OF this[unfolded sums_def] pos2, unfolded sum_split_even_odd[unfolded mult_commute]] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3460 | show "f sums x" unfolding sums_def by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3461 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3462 | hence "op sums f = op sums (\<lambda> n. if even n then f (n div 2) else 0)" .. | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3463 | } note sums_even = this | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3464 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3465 | have Int_eq: "(\<Sum> n. ?f n * real (Suc n) * x^n) = ?Int" unfolding if_eq mult_commute[of _ 2] suminf_def sums_even[of "\<lambda> n. -1 ^ n * x ^ (2 * n)", symmetric] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3466 | by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3467 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3468 |   { fix x :: real
 | 
| 41970 | 3469 | have if_eq': "\<And> n. (if even n then -1 ^ (n div 2) * 1 / real (Suc n) else 0) * x ^ Suc n = | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3470 | (if even n then -1 ^ (n div 2) * (1 / real (Suc (2 * (n div 2))) * x ^ Suc (2 * (n div 2))) else 0)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3471 | using n_even by auto | 
| 41970 | 3472 | have idx_eq: "\<And> n. n * 2 + 1 = Suc (2 * n)" by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3473 | have "(\<Sum> n. ?f n * x^(Suc n)) = ?arctan x" unfolding if_eq' idx_eq suminf_def sums_even[of "\<lambda> n. -1 ^ n * (1 / real (Suc (2 * n)) * x ^ Suc (2 * n))", symmetric] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3474 | by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3475 | } note arctan_eq = this | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3476 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3477 | have "DERIV (\<lambda> x. \<Sum> n. ?f n * x^(Suc n)) x :> (\<Sum> n. ?f n * real (Suc n) * x^n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3478 | proof (rule DERIV_power_series') | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3479 |     show "x \<in> {- 1 <..< 1}" using `\<bar> x \<bar> < 1` by auto
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3480 |     { fix x' :: real assume x'_bounds: "x' \<in> {- 1 <..< 1}"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3481 | hence "\<bar>x'\<bar> < 1" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3482 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3483 | let ?S = "\<Sum> n. (-1)^n * x'^(2 * n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3484 | show "summable (\<lambda> n. ?f n * real (Suc n) * x'^n)" unfolding if_eq | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3485 | by (rule sums_summable[where l="0 + ?S"], rule sums_if, rule sums_zero, rule summable_sums, rule summable_Integral[OF `\<bar>x'\<bar> < 1`]) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3486 | } | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3487 | qed auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3488 | thus ?thesis unfolding Int_eq arctan_eq . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3489 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3490 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3491 | lemma arctan_series: assumes "\<bar> x \<bar> \<le> 1" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3492 | shows "arctan x = (\<Sum> k. (-1)^k * (1 / real (k*2+1) * x ^ (k*2+1)))" (is "_ = suminf (\<lambda> n. ?c x n)") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3493 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3494 | let "?c' x n" = "(-1)^n * x^(n*2)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3495 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3496 |   { fix r x :: real assume "0 < r" and "r < 1" and "\<bar> x \<bar> < r"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3497 | have "\<bar>x\<bar> < 1" using `r < 1` and `\<bar>x\<bar> < r` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3498 | from DERIV_arctan_series[OF this] | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3499 | have "DERIV (\<lambda> x. suminf (?c x)) x :> (suminf (?c' x))" . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3500 | } note DERIV_arctan_suminf = this | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3501 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3502 |   { fix x :: real assume "\<bar>x\<bar> \<le> 1" note summable_Leibniz[OF zeroseq_arctan_series[OF this] monoseq_arctan_series[OF this]] }
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3503 | note arctan_series_borders = this | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3504 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3505 |   { fix x :: real assume "\<bar>x\<bar> < 1" have "arctan x = (\<Sum> k. ?c x k)"
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3506 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3507 | obtain r where "\<bar>x\<bar> < r" and "r < 1" using dense[OF `\<bar>x\<bar> < 1`] by blast | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3508 | hence "0 < r" and "-r < x" and "x < r" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3509 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3510 | have suminf_eq_arctan_bounded: "\<And> x a b. \<lbrakk> -r < a ; b < r ; a < b ; a \<le> x ; x \<le> b \<rbrakk> \<Longrightarrow> suminf (?c x) - arctan x = suminf (?c a) - arctan a" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3511 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3512 | fix x a b assume "-r < a" and "b < r" and "a < b" and "a \<le> x" and "x \<le> b" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3513 | hence "\<bar>x\<bar> < r" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3514 | show "suminf (?c x) - arctan x = suminf (?c a) - arctan a" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3515 | proof (rule DERIV_isconst2[of "a" "b"]) | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3516 | show "a < b" and "a \<le> x" and "x \<le> b" using `a < b` `a \<le> x` `x \<le> b` by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3517 | have "\<forall> x. -r < x \<and> x < r \<longrightarrow> DERIV (\<lambda> x. suminf (?c x) - arctan x) x :> 0" | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3518 | proof (rule allI, rule impI) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3519 | fix x assume "-r < x \<and> x < r" hence "\<bar>x\<bar> < r" by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3520 | hence "\<bar>x\<bar> < 1" using `r < 1` by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3521 | have "\<bar> - (x^2) \<bar> < 1" using less_one_imp_sqr_less_one[OF `\<bar>x\<bar> < 1`] by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3522 | hence "(\<lambda> n. (- (x^2)) ^ n) sums (1 / (1 - (- (x^2))))" unfolding real_norm_def[symmetric] by (rule geometric_sums) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3523 | hence "(?c' x) sums (1 / (1 - (- (x^2))))" unfolding power_mult_distrib[symmetric] power_mult nat_mult_commute[of _ 2] by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3524 | hence suminf_c'_eq_geom: "inverse (1 + x^2) = suminf (?c' x)" using sums_unique unfolding inverse_eq_divide by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3525 | have "DERIV (\<lambda> x. suminf (?c x)) x :> (inverse (1 + x^2))" unfolding suminf_c'_eq_geom | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3526 | by (rule DERIV_arctan_suminf[OF `0 < r` `r < 1` `\<bar>x\<bar> < r`]) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3527 | from DERIV_add_minus[OF this DERIV_arctan] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3528 | show "DERIV (\<lambda> x. suminf (?c x) - arctan x) x :> 0" unfolding diff_minus by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3529 | qed | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3530 | hence DERIV_in_rball: "\<forall> y. a \<le> y \<and> y \<le> b \<longrightarrow> DERIV (\<lambda> x. suminf (?c x) - arctan x) y :> 0" using `-r < a` `b < r` by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3531 | thus "\<forall> y. a < y \<and> y < b \<longrightarrow> DERIV (\<lambda> x. suminf (?c x) - arctan x) y :> 0" using `\<bar>x\<bar> < r` by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3532 | show "\<forall> y. a \<le> y \<and> y \<le> b \<longrightarrow> isCont (\<lambda> x. suminf (?c x) - arctan x) y" using DERIV_in_rball DERIV_isCont by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3533 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3534 | qed | 
| 41970 | 3535 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3536 | have suminf_arctan_zero: "suminf (?c 0) - arctan 0 = 0" | 
| 31790 | 3537 | unfolding Suc_eq_plus1[symmetric] power_Suc2 mult_zero_right arctan_zero_zero suminf_zero by auto | 
| 41970 | 3538 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3539 | have "suminf (?c x) - arctan x = 0" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3540 | proof (cases "x = 0") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3541 | case True thus ?thesis using suminf_arctan_zero by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3542 | next | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3543 | case False hence "0 < \<bar>x\<bar>" and "- \<bar>x\<bar> < \<bar>x\<bar>" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3544 | have "suminf (?c (-\<bar>x\<bar>)) - arctan (-\<bar>x\<bar>) = suminf (?c 0) - arctan 0" | 
| 35038 | 3545 | by (rule suminf_eq_arctan_bounded[where x="0" and a="-\<bar>x\<bar>" and b="\<bar>x\<bar>", symmetric]) | 
| 3546 | (simp_all only: `\<bar>x\<bar> < r` `-\<bar>x\<bar> < \<bar>x\<bar>` neg_less_iff_less) | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3547 | moreover | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3548 | have "suminf (?c x) - arctan x = suminf (?c (-\<bar>x\<bar>)) - arctan (-\<bar>x\<bar>)" | 
| 35038 | 3549 | by (rule suminf_eq_arctan_bounded[where x="x" and a="-\<bar>x\<bar>" and b="\<bar>x\<bar>"]) | 
| 3550 | (simp_all only: `\<bar>x\<bar> < r` `-\<bar>x\<bar> < \<bar>x\<bar>` neg_less_iff_less) | |
| 41970 | 3551 | ultimately | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3552 | show ?thesis using suminf_arctan_zero by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3553 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3554 | thus ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3555 | qed } note when_less_one = this | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3556 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3557 | show "arctan x = suminf (\<lambda> n. ?c x n)" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3558 | proof (cases "\<bar>x\<bar> < 1") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3559 | case True thus ?thesis by (rule when_less_one) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3560 | next case False hence "\<bar>x\<bar> = 1" using `\<bar>x\<bar> \<le> 1` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3561 | let "?a x n" = "\<bar>1 / real (n*2+1) * x^(n*2+1)\<bar>" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3562 | let "?diff x n" = "\<bar> arctan x - (\<Sum> i = 0..<n. ?c x i)\<bar>" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3563 |     { fix n :: nat
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3564 | have "0 < (1 :: real)" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3565 | moreover | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3566 |       { fix x :: real assume "0 < x" and "x < 1" hence "\<bar>x\<bar> \<le> 1" and "\<bar>x\<bar> < 1" by auto
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3567 | from `0 < x` have "0 < 1 / real (0 * 2 + (1::nat)) * x ^ (0 * 2 + 1)" by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3568 | note bounds = mp[OF arctan_series_borders(2)[OF `\<bar>x\<bar> \<le> 1`] this, unfolded when_less_one[OF `\<bar>x\<bar> < 1`, symmetric], THEN spec] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3569 | have "0 < 1 / real (n*2+1) * x^(n*2+1)" by (rule mult_pos_pos, auto simp only: zero_less_power[OF `0 < x`], auto) | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3570 | hence a_pos: "?a x n = 1 / real (n*2+1) * x^(n*2+1)" by (rule abs_of_pos) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3571 | have "?diff x n \<le> ?a x n" | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3572 | proof (cases "even n") | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3573 | case True hence sgn_pos: "(-1)^n = (1::real)" by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3574 | from `even n` obtain m where "2 * m = n" unfolding even_mult_two_ex by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3575 | from bounds[of m, unfolded this atLeastAtMost_iff] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3576 | have "\<bar>arctan x - (\<Sum>i = 0..<n. (?c x i))\<bar> \<le> (\<Sum>i = 0..<n + 1. (?c x i)) - (\<Sum>i = 0..<n. (?c x i))" by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3577 | also have "\<dots> = ?c x n" unfolding One_nat_def by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3578 | also have "\<dots> = ?a x n" unfolding sgn_pos a_pos by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3579 | finally show ?thesis . | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3580 | next | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3581 | case False hence sgn_neg: "(-1)^n = (-1::real)" by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3582 | from `odd n` obtain m where m_def: "2 * m + 1 = n" unfolding odd_Suc_mult_two_ex by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3583 | hence m_plus: "2 * (m + 1) = n + 1" by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3584 | from bounds[of "m + 1", unfolded this atLeastAtMost_iff, THEN conjunct1] bounds[of m, unfolded m_def atLeastAtMost_iff, THEN conjunct2] | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3585 | have "\<bar>arctan x - (\<Sum>i = 0..<n. (?c x i))\<bar> \<le> (\<Sum>i = 0..<n. (?c x i)) - (\<Sum>i = 0..<n+1. (?c x i))" by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3586 | also have "\<dots> = - ?c x n" unfolding One_nat_def by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3587 | also have "\<dots> = ?a x n" unfolding sgn_neg a_pos by auto | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3588 | finally show ?thesis . | 
| 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3589 | qed | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3590 | hence "0 \<le> ?a x n - ?diff x n" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3591 | } | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3592 |       hence "\<forall> x \<in> { 0 <..< 1 }. 0 \<le> ?a x n - ?diff x n" by auto
 | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3593 | moreover have "\<And>x. isCont (\<lambda> x. ?a x n - ?diff x n) x" | 
| 37887 | 3594 | unfolding diff_minus divide_inverse | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3595 | by (auto intro!: isCont_add isCont_rabs isCont_ident isCont_minus isCont_arctan isCont_inverse isCont_mult isCont_power isCont_const isCont_setsum) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3596 | ultimately have "0 \<le> ?a 1 n - ?diff 1 n" by (rule LIM_less_bound) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3597 | hence "?diff 1 n \<le> ?a 1 n" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3598 | } | 
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 3599 | have "?a 1 ----> 0" | 
| 44568 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 huffman parents: 
44319diff
changeset | 3600 | unfolding tendsto_rabs_zero_iff power_one divide_inverse One_nat_def | 
| 
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
 huffman parents: 
44319diff
changeset | 3601 | by (auto intro!: tendsto_mult LIMSEQ_linear LIMSEQ_inverse_real_of_nat) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3602 | have "?diff 1 ----> 0" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3603 | proof (rule LIMSEQ_I) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3604 | fix r :: real assume "0 < r" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3605 | obtain N :: nat where N_I: "\<And> n. N \<le> n \<Longrightarrow> ?a 1 n < r" using LIMSEQ_D[OF `?a 1 ----> 0` `0 < r`] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3606 |       { fix n assume "N \<le> n" from `?diff 1 n \<le> ?a 1 n` N_I[OF this]
 | 
| 32960 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 wenzelm parents: 
32047diff
changeset | 3607 | have "norm (?diff 1 n - 0) < r" by auto } | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3608 | thus "\<exists> N. \<forall> n \<ge> N. norm (?diff 1 n - 0) < r" by blast | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3609 | qed | 
| 44710 | 3610 | from this [unfolded tendsto_rabs_zero_iff, THEN tendsto_add [OF _ tendsto_const], of "- arctan 1", THEN tendsto_minus] | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3611 | have "(?c 1) sums (arctan 1)" unfolding sums_def by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3612 | hence "arctan 1 = (\<Sum> i. ?c 1 i)" by (rule sums_unique) | 
| 41970 | 3613 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3614 | show ?thesis | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3615 | proof (cases "x = 1", simp add: `arctan 1 = (\<Sum> i. ?c 1 i)`) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3616 | assume "x \<noteq> 1" hence "x = -1" using `\<bar>x\<bar> = 1` by auto | 
| 41970 | 3617 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3618 | have "- (pi / 2) < 0" using pi_gt_zero by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3619 | have "- (2 * pi) < 0" using pi_gt_zero by auto | 
| 41970 | 3620 | |
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 3621 | have c_minus_minus: "\<And> i. ?c (- 1) i = - ?c 1 i" unfolding One_nat_def by auto | 
| 41970 | 3622 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3623 | have "arctan (- 1) = arctan (tan (-(pi / 4)))" unfolding tan_45 tan_minus .. | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3624 | also have "\<dots> = - (pi / 4)" by (rule arctan_tan, auto simp add: order_less_trans[OF `- (pi / 2) < 0` pi_gt_zero]) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3625 | also have "\<dots> = - (arctan (tan (pi / 4)))" unfolding neg_equal_iff_equal by (rule arctan_tan[symmetric], auto simp add: order_less_trans[OF `- (2 * pi) < 0` pi_gt_zero]) | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3626 | also have "\<dots> = - (arctan 1)" unfolding tan_45 .. | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3627 | also have "\<dots> = - (\<Sum> i. ?c 1 i)" using `arctan 1 = (\<Sum> i. ?c 1 i)` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3628 | also have "\<dots> = (\<Sum> i. ?c (- 1) i)" using suminf_minus[OF sums_summable[OF `(?c 1) sums (arctan 1)`]] unfolding c_minus_minus by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3629 | finally show ?thesis using `x = -1` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3630 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3631 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3632 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3633 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3634 | lemma arctan_half: fixes x :: real | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3635 | shows "arctan x = 2 * arctan (x / (1 + sqrt(1 + x^2)))" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3636 | proof - | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3637 | obtain y where low: "- (pi / 2) < y" and high: "y < pi / 2" and y_eq: "tan y = x" using tan_total by blast | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3638 | hence low2: "- (pi / 2) < y / 2" and high2: "y / 2 < pi / 2" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3639 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3640 | have divide_nonzero_divide: "\<And> A B C :: real. C \<noteq> 0 \<Longrightarrow> A / B = (A / C) / (B / C)" by auto | 
| 41970 | 3641 | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3642 | have "0 < cos y" using cos_gt_zero_pi[OF low high] . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3643 | hence "cos y \<noteq> 0" and cos_sqrt: "sqrt ((cos y) ^ 2) = cos y" by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3644 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3645 | have "1 + (tan y)^2 = 1 + sin y^2 / cos y^2" unfolding tan_def power_divide .. | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3646 | also have "\<dots> = cos y^2 / cos y^2 + sin y^2 / cos y^2" using `cos y \<noteq> 0` by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3647 | also have "\<dots> = 1 / cos y^2" unfolding add_divide_distrib[symmetric] sin_cos_squared_add2 .. | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3648 | finally have "1 + (tan y)^2 = 1 / cos y^2" . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3649 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3650 | have "sin y / (cos y + 1) = tan y / ((cos y + 1) / cos y)" unfolding tan_def divide_nonzero_divide[OF `cos y \<noteq> 0`, symmetric] .. | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3651 | also have "\<dots> = tan y / (1 + 1 / cos y)" using `cos y \<noteq> 0` unfolding add_divide_distrib by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3652 | also have "\<dots> = tan y / (1 + 1 / sqrt(cos y^2))" unfolding cos_sqrt .. | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3653 | also have "\<dots> = tan y / (1 + sqrt(1 / cos y^2))" unfolding real_sqrt_divide by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3654 | finally have eq: "sin y / (cos y + 1) = tan y / (1 + sqrt(1 + (tan y)^2))" unfolding `1 + (tan y)^2 = 1 / cos y^2` . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3655 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3656 | have "arctan x = y" using arctan_tan low high y_eq by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3657 | also have "\<dots> = 2 * (arctan (tan (y/2)))" using arctan_tan[OF low2 high2] by auto | 
| 44756 
efcd71fbaeec
simplify proof of tan_half, removing unused assumptions
 huffman parents: 
44755diff
changeset | 3658 | also have "\<dots> = 2 * (arctan (sin y / (cos y + 1)))" unfolding tan_half by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3659 | finally show ?thesis unfolding eq `tan y = x` . | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3660 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3661 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3662 | lemma arctan_monotone: assumes "x < y" | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3663 | shows "arctan x < arctan y" | 
| 44746 | 3664 | using assms by (simp only: arctan_less_iff) | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3665 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3666 | lemma arctan_monotone': assumes "x \<le> y" shows "arctan x \<le> arctan y" | 
| 44746 | 3667 | using assms by (simp only: arctan_le_iff) | 
| 3668 | ||
| 3669 | lemma arctan_inverse: | |
| 3670 | assumes "x \<noteq> 0" shows "arctan (1 / x) = sgn x * pi / 2 - arctan x" | |
| 3671 | proof (rule arctan_unique) | |
| 3672 | show "- (pi / 2) < sgn x * pi / 2 - arctan x" | |
| 3673 | using arctan_bounded [of x] assms | |
| 3674 | unfolding sgn_real_def | |
| 3675 | apply (auto simp add: algebra_simps) | |
| 3676 | apply (drule zero_less_arctan_iff [THEN iffD2]) | |
| 3677 | apply arith | |
| 3678 | done | |
| 3679 | show "sgn x * pi / 2 - arctan x < pi / 2" | |
| 3680 | using arctan_bounded [of "- x"] assms | |
| 3681 | unfolding sgn_real_def arctan_minus | |
| 3682 | by auto | |
| 3683 | show "tan (sgn x * pi / 2 - arctan x) = 1 / x" | |
| 3684 | unfolding tan_inverse [of "arctan x", unfolded tan_arctan] | |
| 3685 | unfolding sgn_real_def | |
| 3686 | by (simp add: tan_def cos_arctan sin_arctan sin_diff cos_diff) | |
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3687 | qed | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3688 | |
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3689 | theorem pi_series: "pi / 4 = (\<Sum> k. (-1)^k * 1 / real (k*2+1))" (is "_ = ?SUM") | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3690 | proof - | 
| 44746 | 3691 | have "pi / 4 = arctan 1" using arctan_one by auto | 
| 29803 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3692 | also have "\<dots> = ?SUM" using arctan_series[of 1] by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3693 | finally show ?thesis by auto | 
| 
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
 hoelzl parents: 
29695diff
changeset | 3694 | qed | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3695 | |
| 22978 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3696 | subsection {* Existence of Polar Coordinates *}
 | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3697 | |
| 22978 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3698 | lemma cos_x_y_le_one: "\<bar>x / sqrt (x\<twosuperior> + y\<twosuperior>)\<bar> \<le> 1" | 
| 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3699 | apply (rule power2_le_imp_le [OF _ zero_le_one]) | 
| 35216 | 3700 | apply (simp add: power_divide divide_le_eq not_sum_power2_lt_zero) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3701 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3702 | |
| 22978 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3703 | lemma cos_arccos_abs: "\<bar>y\<bar> \<le> 1 \<Longrightarrow> cos (arccos y) = y" | 
| 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3704 | by (simp add: abs_le_iff) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3705 | |
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3706 | lemma sin_arccos_abs: "\<bar>y\<bar> \<le> 1 \<Longrightarrow> sin (arccos y) = sqrt (1 - y\<twosuperior>)" | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3707 | by (simp add: sin_arccos abs_le_iff) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3708 | |
| 22978 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3709 | lemmas cos_arccos_lemma1 = cos_arccos_abs [OF cos_x_y_le_one] | 
| 15228 | 3710 | |
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3711 | lemmas sin_arccos_lemma1 = sin_arccos_abs [OF cos_x_y_le_one] | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3712 | |
| 15229 | 3713 | lemma polar_ex1: | 
| 22978 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3714 | "0 < y ==> \<exists>r a. x = r * cos a & y = r * sin a" | 
| 15229 | 3715 | apply (rule_tac x = "sqrt (x\<twosuperior> + y\<twosuperior>)" in exI) | 
| 22978 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3716 | apply (rule_tac x = "arccos (x / sqrt (x\<twosuperior> + y\<twosuperior>))" in exI) | 
| 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3717 | apply (simp add: cos_arccos_lemma1) | 
| 23045 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3718 | apply (simp add: sin_arccos_lemma1) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3719 | apply (simp add: power_divide) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3720 | apply (simp add: real_sqrt_mult [symmetric]) | 
| 
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
 huffman parents: 
23043diff
changeset | 3721 | apply (simp add: right_diff_distrib) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3722 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3723 | |
| 15229 | 3724 | lemma polar_ex2: | 
| 22978 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3725 | "y < 0 ==> \<exists>r a. x = r * cos a & y = r * sin a" | 
| 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3726 | apply (insert polar_ex1 [where x=x and y="-y"], simp, clarify) | 
| 33667 | 3727 | apply (metis cos_minus minus_minus minus_mult_right sin_minus) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3728 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3729 | |
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3730 | lemma polar_Ex: "\<exists>r a. x = r * cos a & y = r * sin a" | 
| 22978 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3731 | apply (rule_tac x=0 and y=y in linorder_cases) | 
| 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3732 | apply (erule polar_ex1) | 
| 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3733 | apply (rule_tac x=x in exI, rule_tac x=0 in exI, simp) | 
| 
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
 huffman parents: 
22977diff
changeset | 3734 | apply (erule polar_ex2) | 
| 15077 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3735 | done | 
| 
89840837108e
converting Hyperreal/Transcendental to Isar script
 paulson parents: 
15013diff
changeset | 3736 | |
| 30082 
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
 huffman parents: 
29803diff
changeset | 3737 | end |