author | blanchet |
Thu, 26 Jun 2014 13:35:21 +0200 | |
changeset 57365 | d2090a01e920 |
parent 57275 | 0ddb5b755cdc |
child 57418 | 6ab1c7cb0b8d |
permissions | -rw-r--r-- |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
1 |
(* Title: HOL/Transcendental.thy |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
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:
32047
diff
changeset
|
3 |
Author: Lawrence C Paulson |
51527 | 4 |
Author: Jeremy Avigad |
12196 | 5 |
*) |
6 |
||
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
7 |
header{*Power Series, Transcendental Functions etc.*} |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
8 |
|
15131 | 9 |
theory Transcendental |
25600 | 10 |
imports Fact Series Deriv NthRoot |
15131 | 11 |
begin |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
12 |
|
57025 | 13 |
lemma root_test_convergence: |
14 |
fixes f :: "nat \<Rightarrow> 'a::banach" |
|
15 |
assumes f: "(\<lambda>n. root n (norm (f n))) ----> x" -- "could be weakened to lim sup" |
|
16 |
assumes "x < 1" |
|
17 |
shows "summable f" |
|
18 |
proof - |
|
19 |
have "0 \<le> x" |
|
20 |
by (rule LIMSEQ_le[OF tendsto_const f]) (auto intro!: exI[of _ 1]) |
|
21 |
from `x < 1` obtain z where z: "x < z" "z < 1" |
|
22 |
by (metis dense) |
|
23 |
from f `x < z` |
|
24 |
have "eventually (\<lambda>n. root n (norm (f n)) < z) sequentially" |
|
25 |
by (rule order_tendstoD) |
|
26 |
then have "eventually (\<lambda>n. norm (f n) \<le> z^n) sequentially" |
|
27 |
using eventually_ge_at_top |
|
28 |
proof eventually_elim |
|
29 |
fix n assume less: "root n (norm (f n)) < z" and n: "1 \<le> n" |
|
30 |
from power_strict_mono[OF less, of n] n |
|
31 |
show "norm (f n) \<le> z ^ n" |
|
32 |
by simp |
|
33 |
qed |
|
34 |
then show "summable f" |
|
35 |
unfolding eventually_sequentially |
|
36 |
using z `0 \<le> x` by (auto intro!: summable_comparison_test[OF _ summable_geometric]) |
|
37 |
qed |
|
38 |
||
29164 | 39 |
subsection {* Properties of Power Series *} |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
40 |
|
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
41 |
lemma lemma_realpow_diff: |
31017 | 42 |
fixes y :: "'a::monoid_mult" |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
43 |
shows "p \<le> n \<Longrightarrow> y ^ (Suc n - p) = (y ^ (n - p)) * y" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
44 |
proof - |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
45 |
assume "p \<le> n" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
46 |
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:
30082
diff
changeset
|
47 |
thus ?thesis by (simp add: power_commutes) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
48 |
qed |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
49 |
|
15229 | 50 |
lemma lemma_realpow_diff_sumr2: |
53079 | 51 |
fixes y :: "'a::{comm_ring,monoid_mult}" |
52 |
shows |
|
53 |
"x ^ (Suc n) - y ^ (Suc n) = |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
54 |
(x - y) * (\<Sum>p<Suc n. (x ^ p) * y ^ (n - p))" |
54573 | 55 |
proof (induct n) |
56 |
case (Suc n) |
|
57 |
have "x ^ Suc (Suc n) - y ^ Suc (Suc n) = x * (x * x ^ n) - y * (y * y ^ n)" |
|
58 |
by simp |
|
59 |
also have "... = y * (x ^ (Suc n) - y ^ (Suc n)) + (x - y) * (x * x ^ n)" |
|
60 |
by (simp add: algebra_simps) |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
61 |
also have "... = y * ((x - y) * (\<Sum>p<Suc n. (x ^ p) * y ^ (n - p))) + (x - y) * (x * x ^ n)" |
54573 | 62 |
by (simp only: Suc) |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
63 |
also have "... = (x - y) * (y * (\<Sum>p<Suc n. (x ^ p) * y ^ (n - p))) + (x - y) * (x * x ^ n)" |
54573 | 64 |
by (simp only: mult_left_commute) |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
65 |
also have "... = (x - y) * (\<Sum>p<Suc (Suc n). x ^ p * y ^ (Suc n - p))" |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
66 |
by (simp add: field_simps Suc_diff_le setsum_left_distrib setsum_right_distrib) |
54573 | 67 |
finally show ?case . |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
68 |
qed simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
69 |
|
55832 | 70 |
corollary power_diff_sumr2: --{* @{text COMPLEX_POLYFUN} in HOL Light *} |
55734 | 71 |
fixes x :: "'a::{comm_ring,monoid_mult}" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
72 |
shows "x^n - y^n = (x - y) * (\<Sum>i<n. y^(n - Suc i) * x^i)" |
55734 | 73 |
using lemma_realpow_diff_sumr2[of x "n - 1" y] |
74 |
by (cases "n = 0") (simp_all add: field_simps) |
|
75 |
||
15229 | 76 |
lemma lemma_realpow_rev_sumr: |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
77 |
"(\<Sum>p<Suc n. (x ^ p) * (y ^ (n - p))) = |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
78 |
(\<Sum>p<Suc n. (x ^ (n - p)) * (y ^ p))" |
57129
7edb7550663e
introduce more powerful reindexing rules for big operators
hoelzl
parents:
57025
diff
changeset
|
79 |
by (subst nat_diff_setsum_reindex[symmetric]) simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
80 |
|
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
81 |
lemma power_diff_1_eq: |
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
82 |
fixes x :: "'a::{comm_ring,monoid_mult}" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
83 |
shows "n \<noteq> 0 \<Longrightarrow> x^n - 1 = (x - 1) * (\<Sum>i<n. (x^i))" |
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
84 |
using lemma_realpow_diff_sumr2 [of x _ 1] |
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
85 |
by (cases n) auto |
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
86 |
|
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
87 |
lemma one_diff_power_eq': |
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
88 |
fixes x :: "'a::{comm_ring,monoid_mult}" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
89 |
shows "n \<noteq> 0 \<Longrightarrow> 1 - x^n = (1 - x) * (\<Sum>i<n. x^(n - Suc i))" |
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
90 |
using lemma_realpow_diff_sumr2 [of 1 _ x] |
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
91 |
by (cases n) auto |
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
92 |
|
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
93 |
lemma one_diff_power_eq: |
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
94 |
fixes x :: "'a::{comm_ring,monoid_mult}" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
95 |
shows "n \<noteq> 0 \<Longrightarrow> 1 - x^n = (1 - x) * (\<Sum>i<n. x^i)" |
55719
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
96 |
by (metis one_diff_power_eq' [of n x] nat_diff_setsum_reindex) |
cdddd073bff8
Lemmas about Reals, norm, etc., and cleaner variants of existing ones
paulson <lp15@cam.ac.uk>
parents:
55417
diff
changeset
|
97 |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
98 |
text{*Power series has a `circle` of convergence, i.e. if it sums for @{term |
53079 | 99 |
x}, then it sums absolutely for @{term z} with @{term "\<bar>z\<bar> < \<bar>x\<bar>"}.*} |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
100 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
101 |
lemma powser_insidea: |
53599 | 102 |
fixes x z :: "'a::real_normed_div_algebra" |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
103 |
assumes 1: "summable (\<lambda>n. f n * x ^ n)" |
53079 | 104 |
and 2: "norm z < norm x" |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
105 |
shows "summable (\<lambda>n. norm (f n * z ^ n))" |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
106 |
proof - |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
107 |
from 2 have x_neq_0: "x \<noteq> 0" by clarsimp |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
108 |
from 1 have "(\<lambda>n. f n * x ^ n) ----> 0" |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
109 |
by (rule summable_LIMSEQ_zero) |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
110 |
hence "convergent (\<lambda>n. f n * x ^ n)" |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
111 |
by (rule convergentI) |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
112 |
hence "Cauchy (\<lambda>n. f n * x ^ n)" |
44726 | 113 |
by (rule convergent_Cauchy) |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
114 |
hence "Bseq (\<lambda>n. f n * x ^ n)" |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
115 |
by (rule Cauchy_Bseq) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
116 |
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:
20692
diff
changeset
|
117 |
by (simp add: Bseq_def, safe) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
118 |
have "\<exists>N. \<forall>n\<ge>N. norm (norm (f n * z ^ n)) \<le> |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
119 |
K * norm (z ^ n) * inverse (norm (x ^ n))" |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
120 |
proof (intro exI allI impI) |
53079 | 121 |
fix n::nat |
122 |
assume "0 \<le> n" |
|
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
123 |
have "norm (norm (f n * z ^ n)) * norm (x ^ n) = |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
124 |
norm (f n * x ^ n) * norm (z ^ n)" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
125 |
by (simp add: norm_mult abs_mult) |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
126 |
also have "\<dots> \<le> K * norm (z ^ n)" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
127 |
by (simp only: mult_right_mono 4 norm_ge_zero) |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
128 |
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:
20692
diff
changeset
|
129 |
by (simp add: x_neq_0) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
130 |
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:
20692
diff
changeset
|
131 |
by (simp only: mult_assoc) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
132 |
finally show "norm (norm (f n * z ^ n)) \<le> |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
133 |
K * norm (z ^ n) * inverse (norm (x ^ n))" |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
134 |
by (simp add: mult_le_cancel_right x_neq_0) |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
135 |
qed |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
136 |
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:
20692
diff
changeset
|
137 |
proof - |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
138 |
from 2 have "norm (norm (z * inverse x)) < 1" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
139 |
using x_neq_0 |
53599 | 140 |
by (simp add: norm_mult nonzero_norm_inverse divide_inverse [where 'a=real, symmetric]) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
141 |
hence "summable (\<lambda>n. norm (z * inverse x) ^ n)" |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
142 |
by (rule summable_geometric) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
143 |
hence "summable (\<lambda>n. K * norm (z * inverse x) ^ n)" |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
144 |
by (rule summable_mult) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
145 |
thus "summable (\<lambda>n. K * norm (z ^ n) * inverse (norm (x ^ n)))" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
146 |
using x_neq_0 |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
147 |
by (simp add: norm_mult nonzero_norm_inverse power_mult_distrib |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
148 |
power_inverse norm_power mult_assoc) |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
149 |
qed |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
150 |
ultimately show "summable (\<lambda>n. norm (f n * z ^ n))" |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
151 |
by (rule summable_comparison_test) |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
152 |
qed |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
153 |
|
15229 | 154 |
lemma powser_inside: |
53599 | 155 |
fixes f :: "nat \<Rightarrow> 'a::{real_normed_div_algebra,banach}" |
53079 | 156 |
shows |
157 |
"summable (\<lambda>n. f n * (x ^ n)) \<Longrightarrow> norm z < norm x \<Longrightarrow> |
|
158 |
summable (\<lambda>n. f n * (z ^ n))" |
|
159 |
by (rule powser_insidea [THEN summable_norm_cancel]) |
|
160 |
||
161 |
lemma sum_split_even_odd: |
|
162 |
fixes f :: "nat \<Rightarrow> real" |
|
163 |
shows |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
164 |
"(\<Sum>i<2 * n. if even i then f i else g i) = |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
165 |
(\<Sum>i<n. f (2 * i)) + (\<Sum>i<n. g (2 * i + 1))" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
166 |
proof (induct n) |
53079 | 167 |
case 0 |
168 |
then show ?case by simp |
|
169 |
next |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
170 |
case (Suc n) |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
171 |
have "(\<Sum>i<2 * Suc n. if even i then f i else g i) = |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
172 |
(\<Sum>i<n. f (2 * i)) + (\<Sum>i<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:
29803
diff
changeset
|
173 |
using Suc.hyps unfolding One_nat_def by auto |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
174 |
also have "\<dots> = (\<Sum>i<Suc n. f (2 * i)) + (\<Sum>i<Suc n. g (2 * i + 1))" |
53079 | 175 |
by auto |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
176 |
finally show ?case . |
53079 | 177 |
qed |
178 |
||
179 |
lemma sums_if': |
|
180 |
fixes g :: "nat \<Rightarrow> real" |
|
181 |
assumes "g sums x" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
182 |
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:
29695
diff
changeset
|
183 |
unfolding sums_def |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
184 |
proof (rule LIMSEQ_I) |
53079 | 185 |
fix r :: real |
186 |
assume "0 < r" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
187 |
from `g sums x`[unfolded sums_def, THEN LIMSEQ_D, OF this] |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
188 |
obtain no where no_eq: "\<And> n. n \<ge> no \<Longrightarrow> (norm (setsum g {..<n} - x) < r)" by blast |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
189 |
|
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
190 |
let ?SUM = "\<lambda> m. \<Sum>i<m. if even i then 0 else g ((i - 1) div 2)" |
53079 | 191 |
{ |
192 |
fix m |
|
193 |
assume "m \<ge> 2 * no" |
|
194 |
hence "m div 2 \<ge> no" by auto |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
195 |
have sum_eq: "?SUM (2 * (m div 2)) = setsum g {..< m div 2}" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
196 |
using sum_split_even_odd by auto |
53079 | 197 |
hence "(norm (?SUM (2 * (m div 2)) - x) < r)" |
198 |
using no_eq unfolding sum_eq using `m div 2 \<ge> no` by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
199 |
moreover |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
200 |
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:
29695
diff
changeset
|
201 |
proof (cases "even m") |
53079 | 202 |
case True |
203 |
show ?thesis |
|
204 |
unfolding even_nat_div_two_times_two[OF True, unfolded numeral_2_eq_2[symmetric]] .. |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
205 |
next |
53079 | 206 |
case False |
207 |
hence "even (Suc m)" by auto |
|
208 |
from even_nat_div_two_times_two[OF this, unfolded numeral_2_eq_2[symmetric]] |
|
209 |
odd_nat_plus_one_div_two[OF False, unfolded numeral_2_eq_2[symmetric]] |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
210 |
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:
29695
diff
changeset
|
211 |
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:
29695
diff
changeset
|
212 |
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:
29695
diff
changeset
|
213 |
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:
29695
diff
changeset
|
214 |
finally show ?thesis by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
215 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
216 |
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:
29695
diff
changeset
|
217 |
} |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
218 |
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:
29695
diff
changeset
|
219 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
220 |
|
53079 | 221 |
lemma sums_if: |
222 |
fixes g :: "nat \<Rightarrow> real" |
|
223 |
assumes "g sums x" and "f sums y" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
224 |
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:
29695
diff
changeset
|
225 |
proof - |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
226 |
let ?s = "\<lambda> n. if even n then 0 else f ((n - 1) div 2)" |
53079 | 227 |
{ |
228 |
fix B T E |
|
229 |
have "(if B then (0 :: real) else E) + (if B then T else 0) = (if B then T else E)" |
|
230 |
by (cases B) auto |
|
231 |
} note if_sum = this |
|
232 |
have g_sums: "(\<lambda> n. if even n then 0 else g ((n - 1) div 2)) sums x" |
|
233 |
using sums_if'[OF `g sums x`] . |
|
41970 | 234 |
{ |
41550 | 235 |
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:
29695
diff
changeset
|
236 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
237 |
have "?s sums y" using sums_if'[OF `f sums y`] . |
41970 | 238 |
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:
29695
diff
changeset
|
239 |
have "(\<lambda> n. if even n then f (n div 2) else 0) sums y" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
240 |
by (simp add: lessThan_Suc_eq_insert_0 image_iff setsum_reindex if_eq sums_def cong del: if_cong) |
53079 | 241 |
} |
242 |
from sums_add[OF g_sums this] show ?thesis unfolding if_sum . |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
243 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
244 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
245 |
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:
29695
diff
changeset
|
246 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
247 |
lemma sums_alternating_upper_lower: |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
248 |
fixes a :: "nat \<Rightarrow> real" |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
249 |
assumes mono: "\<And>n. a (Suc n) \<le> a n" and a_pos: "\<And>n. 0 \<le> a n" and "a ----> 0" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
250 |
shows "\<exists>l. ((\<forall>n. (\<Sum>i<2*n. -1^i*a i) \<le> l) \<and> (\<lambda> n. \<Sum>i<2*n. -1^i*a i) ----> l) \<and> |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
251 |
((\<forall>n. l \<le> (\<Sum>i<2*n + 1. -1^i*a i)) \<and> (\<lambda> n. \<Sum>i<2*n + 1. -1^i*a i) ----> l)" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
252 |
(is "\<exists>l. ((\<forall>n. ?f n \<le> l) \<and> _) \<and> ((\<forall>n. l \<le> ?g n) \<and> _)") |
53079 | 253 |
proof (rule nested_sequence_unique) |
30082
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
huffman
parents:
29803
diff
changeset
|
254 |
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:
29695
diff
changeset
|
255 |
|
53079 | 256 |
show "\<forall>n. ?f n \<le> ?f (Suc n)" |
257 |
proof |
|
258 |
fix n |
|
259 |
show "?f n \<le> ?f (Suc n)" using mono[of "2*n"] by auto |
|
260 |
qed |
|
261 |
show "\<forall>n. ?g (Suc n) \<le> ?g n" |
|
262 |
proof |
|
263 |
fix n |
|
264 |
show "?g (Suc n) \<le> ?g n" using mono[of "Suc (2*n)"] |
|
265 |
unfolding One_nat_def by auto |
|
266 |
qed |
|
267 |
show "\<forall>n. ?f n \<le> ?g n" |
|
268 |
proof |
|
269 |
fix n |
|
270 |
show "?f n \<le> ?g n" using fg_diff a_pos |
|
271 |
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:
29695
diff
changeset
|
272 |
qed |
53079 | 273 |
show "(\<lambda>n. ?f n - ?g n) ----> 0" unfolding fg_diff |
274 |
proof (rule LIMSEQ_I) |
|
275 |
fix r :: real |
|
276 |
assume "0 < r" |
|
277 |
with `a ----> 0`[THEN LIMSEQ_D] obtain N where "\<And> n. n \<ge> N \<Longrightarrow> norm (a n - 0) < r" |
|
278 |
by auto |
|
279 |
hence "\<forall>n \<ge> N. norm (- a (2 * n) - 0) < r" by auto |
|
280 |
thus "\<exists>N. \<forall>n \<ge> N. norm (- a (2 * n) - 0) < r" by auto |
|
281 |
qed |
|
41970 | 282 |
qed |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
283 |
|
53079 | 284 |
lemma summable_Leibniz': |
285 |
fixes a :: "nat \<Rightarrow> real" |
|
286 |
assumes a_zero: "a ----> 0" |
|
287 |
and a_pos: "\<And> n. 0 \<le> a n" |
|
288 |
and a_monotone: "\<And> n. a (Suc n) \<le> a n" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
289 |
shows summable: "summable (\<lambda> n. (-1)^n * a n)" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
290 |
and "\<And>n. (\<Sum>i<2*n. (-1)^i*a i) \<le> (\<Sum>i. (-1)^i*a i)" |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
291 |
and "(\<lambda>n. \<Sum>i<2*n. (-1)^i*a i) ----> (\<Sum>i. (-1)^i*a i)" |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
292 |
and "\<And>n. (\<Sum>i. (-1)^i*a i) \<le> (\<Sum>i<2*n+1. (-1)^i*a i)" |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
293 |
and "(\<lambda>n. \<Sum>i<2*n+1. (-1)^i*a i) ----> (\<Sum>i. (-1)^i*a i)" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
294 |
proof - |
53079 | 295 |
let ?S = "\<lambda>n. (-1)^n * a n" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
296 |
let ?P = "\<lambda>n. \<Sum>i<n. ?S i" |
53079 | 297 |
let ?f = "\<lambda>n. ?P (2 * n)" |
298 |
let ?g = "\<lambda>n. ?P (2 * n + 1)" |
|
299 |
obtain l :: real |
|
300 |
where below_l: "\<forall> n. ?f n \<le> l" |
|
301 |
and "?f ----> l" |
|
302 |
and above_l: "\<forall> n. l \<le> ?g n" |
|
303 |
and "?g ----> l" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
304 |
using sums_alternating_upper_lower[OF a_monotone a_pos a_zero] by blast |
41970 | 305 |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
306 |
let ?Sa = "\<lambda>m. \<Sum>n<m. ?S n" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
307 |
have "?Sa ----> l" |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
308 |
proof (rule LIMSEQ_I) |
53079 | 309 |
fix r :: real |
310 |
assume "0 < r" |
|
41970 | 311 |
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:
29695
diff
changeset
|
312 |
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:
29695
diff
changeset
|
313 |
|
41970 | 314 |
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:
29695
diff
changeset
|
315 |
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:
29695
diff
changeset
|
316 |
|
53079 | 317 |
{ |
318 |
fix n :: nat |
|
319 |
assume "n \<ge> (max (2 * f_no) (2 * g_no))" |
|
320 |
hence "n \<ge> 2 * f_no" and "n \<ge> 2 * g_no" by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
321 |
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:
29695
diff
changeset
|
322 |
proof (cases "even n") |
53079 | 323 |
case True |
324 |
from even_nat_div_two_times_two[OF this] |
|
325 |
have n_eq: "2 * (n div 2) = n" |
|
326 |
unfolding numeral_2_eq_2[symmetric] by auto |
|
327 |
with `n \<ge> 2 * f_no` have "n div 2 \<ge> f_no" |
|
328 |
by auto |
|
329 |
from f[OF this] show ?thesis |
|
330 |
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:
29695
diff
changeset
|
331 |
next |
53079 | 332 |
case False |
333 |
hence "even (n - 1)" by simp |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
334 |
from even_nat_div_two_times_two[OF this] |
53079 | 335 |
have n_eq: "2 * ((n - 1) div 2) = n - 1" |
336 |
unfolding numeral_2_eq_2[symmetric] by auto |
|
337 |
hence range_eq: "n - 1 + 1 = n" |
|
338 |
using odd_pos[OF False] by auto |
|
339 |
||
340 |
from n_eq `n \<ge> 2 * g_no` have "(n - 1) div 2 \<ge> g_no" |
|
341 |
by auto |
|
342 |
from g[OF this] show ?thesis |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
343 |
unfolding n_eq range_eq . |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
344 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
345 |
} |
53079 | 346 |
thus "\<exists>no. \<forall>n \<ge> no. norm (?Sa n - l) < r" by blast |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
347 |
qed |
53079 | 348 |
hence sums_l: "(\<lambda>i. (-1)^i * a i) sums l" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
349 |
unfolding sums_def . |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
350 |
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:
29695
diff
changeset
|
351 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
352 |
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:
29695
diff
changeset
|
353 |
|
53079 | 354 |
fix n |
355 |
show "suminf ?S \<le> ?g n" |
|
356 |
unfolding sums_unique[OF sums_l, symmetric] using above_l by auto |
|
357 |
show "?f n \<le> suminf ?S" |
|
358 |
unfolding sums_unique[OF sums_l, symmetric] using below_l by auto |
|
359 |
show "?g ----> suminf ?S" |
|
360 |
using `?g ----> l` `l = suminf ?S` by auto |
|
361 |
show "?f ----> suminf ?S" |
|
362 |
using `?f ----> l` `l = suminf ?S` by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
363 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
364 |
|
53079 | 365 |
theorem summable_Leibniz: |
366 |
fixes a :: "nat \<Rightarrow> real" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
367 |
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:
29695
diff
changeset
|
368 |
shows "summable (\<lambda> n. (-1)^n * a n)" (is "?summable") |
53079 | 369 |
and "0 < a 0 \<longrightarrow> |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
370 |
(\<forall>n. (\<Sum>i. -1^i*a i) \<in> { \<Sum>i<2*n. -1^i * a i .. \<Sum>i<2*n+1. -1^i * a i})" (is "?pos") |
53079 | 371 |
and "a 0 < 0 \<longrightarrow> |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
372 |
(\<forall>n. (\<Sum>i. -1^i*a i) \<in> { \<Sum>i<2*n+1. -1^i * a i .. \<Sum>i<2*n. -1^i * a i})" (is "?neg") |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
373 |
and "(\<lambda>n. \<Sum>i<2*n. -1^i*a i) ----> (\<Sum>i. -1^i*a i)" (is "?f") |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
374 |
and "(\<lambda>n. \<Sum>i<2*n+1. -1^i*a i) ----> (\<Sum>i. -1^i*a i)" (is "?g") |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
375 |
proof - |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
376 |
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:
29695
diff
changeset
|
377 |
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:
29695
diff
changeset
|
378 |
case True |
53079 | 379 |
hence ord: "\<And>n m. m \<le> n \<Longrightarrow> a n \<le> a m" and ge0: "\<And> n. 0 \<le> a n" |
380 |
by auto |
|
381 |
{ |
|
382 |
fix n |
|
383 |
have "a (Suc n) \<le> a n" |
|
384 |
using ord[where n="Suc n" and m=n] by auto |
|
385 |
} note mono = this |
|
386 |
note leibniz = summable_Leibniz'[OF `a ----> 0` ge0] |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
387 |
from leibniz[OF mono] |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
388 |
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:
29695
diff
changeset
|
389 |
next |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
390 |
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:
29695
diff
changeset
|
391 |
case False |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
392 |
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:
29695
diff
changeset
|
393 |
have "(\<forall> n. a n \<le> 0) \<and> (\<forall>m. \<forall>n\<ge>m. a m \<le> a n)" by auto |
53079 | 394 |
hence ord: "\<And>n m. m \<le> n \<Longrightarrow> ?a n \<le> ?a m" and ge0: "\<And> n. 0 \<le> ?a n" |
395 |
by auto |
|
396 |
{ |
|
397 |
fix n |
|
398 |
have "?a (Suc n) \<le> ?a n" using ord[where n="Suc n" and m=n] |
|
399 |
by auto |
|
400 |
} note monotone = this |
|
401 |
note leibniz = |
|
402 |
summable_Leibniz'[OF _ ge0, of "\<lambda>x. x", |
|
403 |
OF tendsto_minus[OF `a ----> 0`, unfolded minus_zero] monotone] |
|
404 |
have "summable (\<lambda> n. (-1)^n * ?a n)" |
|
405 |
using leibniz(1) by auto |
|
406 |
then obtain l where "(\<lambda> n. (-1)^n * ?a n) sums l" |
|
407 |
unfolding summable_def by auto |
|
408 |
from this[THEN sums_minus] have "(\<lambda> n. (-1)^n * a n) sums -l" |
|
409 |
by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
410 |
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:
29695
diff
changeset
|
411 |
moreover |
53079 | 412 |
have "\<And>a b :: real. \<bar>- a - - b\<bar> = \<bar>a - b\<bar>" |
413 |
unfolding minus_diff_minus by auto |
|
41970 | 414 |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
415 |
from suminf_minus[OF leibniz(1), unfolded mult_minus_right minus_minus] |
53079 | 416 |
have move_minus: "(\<Sum>n. - (-1 ^ n * a n)) = - (\<Sum>n. -1 ^ n * a n)" |
417 |
by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
418 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
419 |
have ?pos using `0 \<le> ?a 0` by auto |
53079 | 420 |
moreover have ?neg |
421 |
using leibniz(2,4) |
|
422 |
unfolding mult_minus_right setsum_negf move_minus neg_le_iff_le |
|
423 |
by auto |
|
424 |
moreover have ?f and ?g |
|
425 |
using leibniz(3,5)[unfolded mult_minus_right setsum_negf move_minus, THEN tendsto_minus_cancel] |
|
426 |
by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
427 |
ultimately show ?thesis by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
428 |
qed |
54576 | 429 |
then show ?summable and ?pos and ?neg and ?f and ?g |
54573 | 430 |
by safe |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
431 |
qed |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
432 |
|
29164 | 433 |
subsection {* Term-by-Term Differentiability of Power Series *} |
23043 | 434 |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
435 |
definition diffs :: "(nat \<Rightarrow> 'a::ring_1) \<Rightarrow> nat \<Rightarrow> 'a" |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
436 |
where "diffs c = (\<lambda>n. of_nat (Suc n) * c (Suc n))" |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
437 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
438 |
text{*Lemma about distributing negation over it*} |
53079 | 439 |
lemma diffs_minus: "diffs (\<lambda>n. - c n) = (\<lambda>n. - diffs c n)" |
440 |
by (simp add: diffs_def) |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
441 |
|
29163 | 442 |
lemma sums_Suc_imp: |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
443 |
"(f::nat \<Rightarrow> 'a::real_normed_vector) 0 = 0 \<Longrightarrow> (\<lambda>n. f (Suc n)) sums s \<Longrightarrow> (\<lambda>n. f n) sums s" |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
444 |
using sums_Suc_iff[of f] by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
445 |
|
15229 | 446 |
lemma diffs_equiv: |
41970 | 447 |
fixes x :: "'a::{real_normed_vector, ring_1}" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
448 |
shows "summable (\<lambda>n. diffs c n * x^n) \<Longrightarrow> |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
449 |
(\<lambda>n. of_nat n * c n * x^(n - Suc 0)) sums (\<Sum>n. diffs c n * x^n)" |
53079 | 450 |
unfolding diffs_def |
54573 | 451 |
by (simp add: summable_sums sums_Suc_imp) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
452 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
453 |
lemma lemma_termdiff1: |
31017 | 454 |
fixes z :: "'a :: {monoid_mult,comm_ring}" shows |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
455 |
"(\<Sum>p<m. (((z + h) ^ (m - p)) * (z ^ p)) - (z ^ m)) = |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
456 |
(\<Sum>p<m. (z ^ p) * (((z + h) ^ (m - p)) - (z ^ (m - p))))" |
53079 | 457 |
by (auto simp add: algebra_simps power_add [symmetric]) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
458 |
|
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
459 |
lemma sumr_diff_mult_const2: |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
460 |
"setsum f {..<n} - of_nat n * (r::'a::ring_1) = (\<Sum>i<n. f i - r)" |
53079 | 461 |
by (simp add: setsum_subtractf) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
462 |
|
15229 | 463 |
lemma lemma_termdiff2: |
31017 | 464 |
fixes h :: "'a :: {field}" |
53079 | 465 |
assumes h: "h \<noteq> 0" |
466 |
shows |
|
467 |
"((z + h) ^ n - z ^ n) / h - of_nat n * z ^ (n - Suc 0) = |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
468 |
h * (\<Sum>p< n - Suc 0. \<Sum>q< n - Suc 0 - p. |
53079 | 469 |
(z + h) ^ q * z ^ (n - 2 - q))" (is "?lhs = ?rhs") |
470 |
apply (subgoal_tac "h * ?lhs = h * ?rhs", simp add: h) |
|
471 |
apply (simp add: right_diff_distrib diff_divide_distrib h) |
|
472 |
apply (simp add: mult_assoc [symmetric]) |
|
473 |
apply (cases "n", simp) |
|
474 |
apply (simp add: lemma_realpow_diff_sumr2 h |
|
475 |
right_diff_distrib [symmetric] mult_assoc |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
476 |
del: power_Suc setsum_lessThan_Suc of_nat_Suc) |
53079 | 477 |
apply (subst lemma_realpow_rev_sumr) |
478 |
apply (subst sumr_diff_mult_const2) |
|
479 |
apply simp |
|
480 |
apply (simp only: lemma_termdiff1 setsum_right_distrib) |
|
481 |
apply (rule setsum_cong [OF refl]) |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53602
diff
changeset
|
482 |
apply (simp add: less_iff_Suc_add) |
53079 | 483 |
apply (clarify) |
484 |
apply (simp add: setsum_right_distrib lemma_realpow_diff_sumr2 mult_ac |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
485 |
del: setsum_lessThan_Suc power_Suc) |
53079 | 486 |
apply (subst mult_assoc [symmetric], subst power_add [symmetric]) |
487 |
apply (simp add: mult_ac) |
|
488 |
done |
|
20860 | 489 |
|
490 |
lemma real_setsum_nat_ivl_bounded2: |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34974
diff
changeset
|
491 |
fixes K :: "'a::linordered_semidom" |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
492 |
assumes f: "\<And>p::nat. p < n \<Longrightarrow> f p \<le> K" |
53079 | 493 |
and K: "0 \<le> K" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
494 |
shows "setsum f {..<n-k} \<le> of_nat n * K" |
53079 | 495 |
apply (rule order_trans [OF setsum_mono]) |
496 |
apply (rule f, simp) |
|
497 |
apply (simp add: mult_right_mono K) |
|
498 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
499 |
|
15229 | 500 |
lemma lemma_termdiff3: |
31017 | 501 |
fixes h z :: "'a::{real_normed_field}" |
20860 | 502 |
assumes 1: "h \<noteq> 0" |
53079 | 503 |
and 2: "norm z \<le> K" |
504 |
and 3: "norm (z + h) \<le> K" |
|
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
505 |
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:
23069
diff
changeset
|
506 |
\<le> of_nat n * of_nat (n - Suc 0) * K ^ (n - 2) * norm h" |
20860 | 507 |
proof - |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
508 |
have "norm (((z + h) ^ n - z ^ n) / h - of_nat n * z ^ (n - Suc 0)) = |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
509 |
norm (\<Sum>p<n - Suc 0. \<Sum>q<n - Suc 0 - p. |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
510 |
(z + h) ^ q * z ^ (n - 2 - q)) * norm h" |
54573 | 511 |
by (metis (lifting, no_types) lemma_termdiff2 [OF 1] mult_commute norm_mult) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
512 |
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:
23069
diff
changeset
|
513 |
proof (rule mult_right_mono [OF _ norm_ge_zero]) |
53079 | 514 |
from norm_ge_zero 2 have K: "0 \<le> K" |
515 |
by (rule order_trans) |
|
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
516 |
have le_Kn: "\<And>i j n. i + j = n \<Longrightarrow> norm ((z + h) ^ i * z ^ j) \<le> K ^ n" |
20860 | 517 |
apply (erule subst) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
518 |
apply (simp only: norm_mult norm_power power_add) |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
519 |
apply (intro mult_mono power_mono 2 3 norm_ge_zero zero_le_power K) |
20860 | 520 |
done |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
521 |
show "norm (\<Sum>p<n - Suc 0. \<Sum>q<n - Suc 0 - p. (z + h) ^ q * z ^ (n - 2 - q)) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
522 |
\<le> of_nat n * (of_nat (n - Suc 0) * K ^ (n - 2))" |
20860 | 523 |
apply (intro |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
524 |
order_trans [OF norm_setsum] |
20860 | 525 |
real_setsum_nat_ivl_bounded2 |
526 |
mult_nonneg_nonneg |
|
47489 | 527 |
of_nat_0_le_iff |
20860 | 528 |
zero_le_power K) |
529 |
apply (rule le_Kn, simp) |
|
530 |
done |
|
531 |
qed |
|
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
532 |
also have "\<dots> = of_nat n * of_nat (n - Suc 0) * K ^ (n - 2) * norm h" |
20860 | 533 |
by (simp only: mult_assoc) |
534 |
finally show ?thesis . |
|
535 |
qed |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
536 |
|
20860 | 537 |
lemma lemma_termdiff4: |
56167 | 538 |
fixes f :: "'a::real_normed_vector \<Rightarrow> 'b::real_normed_vector" |
20860 | 539 |
assumes k: "0 < (k::real)" |
53079 | 540 |
and le: "\<And>h. \<lbrakk>h \<noteq> 0; norm h < k\<rbrakk> \<Longrightarrow> norm (f h) \<le> K * norm h" |
20860 | 541 |
shows "f -- 0 --> 0" |
56167 | 542 |
proof (rule tendsto_norm_zero_cancel) |
543 |
show "(\<lambda>h. norm (f h)) -- 0 --> 0" |
|
544 |
proof (rule real_tendsto_sandwich) |
|
545 |
show "eventually (\<lambda>h. 0 \<le> norm (f h)) (at 0)" |
|
20860 | 546 |
by simp |
56167 | 547 |
show "eventually (\<lambda>h. norm (f h) \<le> K * norm h) (at 0)" |
548 |
using k by (auto simp add: eventually_at dist_norm le) |
|
549 |
show "(\<lambda>h. 0) -- (0::'a) --> (0::real)" |
|
550 |
by (rule tendsto_const) |
|
551 |
have "(\<lambda>h. K * norm h) -- (0::'a) --> K * norm (0::'a)" |
|
552 |
by (intro tendsto_intros) |
|
553 |
then show "(\<lambda>h. K * norm h) -- (0::'a) --> 0" |
|
554 |
by simp |
|
20860 | 555 |
qed |
556 |
qed |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
557 |
|
15229 | 558 |
lemma lemma_termdiff5: |
56167 | 559 |
fixes g :: "'a::real_normed_vector \<Rightarrow> nat \<Rightarrow> 'b::banach" |
20860 | 560 |
assumes k: "0 < (k::real)" |
561 |
assumes f: "summable f" |
|
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
562 |
assumes le: "\<And>h n. \<lbrakk>h \<noteq> 0; norm h < k\<rbrakk> \<Longrightarrow> norm (g h n) \<le> f n * norm h" |
20860 | 563 |
shows "(\<lambda>h. suminf (g h)) -- 0 --> 0" |
564 |
proof (rule lemma_termdiff4 [OF k]) |
|
53079 | 565 |
fix h::'a |
566 |
assume "h \<noteq> 0" and "norm h < k" |
|
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
567 |
hence A: "\<forall>n. norm (g h n) \<le> f n * norm h" |
20860 | 568 |
by (simp add: le) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
569 |
hence "\<exists>N. \<forall>n\<ge>N. norm (norm (g h n)) \<le> f n * norm h" |
20860 | 570 |
by simp |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
571 |
moreover from f have B: "summable (\<lambda>n. f n * norm h)" |
20860 | 572 |
by (rule summable_mult2) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
573 |
ultimately have C: "summable (\<lambda>n. norm (g h n))" |
20860 | 574 |
by (rule summable_comparison_test) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
575 |
hence "norm (suminf (g h)) \<le> (\<Sum>n. norm (g h n))" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
576 |
by (rule summable_norm) |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
577 |
also from A C B have "(\<Sum>n. norm (g h n)) \<le> (\<Sum>n. f n * norm h)" |
56213 | 578 |
by (rule suminf_le) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
579 |
also from f have "(\<Sum>n. f n * norm h) = suminf f * norm h" |
20860 | 580 |
by (rule suminf_mult2 [symmetric]) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
581 |
finally show "norm (suminf (g h)) \<le> suminf f * norm h" . |
20860 | 582 |
qed |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
583 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
584 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
585 |
text{* FIXME: Long proofs*} |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
586 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
587 |
lemma termdiffs_aux: |
31017 | 588 |
fixes x :: "'a::{real_normed_field,banach}" |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
589 |
assumes 1: "summable (\<lambda>n. diffs (diffs c) n * K ^ n)" |
53079 | 590 |
and 2: "norm x < norm K" |
20860 | 591 |
shows "(\<lambda>h. \<Sum>n. c n * (((x + h) ^ n - x ^ n) / h |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
592 |
- of_nat n * x ^ (n - Suc 0))) -- 0 --> 0" |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
593 |
proof - |
20860 | 594 |
from dense [OF 2] |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
595 |
obtain r where r1: "norm x < r" and r2: "r < norm K" by fast |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
596 |
from norm_ge_zero r1 have r: "0 < r" |
20860 | 597 |
by (rule order_le_less_trans) |
598 |
hence r_neq_0: "r \<noteq> 0" by simp |
|
599 |
show ?thesis |
|
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
600 |
proof (rule lemma_termdiff5) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
601 |
show "0 < r - norm x" using r1 by simp |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
602 |
from r r2 have "norm (of_real r::'a) < norm K" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
603 |
by simp |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
604 |
with 1 have "summable (\<lambda>n. norm (diffs (diffs c) n * (of_real r ^ n)))" |
20860 | 605 |
by (rule powser_insidea) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
606 |
hence "summable (\<lambda>n. diffs (diffs (\<lambda>n. norm (c n))) n * r ^ n)" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
607 |
using r |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
608 |
by (simp add: diffs_def norm_mult norm_power del: of_nat_Suc) |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
609 |
hence "summable (\<lambda>n. of_nat n * diffs (\<lambda>n. norm (c n)) n * r ^ (n - Suc 0))" |
20860 | 610 |
by (rule diffs_equiv [THEN sums_summable]) |
53079 | 611 |
also have "(\<lambda>n. of_nat n * diffs (\<lambda>n. norm (c n)) n * r ^ (n - Suc 0)) = |
612 |
(\<lambda>n. diffs (\<lambda>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:
20692
diff
changeset
|
613 |
apply (rule ext) |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
614 |
apply (simp add: diffs_def) |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
615 |
apply (case_tac n, simp_all add: r_neq_0) |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
616 |
done |
41970 | 617 |
finally have "summable |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
618 |
(\<lambda>n. of_nat n * (of_nat (n - Suc 0) * norm (c n) * inverse r) * r ^ (n - Suc 0))" |
20860 | 619 |
by (rule diffs_equiv [THEN sums_summable]) |
620 |
also have |
|
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
621 |
"(\<lambda>n. of_nat n * (of_nat (n - Suc 0) * norm (c n) * inverse r) * |
20860 | 622 |
r ^ (n - Suc 0)) = |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
623 |
(\<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:
20692
diff
changeset
|
624 |
apply (rule ext) |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
625 |
apply (case_tac "n", simp) |
55417
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
blanchet
parents:
54576
diff
changeset
|
626 |
apply (rename_tac nat) |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
627 |
apply (case_tac "nat", simp) |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
628 |
apply (simp add: r_neq_0) |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
629 |
done |
53079 | 630 |
finally |
631 |
show "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:
20692
diff
changeset
|
632 |
next |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
633 |
fix h::'a and n::nat |
20860 | 634 |
assume h: "h \<noteq> 0" |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
635 |
assume "norm h < r - norm x" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
636 |
hence "norm x + norm h < r" by simp |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
637 |
with norm_triangle_ineq have xh: "norm (x + h) < r" |
20860 | 638 |
by (rule order_le_less_trans) |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
639 |
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:
23069
diff
changeset
|
640 |
\<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:
23069
diff
changeset
|
641 |
apply (simp only: norm_mult mult_assoc) |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
642 |
apply (rule mult_left_mono [OF _ norm_ge_zero]) |
54575 | 643 |
apply (simp add: mult_assoc [symmetric]) |
644 |
apply (metis h lemma_termdiff3 less_eq_real_def r1 xh) |
|
20860 | 645 |
done |
20849
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
646 |
qed |
389cd9c8cfe1
rewrite proofs of powser_insidea and termdiffs_aux
huffman
parents:
20692
diff
changeset
|
647 |
qed |
20217
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents:
19765
diff
changeset
|
648 |
|
20860 | 649 |
lemma termdiffs: |
31017 | 650 |
fixes K x :: "'a::{real_normed_field,banach}" |
20860 | 651 |
assumes 1: "summable (\<lambda>n. c n * K ^ n)" |
54575 | 652 |
and 2: "summable (\<lambda>n. (diffs c) n * K ^ n)" |
653 |
and 3: "summable (\<lambda>n. (diffs (diffs c)) n * K ^ n)" |
|
654 |
and 4: "norm x < norm K" |
|
20860 | 655 |
shows "DERIV (\<lambda>x. \<Sum>n. c n * x ^ n) x :> (\<Sum>n. (diffs c) n * x ^ n)" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
656 |
unfolding DERIV_def |
29163 | 657 |
proof (rule LIM_zero_cancel) |
20860 | 658 |
show "(\<lambda>h. (suminf (\<lambda>n. c n * (x + h) ^ n) - suminf (\<lambda>n. c n * x ^ n)) / h |
659 |
- suminf (\<lambda>n. diffs c n * x ^ n)) -- 0 --> 0" |
|
660 |
proof (rule LIM_equal2) |
|
29163 | 661 |
show "0 < norm K - norm x" using 4 by (simp add: less_diff_eq) |
20860 | 662 |
next |
23082
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
663 |
fix h :: 'a |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
664 |
assume "norm (h - 0) < norm K - norm x" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
665 |
hence "norm x + norm h < norm K" by simp |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
666 |
hence 5: "norm (x + h) < norm K" |
ffef77eed382
generalize powerseries and termdiffs lemmas using axclasses
huffman
parents:
23069
diff
changeset
|
667 |
by (rule norm_triangle_ineq [THEN order_le_less_trans]) |
56167 | 668 |
have "summable (\<lambda>n. c n * x ^ n)" |
669 |
and "summable (\<lambda>n. c n * (x + h) ^ n)" |
|
670 |
and "summable (\<lambda>n. diffs c n * x ^ n)" |
|
671 |
using 1 2 4 5 by (auto elim: powser_inside) |
|
672 |
then have "((\<Sum>n. c n * (x + h) ^ n) - (\<Sum>n. c n * x ^ n)) / h - (\<Sum>n. diffs c n * x ^ n) = |
|
673 |
(\<Sum>n. (c n * (x + h) ^ n - c n * x ^ n) / h - of_nat n * c n * x ^ (n - Suc 0))" |
|
674 |
by (intro sums_unique sums_diff sums_divide diffs_equiv summable_sums) |
|
675 |
then show "((\<Sum>n. c n * (x + h) ^ n) - (\<Sum>n. c n * x ^ n)) / h - (\<Sum>n. diffs c n * x ^ n) = |
|
676 |
(\<Sum>n. c n * (((x + h) ^ n - x ^ n) / h - of_nat n * x ^ (n - Suc 0)))" |
|
54575 | 677 |
by (simp add: algebra_simps) |
20860 | 678 |
next |
53079 | 679 |
show "(\<lambda>h. \<Sum>n. c n * (((x + h) ^ n - x ^ n) / h - of_nat n * x ^ (n - Suc 0))) -- 0 --> 0" |
680 |
by (rule termdiffs_aux [OF 3 4]) |
|
20860 | 681 |
qed |
682 |
qed |
|
683 |
||
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
684 |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
685 |
subsection {* Derivability of power series *} |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
686 |
|
53079 | 687 |
lemma DERIV_series': |
688 |
fixes f :: "real \<Rightarrow> nat \<Rightarrow> real" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
689 |
assumes DERIV_f: "\<And> n. DERIV (\<lambda> x. f x n) x0 :> (f' x0 n)" |
53079 | 690 |
and allf_summable: "\<And> x. x \<in> {a <..< b} \<Longrightarrow> summable (f x)" and x0_in_I: "x0 \<in> {a <..< b}" |
691 |
and "summable (f' x0)" |
|
692 |
and "summable L" |
|
693 |
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>" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
694 |
shows "DERIV (\<lambda> x. suminf (f x)) x0 :> (suminf (f' x0))" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
695 |
unfolding DERIV_def |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
696 |
proof (rule LIM_I) |
53079 | 697 |
fix r :: real |
698 |
assume "0 < r" hence "0 < r/3" by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
699 |
|
41970 | 700 |
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:
29695
diff
changeset
|
701 |
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:
29695
diff
changeset
|
702 |
|
41970 | 703 |
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:
29695
diff
changeset
|
704 |
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:
29695
diff
changeset
|
705 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
706 |
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:
29695
diff
changeset
|
707 |
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:
29695
diff
changeset
|
708 |
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:
29695
diff
changeset
|
709 |
|
53079 | 710 |
let ?diff = "\<lambda>i x. (f (x0 + x) i - f x0 i) / x" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
711 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
712 |
let ?r = "r / (3 * real ?N)" |
56541 | 713 |
from `0 < r` have "0 < ?r" by simp |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
714 |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
715 |
let ?s = "\<lambda>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)" |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
716 |
def S' \<equiv> "Min (?s ` {..< ?N })" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
717 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
718 |
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:
29695
diff
changeset
|
719 |
proof (rule iffD2[OF Min_gr_iff]) |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
720 |
show "\<forall>x \<in> (?s ` {..< ?N }). 0 < x" |
53079 | 721 |
proof |
722 |
fix x |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
723 |
assume "x \<in> ?s ` {..<?N}" |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
724 |
then obtain n where "x = ?s n" and "n \<in> {..<?N}" |
53079 | 725 |
using image_iff[THEN iffD1] by blast |
41970 | 726 |
from DERIV_D[OF DERIV_f[where n=n], THEN LIM_D, OF `0 < ?r`, unfolded real_norm_def] |
53079 | 727 |
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)" |
728 |
by auto |
|
729 |
have "0 < ?s n" by (rule someI2[where a=s]) (auto simp add: s_bound) |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
730 |
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:
29695
diff
changeset
|
731 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
732 |
qed auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
733 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
734 |
def S \<equiv> "min (min (x0 - a) (b - x0)) S'" |
53079 | 735 |
hence "0 < S" and S_a: "S \<le> x0 - a" and S_b: "S \<le> b - x0" |
736 |
and "S \<le> S'" using x0_in_I and `0 < S'` |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
737 |
by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
738 |
|
53079 | 739 |
{ |
740 |
fix x |
|
741 |
assume "x \<noteq> 0" and "\<bar> x \<bar> < S" |
|
742 |
hence x_in_I: "x0 + x \<in> { a <..< b }" |
|
743 |
using S_a S_b by auto |
|
41970 | 744 |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
745 |
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:
29695
diff
changeset
|
746 |
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:
29695
diff
changeset
|
747 |
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:
29695
diff
changeset
|
748 |
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:
29695
diff
changeset
|
749 |
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:
29695
diff
changeset
|
750 |
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:
29695
diff
changeset
|
751 |
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:
29695
diff
changeset
|
752 |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
753 |
{ fix n |
41970 | 754 |
have "\<bar> ?diff (n + ?N) x \<bar> \<le> L (n + ?N) * \<bar> (x0 + x) - x0 \<bar> / \<bar> x \<bar>" |
53079 | 755 |
using divide_right_mono[OF L_def[OF x_in_I x0_in_I] abs_ge_zero] |
756 |
unfolding abs_divide . |
|
757 |
hence "\<bar> (\<bar>?diff (n + ?N) x \<bar>) \<bar> \<le> L (n + ?N)" |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
758 |
using `x \<noteq> 0` by auto } |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
759 |
note 1 = this and 2 = summable_rabs_comparison_test[OF _ ign[OF `summable L`]] |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
760 |
then have "\<bar> \<Sum> i. ?diff (i + ?N) x \<bar> \<le> (\<Sum> i. L (i + ?N))" |
56213 | 761 |
by (metis (lifting) abs_idempotent order_trans[OF summable_rabs[OF 2] suminf_le[OF _ 2 ign[OF `summable L`]]]) |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
762 |
then have "\<bar> \<Sum> i. ?diff (i + ?N) x \<bar> \<le> r / 3" (is "?L_part \<le> r/3") |
53079 | 763 |
using L_estimate by auto |
764 |
||
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
765 |
have "\<bar>\<Sum>n<?N. ?diff n x - f' x0 n \<bar> \<le> (\<Sum>n<?N. \<bar>?diff n x - f' x0 n \<bar>)" .. |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
766 |
also have "\<dots> < (\<Sum>n<?N. ?r)" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
767 |
proof (rule setsum_strict_mono) |
53079 | 768 |
fix n |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
769 |
assume "n \<in> {..< ?N}" |
53079 | 770 |
have "\<bar>x\<bar> < S" using `\<bar>x\<bar> < S` . |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
771 |
also have "S \<le> S'" using `S \<le> S'` . |
41970 | 772 |
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:
29695
diff
changeset
|
773 |
proof (rule Min_le_iff[THEN iffD2]) |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
774 |
have "?s n \<in> (?s ` {..<?N}) \<and> ?s n \<le> ?s n" |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
775 |
using `n \<in> {..< ?N}` by auto |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
776 |
thus "\<exists> a \<in> (?s ` {..<?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:
29695
diff
changeset
|
777 |
qed auto |
53079 | 778 |
finally have "\<bar>x\<bar> < ?s n" . |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
779 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
780 |
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:
29695
diff
changeset
|
781 |
have "\<forall>x. x \<noteq> 0 \<and> \<bar>x\<bar> < ?s n \<longrightarrow> \<bar>?diff n x - f' x0 n\<bar> < ?r" . |
53079 | 782 |
with `x \<noteq> 0` and `\<bar>x\<bar> < ?s n` show "\<bar>?diff n x - f' x0 n\<bar> < ?r" |
783 |
by blast |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
784 |
qed auto |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
785 |
also have "\<dots> = of_nat (card {..<?N}) * ?r" |
53079 | 786 |
by (rule setsum_constant) |
787 |
also have "\<dots> = real ?N * ?r" |
|
788 |
unfolding real_eq_of_nat by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
789 |
also have "\<dots> = r/3" by auto |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
790 |
finally have "\<bar>\<Sum>n<?N. ?diff n x - f' x0 n \<bar> < r / 3" (is "?diff_part < r / 3") . |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
791 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
792 |
from suminf_diff[OF allf_summable[OF x_in_I] allf_summable[OF x0_in_I]] |
53079 | 793 |
have "\<bar>(suminf (f (x0 + x)) - (suminf (f x0))) / x - suminf (f' x0)\<bar> = |
794 |
\<bar>\<Sum>n. ?diff n x - f' x0 n\<bar>" |
|
795 |
unfolding suminf_diff[OF div_smbl `summable (f' x0)`, symmetric] |
|
796 |
using suminf_divide[OF diff_smbl, symmetric] by auto |
|
797 |
also have "\<dots> \<le> ?diff_part + \<bar> (\<Sum>n. ?diff (n + ?N) x) - (\<Sum> n. f' x0 (n + ?N)) \<bar>" |
|
798 |
unfolding suminf_split_initial_segment[OF all_smbl, where k="?N"] |
|
799 |
unfolding suminf_diff[OF div_shft_smbl ign[OF `summable (f' x0)`]] |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
800 |
apply (subst (5) add_commute) |
53079 | 801 |
by (rule abs_triangle_ineq) |
802 |
also have "\<dots> \<le> ?diff_part + ?L_part + ?f'_part" |
|
803 |
using abs_triangle_ineq4 by auto |
|
41970 | 804 |
also have "\<dots> < r /3 + r/3 + r/3" |
36842 | 805 |
using `?diff_part < r/3` `?L_part \<le> r/3` and `?f'_part < r/3` |
806 |
by (rule add_strict_mono [OF add_less_le_mono]) |
|
53079 | 807 |
finally have "\<bar>(suminf (f (x0 + x)) - suminf (f x0)) / x - suminf (f' x0)\<bar> < r" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
808 |
by auto |
53079 | 809 |
} |
810 |
thus "\<exists> s > 0. \<forall> x. x \<noteq> 0 \<and> norm (x - 0) < s \<longrightarrow> |
|
811 |
norm (((\<Sum>n. f (x0 + x) n) - (\<Sum>n. f x0 n)) / x - (\<Sum>n. f' x0 n)) < r" |
|
812 |
using `0 < S` unfolding real_norm_def diff_0_right by blast |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
813 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
814 |
|
53079 | 815 |
lemma DERIV_power_series': |
816 |
fixes f :: "nat \<Rightarrow> real" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
817 |
assumes converges: "\<And> x. x \<in> {-R <..< R} \<Longrightarrow> summable (\<lambda> n. f n * real (Suc n) * x^n)" |
53079 | 818 |
and x0_in_I: "x0 \<in> {-R <..< R}" and "0 < R" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
819 |
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:
29695
diff
changeset
|
820 |
(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:
29695
diff
changeset
|
821 |
proof - |
53079 | 822 |
{ |
823 |
fix R' |
|
824 |
assume "0 < R'" and "R' < R" and "-R' < x0" and "x0 < R'" |
|
825 |
hence "x0 \<in> {-R' <..< R'}" and "R' \<in> {-R <..< R}" and "x0 \<in> {-R <..< R}" |
|
826 |
by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
827 |
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:
29695
diff
changeset
|
828 |
proof (rule DERIV_series') |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
829 |
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:
29695
diff
changeset
|
830 |
proof - |
53079 | 831 |
have "(R' + R) / 2 < R" and "0 < (R' + R) / 2" |
832 |
using `0 < R'` `0 < R` `R' < R` by auto |
|
833 |
hence in_Rball: "(R' + R) / 2 \<in> {-R <..< R}" |
|
834 |
using `R' < R` by auto |
|
835 |
have "norm R' < norm ((R' + R) / 2)" |
|
836 |
using `0 < R'` `0 < R` `R' < R` by auto |
|
837 |
from powser_insidea[OF converges[OF in_Rball] this] show ?thesis |
|
838 |
by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
839 |
qed |
53079 | 840 |
{ |
841 |
fix n x y |
|
842 |
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:
32047
diff
changeset
|
843 |
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:
32047
diff
changeset
|
844 |
proof - |
53079 | 845 |
have "\<bar>f n * x ^ (Suc n) - f n * y ^ (Suc n)\<bar> = |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
846 |
(\<bar>f n\<bar> * \<bar>x-y\<bar>) * \<bar>\<Sum>p<Suc n. x ^ p * y ^ (n - p)\<bar>" |
53079 | 847 |
unfolding right_diff_distrib[symmetric] lemma_realpow_diff_sumr2 abs_mult |
848 |
by auto |
|
41970 | 849 |
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:
32047
diff
changeset
|
850 |
proof (rule mult_left_mono) |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
851 |
have "\<bar>\<Sum>p<Suc n. x ^ p * y ^ (n - p)\<bar> \<le> (\<Sum>p<Suc n. \<bar>x ^ p * y ^ (n - p)\<bar>)" |
53079 | 852 |
by (rule setsum_abs) |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
853 |
also have "\<dots> \<le> (\<Sum>p<Suc n. R' ^ n)" |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
854 |
proof (rule setsum_mono) |
53079 | 855 |
fix p |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
856 |
assume "p \<in> {..<Suc n}" |
53079 | 857 |
hence "p \<le> n" by auto |
858 |
{ |
|
859 |
fix n |
|
860 |
fix x :: real |
|
861 |
assume "x \<in> {-R'<..<R'}" |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
862 |
hence "\<bar>x\<bar> \<le> R'" by auto |
53079 | 863 |
hence "\<bar>x^n\<bar> \<le> R'^n" |
864 |
unfolding power_abs by (rule power_mono, auto) |
|
865 |
} |
|
866 |
from mult_mono[OF this[OF `x \<in> {-R'<..<R'}`, of p] this[OF `y \<in> {-R'<..<R'}`, of "n-p"]] `0 < R'` |
|
867 |
have "\<bar>x^p * y^(n-p)\<bar> \<le> R'^p * R'^(n-p)" |
|
868 |
unfolding abs_mult by auto |
|
869 |
thus "\<bar>x^p * y^(n-p)\<bar> \<le> R'^n" |
|
870 |
unfolding power_add[symmetric] using `p \<le> n` by auto |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
871 |
qed |
53079 | 872 |
also have "\<dots> = real (Suc n) * R' ^ n" |
873 |
unfolding setsum_constant card_atLeastLessThan real_of_nat_def by auto |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
874 |
finally show "\<bar>\<Sum>p<Suc n. x ^ p * y ^ (n - p)\<bar> \<le> \<bar>real (Suc n)\<bar> * \<bar>R' ^ n\<bar>" |
53079 | 875 |
unfolding abs_real_of_nat_cancel abs_of_nonneg[OF zero_le_power[OF less_imp_le[OF `0 < R'`]]] . |
876 |
show "0 \<le> \<bar>f n\<bar> * \<bar>x - y\<bar>" |
|
877 |
unfolding abs_mult[symmetric] by auto |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
878 |
qed |
53079 | 879 |
also have "\<dots> = \<bar>f n * real (Suc n) * R' ^ n\<bar> * \<bar>x - y\<bar>" |
880 |
unfolding abs_mult mult_assoc[symmetric] by algebra |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
881 |
finally show ?thesis . |
53079 | 882 |
qed |
883 |
} |
|
884 |
{ |
|
885 |
fix n |
|
886 |
show "DERIV (\<lambda> x. ?f x n) x0 :> (?f' x0 n)" |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
887 |
by (auto intro!: derivative_eq_intros simp del: power_Suc simp: real_of_nat_def) |
53079 | 888 |
} |
889 |
{ |
|
890 |
fix x |
|
891 |
assume "x \<in> {-R' <..< R'}" |
|
892 |
hence "R' \<in> {-R <..< R}" and "norm x < norm R'" |
|
893 |
using assms `R' < R` by auto |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
894 |
have "summable (\<lambda> n. f n * x^n)" |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
895 |
proof (rule summable_comparison_test, intro exI allI impI) |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
896 |
fix n |
53079 | 897 |
have le: "\<bar>f n\<bar> * 1 \<le> \<bar>f n\<bar> * real (Suc n)" |
898 |
by (rule mult_left_mono) auto |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
899 |
show "norm (f n * x ^ n) \<le> norm (f n * real (Suc n) * x ^ n)" |
53079 | 900 |
unfolding real_norm_def abs_mult |
901 |
by (rule mult_right_mono) (auto simp add: le[unfolded mult_1_right]) |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
902 |
qed (rule powser_insidea[OF converges[OF `R' \<in> {-R <..< R}`] `norm x < norm R'`]) |
36777
be5461582d0f
avoid using real-specific versions of generic lemmas
huffman
parents:
36776
diff
changeset
|
903 |
from this[THEN summable_mult2[where c=x], unfolded mult_assoc, unfolded mult_commute] |
53079 | 904 |
show "summable (?f x)" by auto |
905 |
} |
|
906 |
show "summable (?f' x0)" |
|
907 |
using converges[OF `x0 \<in> {-R <..< R}`] . |
|
908 |
show "x0 \<in> {-R' <..< R'}" |
|
909 |
using `x0 \<in> {-R' <..< R'}` . |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
910 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
911 |
} note for_subinterval = this |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
912 |
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:
29695
diff
changeset
|
913 |
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:
29695
diff
changeset
|
914 |
hence "- ?R < x0" |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
915 |
proof (cases "x0 < 0") |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
916 |
case True |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
917 |
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:
29695
diff
changeset
|
918 |
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:
29695
diff
changeset
|
919 |
next |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
920 |
case False |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
921 |
have "- ?R < 0" using assms by auto |
41970 | 922 |
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:
29695
diff
changeset
|
923 |
finally show ?thesis . |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
924 |
qed |
53079 | 925 |
hence "0 < ?R" "?R < R" "- ?R < x0" and "x0 < ?R" |
926 |
using assms by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
927 |
from for_subinterval[OF this] |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
928 |
show ?thesis . |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
929 |
qed |
29695 | 930 |
|
53079 | 931 |
|
29164 | 932 |
subsection {* Exponential Function *} |
23043 | 933 |
|
53079 | 934 |
definition exp :: "'a \<Rightarrow> 'a::{real_normed_field,banach}" |
935 |
where "exp = (\<lambda>x. \<Sum>n. x ^ n /\<^sub>R real (fact n))" |
|
23043 | 936 |
|
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
937 |
lemma summable_exp_generic: |
31017 | 938 |
fixes x :: "'a::{real_normed_algebra_1,banach}" |
25062 | 939 |
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:
23112
diff
changeset
|
940 |
shows "summable S" |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
941 |
proof - |
25062 | 942 |
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:
30082
diff
changeset
|
943 |
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:
23112
diff
changeset
|
944 |
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:
23112
diff
changeset
|
945 |
using dense [OF zero_less_one] by fast |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
946 |
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:
23112
diff
changeset
|
947 |
using reals_Archimedean3 [OF r0] by fast |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
948 |
from r1 show ?thesis |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
949 |
proof (rule summable_ratio_test [rule_format]) |
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
950 |
fix n :: nat |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
951 |
assume n: "N \<le> n" |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
952 |
have "norm x \<le> real N * r" |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
953 |
using N by (rule order_less_imp_le) |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
954 |
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:
23112
diff
changeset
|
955 |
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:
23112
diff
changeset
|
956 |
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:
23112
diff
changeset
|
957 |
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:
23112
diff
changeset
|
958 |
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:
23112
diff
changeset
|
959 |
by (rule order_trans [OF norm_mult_ineq]) |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
960 |
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:
23112
diff
changeset
|
961 |
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:
23112
diff
changeset
|
962 |
thus "norm (S (Suc n)) \<le> r * norm (S n)" |
35216 | 963 |
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:
23112
diff
changeset
|
964 |
qed |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
965 |
qed |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
966 |
|
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
967 |
lemma summable_norm_exp: |
31017 | 968 |
fixes x :: "'a::{real_normed_algebra_1,banach}" |
25062 | 969 |
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:
23112
diff
changeset
|
970 |
proof (rule summable_norm_comparison_test [OF exI, rule_format]) |
25062 | 971 |
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:
23112
diff
changeset
|
972 |
by (rule summable_exp_generic) |
53079 | 973 |
fix n |
974 |
show "norm (x ^ n /\<^sub>R real (fact n)) \<le> norm x ^ n /\<^sub>R real (fact n)" |
|
35216 | 975 |
by (simp add: norm_power_ineq) |
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
976 |
qed |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
977 |
|
53079 | 978 |
lemma summable_exp: "summable (\<lambda>n. inverse (real (fact n)) * x ^ n)" |
979 |
using summable_exp_generic [where x=x] by simp |
|
23043 | 980 |
|
25062 | 981 |
lemma exp_converges: "(\<lambda>n. x ^ n /\<^sub>R real (fact n)) sums exp x" |
53079 | 982 |
unfolding exp_def by (rule summable_exp_generic [THEN summable_sums]) |
23043 | 983 |
|
984 |
||
41970 | 985 |
lemma exp_fdiffs: |
53079 | 986 |
"diffs (\<lambda>n. inverse(real (fact n))) = (\<lambda>n. inverse(real (fact n)))" |
987 |
by (simp add: diffs_def mult_assoc [symmetric] real_of_nat_def of_nat_mult |
|
988 |
del: mult_Suc of_nat_Suc) |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
989 |
|
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
990 |
lemma diffs_of_real: "diffs (\<lambda>n. of_real (f n)) = (\<lambda>n. of_real (diffs f n))" |
53079 | 991 |
by (simp add: diffs_def) |
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
992 |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
993 |
lemma DERIV_exp [simp]: "DERIV exp x :> exp(x)" |
53079 | 994 |
unfolding exp_def scaleR_conv_of_real |
995 |
apply (rule DERIV_cong) |
|
996 |
apply (rule termdiffs [where K="of_real (1 + norm x)"]) |
|
997 |
apply (simp_all only: diffs_of_real scaleR_conv_of_real exp_fdiffs) |
|
998 |
apply (rule exp_converges [THEN sums_summable, unfolded scaleR_conv_of_real])+ |
|
999 |
apply (simp del: of_real_add) |
|
1000 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1001 |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1002 |
declare DERIV_exp[THEN DERIV_chain2, derivative_intros] |
51527 | 1003 |
|
44311 | 1004 |
lemma isCont_exp: "isCont exp x" |
1005 |
by (rule DERIV_exp [THEN DERIV_isCont]) |
|
1006 |
||
1007 |
lemma isCont_exp' [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. exp (f x)) a" |
|
1008 |
by (rule isCont_o2 [OF _ isCont_exp]) |
|
1009 |
||
1010 |
lemma tendsto_exp [tendsto_intros]: |
|
1011 |
"(f ---> a) F \<Longrightarrow> ((\<lambda>x. exp (f x)) ---> exp a) F" |
|
1012 |
by (rule isCont_tendsto_compose [OF isCont_exp]) |
|
23045
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
1013 |
|
53079 | 1014 |
lemma continuous_exp [continuous_intros]: |
1015 |
"continuous F f \<Longrightarrow> continuous F (\<lambda>x. exp (f x))" |
|
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:
51477
diff
changeset
|
1016 |
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:
51477
diff
changeset
|
1017 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
1018 |
lemma continuous_on_exp [continuous_intros]: |
53079 | 1019 |
"continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. exp (f x))" |
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:
51477
diff
changeset
|
1020 |
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:
51477
diff
changeset
|
1021 |
|
53079 | 1022 |
|
29167 | 1023 |
subsubsection {* Properties of the Exponential Function *} |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1024 |
|
23278 | 1025 |
lemma powser_zero: |
31017 | 1026 |
fixes f :: "nat \<Rightarrow> 'a::{real_normed_algebra_1}" |
23278 | 1027 |
shows "(\<Sum>n. f n * 0 ^ n) = f 0" |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1028 |
proof - |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
1029 |
have "(\<Sum>n<1. f n * 0 ^ n) = (\<Sum>n. f n * 0 ^ n)" |
56213 | 1030 |
by (subst suminf_finite[where N="{0}"]) (auto simp: power_0_left) |
30082
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
huffman
parents:
29803
diff
changeset
|
1031 |
thus ?thesis unfolding One_nat_def by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1032 |
qed |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1033 |
|
23278 | 1034 |
lemma exp_zero [simp]: "exp 0 = 1" |
53079 | 1035 |
unfolding exp_def by (simp add: scaleR_conv_of_real powser_zero) |
23278 | 1036 |
|
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1037 |
lemma exp_series_add: |
31017 | 1038 |
fixes x y :: "'a::{real_field}" |
25062 | 1039 |
defines S_def: "S \<equiv> \<lambda>x n. x ^ n /\<^sub>R real (fact n)" |
56213 | 1040 |
shows "S (x + y) n = (\<Sum>i\<le>n. S x i * S y (n - i))" |
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1041 |
proof (induct n) |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1042 |
case 0 |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1043 |
show ?case |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1044 |
unfolding S_def by simp |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1045 |
next |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1046 |
case (Suc n) |
25062 | 1047 |
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:
30082
diff
changeset
|
1048 |
unfolding S_def by (simp del: mult_Suc) |
25062 | 1049 |
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:
23112
diff
changeset
|
1050 |
by simp |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1051 |
|
25062 | 1052 |
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:
23112
diff
changeset
|
1053 |
by (simp only: times_S) |
56213 | 1054 |
also have "\<dots> = (x + y) * (\<Sum>i\<le>n. S x i * S y (n-i))" |
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1055 |
by (simp only: Suc) |
56213 | 1056 |
also have "\<dots> = x * (\<Sum>i\<le>n. S x i * S y (n-i)) |
1057 |
+ y * (\<Sum>i\<le>n. S x i * S y (n-i))" |
|
49962
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents:
47489
diff
changeset
|
1058 |
by (rule distrib_right) |
56213 | 1059 |
also have "\<dots> = (\<Sum>i\<le>n. (x * S x i) * S y (n-i)) |
1060 |
+ (\<Sum>i\<le>n. S x i * (y * S y (n-i)))" |
|
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1061 |
by (simp only: setsum_right_distrib mult_ac) |
56213 | 1062 |
also have "\<dots> = (\<Sum>i\<le>n. real (Suc i) *\<^sub>R (S x (Suc i) * S y (n-i))) |
1063 |
+ (\<Sum>i\<le>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:
23112
diff
changeset
|
1064 |
by (simp add: times_S Suc_diff_le) |
56213 | 1065 |
also have "(\<Sum>i\<le>n. real (Suc i) *\<^sub>R (S x (Suc i) * S y (n-i))) = |
1066 |
(\<Sum>i\<le>Suc n. real i *\<^sub>R (S x i * S y (Suc n-i)))" |
|
1067 |
by (subst setsum_atMost_Suc_shift) simp |
|
1068 |
also have "(\<Sum>i\<le>n. real (Suc n-i) *\<^sub>R (S x i * S y (Suc n-i))) = |
|
1069 |
(\<Sum>i\<le>Suc n. real (Suc n-i) *\<^sub>R (S x i * S y (Suc n-i)))" |
|
1070 |
by simp |
|
1071 |
also have "(\<Sum>i\<le>Suc n. real i *\<^sub>R (S x i * S y (Suc n-i))) + |
|
1072 |
(\<Sum>i\<le>Suc n. real (Suc n-i) *\<^sub>R (S x i * S y (Suc n-i))) = |
|
1073 |
(\<Sum>i\<le>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:
23112
diff
changeset
|
1074 |
by (simp only: setsum_addf [symmetric] scaleR_left_distrib [symmetric] |
56213 | 1075 |
real_of_nat_add [symmetric]) simp |
1076 |
also have "\<dots> = real (Suc n) *\<^sub>R (\<Sum>i\<le>Suc n. S x i * S y (Suc n-i))" |
|
23127 | 1077 |
by (simp only: scaleR_right.setsum) |
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1078 |
finally show |
56213 | 1079 |
"S (x + y) (Suc n) = (\<Sum>i\<le>Suc n. S x i * S y (Suc n - i))" |
35216 | 1080 |
by (simp del: setsum_cl_ivl_Suc) |
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1081 |
qed |
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1082 |
|
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1083 |
lemma exp_add: "exp (x + y) = exp x * exp y" |
53079 | 1084 |
unfolding exp_def |
1085 |
by (simp only: Cauchy_product summable_norm_exp exp_series_add) |
|
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1086 |
|
29170 | 1087 |
lemma mult_exp_exp: "exp x * exp y = exp (x + y)" |
53079 | 1088 |
by (rule exp_add [symmetric]) |
29170 | 1089 |
|
23241 | 1090 |
lemma exp_of_real: "exp (of_real x) = of_real (exp x)" |
53079 | 1091 |
unfolding exp_def |
1092 |
apply (subst suminf_of_real) |
|
1093 |
apply (rule summable_exp_generic) |
|
1094 |
apply (simp add: scaleR_conv_of_real) |
|
1095 |
done |
|
23241 | 1096 |
|
29170 | 1097 |
lemma exp_not_eq_zero [simp]: "exp x \<noteq> 0" |
1098 |
proof |
|
1099 |
have "exp x * exp (- x) = 1" by (simp add: mult_exp_exp) |
|
1100 |
also assume "exp x = 0" |
|
1101 |
finally show "False" by simp |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1102 |
qed |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1103 |
|
29170 | 1104 |
lemma exp_minus: "exp (- x) = inverse (exp x)" |
53079 | 1105 |
by (rule inverse_unique [symmetric], simp add: mult_exp_exp) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1106 |
|
29170 | 1107 |
lemma exp_diff: "exp (x - y) = exp x / exp y" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53602
diff
changeset
|
1108 |
using exp_add [of x "- y"] by (simp add: exp_minus divide_inverse) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1109 |
|
29167 | 1110 |
|
1111 |
subsubsection {* Properties of the Exponential Function on Reals *} |
|
1112 |
||
29170 | 1113 |
text {* Comparisons of @{term "exp x"} with zero. *} |
29167 | 1114 |
|
1115 |
text{*Proof: because every exponential can be seen as a square.*} |
|
1116 |
lemma exp_ge_zero [simp]: "0 \<le> exp (x::real)" |
|
1117 |
proof - |
|
1118 |
have "0 \<le> exp (x/2) * exp (x/2)" by simp |
|
1119 |
thus ?thesis by (simp add: exp_add [symmetric]) |
|
1120 |
qed |
|
1121 |
||
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1122 |
lemma exp_gt_zero [simp]: "0 < exp (x::real)" |
53079 | 1123 |
by (simp add: order_less_le) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1124 |
|
29170 | 1125 |
lemma not_exp_less_zero [simp]: "\<not> exp (x::real) < 0" |
53079 | 1126 |
by (simp add: not_less) |
29170 | 1127 |
|
1128 |
lemma not_exp_le_zero [simp]: "\<not> exp (x::real) \<le> 0" |
|
53079 | 1129 |
by (simp add: not_le) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1130 |
|
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1131 |
lemma abs_exp_cancel [simp]: "\<bar>exp x::real\<bar> = exp x" |
53079 | 1132 |
by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1133 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1134 |
lemma exp_real_of_nat_mult: "exp(real n * x) = exp(x) ^ n" |
53079 | 1135 |
by (induct n) (auto simp add: real_of_nat_Suc distrib_left exp_add mult_commute) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1136 |
|
29170 | 1137 |
text {* Strict monotonicity of exponential. *} |
1138 |
||
54575 | 1139 |
lemma exp_ge_add_one_self_aux: |
1140 |
assumes "0 \<le> (x::real)" shows "1+x \<le> exp(x)" |
|
1141 |
using order_le_imp_less_or_eq [OF assms] |
|
1142 |
proof |
|
1143 |
assume "0 < x" |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
1144 |
have "1+x \<le> (\<Sum>n<2. inverse (real (fact n)) * x ^ n)" |
54575 | 1145 |
by (auto simp add: numeral_2_eq_2) |
1146 |
also have "... \<le> (\<Sum>n. inverse (real (fact n)) * x ^ n)" |
|
56213 | 1147 |
apply (rule setsum_le_suminf [OF summable_exp]) |
54575 | 1148 |
using `0 < x` |
1149 |
apply (auto simp add: zero_le_mult_iff) |
|
1150 |
done |
|
1151 |
finally show "1+x \<le> exp x" |
|
1152 |
by (simp add: exp_def) |
|
1153 |
next |
|
1154 |
assume "0 = x" |
|
1155 |
then show "1 + x \<le> exp x" |
|
1156 |
by auto |
|
1157 |
qed |
|
29170 | 1158 |
|
1159 |
lemma exp_gt_one: "0 < (x::real) \<Longrightarrow> 1 < exp x" |
|
1160 |
proof - |
|
1161 |
assume x: "0 < x" |
|
1162 |
hence "1 < 1 + x" by simp |
|
1163 |
also from x have "1 + x \<le> exp x" |
|
1164 |
by (simp add: exp_ge_add_one_self_aux) |
|
1165 |
finally show ?thesis . |
|
1166 |
qed |
|
1167 |
||
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1168 |
lemma exp_less_mono: |
23115
4615b2078592
generalized exp to work over any complete field; new proof of exp_add
huffman
parents:
23112
diff
changeset
|
1169 |
fixes x y :: real |
53079 | 1170 |
assumes "x < y" |
1171 |
shows "exp x < exp y" |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1172 |
proof - |
29165
562f95f06244
cleaned up some proofs; removed redundant simp rules
huffman
parents:
29164
diff
changeset
|
1173 |
from `x < y` have "0 < y - x" by simp |
562f95f06244
cleaned up some proofs; removed redundant simp rules
huffman
parents:
29164
diff
changeset
|
1174 |
hence "1 < exp (y - x)" by (rule exp_gt_one) |
562f95f06244
cleaned up some proofs; removed redundant simp rules
huffman
parents:
29164
diff
changeset
|
1175 |
hence "1 < exp y / exp x" by (simp only: exp_diff) |
562f95f06244
cleaned up some proofs; removed redundant simp rules
huffman
parents:
29164
diff
changeset
|
1176 |
thus "exp x < exp y" by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1177 |
qed |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1178 |
|
53079 | 1179 |
lemma exp_less_cancel: "exp (x::real) < exp y \<Longrightarrow> x < y" |
54575 | 1180 |
unfolding linorder_not_le [symmetric] |
1181 |
by (auto simp add: order_le_less exp_less_mono) |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1182 |
|
29170 | 1183 |
lemma exp_less_cancel_iff [iff]: "exp (x::real) < exp y \<longleftrightarrow> x < y" |
53079 | 1184 |
by (auto intro: exp_less_mono exp_less_cancel) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1185 |
|
29170 | 1186 |
lemma exp_le_cancel_iff [iff]: "exp (x::real) \<le> exp y \<longleftrightarrow> x \<le> y" |
53079 | 1187 |
by (auto simp add: linorder_not_less [symmetric]) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1188 |
|
29170 | 1189 |
lemma exp_inj_iff [iff]: "exp (x::real) = exp y \<longleftrightarrow> x = y" |
53079 | 1190 |
by (simp add: order_eq_iff) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1191 |
|
29170 | 1192 |
text {* Comparisons of @{term "exp x"} with one. *} |
1193 |
||
1194 |
lemma one_less_exp_iff [simp]: "1 < exp (x::real) \<longleftrightarrow> 0 < x" |
|
1195 |
using exp_less_cancel_iff [where x=0 and y=x] by simp |
|
1196 |
||
1197 |
lemma exp_less_one_iff [simp]: "exp (x::real) < 1 \<longleftrightarrow> x < 0" |
|
1198 |
using exp_less_cancel_iff [where x=x and y=0] by simp |
|
1199 |
||
1200 |
lemma one_le_exp_iff [simp]: "1 \<le> exp (x::real) \<longleftrightarrow> 0 \<le> x" |
|
1201 |
using exp_le_cancel_iff [where x=0 and y=x] by simp |
|
1202 |
||
1203 |
lemma exp_le_one_iff [simp]: "exp (x::real) \<le> 1 \<longleftrightarrow> x \<le> 0" |
|
1204 |
using exp_le_cancel_iff [where x=x and y=0] by simp |
|
1205 |
||
1206 |
lemma exp_eq_one_iff [simp]: "exp (x::real) = 1 \<longleftrightarrow> x = 0" |
|
1207 |
using exp_inj_iff [where x=x and y=0] by simp |
|
1208 |
||
53079 | 1209 |
lemma lemma_exp_total: "1 \<le> y \<Longrightarrow> \<exists>x. 0 \<le> x & x \<le> y - 1 & exp(x::real) = y" |
44755 | 1210 |
proof (rule IVT) |
1211 |
assume "1 \<le> y" |
|
1212 |
hence "0 \<le> y - 1" by simp |
|
1213 |
hence "1 + (y - 1) \<le> exp (y - 1)" by (rule exp_ge_add_one_self_aux) |
|
1214 |
thus "y \<le> exp (y - 1)" by simp |
|
1215 |
qed (simp_all add: le_diff_eq) |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1216 |
|
53079 | 1217 |
lemma exp_total: "0 < (y::real) \<Longrightarrow> \<exists>x. exp x = y" |
44755 | 1218 |
proof (rule linorder_le_cases [of 1 y]) |
53079 | 1219 |
assume "1 \<le> y" |
1220 |
thus "\<exists>x. exp x = y" by (fast dest: lemma_exp_total) |
|
44755 | 1221 |
next |
1222 |
assume "0 < y" and "y \<le> 1" |
|
1223 |
hence "1 \<le> inverse y" by (simp add: one_le_inverse_iff) |
|
1224 |
then obtain x where "exp x = inverse y" by (fast dest: lemma_exp_total) |
|
1225 |
hence "exp (- x) = y" by (simp add: exp_minus) |
|
1226 |
thus "\<exists>x. exp x = y" .. |
|
1227 |
qed |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1228 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1229 |
|
29164 | 1230 |
subsection {* Natural Logarithm *} |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1231 |
|
53079 | 1232 |
definition ln :: "real \<Rightarrow> real" |
1233 |
where "ln x = (THE u. exp u = x)" |
|
23043 | 1234 |
|
1235 |
lemma ln_exp [simp]: "ln (exp x) = x" |
|
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1236 |
by (simp add: ln_def) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1237 |
|
22654
c2b6b5a9e136
new simp rule exp_ln; new standard proof of DERIV_exp_ln_one; changed imports
huffman
parents:
22653
diff
changeset
|
1238 |
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:
44307
diff
changeset
|
1239 |
by (auto dest: exp_total) |
22654
c2b6b5a9e136
new simp rule exp_ln; new standard proof of DERIV_exp_ln_one; changed imports
huffman
parents:
22653
diff
changeset
|
1240 |
|
29171 | 1241 |
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:
44307
diff
changeset
|
1242 |
by (metis exp_gt_zero exp_ln) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1243 |
|
29171 | 1244 |
lemma ln_unique: "exp y = x \<Longrightarrow> ln x = y" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1245 |
by (erule subst, rule ln_exp) |
29171 | 1246 |
|
1247 |
lemma ln_one [simp]: "ln 1 = 0" |
|
53079 | 1248 |
by (rule ln_unique) simp |
1249 |
||
1250 |
lemma ln_mult: "0 < x \<Longrightarrow> 0 < y \<Longrightarrow> ln (x * y) = ln x + ln y" |
|
1251 |
by (rule ln_unique) (simp add: exp_add) |
|
29171 | 1252 |
|
1253 |
lemma ln_inverse: "0 < x \<Longrightarrow> ln (inverse x) = - ln x" |
|
53079 | 1254 |
by (rule ln_unique) (simp add: exp_minus) |
1255 |
||
1256 |
lemma ln_div: "0 < x \<Longrightarrow> 0 < y \<Longrightarrow> ln (x / y) = ln x - ln y" |
|
1257 |
by (rule ln_unique) (simp add: exp_diff) |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1258 |
|
29171 | 1259 |
lemma ln_realpow: "0 < x \<Longrightarrow> ln (x ^ n) = real n * ln x" |
53079 | 1260 |
by (rule ln_unique) (simp add: exp_real_of_nat_mult) |
1261 |
||
1262 |
lemma ln_less_cancel_iff [simp]: "0 < x \<Longrightarrow> 0 < y \<Longrightarrow> ln x < ln y \<longleftrightarrow> x < y" |
|
1263 |
by (subst exp_less_cancel_iff [symmetric]) simp |
|
1264 |
||
1265 |
lemma ln_le_cancel_iff [simp]: "0 < x \<Longrightarrow> 0 < y \<Longrightarrow> ln x \<le> ln y \<longleftrightarrow> x \<le> y" |
|
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1266 |
by (simp add: linorder_not_less [symmetric]) |
29171 | 1267 |
|
53079 | 1268 |
lemma ln_inj_iff [simp]: "0 < x \<Longrightarrow> 0 < y \<Longrightarrow> ln x = ln y \<longleftrightarrow> x = y" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1269 |
by (simp add: order_eq_iff) |
29171 | 1270 |
|
1271 |
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:
44307
diff
changeset
|
1272 |
apply (rule exp_le_cancel_iff [THEN iffD1]) |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1273 |
apply (simp add: exp_ge_add_one_self_aux) |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1274 |
done |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1275 |
|
29171 | 1276 |
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:
44307
diff
changeset
|
1277 |
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:
44307
diff
changeset
|
1278 |
|
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1279 |
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:
44307
diff
changeset
|
1280 |
using ln_le_cancel_iff [of 1 x] by simp |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1281 |
|
53079 | 1282 |
lemma ln_ge_zero_imp_ge_one: "0 \<le> ln x \<Longrightarrow> 0 < x \<Longrightarrow> 1 \<le> x" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1283 |
using ln_le_cancel_iff [of 1 x] by simp |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1284 |
|
53079 | 1285 |
lemma ln_ge_zero_iff [simp]: "0 < x \<Longrightarrow> 0 \<le> ln x \<longleftrightarrow> 1 \<le> x" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1286 |
using ln_le_cancel_iff [of 1 x] by simp |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1287 |
|
53079 | 1288 |
lemma ln_less_zero_iff [simp]: "0 < x \<Longrightarrow> ln x < 0 \<longleftrightarrow> x < 1" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1289 |
using ln_less_cancel_iff [of x 1] by simp |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1290 |
|
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1291 |
lemma ln_gt_zero: "1 < x \<Longrightarrow> 0 < ln x" |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1292 |
using ln_less_cancel_iff [of 1 x] by simp |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1293 |
|
53079 | 1294 |
lemma ln_gt_zero_imp_gt_one: "0 < ln x \<Longrightarrow> 0 < x \<Longrightarrow> 1 < x" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1295 |
using ln_less_cancel_iff [of 1 x] by simp |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1296 |
|
53079 | 1297 |
lemma ln_gt_zero_iff [simp]: "0 < x \<Longrightarrow> 0 < ln x \<longleftrightarrow> 1 < x" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1298 |
using ln_less_cancel_iff [of 1 x] by simp |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1299 |
|
53079 | 1300 |
lemma ln_eq_zero_iff [simp]: "0 < x \<Longrightarrow> ln x = 0 \<longleftrightarrow> x = 1" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1301 |
using ln_inj_iff [of x 1] by simp |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1302 |
|
53079 | 1303 |
lemma ln_less_zero: "0 < x \<Longrightarrow> x < 1 \<Longrightarrow> ln x < 0" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1304 |
by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1305 |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1306 |
lemma ln_neg_is_const: "x \<le> 0 \<Longrightarrow> ln x = (THE x. False)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1307 |
by (auto simp add: ln_def intro!: arg_cong[where f=The]) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1308 |
|
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1309 |
lemma isCont_ln: assumes "x \<noteq> 0" shows "isCont ln x" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1310 |
proof cases |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1311 |
assume "0 < x" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1312 |
moreover then have "isCont ln (exp (ln x))" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1313 |
by (intro isCont_inv_fun[where d="\<bar>x\<bar>" and f=exp]) auto |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1314 |
ultimately show ?thesis |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1315 |
by simp |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1316 |
next |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1317 |
assume "\<not> 0 < x" with `x \<noteq> 0` show "isCont ln x" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1318 |
unfolding isCont_def |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1319 |
by (subst filterlim_cong[OF _ refl, of _ "nhds (ln 0)" _ "\<lambda>_. ln 0"]) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1320 |
(auto simp: ln_neg_is_const not_less eventually_at dist_real_def |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1321 |
intro!: tendsto_const exI[of _ "\<bar>x\<bar>"]) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1322 |
qed |
23045
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
1323 |
|
45915 | 1324 |
lemma tendsto_ln [tendsto_intros]: |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1325 |
"(f ---> a) F \<Longrightarrow> a \<noteq> 0 \<Longrightarrow> ((\<lambda>x. ln (f x)) ---> ln a) F" |
45915 | 1326 |
by (rule isCont_tendsto_compose [OF isCont_ln]) |
1327 |
||
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:
51477
diff
changeset
|
1328 |
lemma continuous_ln: |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1329 |
"continuous F f \<Longrightarrow> f (Lim F (\<lambda>x. x)) \<noteq> 0 \<Longrightarrow> continuous F (\<lambda>x. ln (f x))" |
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:
51477
diff
changeset
|
1330 |
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:
51477
diff
changeset
|
1331 |
|
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:
51477
diff
changeset
|
1332 |
lemma isCont_ln' [continuous_intros]: |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1333 |
"continuous (at x) f \<Longrightarrow> f x \<noteq> 0 \<Longrightarrow> continuous (at x) (\<lambda>x. ln (f x))" |
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:
51477
diff
changeset
|
1334 |
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:
51477
diff
changeset
|
1335 |
|
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:
51477
diff
changeset
|
1336 |
lemma continuous_within_ln [continuous_intros]: |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1337 |
"continuous (at x within s) f \<Longrightarrow> f x \<noteq> 0 \<Longrightarrow> continuous (at x within s) (\<lambda>x. ln (f x))" |
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:
51477
diff
changeset
|
1338 |
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:
51477
diff
changeset
|
1339 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
1340 |
lemma continuous_on_ln [continuous_intros]: |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
1341 |
"continuous_on s f \<Longrightarrow> (\<forall>x\<in>s. f x \<noteq> 0) \<Longrightarrow> continuous_on s (\<lambda>x. ln (f x))" |
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:
51477
diff
changeset
|
1342 |
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:
51477
diff
changeset
|
1343 |
|
23045
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
1344 |
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:
44307
diff
changeset
|
1345 |
apply (rule DERIV_inverse_function [where f=exp and a=0 and b="x+1"]) |
54576 | 1346 |
apply (auto intro: DERIV_cong [OF DERIV_exp exp_ln] isCont_ln) |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
1347 |
done |
23045
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
1348 |
|
53079 | 1349 |
lemma DERIV_ln_divide: "0 < x \<Longrightarrow> DERIV ln x :> 1 / x" |
33667 | 1350 |
by (rule DERIV_ln[THEN DERIV_cong], simp, simp add: divide_inverse) |
1351 |
||
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1352 |
declare DERIV_ln_divide[THEN DERIV_chain2, derivative_intros] |
51527 | 1353 |
|
53079 | 1354 |
lemma ln_series: |
1355 |
assumes "0 < x" and "x < 2" |
|
1356 |
shows "ln x = (\<Sum> n. (-1)^n * (1 / real (n + 1)) * (x - 1)^(Suc n))" |
|
1357 |
(is "ln x = suminf (?f (x - 1))") |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
1358 |
proof - |
53079 | 1359 |
let ?f' = "\<lambda>x n. (-1)^n * (x - 1)^n" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
1360 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
1361 |
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:
29695
diff
changeset
|
1362 |
proof (rule DERIV_isconst3[where x=x]) |
53079 | 1363 |
fix x :: real |
1364 |
assume "x \<in> {0 <..< 2}" |
|
1365 |
hence "0 < x" and "x < 2" by auto |
|
1366 |
have "norm (1 - x) < 1" |
|
1367 |
using `0 < x` and `x < 2` by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
1368 |
have "1 / x = 1 / (1 - (1 - x))" by auto |
53079 | 1369 |
also have "\<dots> = (\<Sum> n. (1 - x)^n)" |
1370 |
using geometric_sums[OF `norm (1 - x) < 1`] by (rule sums_unique) |
|
1371 |
also have "\<dots> = suminf (?f' x)" |
|
1372 |
unfolding power_mult_distrib[symmetric] |
|
1373 |
by (rule arg_cong[where f=suminf], rule arg_cong[where f="op ^"], auto) |
|
1374 |
finally have "DERIV ln x :> suminf (?f' x)" |
|
1375 |
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:
29695
diff
changeset
|
1376 |
moreover |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
1377 |
have repos: "\<And> h x :: real. h - 1 + x = h + x - 1" by auto |
53079 | 1378 |
have "DERIV (\<lambda>x. suminf (?f x)) (x - 1) :> |
1379 |
(\<Sum>n. (-1)^n * (1 / real (n + 1)) * real (Suc n) * (x - 1) ^ n)" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
1380 |
proof (rule DERIV_power_series') |
53079 | 1381 |
show "x - 1 \<in> {- 1<..<1}" and "(0 :: real) < 1" |
1382 |
using `0 < x` `x < 2` by auto |
|
1383 |
fix x :: real |
|
1384 |
assume "x \<in> {- 1<..<1}" |
|
1385 |
hence "norm (-x) < 1" by auto |
|
1386 |
show "summable (\<lambda>n. -1 ^ n * (1 / real (n + 1)) * real (Suc n) * x ^ n)" |
|
1387 |
unfolding One_nat_def |
|
1388 |
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:
29695
diff
changeset
|
1389 |
qed |
53079 | 1390 |
hence "DERIV (\<lambda>x. suminf (?f x)) (x - 1) :> suminf (?f' x)" |
1391 |
unfolding One_nat_def by auto |
|
1392 |
hence "DERIV (\<lambda>x. suminf (?f (x - 1))) x :> suminf (?f' x)" |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1393 |
unfolding DERIV_def repos . |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
1394 |
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:
29695
diff
changeset
|
1395 |
by (rule DERIV_diff) |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
1396 |
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:
29695
diff
changeset
|
1397 |
qed (auto simp add: assms) |
44289 | 1398 |
thus ?thesis by auto |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
1399 |
qed |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
1400 |
|
50326 | 1401 |
lemma exp_first_two_terms: "exp x = 1 + x + (\<Sum> n. inverse(fact (n+2)) * (x ^ (n+2)))" |
1402 |
proof - |
|
53079 | 1403 |
have "exp x = suminf (\<lambda>n. inverse(fact n) * (x ^ n))" |
50326 | 1404 |
by (simp add: exp_def) |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
1405 |
also from summable_exp have "... = (\<Sum> n. inverse(fact(n+2)) * (x ^ (n+2))) + |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
1406 |
(\<Sum> n::nat<2. inverse(fact n) * (x ^ n))" (is "_ = _ + ?a") |
50326 | 1407 |
by (rule suminf_split_initial_segment) |
1408 |
also have "?a = 1 + x" |
|
1409 |
by (simp add: numeral_2_eq_2) |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
1410 |
finally show ?thesis |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
1411 |
by simp |
50326 | 1412 |
qed |
1413 |
||
53079 | 1414 |
lemma exp_bound: "0 <= (x::real) \<Longrightarrow> x <= 1 \<Longrightarrow> exp x <= 1 + x + x\<^sup>2" |
50326 | 1415 |
proof - |
1416 |
assume a: "0 <= x" |
|
1417 |
assume b: "x <= 1" |
|
53079 | 1418 |
{ |
1419 |
fix n :: nat |
|
50326 | 1420 |
have "2 * 2 ^ n \<le> fact (n + 2)" |
53079 | 1421 |
by (induct n) simp_all |
50326 | 1422 |
hence "real ((2::nat) * 2 ^ n) \<le> real (fact (n + 2))" |
1423 |
by (simp only: real_of_nat_le_iff) |
|
1424 |
hence "2 * 2 ^ n \<le> real (fact (n + 2))" |
|
1425 |
by simp |
|
1426 |
hence "inverse (fact (n + 2)) \<le> inverse (2 * 2 ^ n)" |
|
1427 |
by (rule le_imp_inverse_le) simp |
|
1428 |
hence "inverse (fact (n + 2)) \<le> 1/2 * (1/2)^n" |
|
53079 | 1429 |
by (simp add: power_inverse) |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
1430 |
hence "inverse (fact (n + 2)) * (x^n * x\<^sup>2) \<le> 1/2 * (1/2)^n * (1 * x\<^sup>2)" |
50326 | 1431 |
by (rule mult_mono) |
56536 | 1432 |
(rule mult_mono, simp_all add: power_le_one a b) |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
1433 |
hence "inverse (fact (n + 2)) * x ^ (n + 2) \<le> (x\<^sup>2/2) * ((1/2)^n)" |
50326 | 1434 |
unfolding power_add by (simp add: mult_ac del: fact_Suc) } |
1435 |
note aux1 = this |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
1436 |
have "(\<lambda>n. x\<^sup>2 / 2 * (1 / 2) ^ n) sums (x\<^sup>2 / 2 * (1 / (1 - 1 / 2)))" |
50326 | 1437 |
by (intro sums_mult geometric_sums, simp) |
53076 | 1438 |
hence aux2: "(\<lambda>n. x\<^sup>2 / 2 * (1 / 2) ^ n) sums x\<^sup>2" |
50326 | 1439 |
by simp |
53079 | 1440 |
have "suminf (\<lambda>n. inverse(fact (n+2)) * (x ^ (n+2))) <= x\<^sup>2" |
50326 | 1441 |
proof - |
53079 | 1442 |
have "suminf (\<lambda>n. inverse(fact (n+2)) * (x ^ (n+2))) <= |
1443 |
suminf (\<lambda>n. (x\<^sup>2/2) * ((1/2)^n))" |
|
56213 | 1444 |
apply (rule suminf_le) |
50326 | 1445 |
apply (rule allI, rule aux1) |
1446 |
apply (rule summable_exp [THEN summable_ignore_initial_segment]) |
|
1447 |
by (rule sums_summable, rule aux2) |
|
53076 | 1448 |
also have "... = x\<^sup>2" |
50326 | 1449 |
by (rule sums_unique [THEN sym], rule aux2) |
1450 |
finally show ?thesis . |
|
1451 |
qed |
|
1452 |
thus ?thesis unfolding exp_first_two_terms by auto |
|
1453 |
qed |
|
1454 |
||
53079 | 1455 |
lemma ln_one_minus_pos_upper_bound: "0 <= x \<Longrightarrow> x < 1 \<Longrightarrow> ln (1 - x) <= - x" |
50326 | 1456 |
proof - |
1457 |
assume a: "0 <= (x::real)" and b: "x < 1" |
|
53076 | 1458 |
have "(1 - x) * (1 + x + x\<^sup>2) = (1 - x^3)" |
50326 | 1459 |
by (simp add: algebra_simps power2_eq_square power3_eq_cube) |
1460 |
also have "... <= 1" |
|
1461 |
by (auto simp add: a) |
|
53076 | 1462 |
finally have "(1 - x) * (1 + x + x\<^sup>2) <= 1" . |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
1463 |
moreover have c: "0 < 1 + x + x\<^sup>2" |
50326 | 1464 |
by (simp add: add_pos_nonneg a) |
53076 | 1465 |
ultimately have "1 - x <= 1 / (1 + x + x\<^sup>2)" |
50326 | 1466 |
by (elim mult_imp_le_div_pos) |
1467 |
also have "... <= 1 / exp x" |
|
54576 | 1468 |
by (metis a abs_one b exp_bound exp_gt_zero frac_le less_eq_real_def real_sqrt_abs |
1469 |
real_sqrt_pow2_iff real_sqrt_power) |
|
50326 | 1470 |
also have "... = exp (-x)" |
1471 |
by (auto simp add: exp_minus divide_inverse) |
|
1472 |
finally have "1 - x <= exp (- x)" . |
|
1473 |
also have "1 - x = exp (ln (1 - x))" |
|
54576 | 1474 |
by (metis b diff_0 exp_ln_iff less_iff_diff_less_0 minus_diff_eq) |
50326 | 1475 |
finally have "exp (ln (1 - x)) <= exp (- x)" . |
1476 |
thus ?thesis by (auto simp only: exp_le_cancel_iff) |
|
1477 |
qed |
|
1478 |
||
1479 |
lemma exp_ge_add_one_self [simp]: "1 + (x::real) <= exp x" |
|
1480 |
apply (case_tac "0 <= x") |
|
1481 |
apply (erule exp_ge_add_one_self_aux) |
|
1482 |
apply (case_tac "x <= -1") |
|
1483 |
apply (subgoal_tac "1 + x <= 0") |
|
1484 |
apply (erule order_trans) |
|
1485 |
apply simp |
|
1486 |
apply simp |
|
1487 |
apply (subgoal_tac "1 + x = exp(ln (1 + x))") |
|
1488 |
apply (erule ssubst) |
|
1489 |
apply (subst exp_le_cancel_iff) |
|
1490 |
apply (subgoal_tac "ln (1 - (- x)) <= - (- x)") |
|
1491 |
apply simp |
|
1492 |
apply (rule ln_one_minus_pos_upper_bound) |
|
1493 |
apply auto |
|
1494 |
done |
|
1495 |
||
53079 | 1496 |
lemma ln_one_plus_pos_lower_bound: "0 <= x \<Longrightarrow> x <= 1 \<Longrightarrow> x - x\<^sup>2 <= ln (1 + x)" |
51527 | 1497 |
proof - |
1498 |
assume a: "0 <= x" and b: "x <= 1" |
|
53076 | 1499 |
have "exp (x - x\<^sup>2) = exp x / exp (x\<^sup>2)" |
51527 | 1500 |
by (rule exp_diff) |
53076 | 1501 |
also have "... <= (1 + x + x\<^sup>2) / exp (x \<^sup>2)" |
54576 | 1502 |
by (metis a b divide_right_mono exp_bound exp_ge_zero) |
53076 | 1503 |
also have "... <= (1 + x + x\<^sup>2) / (1 + x\<^sup>2)" |
56544 | 1504 |
by (simp add: a divide_left_mono add_pos_nonneg) |
51527 | 1505 |
also from a have "... <= 1 + x" |
1506 |
by (simp add: field_simps add_strict_increasing zero_le_mult_iff) |
|
53076 | 1507 |
finally have "exp (x - x\<^sup>2) <= 1 + x" . |
51527 | 1508 |
also have "... = exp (ln (1 + x))" |
1509 |
proof - |
|
1510 |
from a have "0 < 1 + x" by auto |
|
1511 |
thus ?thesis |
|
1512 |
by (auto simp only: exp_ln_iff [THEN sym]) |
|
1513 |
qed |
|
53076 | 1514 |
finally have "exp (x - x\<^sup>2) <= exp (ln (1 + x))" . |
54576 | 1515 |
thus ?thesis |
1516 |
by (metis exp_le_cancel_iff) |
|
51527 | 1517 |
qed |
1518 |
||
53079 | 1519 |
lemma ln_one_minus_pos_lower_bound: |
1520 |
"0 <= x \<Longrightarrow> x <= (1 / 2) \<Longrightarrow> - x - 2 * x\<^sup>2 <= ln (1 - x)" |
|
51527 | 1521 |
proof - |
1522 |
assume a: "0 <= x" and b: "x <= (1 / 2)" |
|
53079 | 1523 |
from b have c: "x < 1" by auto |
51527 | 1524 |
then have "ln (1 - x) = - ln (1 + x / (1 - x))" |
54576 | 1525 |
apply (subst ln_inverse [symmetric]) |
1526 |
apply (simp add: field_simps) |
|
1527 |
apply (rule arg_cong [where f=ln]) |
|
1528 |
apply (simp add: field_simps) |
|
1529 |
done |
|
51527 | 1530 |
also have "- (x / (1 - x)) <= ..." |
53079 | 1531 |
proof - |
51527 | 1532 |
have "ln (1 + x / (1 - x)) <= x / (1 - x)" |
56571
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
hoelzl
parents:
56544
diff
changeset
|
1533 |
using a c by (intro ln_add_one_self_le_self) auto |
51527 | 1534 |
thus ?thesis |
1535 |
by auto |
|
1536 |
qed |
|
1537 |
also have "- (x / (1 - x)) = -x / (1 - x)" |
|
1538 |
by auto |
|
1539 |
finally have d: "- x / (1 - x) <= ln (1 - x)" . |
|
1540 |
have "0 < 1 - x" using a b by simp |
|
53076 | 1541 |
hence e: "-x - 2 * x\<^sup>2 <= - x / (1 - x)" |
51527 | 1542 |
using mult_right_le_one_le[of "x*x" "2*x"] a b |
53079 | 1543 |
by (simp add: field_simps power2_eq_square) |
53076 | 1544 |
from e d show "- x - 2 * x\<^sup>2 <= ln (1 - x)" |
51527 | 1545 |
by (rule order_trans) |
1546 |
qed |
|
1547 |
||
53079 | 1548 |
lemma ln_add_one_self_le_self2: "-1 < x \<Longrightarrow> ln(1 + x) <= x" |
51527 | 1549 |
apply (subgoal_tac "ln (1 + x) \<le> ln (exp x)", simp) |
1550 |
apply (subst ln_le_cancel_iff) |
|
1551 |
apply auto |
|
53079 | 1552 |
done |
51527 | 1553 |
|
1554 |
lemma abs_ln_one_plus_x_minus_x_bound_nonneg: |
|
53079 | 1555 |
"0 <= x \<Longrightarrow> x <= 1 \<Longrightarrow> abs(ln (1 + x) - x) <= x\<^sup>2" |
51527 | 1556 |
proof - |
1557 |
assume x: "0 <= x" |
|
1558 |
assume x1: "x <= 1" |
|
1559 |
from x have "ln (1 + x) <= x" |
|
1560 |
by (rule ln_add_one_self_le_self) |
|
53079 | 1561 |
then have "ln (1 + x) - x <= 0" |
51527 | 1562 |
by simp |
1563 |
then have "abs(ln(1 + x) - x) = - (ln(1 + x) - x)" |
|
1564 |
by (rule abs_of_nonpos) |
|
53079 | 1565 |
also have "... = x - ln (1 + x)" |
51527 | 1566 |
by simp |
53076 | 1567 |
also have "... <= x\<^sup>2" |
51527 | 1568 |
proof - |
53076 | 1569 |
from x x1 have "x - x\<^sup>2 <= ln (1 + x)" |
51527 | 1570 |
by (intro ln_one_plus_pos_lower_bound) |
1571 |
thus ?thesis |
|
1572 |
by simp |
|
1573 |
qed |
|
1574 |
finally show ?thesis . |
|
1575 |
qed |
|
1576 |
||
1577 |
lemma abs_ln_one_plus_x_minus_x_bound_nonpos: |
|
53079 | 1578 |
"-(1 / 2) <= x \<Longrightarrow> x <= 0 \<Longrightarrow> abs(ln (1 + x) - x) <= 2 * x\<^sup>2" |
51527 | 1579 |
proof - |
1580 |
assume a: "-(1 / 2) <= x" |
|
1581 |
assume b: "x <= 0" |
|
53079 | 1582 |
have "abs(ln (1 + x) - x) = x - ln(1 - (-x))" |
51527 | 1583 |
apply (subst abs_of_nonpos) |
1584 |
apply simp |
|
1585 |
apply (rule ln_add_one_self_le_self2) |
|
1586 |
using a apply auto |
|
1587 |
done |
|
53076 | 1588 |
also have "... <= 2 * x\<^sup>2" |
1589 |
apply (subgoal_tac "- (-x) - 2 * (-x)\<^sup>2 <= ln (1 - (-x))") |
|
51527 | 1590 |
apply (simp add: algebra_simps) |
1591 |
apply (rule ln_one_minus_pos_lower_bound) |
|
1592 |
using a b apply auto |
|
1593 |
done |
|
1594 |
finally show ?thesis . |
|
1595 |
qed |
|
1596 |
||
1597 |
lemma abs_ln_one_plus_x_minus_x_bound: |
|
53079 | 1598 |
"abs x <= 1 / 2 \<Longrightarrow> abs(ln (1 + x) - x) <= 2 * x\<^sup>2" |
51527 | 1599 |
apply (case_tac "0 <= x") |
1600 |
apply (rule order_trans) |
|
1601 |
apply (rule abs_ln_one_plus_x_minus_x_bound_nonneg) |
|
1602 |
apply auto |
|
1603 |
apply (rule abs_ln_one_plus_x_minus_x_bound_nonpos) |
|
1604 |
apply auto |
|
53079 | 1605 |
done |
1606 |
||
1607 |
lemma ln_x_over_x_mono: "exp 1 <= x \<Longrightarrow> x <= y \<Longrightarrow> (ln y / y) <= (ln x / x)" |
|
51527 | 1608 |
proof - |
1609 |
assume x: "exp 1 <= x" "x <= y" |
|
1610 |
moreover have "0 < exp (1::real)" by simp |
|
1611 |
ultimately have a: "0 < x" and b: "0 < y" |
|
1612 |
by (fast intro: less_le_trans order_trans)+ |
|
1613 |
have "x * ln y - x * ln x = x * (ln y - ln x)" |
|
1614 |
by (simp add: algebra_simps) |
|
1615 |
also have "... = x * ln(y / x)" |
|
1616 |
by (simp only: ln_div a b) |
|
1617 |
also have "y / x = (x + (y - x)) / x" |
|
1618 |
by simp |
|
1619 |
also have "... = 1 + (y - x) / x" |
|
1620 |
using x a by (simp add: field_simps) |
|
1621 |
also have "x * ln(1 + (y - x) / x) <= x * ((y - x) / x)" |
|
56571
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
hoelzl
parents:
56544
diff
changeset
|
1622 |
using x a |
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
hoelzl
parents:
56544
diff
changeset
|
1623 |
by (intro mult_left_mono ln_add_one_self_le_self) simp_all |
51527 | 1624 |
also have "... = y - x" using a by simp |
1625 |
also have "... = (y - x) * ln (exp 1)" by simp |
|
1626 |
also have "... <= (y - x) * ln x" |
|
1627 |
apply (rule mult_left_mono) |
|
1628 |
apply (subst ln_le_cancel_iff) |
|
1629 |
apply fact |
|
1630 |
apply (rule a) |
|
1631 |
apply (rule x) |
|
1632 |
using x apply simp |
|
1633 |
done |
|
1634 |
also have "... = y * ln x - x * ln x" |
|
1635 |
by (rule left_diff_distrib) |
|
1636 |
finally have "x * ln y <= y * ln x" |
|
1637 |
by arith |
|
1638 |
then have "ln y <= (y * ln x) / x" using a by (simp add: field_simps) |
|
1639 |
also have "... = y * (ln x / x)" by simp |
|
1640 |
finally show ?thesis using b by (simp add: field_simps) |
|
1641 |
qed |
|
1642 |
||
53079 | 1643 |
lemma ln_le_minus_one: "0 < x \<Longrightarrow> ln x \<le> x - 1" |
51527 | 1644 |
using exp_ge_add_one_self[of "ln x"] by simp |
1645 |
||
1646 |
lemma ln_eq_minus_one: |
|
53079 | 1647 |
assumes "0 < x" "ln x = x - 1" |
1648 |
shows "x = 1" |
|
51527 | 1649 |
proof - |
53079 | 1650 |
let ?l = "\<lambda>y. ln y - y + 1" |
51527 | 1651 |
have D: "\<And>x. 0 < x \<Longrightarrow> DERIV ?l x :> (1 / x - 1)" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1652 |
by (auto intro!: derivative_eq_intros) |
51527 | 1653 |
|
1654 |
show ?thesis |
|
1655 |
proof (cases rule: linorder_cases) |
|
1656 |
assume "x < 1" |
|
1657 |
from dense[OF `x < 1`] obtain a where "x < a" "a < 1" by blast |
|
1658 |
from `x < a` have "?l x < ?l a" |
|
1659 |
proof (rule DERIV_pos_imp_increasing, safe) |
|
53079 | 1660 |
fix y |
1661 |
assume "x \<le> y" "y \<le> a" |
|
51527 | 1662 |
with `0 < x` `a < 1` have "0 < 1 / y - 1" "0 < y" |
1663 |
by (auto simp: field_simps) |
|
1664 |
with D show "\<exists>z. DERIV ?l y :> z \<and> 0 < z" |
|
1665 |
by auto |
|
1666 |
qed |
|
1667 |
also have "\<dots> \<le> 0" |
|
1668 |
using ln_le_minus_one `0 < x` `x < a` by (auto simp: field_simps) |
|
1669 |
finally show "x = 1" using assms by auto |
|
1670 |
next |
|
1671 |
assume "1 < x" |
|
53079 | 1672 |
from dense[OF this] obtain a where "1 < a" "a < x" by blast |
51527 | 1673 |
from `a < x` have "?l x < ?l a" |
1674 |
proof (rule DERIV_neg_imp_decreasing, safe) |
|
53079 | 1675 |
fix y |
1676 |
assume "a \<le> y" "y \<le> x" |
|
51527 | 1677 |
with `1 < a` have "1 / y - 1 < 0" "0 < y" |
1678 |
by (auto simp: field_simps) |
|
1679 |
with D show "\<exists>z. DERIV ?l y :> z \<and> z < 0" |
|
1680 |
by blast |
|
1681 |
qed |
|
1682 |
also have "\<dots> \<le> 0" |
|
1683 |
using ln_le_minus_one `1 < a` by (auto simp: field_simps) |
|
1684 |
finally show "x = 1" using assms by auto |
|
53079 | 1685 |
next |
1686 |
assume "x = 1" |
|
1687 |
then show ?thesis by simp |
|
1688 |
qed |
|
51527 | 1689 |
qed |
1690 |
||
50326 | 1691 |
lemma exp_at_bot: "(exp ---> (0::real)) at_bot" |
1692 |
unfolding tendsto_Zfun_iff |
|
1693 |
proof (rule ZfunI, simp add: eventually_at_bot_dense) |
|
1694 |
fix r :: real assume "0 < r" |
|
53079 | 1695 |
{ |
1696 |
fix x |
|
1697 |
assume "x < ln r" |
|
50326 | 1698 |
then have "exp x < exp (ln r)" |
1699 |
by simp |
|
1700 |
with `0 < r` have "exp x < r" |
|
53079 | 1701 |
by simp |
1702 |
} |
|
50326 | 1703 |
then show "\<exists>k. \<forall>n<k. exp n < r" by auto |
1704 |
qed |
|
1705 |
||
1706 |
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:
50326
diff
changeset
|
1707 |
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:
50326
diff
changeset
|
1708 |
(auto intro: eventually_gt_at_top) |
50326 | 1709 |
|
1710 |
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:
50326
diff
changeset
|
1711 |
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:
51527
diff
changeset
|
1712 |
(auto simp: eventually_at_filter) |
50326 | 1713 |
|
1714 |
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:
50326
diff
changeset
|
1715 |
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:
50326
diff
changeset
|
1716 |
(auto intro: eventually_gt_at_top) |
50326 | 1717 |
|
50347 | 1718 |
lemma tendsto_power_div_exp_0: "((\<lambda>x. x ^ k / exp x) ---> (0::real)) at_top" |
1719 |
proof (induct k) |
|
53079 | 1720 |
case 0 |
50347 | 1721 |
show "((\<lambda>x. x ^ 0 / exp x) ---> (0::real)) at_top" |
1722 |
by (simp add: inverse_eq_divide[symmetric]) |
|
1723 |
(metis filterlim_compose[OF tendsto_inverse_0] exp_at_top filterlim_mono |
|
1724 |
at_top_le_at_infinity order_refl) |
|
1725 |
next |
|
1726 |
case (Suc k) |
|
1727 |
show ?case |
|
1728 |
proof (rule lhospital_at_top_at_top) |
|
1729 |
show "eventually (\<lambda>x. DERIV (\<lambda>x. x ^ Suc k) x :> (real (Suc k) * x^k)) at_top" |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1730 |
by eventually_elim (intro derivative_eq_intros, auto) |
50347 | 1731 |
show "eventually (\<lambda>x. DERIV exp x :> exp x) at_top" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1732 |
by eventually_elim auto |
50347 | 1733 |
show "eventually (\<lambda>x. exp x \<noteq> 0) at_top" |
1734 |
by auto |
|
1735 |
from tendsto_mult[OF tendsto_const Suc, of "real (Suc k)"] |
|
1736 |
show "((\<lambda>x. real (Suc k) * x ^ k / exp x) ---> 0) at_top" |
|
1737 |
by simp |
|
1738 |
qed (rule exp_at_top) |
|
1739 |
qed |
|
1740 |
||
51527 | 1741 |
|
53079 | 1742 |
definition powr :: "[real,real] => real" (infixr "powr" 80) |
1743 |
-- {*exponentation with real exponent*} |
|
1744 |
where "x powr a = exp(a * ln x)" |
|
1745 |
||
1746 |
definition log :: "[real,real] => real" |
|
1747 |
-- {*logarithm of @{term x} to base @{term a}*} |
|
1748 |
where "log a x = ln x / ln a" |
|
51527 | 1749 |
|
1750 |
||
1751 |
lemma tendsto_log [tendsto_intros]: |
|
1752 |
"\<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" |
|
1753 |
unfolding log_def by (intro tendsto_intros) auto |
|
1754 |
||
1755 |
lemma continuous_log: |
|
53079 | 1756 |
assumes "continuous F f" |
1757 |
and "continuous F g" |
|
1758 |
and "0 < f (Lim F (\<lambda>x. x))" |
|
1759 |
and "f (Lim F (\<lambda>x. x)) \<noteq> 1" |
|
1760 |
and "0 < g (Lim F (\<lambda>x. x))" |
|
51527 | 1761 |
shows "continuous F (\<lambda>x. log (f x) (g x))" |
1762 |
using assms unfolding continuous_def by (rule tendsto_log) |
|
1763 |
||
1764 |
lemma continuous_at_within_log[continuous_intros]: |
|
53079 | 1765 |
assumes "continuous (at a within s) f" |
1766 |
and "continuous (at a within s) g" |
|
1767 |
and "0 < f a" |
|
1768 |
and "f a \<noteq> 1" |
|
1769 |
and "0 < g a" |
|
51527 | 1770 |
shows "continuous (at a within s) (\<lambda>x. log (f x) (g x))" |
1771 |
using assms unfolding continuous_within by (rule tendsto_log) |
|
1772 |
||
1773 |
lemma isCont_log[continuous_intros, simp]: |
|
1774 |
assumes "isCont f a" "isCont g a" "0 < f a" "f a \<noteq> 1" "0 < g a" |
|
1775 |
shows "isCont (\<lambda>x. log (f x) (g x)) a" |
|
1776 |
using assms unfolding continuous_at by (rule tendsto_log) |
|
1777 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
1778 |
lemma continuous_on_log[continuous_intros]: |
53079 | 1779 |
assumes "continuous_on s f" "continuous_on s g" |
1780 |
and "\<forall>x\<in>s. 0 < f x" "\<forall>x\<in>s. f x \<noteq> 1" "\<forall>x\<in>s. 0 < g x" |
|
51527 | 1781 |
shows "continuous_on s (\<lambda>x. log (f x) (g x))" |
1782 |
using assms unfolding continuous_on_def by (fast intro: tendsto_log) |
|
1783 |
||
1784 |
lemma powr_one_eq_one [simp]: "1 powr a = 1" |
|
53079 | 1785 |
by (simp add: powr_def) |
51527 | 1786 |
|
1787 |
lemma powr_zero_eq_one [simp]: "x powr 0 = 1" |
|
53079 | 1788 |
by (simp add: powr_def) |
51527 | 1789 |
|
1790 |
lemma powr_one_gt_zero_iff [simp]: "(x powr 1 = x) = (0 < x)" |
|
53079 | 1791 |
by (simp add: powr_def) |
51527 | 1792 |
declare powr_one_gt_zero_iff [THEN iffD2, simp] |
1793 |
||
53079 | 1794 |
lemma powr_mult: "0 < x \<Longrightarrow> 0 < y \<Longrightarrow> (x * y) powr a = (x powr a) * (y powr a)" |
1795 |
by (simp add: powr_def exp_add [symmetric] ln_mult distrib_left) |
|
51527 | 1796 |
|
1797 |
lemma powr_gt_zero [simp]: "0 < x powr a" |
|
53079 | 1798 |
by (simp add: powr_def) |
51527 | 1799 |
|
1800 |
lemma powr_ge_pzero [simp]: "0 <= x powr y" |
|
53079 | 1801 |
by (rule order_less_imp_le, rule powr_gt_zero) |
51527 | 1802 |
|
1803 |
lemma powr_not_zero [simp]: "x powr a \<noteq> 0" |
|
53079 | 1804 |
by (simp add: powr_def) |
1805 |
||
1806 |
lemma powr_divide: "0 < x \<Longrightarrow> 0 < y \<Longrightarrow> (x / y) powr a = (x powr a) / (y powr a)" |
|
1807 |
apply (simp add: divide_inverse positive_imp_inverse_positive powr_mult) |
|
1808 |
apply (simp add: powr_def exp_minus [symmetric] exp_add [symmetric] ln_inverse) |
|
1809 |
done |
|
51527 | 1810 |
|
1811 |
lemma powr_divide2: "x powr a / x powr b = x powr (a - b)" |
|
1812 |
apply (simp add: powr_def) |
|
1813 |
apply (subst exp_diff [THEN sym]) |
|
1814 |
apply (simp add: left_diff_distrib) |
|
53079 | 1815 |
done |
51527 | 1816 |
|
1817 |
lemma powr_add: "x powr (a + b) = (x powr a) * (x powr b)" |
|
53079 | 1818 |
by (simp add: powr_def exp_add [symmetric] distrib_right) |
1819 |
||
1820 |
lemma powr_mult_base: "0 < x \<Longrightarrow>x * x powr y = x powr (1 + y)" |
|
1821 |
using assms by (auto simp: powr_add) |
|
51527 | 1822 |
|
1823 |
lemma powr_powr: "(x powr a) powr b = x powr (a * b)" |
|
53079 | 1824 |
by (simp add: powr_def) |
51527 | 1825 |
|
1826 |
lemma powr_powr_swap: "(x powr a) powr b = (x powr b) powr a" |
|
53079 | 1827 |
by (simp add: powr_powr mult_commute) |
51527 | 1828 |
|
1829 |
lemma powr_minus: "x powr (-a) = inverse (x powr a)" |
|
53079 | 1830 |
by (simp add: powr_def exp_minus [symmetric]) |
51527 | 1831 |
|
1832 |
lemma powr_minus_divide: "x powr (-a) = 1/(x powr a)" |
|
53079 | 1833 |
by (simp add: divide_inverse powr_minus) |
1834 |
||
1835 |
lemma powr_less_mono: "a < b \<Longrightarrow> 1 < x \<Longrightarrow> x powr a < x powr b" |
|
1836 |
by (simp add: powr_def) |
|
1837 |
||
1838 |
lemma powr_less_cancel: "x powr a < x powr b \<Longrightarrow> 1 < x \<Longrightarrow> a < b" |
|
1839 |
by (simp add: powr_def) |
|
1840 |
||
1841 |
lemma powr_less_cancel_iff [simp]: "1 < x \<Longrightarrow> (x powr a < x powr b) = (a < b)" |
|
1842 |
by (blast intro: powr_less_cancel powr_less_mono) |
|
1843 |
||
1844 |
lemma powr_le_cancel_iff [simp]: "1 < x \<Longrightarrow> (x powr a \<le> x powr b) = (a \<le> b)" |
|
1845 |
by (simp add: linorder_not_less [symmetric]) |
|
51527 | 1846 |
|
1847 |
lemma log_ln: "ln x = log (exp(1)) x" |
|
53079 | 1848 |
by (simp add: log_def) |
1849 |
||
1850 |
lemma DERIV_log: |
|
1851 |
assumes "x > 0" |
|
1852 |
shows "DERIV (\<lambda>y. log b y) x :> 1 / (ln b * x)" |
|
51527 | 1853 |
proof - |
1854 |
def lb \<equiv> "1 / ln b" |
|
1855 |
moreover have "DERIV (\<lambda>y. lb * ln y) x :> lb / x" |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1856 |
using `x > 0` by (auto intro!: derivative_eq_intros) |
51527 | 1857 |
ultimately show ?thesis |
1858 |
by (simp add: log_def) |
|
1859 |
qed |
|
1860 |
||
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
1861 |
lemmas DERIV_log[THEN DERIV_chain2, derivative_intros] |
51527 | 1862 |
|
53079 | 1863 |
lemma powr_log_cancel [simp]: "0 < a \<Longrightarrow> a \<noteq> 1 \<Longrightarrow> 0 < x \<Longrightarrow> a powr (log a x) = x" |
1864 |
by (simp add: powr_def log_def) |
|
1865 |
||
1866 |
lemma log_powr_cancel [simp]: "0 < a \<Longrightarrow> a \<noteq> 1 \<Longrightarrow> log a (a powr y) = y" |
|
1867 |
by (simp add: log_def powr_def) |
|
1868 |
||
1869 |
lemma log_mult: |
|
1870 |
"0 < a \<Longrightarrow> a \<noteq> 1 \<Longrightarrow> 0 < x \<Longrightarrow> 0 < y \<Longrightarrow> |
|
1871 |
log a (x * y) = log a x + log a y" |
|
1872 |
by (simp add: log_def ln_mult divide_inverse distrib_right) |
|
1873 |
||
1874 |
lemma log_eq_div_ln_mult_log: |
|
1875 |
"0 < a \<Longrightarrow> a \<noteq> 1 \<Longrightarrow> 0 < b \<Longrightarrow> b \<noteq> 1 \<Longrightarrow> 0 < x \<Longrightarrow> |
|
1876 |
log a x = (ln b/ln a) * log b x" |
|
1877 |
by (simp add: log_def divide_inverse) |
|
51527 | 1878 |
|
1879 |
text{*Base 10 logarithms*} |
|
53079 | 1880 |
lemma log_base_10_eq1: "0 < x \<Longrightarrow> log 10 x = (ln (exp 1) / ln 10) * ln x" |
1881 |
by (simp add: log_def) |
|
1882 |
||
1883 |
lemma log_base_10_eq2: "0 < x \<Longrightarrow> log 10 x = (log 10 (exp 1)) * ln x" |
|
1884 |
by (simp add: log_def) |
|
51527 | 1885 |
|
1886 |
lemma log_one [simp]: "log a 1 = 0" |
|
53079 | 1887 |
by (simp add: log_def) |
51527 | 1888 |
|
1889 |
lemma log_eq_one [simp]: "[| 0 < a; a \<noteq> 1 |] ==> log a a = 1" |
|
53079 | 1890 |
by (simp add: log_def) |
1891 |
||
1892 |
lemma log_inverse: "0 < a \<Longrightarrow> a \<noteq> 1 \<Longrightarrow> 0 < x \<Longrightarrow> log a (inverse x) = - log a x" |
|
1893 |
apply (rule_tac a1 = "log a x" in add_left_cancel [THEN iffD1]) |
|
1894 |
apply (simp add: log_mult [symmetric]) |
|
1895 |
done |
|
1896 |
||
1897 |
lemma log_divide: "0 < a \<Longrightarrow> a \<noteq> 1 \<Longrightarrow> 0 < x \<Longrightarrow> 0 < y \<Longrightarrow> log a (x/y) = log a x - log a y" |
|
1898 |
by (simp add: log_mult divide_inverse log_inverse) |
|
51527 | 1899 |
|
1900 |
lemma log_less_cancel_iff [simp]: |
|
53079 | 1901 |
"1 < a \<Longrightarrow> 0 < x \<Longrightarrow> 0 < y \<Longrightarrow> log a x < log a y \<longleftrightarrow> x < y" |
1902 |
apply safe |
|
1903 |
apply (rule_tac [2] powr_less_cancel) |
|
1904 |
apply (drule_tac a = "log a x" in powr_less_mono, auto) |
|
1905 |
done |
|
1906 |
||
1907 |
lemma log_inj: |
|
1908 |
assumes "1 < b" |
|
1909 |
shows "inj_on (log b) {0 <..}" |
|
51527 | 1910 |
proof (rule inj_onI, simp) |
53079 | 1911 |
fix x y |
1912 |
assume pos: "0 < x" "0 < y" and *: "log b x = log b y" |
|
51527 | 1913 |
show "x = y" |
1914 |
proof (cases rule: linorder_cases) |
|
53079 | 1915 |
assume "x = y" |
1916 |
then show ?thesis by simp |
|
1917 |
next |
|
51527 | 1918 |
assume "x < y" hence "log b x < log b y" |
1919 |
using log_less_cancel_iff[OF `1 < b`] pos by simp |
|
53079 | 1920 |
then show ?thesis using * by simp |
51527 | 1921 |
next |
1922 |
assume "y < x" hence "log b y < log b x" |
|
1923 |
using log_less_cancel_iff[OF `1 < b`] pos by simp |
|
53079 | 1924 |
then show ?thesis using * by simp |
1925 |
qed |
|
51527 | 1926 |
qed |
1927 |
||
1928 |
lemma log_le_cancel_iff [simp]: |
|
53079 | 1929 |
"1 < a \<Longrightarrow> 0 < x \<Longrightarrow> 0 < y \<Longrightarrow> (log a x \<le> log a y) = (x \<le> y)" |
1930 |
by (simp add: linorder_not_less [symmetric]) |
|
51527 | 1931 |
|
1932 |
lemma zero_less_log_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> 0 < log a x \<longleftrightarrow> 1 < x" |
|
1933 |
using log_less_cancel_iff[of a 1 x] by simp |
|
1934 |
||
1935 |
lemma zero_le_log_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> 0 \<le> log a x \<longleftrightarrow> 1 \<le> x" |
|
1936 |
using log_le_cancel_iff[of a 1 x] by simp |
|
1937 |
||
1938 |
lemma log_less_zero_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> log a x < 0 \<longleftrightarrow> x < 1" |
|
1939 |
using log_less_cancel_iff[of a x 1] by simp |
|
1940 |
||
1941 |
lemma log_le_zero_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> log a x \<le> 0 \<longleftrightarrow> x \<le> 1" |
|
1942 |
using log_le_cancel_iff[of a x 1] by simp |
|
1943 |
||
1944 |
lemma one_less_log_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> 1 < log a x \<longleftrightarrow> a < x" |
|
1945 |
using log_less_cancel_iff[of a a x] by simp |
|
1946 |
||
1947 |
lemma one_le_log_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> 1 \<le> log a x \<longleftrightarrow> a \<le> x" |
|
1948 |
using log_le_cancel_iff[of a a x] by simp |
|
1949 |
||
1950 |
lemma log_less_one_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> log a x < 1 \<longleftrightarrow> x < a" |
|
1951 |
using log_less_cancel_iff[of a x a] by simp |
|
1952 |
||
1953 |
lemma log_le_one_cancel_iff[simp]: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> log a x \<le> 1 \<longleftrightarrow> x \<le> a" |
|
1954 |
using log_le_cancel_iff[of a x a] by simp |
|
1955 |
||
1956 |
lemma powr_realpow: "0 < x ==> x powr (real n) = x^n" |
|
53079 | 1957 |
apply (induct n) |
1958 |
apply simp |
|
51527 | 1959 |
apply (subgoal_tac "real(Suc n) = real n + 1") |
1960 |
apply (erule ssubst) |
|
1961 |
apply (subst powr_add, simp, simp) |
|
53079 | 1962 |
done |
51527 | 1963 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1964 |
lemma powr_realpow_numeral: "0 < x \<Longrightarrow> x powr (numeral n :: real) = x ^ (numeral n)" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1965 |
unfolding real_of_nat_numeral [symmetric] by (rule powr_realpow) |
52139 | 1966 |
|
57180 | 1967 |
lemma powr2_sqrt[simp]: "0 < x \<Longrightarrow> sqrt x powr 2 = x" |
1968 |
by(simp add: powr_realpow_numeral) |
|
1969 |
||
51527 | 1970 |
lemma powr_realpow2: "0 <= x ==> 0 < n ==> x^n = (if (x = 0) then 0 else x powr (real n))" |
1971 |
apply (case_tac "x = 0", simp, simp) |
|
1972 |
apply (rule powr_realpow [THEN sym], simp) |
|
53079 | 1973 |
done |
51527 | 1974 |
|
1975 |
lemma powr_int: |
|
1976 |
assumes "x > 0" |
|
1977 |
shows "x powr i = (if i \<ge> 0 then x ^ nat i else 1 / x ^ nat (-i))" |
|
53079 | 1978 |
proof (cases "i < 0") |
1979 |
case True |
|
51527 | 1980 |
have r: "x powr i = 1 / x powr (-i)" by (simp add: powr_minus field_simps) |
1981 |
show ?thesis using `i < 0` `x > 0` by (simp add: r field_simps powr_realpow[symmetric]) |
|
53079 | 1982 |
next |
1983 |
case False |
|
1984 |
then show ?thesis by (simp add: assms powr_realpow[symmetric]) |
|
1985 |
qed |
|
51527 | 1986 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1987 |
lemma powr_one: "0 < x \<Longrightarrow> x powr 1 = x" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1988 |
using powr_realpow [of x 1] by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1989 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1990 |
lemma powr_numeral: "0 < x \<Longrightarrow> x powr numeral n = x ^ numeral n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1991 |
by (fact powr_realpow_numeral) |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1992 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1993 |
lemma powr_neg_one: "0 < x \<Longrightarrow> x powr - 1 = 1 / x" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1994 |
using powr_int [of x "- 1"] by simp |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1995 |
|
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1996 |
lemma powr_neg_numeral: "0 < x \<Longrightarrow> x powr - numeral n = 1 / x ^ numeral n" |
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
1997 |
using powr_int [of x "- numeral n"] by simp |
51527 | 1998 |
|
53079 | 1999 |
lemma root_powr_inverse: "0 < n \<Longrightarrow> 0 < x \<Longrightarrow> root n x = x powr (1/n)" |
51527 | 2000 |
by (rule real_root_pos_unique) (auto simp: powr_realpow[symmetric] powr_powr) |
2001 |
||
56483 | 2002 |
lemma ln_powr: "ln (x powr y) = y * ln x" |
2003 |
by (simp add: powr_def) |
|
2004 |
||
56952 | 2005 |
lemma ln_root: "\<lbrakk> n > 0; b > 0 \<rbrakk> \<Longrightarrow> ln (root n b) = ln b / n" |
2006 |
by(simp add: root_powr_inverse ln_powr) |
|
2007 |
||
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2008 |
lemma ln_sqrt: "0 < x \<Longrightarrow> ln (sqrt x) = ln x / 2" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2009 |
by (simp add: ln_powr powr_numeral ln_powr[symmetric] mult_commute) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2010 |
|
56952 | 2011 |
lemma log_root: "\<lbrakk> n > 0; a > 0 \<rbrakk> \<Longrightarrow> log b (root n a) = log b a / n" |
2012 |
by(simp add: log_def ln_root) |
|
2013 |
||
56483 | 2014 |
lemma log_powr: "log b (x powr y) = y * log b x" |
2015 |
by (simp add: log_def ln_powr) |
|
2016 |
||
2017 |
lemma log_nat_power: "0 < x \<Longrightarrow> log b (x ^ n) = real n * log b x" |
|
2018 |
by (simp add: log_powr powr_realpow [symmetric]) |
|
2019 |
||
2020 |
lemma log_base_change: "0 < a \<Longrightarrow> a \<noteq> 1 \<Longrightarrow> log b x = log a x / log a b" |
|
2021 |
by (simp add: log_def) |
|
2022 |
||
2023 |
lemma log_base_pow: "0 < a \<Longrightarrow> log (a ^ n) x = log a x / n" |
|
2024 |
by (simp add: log_def ln_realpow) |
|
2025 |
||
2026 |
lemma log_base_powr: "log (a powr b) x = log a x / b" |
|
2027 |
by (simp add: log_def ln_powr) |
|
51527 | 2028 |
|
56952 | 2029 |
lemma log_base_root: "\<lbrakk> n > 0; b > 0 \<rbrakk> \<Longrightarrow> log (root n b) x = n * (log b x)" |
2030 |
by(simp add: log_def ln_root) |
|
2031 |
||
51527 | 2032 |
lemma ln_bound: "1 <= x ==> ln x <= x" |
2033 |
apply (subgoal_tac "ln(1 + (x - 1)) <= x - 1") |
|
2034 |
apply simp |
|
2035 |
apply (rule ln_add_one_self_le_self, simp) |
|
53079 | 2036 |
done |
51527 | 2037 |
|
2038 |
lemma powr_mono: "a <= b ==> 1 <= x ==> x powr a <= x powr b" |
|
53079 | 2039 |
apply (cases "x = 1", simp) |
2040 |
apply (cases "a = b", simp) |
|
51527 | 2041 |
apply (rule order_less_imp_le) |
2042 |
apply (rule powr_less_mono, auto) |
|
53079 | 2043 |
done |
51527 | 2044 |
|
2045 |
lemma ge_one_powr_ge_zero: "1 <= x ==> 0 <= a ==> 1 <= x powr a" |
|
2046 |
apply (subst powr_zero_eq_one [THEN sym]) |
|
2047 |
apply (rule powr_mono, assumption+) |
|
53079 | 2048 |
done |
2049 |
||
2050 |
lemma powr_less_mono2: "0 < a ==> 0 < x ==> x < y ==> x powr a < y powr a" |
|
51527 | 2051 |
apply (unfold powr_def) |
2052 |
apply (rule exp_less_mono) |
|
2053 |
apply (rule mult_strict_left_mono) |
|
2054 |
apply (subst ln_less_cancel_iff, assumption) |
|
2055 |
apply (rule order_less_trans) |
|
2056 |
prefer 2 |
|
2057 |
apply assumption+ |
|
53079 | 2058 |
done |
2059 |
||
2060 |
lemma powr_less_mono2_neg: "a < 0 ==> 0 < x ==> x < y ==> y powr a < x powr a" |
|
51527 | 2061 |
apply (unfold powr_def) |
2062 |
apply (rule exp_less_mono) |
|
2063 |
apply (rule mult_strict_left_mono_neg) |
|
2064 |
apply (subst ln_less_cancel_iff) |
|
2065 |
apply assumption |
|
2066 |
apply (rule order_less_trans) |
|
2067 |
prefer 2 |
|
2068 |
apply assumption+ |
|
53079 | 2069 |
done |
51527 | 2070 |
|
2071 |
lemma powr_mono2: "0 <= a ==> 0 < x ==> x <= y ==> x powr a <= y powr a" |
|
2072 |
apply (case_tac "a = 0", simp) |
|
2073 |
apply (case_tac "x = y", simp) |
|
54575 | 2074 |
apply (metis less_eq_real_def powr_less_mono2) |
53079 | 2075 |
done |
2076 |
||
2077 |
lemma powr_inj: "0 < a \<Longrightarrow> a \<noteq> 1 \<Longrightarrow> a powr x = a powr y \<longleftrightarrow> x = y" |
|
51527 | 2078 |
unfolding powr_def exp_inj_iff by simp |
2079 |
||
2080 |
lemma ln_powr_bound: "1 <= x ==> 0 < a ==> ln x <= (x powr a) / a" |
|
54575 | 2081 |
by (metis less_eq_real_def ln_less_self mult_imp_le_div_pos ln_powr mult_commute |
2082 |
order.strict_trans2 powr_gt_zero zero_less_one) |
|
51527 | 2083 |
|
2084 |
lemma ln_powr_bound2: |
|
2085 |
assumes "1 < x" and "0 < a" |
|
2086 |
shows "(ln x) powr a <= (a powr a) * x" |
|
2087 |
proof - |
|
2088 |
from assms have "ln x <= (x powr (1 / a)) / (1 / a)" |
|
54575 | 2089 |
by (metis less_eq_real_def ln_powr_bound zero_less_divide_1_iff) |
51527 | 2090 |
also have "... = a * (x powr (1 / a))" |
2091 |
by simp |
|
2092 |
finally have "(ln x) powr a <= (a * (x powr (1 / a))) powr a" |
|
54575 | 2093 |
by (metis assms less_imp_le ln_gt_zero powr_mono2) |
51527 | 2094 |
also have "... = (a powr a) * ((x powr (1 / a)) powr a)" |
54575 | 2095 |
by (metis assms(2) powr_mult powr_gt_zero) |
51527 | 2096 |
also have "(x powr (1 / a)) powr a = x powr ((1 / a) * a)" |
2097 |
by (rule powr_powr) |
|
54575 | 2098 |
also have "... = x" using assms |
2099 |
by auto |
|
51527 | 2100 |
finally show ?thesis . |
2101 |
qed |
|
2102 |
||
2103 |
lemma tendsto_powr [tendsto_intros]: |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2104 |
"\<lbrakk>(f ---> a) F; (g ---> b) F; a \<noteq> 0\<rbrakk> \<Longrightarrow> ((\<lambda>x. f x powr g x) ---> a powr b) F" |
51527 | 2105 |
unfolding powr_def by (intro tendsto_intros) |
2106 |
||
2107 |
lemma continuous_powr: |
|
53079 | 2108 |
assumes "continuous F f" |
2109 |
and "continuous F g" |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2110 |
and "f (Lim F (\<lambda>x. x)) \<noteq> 0" |
51527 | 2111 |
shows "continuous F (\<lambda>x. (f x) powr (g x))" |
2112 |
using assms unfolding continuous_def by (rule tendsto_powr) |
|
2113 |
||
2114 |
lemma continuous_at_within_powr[continuous_intros]: |
|
53079 | 2115 |
assumes "continuous (at a within s) f" |
2116 |
and "continuous (at a within s) g" |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2117 |
and "f a \<noteq> 0" |
51527 | 2118 |
shows "continuous (at a within s) (\<lambda>x. (f x) powr (g x))" |
2119 |
using assms unfolding continuous_within by (rule tendsto_powr) |
|
2120 |
||
2121 |
lemma isCont_powr[continuous_intros, simp]: |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2122 |
assumes "isCont f a" "isCont g a" "f a \<noteq> 0" |
51527 | 2123 |
shows "isCont (\<lambda>x. (f x) powr g x) a" |
2124 |
using assms unfolding continuous_at by (rule tendsto_powr) |
|
2125 |
||
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
2126 |
lemma continuous_on_powr[continuous_intros]: |
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2127 |
assumes "continuous_on s f" "continuous_on s g" and "\<forall>x\<in>s. f x \<noteq> 0" |
51527 | 2128 |
shows "continuous_on s (\<lambda>x. (f x) powr (g x))" |
2129 |
using assms unfolding continuous_on_def by (fast intro: tendsto_powr) |
|
2130 |
||
2131 |
(* FIXME: generalize by replacing d by with g x and g ---> d? *) |
|
2132 |
lemma tendsto_zero_powrI: |
|
2133 |
assumes "eventually (\<lambda>x. 0 < f x ) F" and "(f ---> 0) F" |
|
53079 | 2134 |
and "0 < d" |
51527 | 2135 |
shows "((\<lambda>x. f x powr d) ---> 0) F" |
2136 |
proof (rule tendstoI) |
|
2137 |
fix e :: real assume "0 < e" |
|
2138 |
def Z \<equiv> "e powr (1 / d)" |
|
2139 |
with `0 < e` have "0 < Z" by simp |
|
2140 |
with assms have "eventually (\<lambda>x. 0 < f x \<and> dist (f x) 0 < Z) F" |
|
2141 |
by (intro eventually_conj tendstoD) |
|
2142 |
moreover |
|
2143 |
from assms have "\<And>x. 0 < x \<and> dist x 0 < Z \<Longrightarrow> x powr d < Z powr d" |
|
2144 |
by (intro powr_less_mono2) (auto simp: dist_real_def) |
|
2145 |
with assms `0 < e` have "\<And>x. 0 < x \<and> dist x 0 < Z \<Longrightarrow> dist (x powr d) 0 < e" |
|
2146 |
unfolding dist_real_def Z_def by (auto simp: powr_powr) |
|
2147 |
ultimately |
|
2148 |
show "eventually (\<lambda>x. dist (f x powr d) 0 < e) F" by (rule eventually_elim1) |
|
2149 |
qed |
|
2150 |
||
2151 |
lemma tendsto_neg_powr: |
|
53079 | 2152 |
assumes "s < 0" |
2153 |
and "LIM x F. f x :> at_top" |
|
51527 | 2154 |
shows "((\<lambda>x. f x powr s) ---> 0) F" |
2155 |
proof (rule tendstoI) |
|
2156 |
fix e :: real assume "0 < e" |
|
2157 |
def Z \<equiv> "e powr (1 / s)" |
|
2158 |
from assms have "eventually (\<lambda>x. Z < f x) F" |
|
2159 |
by (simp add: filterlim_at_top_dense) |
|
2160 |
moreover |
|
2161 |
from assms have "\<And>x. Z < x \<Longrightarrow> x powr s < Z powr s" |
|
2162 |
by (auto simp: Z_def intro!: powr_less_mono2_neg) |
|
2163 |
with assms `0 < e` have "\<And>x. Z < x \<Longrightarrow> dist (x powr s) 0 < e" |
|
2164 |
by (simp add: powr_powr Z_def dist_real_def) |
|
2165 |
ultimately |
|
2166 |
show "eventually (\<lambda>x. dist (f x powr s) 0 < e) F" by (rule eventually_elim1) |
|
2167 |
qed |
|
2168 |
||
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2169 |
(* it is funny that this isn't in the library! It could go in Transcendental *) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2170 |
lemma tendsto_exp_limit_at_right: |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2171 |
fixes x :: real |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2172 |
shows "((\<lambda>y. (1 + x * y) powr (1 / y)) ---> exp x) (at_right 0)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2173 |
proof cases |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2174 |
assume "x \<noteq> 0" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2175 |
|
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2176 |
have "((\<lambda>y. ln (1 + x * y)::real) has_real_derivative 1 * x) (at 0)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2177 |
by (auto intro!: derivative_eq_intros) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2178 |
then have "((\<lambda>y. ln (1 + x * y) / y) ---> x) (at 0)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2179 |
by (auto simp add: has_field_derivative_def field_has_derivative_at) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2180 |
then have *: "((\<lambda>y. exp (ln (1 + x * y) / y)) ---> exp x) (at 0)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2181 |
by (rule tendsto_intros) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2182 |
then show ?thesis |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2183 |
proof (rule filterlim_mono_eventually) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2184 |
show "eventually (\<lambda>xa. exp (ln (1 + x * xa) / xa) = (1 + x * xa) powr (1 / xa)) (at_right 0)" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2185 |
unfolding eventually_at_right[OF zero_less_one] |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2186 |
using `x \<noteq> 0` by (intro exI[of _ "1 / \<bar>x\<bar>"]) (auto simp: field_simps powr_def) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2187 |
qed (simp_all add: at_eq_sup_left_right) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2188 |
qed (simp add: tendsto_const) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2189 |
|
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2190 |
lemma tendsto_exp_limit_at_top: |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2191 |
fixes x :: real |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2192 |
shows "((\<lambda>y. (1 + x / y) powr y) ---> exp x) at_top" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2193 |
apply (subst filterlim_at_top_to_right) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2194 |
apply (simp add: inverse_eq_divide) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2195 |
apply (rule tendsto_exp_limit_at_right) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2196 |
done |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2197 |
|
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2198 |
lemma tendsto_exp_limit_sequentially: |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2199 |
fixes x :: real |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2200 |
shows "(\<lambda>n. (1 + x / n) ^ n) ----> exp x" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2201 |
proof (rule filterlim_mono_eventually) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2202 |
from reals_Archimedean2 [of "abs x"] obtain n :: nat where *: "real n > abs x" .. |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2203 |
hence "eventually (\<lambda>n :: nat. 0 < 1 + x / real n) at_top" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2204 |
apply (intro eventually_sequentiallyI [of n]) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2205 |
apply (case_tac "x \<ge> 0") |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2206 |
apply (rule add_pos_nonneg, auto intro: divide_nonneg_nonneg) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2207 |
apply (subgoal_tac "x / real xa > -1") |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2208 |
apply (auto simp add: field_simps) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2209 |
done |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2210 |
then show "eventually (\<lambda>n. (1 + x / n) powr n = (1 + x / n) ^ n) at_top" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2211 |
by (rule eventually_elim1) (erule powr_realpow) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2212 |
show "(\<lambda>n. (1 + x / real n) powr real n) ----> exp x" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2213 |
by (rule filterlim_compose [OF tendsto_exp_limit_at_top filterlim_real_sequentially]) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2214 |
qed auto |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2215 |
|
29164 | 2216 |
subsection {* Sine and Cosine *} |
2217 |
||
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2218 |
definition sin_coeff :: "nat \<Rightarrow> real" where |
31271 | 2219 |
"sin_coeff = (\<lambda>n. if even n then 0 else -1 ^ ((n - Suc 0) div 2) / real (fact n))" |
2220 |
||
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2221 |
definition cos_coeff :: "nat \<Rightarrow> real" where |
31271 | 2222 |
"cos_coeff = (\<lambda>n. if even n then (-1 ^ (n div 2)) / real (fact n) else 0)" |
2223 |
||
53079 | 2224 |
definition sin :: "real \<Rightarrow> real" |
2225 |
where "sin = (\<lambda>x. \<Sum>n. sin_coeff n * x ^ n)" |
|
2226 |
||
2227 |
definition cos :: "real \<Rightarrow> real" |
|
2228 |
where "cos = (\<lambda>x. \<Sum>n. cos_coeff n * x ^ n)" |
|
31271 | 2229 |
|
44319
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2230 |
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:
44318
diff
changeset
|
2231 |
unfolding sin_coeff_def by simp |
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2232 |
|
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2233 |
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:
44318
diff
changeset
|
2234 |
unfolding cos_coeff_def by simp |
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2235 |
|
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2236 |
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:
44318
diff
changeset
|
2237 |
unfolding cos_coeff_def sin_coeff_def |
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2238 |
by (simp del: mult_Suc) |
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2239 |
|
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2240 |
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:
44318
diff
changeset
|
2241 |
unfolding cos_coeff_def sin_coeff_def |
56479
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents:
56409
diff
changeset
|
2242 |
by (simp del: mult_Suc, auto simp add: odd_Suc_mult_two_ex) |
44319
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2243 |
|
31271 | 2244 |
lemma summable_sin: "summable (\<lambda>n. sin_coeff n * x ^ n)" |
53079 | 2245 |
unfolding sin_coeff_def |
2246 |
apply (rule summable_comparison_test [OF _ summable_exp [where x="\<bar>x\<bar>"]]) |
|
2247 |
apply (auto simp add: divide_inverse abs_mult power_abs [symmetric] zero_le_mult_iff) |
|
2248 |
done |
|
29164 | 2249 |
|
31271 | 2250 |
lemma summable_cos: "summable (\<lambda>n. cos_coeff n * x ^ n)" |
53079 | 2251 |
unfolding cos_coeff_def |
2252 |
apply (rule summable_comparison_test [OF _ summable_exp [where x="\<bar>x\<bar>"]]) |
|
2253 |
apply (auto simp add: divide_inverse abs_mult power_abs [symmetric] zero_le_mult_iff) |
|
2254 |
done |
|
29164 | 2255 |
|
31271 | 2256 |
lemma sin_converges: "(\<lambda>n. sin_coeff n * x ^ n) sums sin(x)" |
53079 | 2257 |
unfolding sin_def by (rule summable_sin [THEN summable_sums]) |
29164 | 2258 |
|
31271 | 2259 |
lemma cos_converges: "(\<lambda>n. cos_coeff n * x ^ n) sums cos(x)" |
53079 | 2260 |
unfolding cos_def by (rule summable_cos [THEN summable_sums]) |
29164 | 2261 |
|
44319
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2262 |
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:
44318
diff
changeset
|
2263 |
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:
44318
diff
changeset
|
2264 |
|
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2265 |
lemma diffs_cos_coeff: "diffs cos_coeff = (\<lambda>n. - sin_coeff n)" |
56479
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents:
56409
diff
changeset
|
2266 |
by (simp add: diffs_def cos_coeff_Suc real_of_nat_def del: of_nat_Suc) |
29164 | 2267 |
|
2268 |
text{*Now at last we can get the derivatives of exp, sin and cos*} |
|
2269 |
||
2270 |
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:
44318
diff
changeset
|
2271 |
unfolding sin_def cos_def |
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2272 |
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:
44318
diff
changeset
|
2273 |
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:
44318
diff
changeset
|
2274 |
summable_minus summable_sin summable_cos) |
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2275 |
done |
29164 | 2276 |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2277 |
declare DERIV_sin[THEN DERIV_chain2, derivative_intros] |
51527 | 2278 |
|
29164 | 2279 |
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:
44318
diff
changeset
|
2280 |
unfolding cos_def sin_def |
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2281 |
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:
44318
diff
changeset
|
2282 |
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:
44318
diff
changeset
|
2283 |
summable_minus summable_sin summable_cos suminf_minus) |
806e0390de53
move sin_coeff and cos_coeff lemmas to Transcendental.thy; simplify some proofs
huffman
parents:
44318
diff
changeset
|
2284 |
done |
29164 | 2285 |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2286 |
declare DERIV_cos[THEN DERIV_chain2, derivative_intros] |
51527 | 2287 |
|
44311 | 2288 |
lemma isCont_sin: "isCont sin x" |
2289 |
by (rule DERIV_sin [THEN DERIV_isCont]) |
|
2290 |
||
2291 |
lemma isCont_cos: "isCont cos x" |
|
2292 |
by (rule DERIV_cos [THEN DERIV_isCont]) |
|
2293 |
||
2294 |
lemma isCont_sin' [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. sin (f x)) a" |
|
2295 |
by (rule isCont_o2 [OF _ isCont_sin]) |
|
2296 |
||
2297 |
lemma isCont_cos' [simp]: "isCont f a \<Longrightarrow> isCont (\<lambda>x. cos (f x)) a" |
|
2298 |
by (rule isCont_o2 [OF _ isCont_cos]) |
|
2299 |
||
2300 |
lemma tendsto_sin [tendsto_intros]: |
|
2301 |
"(f ---> a) F \<Longrightarrow> ((\<lambda>x. sin (f x)) ---> sin a) F" |
|
2302 |
by (rule isCont_tendsto_compose [OF isCont_sin]) |
|
2303 |
||
2304 |
lemma tendsto_cos [tendsto_intros]: |
|
2305 |
"(f ---> a) F \<Longrightarrow> ((\<lambda>x. cos (f x)) ---> cos a) F" |
|
2306 |
by (rule isCont_tendsto_compose [OF isCont_cos]) |
|
29164 | 2307 |
|
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:
51477
diff
changeset
|
2308 |
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:
51477
diff
changeset
|
2309 |
"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:
51477
diff
changeset
|
2310 |
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:
51477
diff
changeset
|
2311 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
2312 |
lemma continuous_on_sin [continuous_intros]: |
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:
51477
diff
changeset
|
2313 |
"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:
51477
diff
changeset
|
2314 |
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:
51477
diff
changeset
|
2315 |
|
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:
51477
diff
changeset
|
2316 |
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:
51477
diff
changeset
|
2317 |
"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:
51477
diff
changeset
|
2318 |
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:
51477
diff
changeset
|
2319 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
2320 |
lemma continuous_on_cos [continuous_intros]: |
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:
51477
diff
changeset
|
2321 |
"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:
51477
diff
changeset
|
2322 |
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:
51477
diff
changeset
|
2323 |
|
29164 | 2324 |
subsection {* Properties of Sine and Cosine *} |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2325 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2326 |
lemma sin_zero [simp]: "sin 0 = 0" |
44311 | 2327 |
unfolding sin_def sin_coeff_def by (simp add: powser_zero) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2328 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2329 |
lemma cos_zero [simp]: "cos 0 = 1" |
44311 | 2330 |
unfolding cos_def cos_coeff_def by (simp add: powser_zero) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2331 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
2332 |
lemma sin_cos_squared_add [simp]: "(sin x)\<^sup>2 + (cos x)\<^sup>2 = 1" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2333 |
proof - |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
2334 |
have "\<forall>x. DERIV (\<lambda>x. (sin x)\<^sup>2 + (cos x)\<^sup>2) x :> 0" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2335 |
by (auto intro!: derivative_eq_intros) |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
2336 |
hence "(sin x)\<^sup>2 + (cos x)\<^sup>2 = (sin 0)\<^sup>2 + (cos 0)\<^sup>2" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2337 |
by (rule DERIV_isconst_all) |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
2338 |
thus "(sin x)\<^sup>2 + (cos x)\<^sup>2 = 1" by simp |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2339 |
qed |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2340 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
2341 |
lemma sin_cos_squared_add2 [simp]: "(cos x)\<^sup>2 + (sin x)\<^sup>2 = 1" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2342 |
by (subst add_commute, rule sin_cos_squared_add) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2343 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2344 |
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:
44307
diff
changeset
|
2345 |
using sin_cos_squared_add2 [unfolded power2_eq_square] . |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2346 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
2347 |
lemma sin_squared_eq: "(sin x)\<^sup>2 = 1 - (cos x)\<^sup>2" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2348 |
unfolding eq_diff_eq by (rule sin_cos_squared_add) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2349 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
2350 |
lemma cos_squared_eq: "(cos x)\<^sup>2 = 1 - (sin x)\<^sup>2" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2351 |
unfolding eq_diff_eq by (rule sin_cos_squared_add2) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2352 |
|
15081 | 2353 |
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:
44307
diff
changeset
|
2354 |
by (rule power2_le_imp_le, simp_all add: sin_squared_eq) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2355 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2356 |
lemma sin_ge_minus_one [simp]: "-1 \<le> sin x" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2357 |
using abs_sin_le_one [of x] unfolding abs_le_iff by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2358 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2359 |
lemma sin_le_one [simp]: "sin x \<le> 1" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2360 |
using abs_sin_le_one [of x] unfolding abs_le_iff by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2361 |
|
15081 | 2362 |
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:
44307
diff
changeset
|
2363 |
by (rule power2_le_imp_le, simp_all add: cos_squared_eq) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2364 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2365 |
lemma cos_ge_minus_one [simp]: "-1 \<le> cos x" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2366 |
using abs_cos_le_one [of x] unfolding abs_le_iff by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2367 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2368 |
lemma cos_le_one [simp]: "cos x \<le> 1" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2369 |
using abs_cos_le_one [of x] unfolding abs_le_iff by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2370 |
|
41970 | 2371 |
lemma DERIV_fun_pow: "DERIV g x :> m ==> |
53079 | 2372 |
DERIV (\<lambda>x. (g x) ^ n) x :> real n * (g x) ^ (n - 1) * m" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2373 |
by (auto intro!: derivative_eq_intros simp: real_of_nat_def) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2374 |
|
15229 | 2375 |
lemma DERIV_fun_exp: |
53079 | 2376 |
"DERIV g x :> m ==> DERIV (\<lambda>x. exp(g x)) x :> exp(g x) * m" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2377 |
by (auto intro!: derivative_intros) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2378 |
|
15229 | 2379 |
lemma DERIV_fun_sin: |
53079 | 2380 |
"DERIV g x :> m ==> DERIV (\<lambda>x. sin(g x)) x :> cos(g x) * m" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2381 |
by (auto intro!: derivative_intros) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2382 |
|
15229 | 2383 |
lemma DERIV_fun_cos: |
53079 | 2384 |
"DERIV g x :> m ==> DERIV (\<lambda>x. cos(g x)) x :> -sin(g x) * m" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2385 |
by (auto intro!: derivative_eq_intros simp: real_of_nat_def) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2386 |
|
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2387 |
lemma sin_cos_add_lemma: |
53079 | 2388 |
"(sin (x + y) - (sin x * cos y + cos x * sin y))\<^sup>2 + |
2389 |
(cos (x + y) - (cos x * cos y - sin x * sin y))\<^sup>2 = 0" |
|
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2390 |
(is "?f x = 0") |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2391 |
proof - |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2392 |
have "\<forall>x. DERIV (\<lambda>x. ?f x) x :> 0" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2393 |
by (auto intro!: derivative_eq_intros simp add: algebra_simps) |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2394 |
hence "?f x = ?f 0" |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2395 |
by (rule DERIV_isconst_all) |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2396 |
thus ?thesis by simp |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2397 |
qed |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2398 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2399 |
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:
44307
diff
changeset
|
2400 |
using sin_cos_add_lemma unfolding realpow_two_sum_zero_iff by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2401 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2402 |
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:
44307
diff
changeset
|
2403 |
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:
44307
diff
changeset
|
2404 |
|
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2405 |
lemma sin_cos_minus_lemma: |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
2406 |
"(sin(-x) + sin(x))\<^sup>2 + (cos(-x) - cos(x))\<^sup>2 = 0" (is "?f x = 0") |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2407 |
proof - |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2408 |
have "\<forall>x. DERIV (\<lambda>x. ?f x) x :> 0" |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2409 |
by (auto intro!: derivative_eq_intros simp add: algebra_simps) |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2410 |
hence "?f x = ?f 0" |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2411 |
by (rule DERIV_isconst_all) |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2412 |
thus ?thesis by simp |
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2413 |
qed |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2414 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2415 |
lemma sin_minus [simp]: "sin (-x) = -sin(x)" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2416 |
using sin_cos_minus_lemma [where x=x] by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2417 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2418 |
lemma cos_minus [simp]: "cos (-x) = cos(x)" |
44308
d2a6f9af02f4
Transcendental.thy: remove several unused lemmas and simplify some proofs
huffman
parents:
44307
diff
changeset
|
2419 |
using sin_cos_minus_lemma [where x=x] by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2420 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2421 |
lemma sin_diff: "sin (x - y) = sin x * cos y - cos x * sin y" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53602
diff
changeset
|
2422 |
using sin_add [of x "- y"] by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2423 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2424 |
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:
44307
diff
changeset
|
2425 |
by (simp add: sin_diff mult_commute) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2426 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2427 |
lemma cos_diff: "cos (x - y) = cos x * cos y + sin x * sin y" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53602
diff
changeset
|
2428 |
using cos_add [of x "- y"] by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2429 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2430 |
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:
44307
diff
changeset
|
2431 |
by (simp add: cos_diff mult_commute) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2432 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2433 |
lemma sin_double [simp]: "sin(2 * x) = 2* sin x * cos x" |
29165
562f95f06244
cleaned up some proofs; removed redundant simp rules
huffman
parents:
29164
diff
changeset
|
2434 |
using sin_add [where x=x and y=x] by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2435 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
2436 |
lemma cos_double: "cos(2* x) = ((cos x)\<^sup>2) - ((sin x)\<^sup>2)" |
29165
562f95f06244
cleaned up some proofs; removed redundant simp rules
huffman
parents:
29164
diff
changeset
|
2437 |
using cos_add [where x=x and y=x] |
562f95f06244
cleaned up some proofs; removed redundant simp rules
huffman
parents:
29164
diff
changeset
|
2438 |
by (simp add: power2_eq_square) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2439 |
|
57275
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2440 |
lemma sin_x_le_x: assumes x: "x \<ge> 0" shows "sin x \<le> x" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2441 |
proof - |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2442 |
let ?f = "\<lambda>x. x - sin x" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2443 |
from x have "?f x \<ge> ?f 0" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2444 |
apply (rule DERIV_nonneg_imp_nondecreasing) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2445 |
apply (intro allI impI exI[of _ "1 - cos x" for x]) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2446 |
apply (auto intro!: derivative_eq_intros simp: field_simps) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2447 |
done |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2448 |
thus "sin x \<le> x" by simp |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2449 |
qed |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2450 |
|
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2451 |
lemma sin_x_ge_neg_x: assumes x: "x \<ge> 0" shows "sin x \<ge> - x" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2452 |
proof - |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2453 |
let ?f = "\<lambda>x. x + sin x" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2454 |
from x have "?f x \<ge> ?f 0" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2455 |
apply (rule DERIV_nonneg_imp_nondecreasing) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2456 |
apply (intro allI impI exI[of _ "1 + cos x" for x]) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2457 |
apply (auto intro!: derivative_eq_intros simp: field_simps real_0_le_add_iff) |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2458 |
done |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2459 |
thus "sin x \<ge> -x" by simp |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2460 |
qed |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2461 |
|
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2462 |
lemma abs_sin_x_le_abs_x: "\<bar>sin x\<bar> \<le> \<bar>x\<bar>" |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2463 |
using sin_x_ge_neg_x [of x] sin_x_le_x [of x] sin_x_ge_neg_x [of "-x"] sin_x_le_x [of "-x"] |
0ddb5b755cdc
moved lemmas from the proof of the Central Limit Theorem by Jeremy Avigad and Luke Serafin
hoelzl
parents:
57180
diff
changeset
|
2464 |
by (auto simp: abs_real_def) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2465 |
|
29164 | 2466 |
subsection {* The Constant Pi *} |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2467 |
|
53079 | 2468 |
definition pi :: real |
2469 |
where "pi = 2 * (THE x. 0 \<le> (x::real) & x \<le> 2 & cos x = 0)" |
|
23043 | 2470 |
|
41970 | 2471 |
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:
15013
diff
changeset
|
2472 |
hence define pi.*} |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2473 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2474 |
lemma sin_paired: |
53079 | 2475 |
"(\<lambda>n. -1 ^ n /(real (fact (2 * n + 1))) * x ^ (2 * n + 1)) sums sin x" |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2476 |
proof - |
31271 | 2477 |
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:
44726
diff
changeset
|
2478 |
by (rule sin_converges [THEN sums_group], simp) |
31271 | 2479 |
thus ?thesis unfolding One_nat_def sin_coeff_def by (simp add: mult_ac) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2480 |
qed |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2481 |
|
44728 | 2482 |
lemma sin_gt_zero: |
53079 | 2483 |
assumes "0 < x" and "x < 2" |
2484 |
shows "0 < sin x" |
|
44728 | 2485 |
proof - |
2486 |
let ?f = "\<lambda>n. \<Sum>k = n*2..<n*2+2. -1 ^ k / real (fact (2*k+1)) * x^(2*k+1)" |
|
2487 |
have pos: "\<forall>n. 0 < ?f n" |
|
2488 |
proof |
|
2489 |
fix n :: nat |
|
2490 |
let ?k2 = "real (Suc (Suc (4 * n)))" |
|
2491 |
let ?k3 = "real (Suc (Suc (Suc (4 * n))))" |
|
2492 |
have "x * x < ?k2 * ?k3" |
|
2493 |
using assms by (intro mult_strict_mono', simp_all) |
|
2494 |
hence "x * x * x * x ^ (n * 4) < ?k2 * ?k3 * x * x ^ (n * 4)" |
|
2495 |
by (intro mult_strict_right_mono zero_less_power `0 < x`) |
|
2496 |
thus "0 < ?f n" |
|
2497 |
by (simp del: mult_Suc, |
|
56544 | 2498 |
simp add: less_divide_eq field_simps del: mult_Suc) |
44728 | 2499 |
qed |
2500 |
have sums: "?f sums sin x" |
|
2501 |
by (rule sin_paired [THEN sums_group], simp) |
|
2502 |
show "0 < sin x" |
|
2503 |
unfolding sums_unique [OF sums] |
|
2504 |
using sums_summable [OF sums] pos |
|
56213 | 2505 |
by (rule suminf_pos) |
44728 | 2506 |
qed |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2507 |
|
53079 | 2508 |
lemma cos_double_less_one: "0 < x \<Longrightarrow> x < 2 \<Longrightarrow> cos (2 * x) < 1" |
2509 |
using sin_gt_zero [where x = x] by (auto simp add: cos_squared_eq cos_double) |
|
2510 |
||
2511 |
lemma cos_paired: "(\<lambda>n. -1 ^ n /(real (fact (2 * n))) * x ^ (2 * n)) sums cos x" |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2512 |
proof - |
31271 | 2513 |
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:
44726
diff
changeset
|
2514 |
by (rule cos_converges [THEN sums_group], simp) |
31271 | 2515 |
thus ?thesis unfolding cos_coeff_def by (simp add: mult_ac) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2516 |
qed |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2517 |
|
53602 | 2518 |
lemmas realpow_num_eq_if = power_eq_if |
2519 |
||
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2520 |
lemma sumr_pos_lt_pair: |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2521 |
fixes f :: "nat \<Rightarrow> real" |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2522 |
shows "\<lbrakk>summable f; |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2523 |
\<And>d. 0 < f (k + (Suc(Suc 0) * d)) + f (k + ((Suc(Suc 0) * d) + 1))\<rbrakk> |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2524 |
\<Longrightarrow> setsum f {..<k} < suminf f" |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2525 |
unfolding One_nat_def |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2526 |
apply (subst suminf_split_initial_segment [where k="k"]) |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2527 |
apply assumption |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2528 |
apply simp |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2529 |
apply (drule_tac k="k" in summable_ignore_initial_segment) |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2530 |
apply (drule_tac k="Suc (Suc 0)" in sums_group [OF summable_sums], simp) |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2531 |
apply simp |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2532 |
apply (frule sums_unique) |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2533 |
apply (drule sums_summable) |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2534 |
apply simp |
56213 | 2535 |
apply (erule suminf_pos) |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2536 |
apply (simp add: add_ac) |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2537 |
done |
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2538 |
|
53602 | 2539 |
lemma cos_two_less_zero [simp]: |
2540 |
"cos 2 < 0" |
|
2541 |
proof - |
|
2542 |
note fact_Suc [simp del] |
|
2543 |
from cos_paired |
|
2544 |
have "(\<lambda>n. - (-1 ^ n / real (fact (2 * n)) * 2 ^ (2 * n))) sums - cos 2" |
|
2545 |
by (rule sums_minus) |
|
2546 |
then have *: "(\<lambda>n. - (-1 ^ n * 2 ^ (2 * n) / real (fact (2 * n)))) sums - cos 2" |
|
2547 |
by simp |
|
2548 |
then have **: "summable (\<lambda>n. - (-1 ^ n * 2 ^ (2 * n) / real (fact (2 * n))))" |
|
2549 |
by (rule sums_summable) |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2550 |
have "0 < (\<Sum>n<Suc (Suc (Suc 0)). - (-1 ^ n * 2 ^ (2 * n) / real (fact (2 * n))))" |
53602 | 2551 |
by (simp add: fact_num_eq_if_nat realpow_num_eq_if) |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
2552 |
moreover have "(\<Sum>n<Suc (Suc (Suc 0)). - (-1 ^ n * 2 ^ (2 * n) / real (fact (2 * n)))) |
53602 | 2553 |
< (\<Sum>n. - (-1 ^ n * 2 ^ (2 * n) / real (fact (2 * n))))" |
2554 |
proof - |
|
2555 |
{ fix d |
|
2556 |
have "4 * real (fact (Suc (Suc (Suc (Suc (Suc (Suc (4 * d)))))))) |
|
2557 |
< real (Suc (Suc (Suc (Suc (Suc (Suc (Suc (Suc (4 * d)))))))) * |
|
2558 |
fact (Suc (Suc (Suc (Suc (Suc (Suc (Suc (4 * d)))))))))" |
|
2559 |
by (simp only: real_of_nat_mult) (auto intro!: mult_strict_mono fact_less_mono_nat) |
|
2560 |
then have "4 * real (fact (Suc (Suc (Suc (Suc (Suc (Suc (4 * d)))))))) |
|
2561 |
< real (fact (Suc (Suc (Suc (Suc (Suc (Suc (Suc (Suc (4 * d))))))))))" |
|
2562 |
by (simp only: fact_Suc [of "Suc (Suc (Suc (Suc (Suc (Suc (Suc (4 * d)))))))"]) |
|
2563 |
then have "4 * inverse (real (fact (Suc (Suc (Suc (Suc (Suc (Suc (Suc (Suc (4 * d))))))))))) |
|
2564 |
< inverse (real (fact (Suc (Suc (Suc (Suc (Suc (Suc (4 * d)))))))))" |
|
2565 |
by (simp add: inverse_eq_divide less_divide_eq) |
|
2566 |
} |
|
2567 |
note *** = this |
|
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53602
diff
changeset
|
2568 |
have [simp]: "\<And>x y::real. 0 < x - y \<longleftrightarrow> y < x" by arith |
53602 | 2569 |
from ** show ?thesis by (rule sumr_pos_lt_pair) |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53602
diff
changeset
|
2570 |
(simp add: divide_inverse mult_assoc [symmetric] ***) |
53602 | 2571 |
qed |
2572 |
ultimately have "0 < (\<Sum>n. - (-1 ^ n * 2 ^ (2 * n) / real (fact (2 * n))))" |
|
2573 |
by (rule order_less_trans) |
|
2574 |
moreover from * have "- cos 2 = (\<Sum>n. - (-1 ^ n * 2 ^ (2 * n) / real (fact (2 * n))))" |
|
2575 |
by (rule sums_unique) |
|
2576 |
ultimately have "0 < - cos 2" by simp |
|
2577 |
then show ?thesis by simp |
|
2578 |
qed |
|
23053 | 2579 |
|
2580 |
lemmas cos_two_neq_zero [simp] = cos_two_less_zero [THEN less_imp_neq] |
|
2581 |
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:
15013
diff
changeset
|
2582 |
|
53079 | 2583 |
lemma cos_is_zero: "EX! x. 0 \<le> x & x \<le> 2 \<and> cos x = 0" |
44730 | 2584 |
proof (rule ex_ex1I) |
2585 |
show "\<exists>x. 0 \<le> x & x \<le> 2 & cos x = 0" |
|
2586 |
by (rule IVT2, simp_all) |
|
2587 |
next |
|
2588 |
fix x y |
|
2589 |
assume x: "0 \<le> x \<and> x \<le> 2 \<and> cos x = 0" |
|
2590 |
assume y: "0 \<le> y \<and> y \<le> 2 \<and> cos y = 0" |
|
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56167
diff
changeset
|
2591 |
have [simp]: "\<forall>x. cos differentiable (at x)" |
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56167
diff
changeset
|
2592 |
unfolding real_differentiable_def by (auto intro: DERIV_cos) |
44730 | 2593 |
from x y show "x = y" |
2594 |
apply (cut_tac less_linear [of x y], auto) |
|
2595 |
apply (drule_tac f = cos in Rolle) |
|
2596 |
apply (drule_tac [5] f = cos in Rolle) |
|
2597 |
apply (auto dest!: DERIV_cos [THEN DERIV_unique]) |
|
2598 |
apply (metis order_less_le_trans less_le sin_gt_zero) |
|
2599 |
apply (metis order_less_le_trans less_le sin_gt_zero) |
|
2600 |
done |
|
2601 |
qed |
|
31880 | 2602 |
|
23053 | 2603 |
lemma pi_half: "pi/2 = (THE x. 0 \<le> x & x \<le> 2 & cos x = 0)" |
53079 | 2604 |
by (simp add: pi_def) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2605 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2606 |
lemma cos_pi_half [simp]: "cos (pi / 2) = 0" |
53079 | 2607 |
by (simp add: pi_half cos_is_zero [THEN theI']) |
23053 | 2608 |
|
2609 |
lemma pi_half_gt_zero [simp]: "0 < pi / 2" |
|
53079 | 2610 |
apply (rule order_le_neq_trans) |
2611 |
apply (simp add: pi_half cos_is_zero [THEN theI']) |
|
54575 | 2612 |
apply (metis cos_pi_half cos_zero zero_neq_one) |
53079 | 2613 |
done |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2614 |
|
23053 | 2615 |
lemmas pi_half_neq_zero [simp] = pi_half_gt_zero [THEN less_imp_neq, symmetric] |
2616 |
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:
15013
diff
changeset
|
2617 |
|
23053 | 2618 |
lemma pi_half_less_two [simp]: "pi / 2 < 2" |
53079 | 2619 |
apply (rule order_le_neq_trans) |
2620 |
apply (simp add: pi_half cos_is_zero [THEN theI']) |
|
54575 | 2621 |
apply (metis cos_pi_half cos_two_neq_zero) |
53079 | 2622 |
done |
23053 | 2623 |
|
2624 |
lemmas pi_half_neq_two [simp] = pi_half_less_two [THEN less_imp_neq] |
|
2625 |
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:
15013
diff
changeset
|
2626 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2627 |
lemma pi_gt_zero [simp]: "0 < pi" |
53079 | 2628 |
using pi_half_gt_zero by simp |
23053 | 2629 |
|
2630 |
lemma pi_ge_zero [simp]: "0 \<le> pi" |
|
53079 | 2631 |
by (rule pi_gt_zero [THEN order_less_imp_le]) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2632 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2633 |
lemma pi_neq_zero [simp]: "pi \<noteq> 0" |
53079 | 2634 |
by (rule pi_gt_zero [THEN less_imp_neq, symmetric]) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2635 |
|
23053 | 2636 |
lemma pi_not_less_zero [simp]: "\<not> pi < 0" |
53079 | 2637 |
by (simp add: linorder_not_less) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2638 |
|
29165
562f95f06244
cleaned up some proofs; removed redundant simp rules
huffman
parents:
29164
diff
changeset
|
2639 |
lemma minus_pi_half_less_zero: "-(pi/2) < 0" |
53079 | 2640 |
by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2641 |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2642 |
lemma m2pi_less_pi: "- (2 * pi) < pi" |
53079 | 2643 |
by simp |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2644 |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2645 |
lemma sin_pi_half [simp]: "sin(pi/2) = 1" |
53079 | 2646 |
using sin_cos_squared_add2 [where x = "pi/2"] |
2647 |
using sin_gt_zero [OF pi_half_gt_zero pi_half_less_two] |
|
2648 |
by (simp add: power2_eq_1_iff) |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2649 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2650 |
lemma cos_pi [simp]: "cos pi = -1" |
53079 | 2651 |
using cos_add [where x = "pi/2" and y = "pi/2"] by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2652 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2653 |
lemma sin_pi [simp]: "sin pi = 0" |
53079 | 2654 |
using sin_add [where x = "pi/2" and y = "pi/2"] by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2655 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2656 |
lemma sin_cos_eq: "sin x = cos (pi/2 - x)" |
53079 | 2657 |
by (simp add: cos_diff) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2658 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2659 |
lemma minus_sin_cos_eq: "-sin x = cos (x + pi/2)" |
53079 | 2660 |
by (simp add: cos_add) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2661 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2662 |
lemma cos_sin_eq: "cos x = sin (pi/2 - x)" |
53079 | 2663 |
by (simp add: sin_diff) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2664 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2665 |
lemma sin_periodic_pi [simp]: "sin (x + pi) = - sin x" |
53079 | 2666 |
by (simp add: sin_add) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2667 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2668 |
lemma sin_periodic_pi2 [simp]: "sin (pi + x) = - sin x" |
53079 | 2669 |
by (simp add: sin_add) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2670 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2671 |
lemma cos_periodic_pi [simp]: "cos (x + pi) = - cos x" |
53079 | 2672 |
by (simp add: cos_add) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2673 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2674 |
lemma sin_periodic [simp]: "sin (x + 2*pi) = sin x" |
53079 | 2675 |
by (simp add: sin_add cos_double) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2676 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2677 |
lemma cos_periodic [simp]: "cos (x + 2*pi) = cos x" |
53079 | 2678 |
by (simp add: cos_add cos_double) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2679 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2680 |
lemma cos_npi [simp]: "cos (real n * pi) = -1 ^ n" |
53079 | 2681 |
by (induct n) (auto simp add: real_of_nat_Suc distrib_right) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2682 |
|
15383 | 2683 |
lemma cos_npi2 [simp]: "cos (pi * real n) = -1 ^ n" |
54575 | 2684 |
by (metis cos_npi mult_commute) |
15383 | 2685 |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2686 |
lemma sin_npi [simp]: "sin (real (n::nat) * pi) = 0" |
53079 | 2687 |
by (induct n) (auto simp add: real_of_nat_Suc distrib_right) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2688 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2689 |
lemma sin_npi2 [simp]: "sin (pi * real (n::nat)) = 0" |
53079 | 2690 |
by (simp add: mult_commute [of pi]) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2691 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2692 |
lemma cos_two_pi [simp]: "cos (2 * pi) = 1" |
53079 | 2693 |
by (simp add: cos_double) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2694 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2695 |
lemma sin_two_pi [simp]: "sin (2 * pi) = 0" |
53079 | 2696 |
by simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2697 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2698 |
lemma sin_gt_zero2: "[| 0 < x; x < pi/2 |] ==> 0 < sin x" |
54575 | 2699 |
by (metis sin_gt_zero order_less_trans pi_half_less_two) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2700 |
|
41970 | 2701 |
lemma sin_less_zero: |
53079 | 2702 |
assumes "- pi/2 < x" and "x < 0" |
2703 |
shows "sin x < 0" |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2704 |
proof - |
41970 | 2705 |
have "0 < sin (- x)" using assms by (simp only: sin_gt_zero2) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2706 |
thus ?thesis by simp |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2707 |
qed |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2708 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2709 |
lemma pi_less_4: "pi < 4" |
53079 | 2710 |
using pi_half_less_two by auto |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2711 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2712 |
lemma cos_gt_zero: "[| 0 < x; x < pi/2 |] ==> 0 < cos x" |
53079 | 2713 |
apply (cut_tac pi_less_4) |
2714 |
apply (cut_tac f = cos and a = 0 and b = x and y = 0 in IVT2_objl, safe, simp_all) |
|
2715 |
apply (cut_tac cos_is_zero, safe) |
|
2716 |
apply (rename_tac y z) |
|
2717 |
apply (drule_tac x = y in spec) |
|
2718 |
apply (drule_tac x = "pi/2" in spec, simp) |
|
2719 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2720 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2721 |
lemma cos_gt_zero_pi: "[| -(pi/2) < x; x < pi/2 |] ==> 0 < cos x" |
53079 | 2722 |
apply (rule_tac x = x and y = 0 in linorder_cases) |
54575 | 2723 |
apply (metis cos_gt_zero cos_minus minus_less_iff neg_0_less_iff_less) |
53079 | 2724 |
apply (auto intro: cos_gt_zero) |
2725 |
done |
|
41970 | 2726 |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2727 |
lemma cos_ge_zero: "[| -(pi/2) \<le> x; x \<le> pi/2 |] ==> 0 \<le> cos x" |
53079 | 2728 |
apply (auto simp add: order_le_less cos_gt_zero_pi) |
2729 |
apply (subgoal_tac "x = pi/2", auto) |
|
2730 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2731 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2732 |
lemma sin_gt_zero_pi: "[| 0 < x; x < pi |] ==> 0 < sin x" |
53079 | 2733 |
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:
29695
diff
changeset
|
2734 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2735 |
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:
29695
diff
changeset
|
2736 |
proof (rule ccontr) |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2737 |
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:
29695
diff
changeset
|
2738 |
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:
29695
diff
changeset
|
2739 |
proof (cases "2 < 2 * pi") |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2740 |
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:
29695
diff
changeset
|
2741 |
next |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2742 |
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:
29695
diff
changeset
|
2743 |
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:
29695
diff
changeset
|
2744 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2745 |
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:
29695
diff
changeset
|
2746 |
hence "0 < sin y" using sin_gt_zero by auto |
41970 | 2747 |
moreover |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2748 |
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:
29695
diff
changeset
|
2749 |
ultimately show False by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2750 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2751 |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2752 |
lemma sin_ge_zero: "[| 0 \<le> x; x \<le> pi |] ==> 0 \<le> sin x" |
53079 | 2753 |
by (auto simp add: order_le_less sin_gt_zero_pi) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2754 |
|
44745 | 2755 |
text {* FIXME: This proof is almost identical to lemma @{text cos_is_zero}. |
2756 |
It should be possible to factor out some of the common parts. *} |
|
2757 |
||
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2758 |
lemma cos_total: "[| -1 \<le> y; y \<le> 1 |] ==> EX! x. 0 \<le> x & x \<le> pi & (cos x = y)" |
44745 | 2759 |
proof (rule ex_ex1I) |
2760 |
assume y: "-1 \<le> y" "y \<le> 1" |
|
2761 |
show "\<exists>x. 0 \<le> x & x \<le> pi & cos x = y" |
|
2762 |
by (rule IVT2, simp_all add: y) |
|
2763 |
next |
|
2764 |
fix a b |
|
2765 |
assume a: "0 \<le> a \<and> a \<le> pi \<and> cos a = y" |
|
2766 |
assume b: "0 \<le> b \<and> b \<le> pi \<and> cos b = y" |
|
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56167
diff
changeset
|
2767 |
have [simp]: "\<forall>x. cos differentiable (at x)" |
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56167
diff
changeset
|
2768 |
unfolding real_differentiable_def by (auto intro: DERIV_cos) |
44745 | 2769 |
from a b show "a = b" |
2770 |
apply (cut_tac less_linear [of a b], auto) |
|
2771 |
apply (drule_tac f = cos in Rolle) |
|
2772 |
apply (drule_tac [5] f = cos in Rolle) |
|
2773 |
apply (auto dest!: DERIV_cos [THEN DERIV_unique]) |
|
2774 |
apply (metis order_less_le_trans less_le sin_gt_zero_pi) |
|
2775 |
apply (metis order_less_le_trans less_le sin_gt_zero_pi) |
|
2776 |
done |
|
2777 |
qed |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2778 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2779 |
lemma sin_total: |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2780 |
"[| -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:
15013
diff
changeset
|
2781 |
apply (rule ccontr) |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2782 |
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 | 2783 |
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:
45308
diff
changeset
|
2784 |
apply simp |
41970 | 2785 |
apply (cut_tac y="-y" in cos_total, simp) apply simp |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2786 |
apply (erule ex1E) |
15229 | 2787 |
apply (rule_tac a = "x - (pi/2)" in ex1I) |
23286 | 2788 |
apply (simp (no_asm) add: add_assoc) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2789 |
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:
45308
diff
changeset
|
2790 |
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:
15013
diff
changeset
|
2791 |
done |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2792 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2793 |
lemma reals_Archimedean4: |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2794 |
"[| 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:
15013
diff
changeset
|
2795 |
apply (auto dest!: reals_Archimedean3) |
41970 | 2796 |
apply (drule_tac x = x in spec, clarify) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2797 |
apply (subgoal_tac "x < real(LEAST m::nat. x < real m * y) * y") |
41970 | 2798 |
prefer 2 apply (erule LeastI) |
2799 |
apply (case_tac "LEAST m::nat. x < real m * y", simp) |
|
55417
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
blanchet
parents:
54576
diff
changeset
|
2800 |
apply (rename_tac m) |
01fbfb60c33e
adapted to 'xxx_{case,rec}' renaming, to new theorem names, and to new variable names in theorems
blanchet
parents:
54576
diff
changeset
|
2801 |
apply (subgoal_tac "~ x < real m * y") |
41970 | 2802 |
prefer 2 apply (rule not_less_Least, simp, force) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2803 |
done |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2804 |
|
41970 | 2805 |
(* Pre Isabelle99-2 proof was simpler- numerals arithmetic |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2806 |
now causes some unwanted re-arrangements of literals! *) |
15229 | 2807 |
lemma cos_zero_lemma: |
41970 | 2808 |
"[| 0 \<le> x; cos x = 0 |] ==> |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2809 |
\<exists>n::nat. ~even n & x = real n * (pi/2)" |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2810 |
apply (drule pi_gt_zero [THEN reals_Archimedean4], safe) |
41970 | 2811 |
apply (subgoal_tac "0 \<le> x - real n * pi & |
15086 | 2812 |
(x - real n * pi) \<le> pi & (cos (x - real n * pi) = 0) ") |
29667 | 2813 |
apply (auto simp add: algebra_simps real_of_nat_Suc) |
2814 |
prefer 2 apply (simp add: cos_diff) |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2815 |
apply (simp add: cos_diff) |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2816 |
apply (subgoal_tac "EX! x. 0 \<le> x & x \<le> pi & cos x = 0") |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2817 |
apply (rule_tac [2] cos_total, safe) |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2818 |
apply (drule_tac x = "x - real n * pi" in spec) |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2819 |
apply (drule_tac x = "pi/2" in spec) |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2820 |
apply (simp add: cos_diff) |
15229 | 2821 |
apply (rule_tac x = "Suc (2 * n)" in exI) |
29667 | 2822 |
apply (simp add: real_of_nat_Suc algebra_simps, auto) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2823 |
done |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2824 |
|
15229 | 2825 |
lemma sin_zero_lemma: |
41970 | 2826 |
"[| 0 \<le> x; sin x = 0 |] ==> |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2827 |
\<exists>n::nat. even n & x = real n * (pi/2)" |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2828 |
apply (subgoal_tac "\<exists>n::nat. ~ even n & x + pi/2 = real n * (pi/2) ") |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2829 |
apply (clarify, rule_tac x = "n - 1" in exI) |
49962
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents:
47489
diff
changeset
|
2830 |
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:
15081
diff
changeset
|
2831 |
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:
45308
diff
changeset
|
2832 |
apply (simp_all add: cos_add) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2833 |
done |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2834 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2835 |
|
15229 | 2836 |
lemma cos_zero_iff: |
41970 | 2837 |
"(cos x = 0) = |
2838 |
((\<exists>n::nat. ~even n & (x = real n * (pi/2))) | |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2839 |
(\<exists>n::nat. ~even n & (x = -(real n * (pi/2)))))" |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2840 |
apply (rule iffI) |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2841 |
apply (cut_tac linorder_linear [of 0 x], safe) |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2842 |
apply (drule cos_zero_lemma, assumption+) |
41970 | 2843 |
apply (cut_tac x="-x" in cos_zero_lemma, simp, simp) |
2844 |
apply (force simp add: minus_equation_iff [of x]) |
|
49962
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents:
47489
diff
changeset
|
2845 |
apply (auto simp only: odd_Suc_mult_two_ex real_of_nat_Suc distrib_right) |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53602
diff
changeset
|
2846 |
apply (auto simp add: cos_diff cos_add) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2847 |
done |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2848 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2849 |
(* ditto: but to a lesser extent *) |
15229 | 2850 |
lemma sin_zero_iff: |
41970 | 2851 |
"(sin x = 0) = |
2852 |
((\<exists>n::nat. even n & (x = real n * (pi/2))) | |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2853 |
(\<exists>n::nat. even n & (x = -(real n * (pi/2)))))" |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2854 |
apply (rule iffI) |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2855 |
apply (cut_tac linorder_linear [of 0 x], safe) |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2856 |
apply (drule sin_zero_lemma, assumption+) |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2857 |
apply (cut_tac x="-x" in sin_zero_lemma, simp, simp, safe) |
41970 | 2858 |
apply (force simp add: minus_equation_iff [of x]) |
15539 | 2859 |
apply (auto simp add: even_mult_two_ex) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2860 |
done |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2861 |
|
53079 | 2862 |
lemma cos_monotone_0_pi: |
2863 |
assumes "0 \<le> y" and "y < x" and "x \<le> pi" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2864 |
shows "cos x < cos y" |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2865 |
proof - |
33549 | 2866 |
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:
29695
diff
changeset
|
2867 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2868 |
from MVT2[OF `y < x` DERIV_cos[THEN impI, THEN allI]] |
53079 | 2869 |
obtain z where "y < z" and "z < x" and cos_diff: "cos x - cos y = (x - y) * - sin z" |
2870 |
by auto |
|
33549 | 2871 |
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:
29695
diff
changeset
|
2872 |
hence "0 < sin z" using sin_gt_zero_pi by auto |
53079 | 2873 |
hence "cos x - cos y < 0" |
2874 |
unfolding cos_diff minus_mult_commute[symmetric] |
|
2875 |
using `- (x - y) < 0` by (rule mult_pos_neg2) |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2876 |
thus ?thesis by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2877 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2878 |
|
53079 | 2879 |
lemma cos_monotone_0_pi': |
2880 |
assumes "0 \<le> y" and "y \<le> x" and "x \<le> pi" |
|
2881 |
shows "cos x \<le> cos y" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2882 |
proof (cases "y < x") |
53079 | 2883 |
case True |
2884 |
show ?thesis |
|
2885 |
using cos_monotone_0_pi[OF `0 \<le> y` True `x \<le> pi`] by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2886 |
next |
53079 | 2887 |
case False |
2888 |
hence "y = x" using `y \<le> x` by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2889 |
thus ?thesis by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2890 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2891 |
|
53079 | 2892 |
lemma cos_monotone_minus_pi_0: |
2893 |
assumes "-pi \<le> y" and "y < x" and "x \<le> 0" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2894 |
shows "cos y < cos x" |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2895 |
proof - |
53079 | 2896 |
have "0 \<le> -x" and "-x < -y" and "-y \<le> pi" |
2897 |
using assms by auto |
|
2898 |
from cos_monotone_0_pi[OF this] show ?thesis |
|
2899 |
unfolding cos_minus . |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2900 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2901 |
|
53079 | 2902 |
lemma cos_monotone_minus_pi_0': |
2903 |
assumes "-pi \<le> y" and "y \<le> x" and "x \<le> 0" |
|
2904 |
shows "cos y \<le> cos x" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2905 |
proof (cases "y < x") |
53079 | 2906 |
case True |
2907 |
show ?thesis using cos_monotone_minus_pi_0[OF `-pi \<le> y` True `x \<le> 0`] |
|
2908 |
by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2909 |
next |
53079 | 2910 |
case False |
2911 |
hence "y = x" using `y \<le> x` by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2912 |
thus ?thesis by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2913 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2914 |
|
53079 | 2915 |
lemma sin_monotone_2pi': |
2916 |
assumes "- (pi / 2) \<le> y" and "y \<le> x" and "x \<le> pi / 2" |
|
2917 |
shows "sin y \<le> sin x" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2918 |
proof - |
33549 | 2919 |
have "0 \<le> y + pi / 2" and "y + pi / 2 \<le> x + pi / 2" and "x + pi /2 \<le> pi" |
2920 |
using pi_ge_two and assms by auto |
|
53079 | 2921 |
from cos_monotone_0_pi'[OF this] show ?thesis |
2922 |
unfolding minus_sin_cos_eq[symmetric] by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
2923 |
qed |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2924 |
|
53079 | 2925 |
|
29164 | 2926 |
subsection {* Tangent *} |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2927 |
|
53079 | 2928 |
definition tan :: "real \<Rightarrow> real" |
2929 |
where "tan = (\<lambda>x. sin x / cos x)" |
|
23043 | 2930 |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2931 |
lemma tan_zero [simp]: "tan 0 = 0" |
44311 | 2932 |
by (simp add: tan_def) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2933 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2934 |
lemma tan_pi [simp]: "tan pi = 0" |
44311 | 2935 |
by (simp add: tan_def) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2936 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2937 |
lemma tan_npi [simp]: "tan (real (n::nat) * pi) = 0" |
44311 | 2938 |
by (simp add: tan_def) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2939 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2940 |
lemma tan_minus [simp]: "tan (-x) = - tan x" |
44311 | 2941 |
by (simp add: tan_def) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2942 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2943 |
lemma tan_periodic [simp]: "tan (x + 2*pi) = tan x" |
44311 | 2944 |
by (simp add: tan_def) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2945 |
|
41970 | 2946 |
lemma lemma_tan_add1: |
44311 | 2947 |
"\<lbrakk>cos x \<noteq> 0; cos y \<noteq> 0\<rbrakk> \<Longrightarrow> 1 - tan x * tan y = cos (x + y)/(cos x * cos y)" |
2948 |
by (simp add: tan_def cos_add field_simps) |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2949 |
|
41970 | 2950 |
lemma add_tan_eq: |
44311 | 2951 |
"\<lbrakk>cos x \<noteq> 0; cos y \<noteq> 0\<rbrakk> \<Longrightarrow> tan x + tan y = sin(x + y)/(cos x * cos y)" |
2952 |
by (simp add: tan_def sin_add field_simps) |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2953 |
|
15229 | 2954 |
lemma tan_add: |
41970 | 2955 |
"[| cos x \<noteq> 0; cos y \<noteq> 0; cos (x + y) \<noteq> 0 |] |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2956 |
==> tan(x + y) = (tan(x) + tan(y))/(1 - tan(x) * tan(y))" |
44311 | 2957 |
by (simp add: add_tan_eq lemma_tan_add1, simp add: tan_def) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2958 |
|
15229 | 2959 |
lemma tan_double: |
41970 | 2960 |
"[| cos x \<noteq> 0; cos (2 * x) \<noteq> 0 |] |
53076 | 2961 |
==> tan (2 * x) = (2 * tan x) / (1 - (tan x)\<^sup>2)" |
44311 | 2962 |
using tan_add [of x x] by (simp add: power2_eq_square) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2963 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2964 |
lemma tan_gt_zero: "[| 0 < x; x < pi/2 |] ==> 0 < tan x" |
53079 | 2965 |
by (simp add: tan_def zero_less_divide_iff sin_gt_zero2 cos_gt_zero_pi) |
41970 | 2966 |
|
2967 |
lemma tan_less_zero: |
|
53079 | 2968 |
assumes lb: "- pi/2 < x" and "x < 0" |
2969 |
shows "tan x < 0" |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2970 |
proof - |
41970 | 2971 |
have "0 < tan (- x)" using assms by (simp only: tan_gt_zero) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2972 |
thus ?thesis by simp |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2973 |
qed |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
2974 |
|
44756
efcd71fbaeec
simplify proof of tan_half, removing unused assumptions
huffman
parents:
44755
diff
changeset
|
2975 |
lemma tan_half: "tan x = sin (2 * x) / (cos (2 * x) + 1)" |
efcd71fbaeec
simplify proof of tan_half, removing unused assumptions
huffman
parents:
44755
diff
changeset
|
2976 |
unfolding tan_def sin_double cos_double sin_squared_eq |
efcd71fbaeec
simplify proof of tan_half, removing unused assumptions
huffman
parents:
44755
diff
changeset
|
2977 |
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:
29695
diff
changeset
|
2978 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
2979 |
lemma DERIV_tan [simp]: "cos x \<noteq> 0 \<Longrightarrow> DERIV tan x :> inverse ((cos x)\<^sup>2)" |
44311 | 2980 |
unfolding tan_def |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
2981 |
by (auto intro!: derivative_eq_intros, simp add: divide_inverse power2_eq_square) |
44311 | 2982 |
|
2983 |
lemma isCont_tan: "cos x \<noteq> 0 \<Longrightarrow> isCont tan x" |
|
2984 |
by (rule DERIV_tan [THEN DERIV_isCont]) |
|
2985 |
||
2986 |
lemma isCont_tan' [simp]: |
|
2987 |
"\<lbrakk>isCont f a; cos (f a) \<noteq> 0\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. tan (f x)) a" |
|
2988 |
by (rule isCont_o2 [OF _ isCont_tan]) |
|
2989 |
||
2990 |
lemma tendsto_tan [tendsto_intros]: |
|
2991 |
"\<lbrakk>(f ---> a) F; cos a \<noteq> 0\<rbrakk> \<Longrightarrow> ((\<lambda>x. tan (f x)) ---> tan a) F" |
|
2992 |
by (rule isCont_tendsto_compose [OF isCont_tan]) |
|
2993 |
||
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:
51477
diff
changeset
|
2994 |
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:
51477
diff
changeset
|
2995 |
"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:
51477
diff
changeset
|
2996 |
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:
51477
diff
changeset
|
2997 |
|
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:
51477
diff
changeset
|
2998 |
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:
51477
diff
changeset
|
2999 |
"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:
51477
diff
changeset
|
3000 |
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:
51477
diff
changeset
|
3001 |
|
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:
51477
diff
changeset
|
3002 |
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:
51477
diff
changeset
|
3003 |
"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:
51477
diff
changeset
|
3004 |
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:
51477
diff
changeset
|
3005 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
3006 |
lemma continuous_on_tan [continuous_intros]: |
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:
51477
diff
changeset
|
3007 |
"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:
51477
diff
changeset
|
3008 |
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:
51477
diff
changeset
|
3009 |
|
53079 | 3010 |
lemma LIM_cos_div_sin: "(\<lambda>x. cos(x)/sin(x)) -- pi/2 --> 0" |
44311 | 3011 |
by (rule LIM_cong_limit, (rule tendsto_intros)+, simp_all) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3012 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3013 |
lemma lemma_tan_total: "0 < y ==> \<exists>x. 0 < x & x < pi/2 & y < tan x" |
53079 | 3014 |
apply (cut_tac LIM_cos_div_sin) |
3015 |
apply (simp only: LIM_eq) |
|
3016 |
apply (drule_tac x = "inverse y" in spec, safe, force) |
|
3017 |
apply (drule_tac ?d1.0 = s in pi_half_gt_zero [THEN [2] real_lbound_gt_zero], safe) |
|
3018 |
apply (rule_tac x = "(pi/2) - e" in exI) |
|
3019 |
apply (simp (no_asm_simp)) |
|
3020 |
apply (drule_tac x = "(pi/2) - e" in spec) |
|
3021 |
apply (auto simp add: tan_def sin_diff cos_diff) |
|
3022 |
apply (rule inverse_less_iff_less [THEN iffD1]) |
|
3023 |
apply (auto simp add: divide_inverse) |
|
3024 |
apply (rule mult_pos_pos) |
|
3025 |
apply (subgoal_tac [3] "0 < sin e & 0 < cos e") |
|
3026 |
apply (auto intro: cos_gt_zero sin_gt_zero2 simp add: mult_commute) |
|
3027 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3028 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3029 |
lemma tan_total_pos: "0 \<le> y ==> \<exists>x. 0 \<le> x & x < pi/2 & tan x = y" |
53079 | 3030 |
apply (frule order_le_imp_less_or_eq, safe) |
3031 |
prefer 2 apply force |
|
3032 |
apply (drule lemma_tan_total, safe) |
|
3033 |
apply (cut_tac f = tan and a = 0 and b = x and y = y in IVT_objl) |
|
3034 |
apply (auto intro!: DERIV_tan [THEN DERIV_isCont]) |
|
3035 |
apply (drule_tac y = xa in order_le_imp_less_or_eq) |
|
3036 |
apply (auto dest: cos_gt_zero) |
|
3037 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3038 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3039 |
lemma lemma_tan_total1: "\<exists>x. -(pi/2) < x & x < (pi/2) & tan x = y" |
53079 | 3040 |
apply (cut_tac linorder_linear [of 0 y], safe) |
3041 |
apply (drule tan_total_pos) |
|
3042 |
apply (cut_tac [2] y="-y" in tan_total_pos, safe) |
|
3043 |
apply (rule_tac [3] x = "-x" in exI) |
|
3044 |
apply (auto del: exI intro!: exI) |
|
3045 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3046 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3047 |
lemma tan_total: "EX! x. -(pi/2) < x & x < (pi/2) & tan x = y" |
53079 | 3048 |
apply (cut_tac y = y in lemma_tan_total1, auto) |
3049 |
apply (cut_tac x = xa and y = y in linorder_less_linear, auto) |
|
3050 |
apply (subgoal_tac [2] "\<exists>z. y < z & z < xa & DERIV tan z :> 0") |
|
3051 |
apply (subgoal_tac "\<exists>z. xa < z & z < y & DERIV tan z :> 0") |
|
3052 |
apply (rule_tac [4] Rolle) |
|
3053 |
apply (rule_tac [2] Rolle) |
|
3054 |
apply (auto del: exI intro!: DERIV_tan DERIV_isCont exI |
|
56181
2aa0b19e74f3
unify syntax for has_derivative and differentiable
hoelzl
parents:
56167
diff
changeset
|
3055 |
simp add: real_differentiable_def) |
53079 | 3056 |
txt{*Now, simulate TRYALL*} |
3057 |
apply (rule_tac [!] DERIV_tan asm_rl) |
|
3058 |
apply (auto dest!: DERIV_unique [OF _ DERIV_tan] |
|
3059 |
simp add: cos_gt_zero_pi [THEN less_imp_neq, THEN not_sym]) |
|
3060 |
done |
|
3061 |
||
3062 |
lemma tan_monotone: |
|
3063 |
assumes "- (pi / 2) < y" and "y < x" and "x < pi / 2" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3064 |
shows "tan y < tan x" |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3065 |
proof - |
53079 | 3066 |
have "\<forall>x'. y \<le> x' \<and> x' \<le> x \<longrightarrow> DERIV tan x' :> inverse ((cos x')\<^sup>2)" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3067 |
proof (rule allI, rule impI) |
53079 | 3068 |
fix x' :: real |
3069 |
assume "y \<le> x' \<and> x' \<le> x" |
|
33549 | 3070 |
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:
29695
diff
changeset
|
3071 |
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:
29695
diff
changeset
|
3072 |
have "cos x' \<noteq> 0" by auto |
53076 | 3073 |
thus "DERIV tan x' :> inverse ((cos x')\<^sup>2)" by (rule DERIV_tan) |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3074 |
qed |
41970 | 3075 |
from MVT2[OF `y < x` this] |
53079 | 3076 |
obtain z where "y < z" and "z < x" |
3077 |
and tan_diff: "tan x - tan y = (x - y) * inverse ((cos z)\<^sup>2)" by auto |
|
33549 | 3078 |
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:
29695
diff
changeset
|
3079 |
hence "0 < cos z" using cos_gt_zero_pi by auto |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3080 |
hence inv_pos: "0 < inverse ((cos z)\<^sup>2)" by auto |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3081 |
have "0 < x - y" using `y < x` by auto |
56544 | 3082 |
with inv_pos have "0 < tan x - tan y" unfolding tan_diff by auto |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3083 |
thus ?thesis by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3084 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3085 |
|
53079 | 3086 |
lemma tan_monotone': |
3087 |
assumes "- (pi / 2) < y" |
|
3088 |
and "y < pi / 2" |
|
3089 |
and "- (pi / 2) < x" |
|
3090 |
and "x < pi / 2" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3091 |
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:
29695
diff
changeset
|
3092 |
proof |
53079 | 3093 |
assume "y < x" |
3094 |
thus "tan y < tan x" |
|
3095 |
using tan_monotone and `- (pi / 2) < y` and `x < pi / 2` by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3096 |
next |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3097 |
assume "tan y < tan x" |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3098 |
show "y < x" |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3099 |
proof (rule ccontr) |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3100 |
assume "\<not> y < x" hence "x \<le> y" by auto |
41970 | 3101 |
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:
29695
diff
changeset
|
3102 |
proof (cases "x = y") |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3103 |
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:
29695
diff
changeset
|
3104 |
next |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3105 |
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:
29695
diff
changeset
|
3106 |
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:
29695
diff
changeset
|
3107 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3108 |
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:
29695
diff
changeset
|
3109 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3110 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3111 |
|
53079 | 3112 |
lemma tan_inverse: "1 / (tan y) = tan (pi / 2 - y)" |
3113 |
unfolding tan_def sin_cos_eq[of y] cos_sin_eq[of y] by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3114 |
|
41970 | 3115 |
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:
29695
diff
changeset
|
3116 |
by (simp add: tan_def) |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3117 |
|
53079 | 3118 |
lemma tan_periodic_nat[simp]: |
3119 |
fixes n :: nat |
|
3120 |
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:
29695
diff
changeset
|
3121 |
proof (induct n arbitrary: x) |
53079 | 3122 |
case 0 |
3123 |
then show ?case by simp |
|
3124 |
next |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3125 |
case (Suc n) |
53079 | 3126 |
have split_pi_off: "x + real (Suc n) * pi = (x + real n * pi) + pi" |
3127 |
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:
29695
diff
changeset
|
3128 |
show ?case unfolding split_pi_off using Suc by auto |
53079 | 3129 |
qed |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3130 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3131 |
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:
29695
diff
changeset
|
3132 |
proof (cases "0 \<le> i") |
53079 | 3133 |
case True |
3134 |
hence i_nat: "real i = real (nat i)" by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3135 |
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:
29695
diff
changeset
|
3136 |
next |
53079 | 3137 |
case False |
3138 |
hence i_nat: "real i = - real (nat (-i))" by auto |
|
3139 |
have "tan x = tan (x + real i * pi - real i * pi)" |
|
3140 |
by auto |
|
3141 |
also have "\<dots> = tan (x + real i * pi)" |
|
3142 |
unfolding i_nat mult_minus_left diff_minus_eq_add by (rule tan_periodic_nat) |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3143 |
finally show ?thesis by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3144 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3145 |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46240
diff
changeset
|
3146 |
lemma tan_periodic_n[simp]: "tan (x + numeral n * pi) = tan x" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46240
diff
changeset
|
3147 |
using tan_periodic_int[of _ "numeral n" ] unfolding real_numeral . |
23043 | 3148 |
|
3149 |
subsection {* Inverse Trigonometric Functions *} |
|
3150 |
||
53079 | 3151 |
definition arcsin :: "real => real" |
3152 |
where "arcsin y = (THE x. -(pi/2) \<le> x & x \<le> pi/2 & sin x = y)" |
|
3153 |
||
3154 |
definition arccos :: "real => real" |
|
3155 |
where "arccos y = (THE x. 0 \<le> x & x \<le> pi & cos x = y)" |
|
3156 |
||
3157 |
definition arctan :: "real => real" |
|
3158 |
where "arctan y = (THE x. -(pi/2) < x & x < pi/2 & tan x = y)" |
|
23043 | 3159 |
|
15229 | 3160 |
lemma arcsin: |
53079 | 3161 |
"-1 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> |
3162 |
-(pi/2) \<le> arcsin y & arcsin y \<le> pi/2 & sin(arcsin y) = y" |
|
3163 |
unfolding arcsin_def by (rule theI' [OF sin_total]) |
|
23011 | 3164 |
|
3165 |
lemma arcsin_pi: |
|
53079 | 3166 |
"-1 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> -(pi/2) \<le> arcsin y & arcsin y \<le> pi & sin(arcsin y) = y" |
3167 |
apply (drule (1) arcsin) |
|
3168 |
apply (force intro: order_trans) |
|
3169 |
done |
|
3170 |
||
3171 |
lemma sin_arcsin [simp]: "-1 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> sin(arcsin y) = y" |
|
3172 |
by (blast dest: arcsin) |
|
3173 |
||
3174 |
lemma arcsin_bounded: "-1 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> -(pi/2) \<le> arcsin y & arcsin y \<le> pi/2" |
|
3175 |
by (blast dest: arcsin) |
|
3176 |
||
3177 |
lemma arcsin_lbound: "-1 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> -(pi/2) \<le> arcsin y" |
|
3178 |
by (blast dest: arcsin) |
|
3179 |
||
3180 |
lemma arcsin_ubound: "-1 \<le> y \<Longrightarrow> y \<le> 1 \<Longrightarrow> arcsin y \<le> pi/2" |
|
3181 |
by (blast dest: arcsin) |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3182 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3183 |
lemma arcsin_lt_bounded: |
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3184 |
"[| -1 < y; y < 1 |] ==> -(pi/2) < arcsin y & arcsin y < pi/2" |
53079 | 3185 |
apply (frule order_less_imp_le) |
3186 |
apply (frule_tac y = y in order_less_imp_le) |
|
3187 |
apply (frule arcsin_bounded) |
|
3188 |
apply (safe, simp) |
|
3189 |
apply (drule_tac y = "arcsin y" in order_le_imp_less_or_eq) |
|
3190 |
apply (drule_tac [2] y = "pi/2" in order_le_imp_less_or_eq, safe) |
|
3191 |
apply (drule_tac [!] f = sin in arg_cong, auto) |
|
3192 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3193 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3194 |
lemma arcsin_sin: "[|-(pi/2) \<le> x; x \<le> pi/2 |] ==> arcsin(sin x) = x" |
53079 | 3195 |
apply (unfold arcsin_def) |
3196 |
apply (rule the1_equality) |
|
3197 |
apply (rule sin_total, auto) |
|
3198 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3199 |
|
22975 | 3200 |
lemma arccos: |
41970 | 3201 |
"[| -1 \<le> y; y \<le> 1 |] |
22975 | 3202 |
==> 0 \<le> arccos y & arccos y \<le> pi & cos(arccos y) = y" |
53079 | 3203 |
unfolding arccos_def by (rule theI' [OF cos_total]) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3204 |
|
22975 | 3205 |
lemma cos_arccos [simp]: "[| -1 \<le> y; y \<le> 1 |] ==> cos(arccos y) = y" |
53079 | 3206 |
by (blast dest: arccos) |
41970 | 3207 |
|
22975 | 3208 |
lemma arccos_bounded: "[| -1 \<le> y; y \<le> 1 |] ==> 0 \<le> arccos y & arccos y \<le> pi" |
53079 | 3209 |
by (blast dest: arccos) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3210 |
|
22975 | 3211 |
lemma arccos_lbound: "[| -1 \<le> y; y \<le> 1 |] ==> 0 \<le> arccos y" |
53079 | 3212 |
by (blast dest: arccos) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3213 |
|
22975 | 3214 |
lemma arccos_ubound: "[| -1 \<le> y; y \<le> 1 |] ==> arccos y \<le> pi" |
53079 | 3215 |
by (blast dest: arccos) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3216 |
|
22975 | 3217 |
lemma arccos_lt_bounded: |
41970 | 3218 |
"[| -1 < y; y < 1 |] |
22975 | 3219 |
==> 0 < arccos y & arccos y < pi" |
53079 | 3220 |
apply (frule order_less_imp_le) |
3221 |
apply (frule_tac y = y in order_less_imp_le) |
|
3222 |
apply (frule arccos_bounded, auto) |
|
3223 |
apply (drule_tac y = "arccos y" in order_le_imp_less_or_eq) |
|
3224 |
apply (drule_tac [2] y = pi in order_le_imp_less_or_eq, auto) |
|
3225 |
apply (drule_tac [!] f = cos in arg_cong, auto) |
|
3226 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3227 |
|
22975 | 3228 |
lemma arccos_cos: "[|0 \<le> x; x \<le> pi |] ==> arccos(cos x) = x" |
53079 | 3229 |
apply (simp add: arccos_def) |
3230 |
apply (auto intro!: the1_equality cos_total) |
|
3231 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3232 |
|
22975 | 3233 |
lemma arccos_cos2: "[|x \<le> 0; -pi \<le> x |] ==> arccos(cos x) = -x" |
53079 | 3234 |
apply (simp add: arccos_def) |
3235 |
apply (auto intro!: the1_equality cos_total) |
|
3236 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3237 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3238 |
lemma cos_arcsin: "\<lbrakk>-1 \<le> x; x \<le> 1\<rbrakk> \<Longrightarrow> cos (arcsin x) = sqrt (1 - x\<^sup>2)" |
53079 | 3239 |
apply (subgoal_tac "x\<^sup>2 \<le> 1") |
3240 |
apply (rule power2_eq_imp_eq) |
|
3241 |
apply (simp add: cos_squared_eq) |
|
3242 |
apply (rule cos_ge_zero) |
|
3243 |
apply (erule (1) arcsin_lbound) |
|
3244 |
apply (erule (1) arcsin_ubound) |
|
3245 |
apply simp |
|
3246 |
apply (subgoal_tac "\<bar>x\<bar>\<^sup>2 \<le> 1\<^sup>2", simp) |
|
3247 |
apply (rule power_mono, simp, simp) |
|
3248 |
done |
|
23045
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
3249 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3250 |
lemma sin_arccos: "\<lbrakk>-1 \<le> x; x \<le> 1\<rbrakk> \<Longrightarrow> sin (arccos x) = sqrt (1 - x\<^sup>2)" |
53079 | 3251 |
apply (subgoal_tac "x\<^sup>2 \<le> 1") |
3252 |
apply (rule power2_eq_imp_eq) |
|
3253 |
apply (simp add: sin_squared_eq) |
|
3254 |
apply (rule sin_ge_zero) |
|
3255 |
apply (erule (1) arccos_lbound) |
|
3256 |
apply (erule (1) arccos_ubound) |
|
3257 |
apply simp |
|
3258 |
apply (subgoal_tac "\<bar>x\<bar>\<^sup>2 \<le> 1\<^sup>2", simp) |
|
3259 |
apply (rule power_mono, simp, simp) |
|
3260 |
done |
|
3261 |
||
3262 |
lemma arctan [simp]: "- (pi/2) < arctan y & arctan y < pi/2 & tan (arctan y) = y" |
|
3263 |
unfolding arctan_def by (rule theI' [OF tan_total]) |
|
3264 |
||
3265 |
lemma tan_arctan: "tan (arctan y) = y" |
|
3266 |
by auto |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3267 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3268 |
lemma arctan_bounded: "- (pi/2) < arctan y & arctan y < pi/2" |
53079 | 3269 |
by (auto simp only: arctan) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3270 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3271 |
lemma arctan_lbound: "- (pi/2) < arctan y" |
53079 | 3272 |
by auto |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3273 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3274 |
lemma arctan_ubound: "arctan y < pi/2" |
53079 | 3275 |
by (auto simp only: arctan) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3276 |
|
44746 | 3277 |
lemma arctan_unique: |
53079 | 3278 |
assumes "-(pi/2) < x" |
3279 |
and "x < pi/2" |
|
3280 |
and "tan x = y" |
|
44746 | 3281 |
shows "arctan y = x" |
3282 |
using assms arctan [of y] tan_total [of y] by (fast elim: ex1E) |
|
3283 |
||
53079 | 3284 |
lemma arctan_tan: "-(pi/2) < x \<Longrightarrow> x < pi/2 \<Longrightarrow> arctan (tan x) = x" |
3285 |
by (rule arctan_unique) simp_all |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3286 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3287 |
lemma arctan_zero_zero [simp]: "arctan 0 = 0" |
53079 | 3288 |
by (rule arctan_unique) simp_all |
44746 | 3289 |
|
3290 |
lemma arctan_minus: "arctan (- x) = - arctan x" |
|
3291 |
apply (rule arctan_unique) |
|
3292 |
apply (simp only: neg_less_iff_less arctan_ubound) |
|
3293 |
apply (metis minus_less_iff arctan_lbound) |
|
3294 |
apply simp |
|
3295 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3296 |
|
44725 | 3297 |
lemma cos_arctan_not_zero [simp]: "cos (arctan x) \<noteq> 0" |
3298 |
by (intro less_imp_neq [symmetric] cos_gt_zero_pi |
|
3299 |
arctan_lbound arctan_ubound) |
|
3300 |
||
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3301 |
lemma cos_arctan: "cos (arctan x) = 1 / sqrt (1 + x\<^sup>2)" |
44725 | 3302 |
proof (rule power2_eq_imp_eq) |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3303 |
have "0 < 1 + x\<^sup>2" by (simp add: add_pos_nonneg) |
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3304 |
show "0 \<le> 1 / sqrt (1 + x\<^sup>2)" by simp |
44725 | 3305 |
show "0 \<le> cos (arctan x)" |
3306 |
by (intro less_imp_le cos_gt_zero_pi arctan_lbound arctan_ubound) |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3307 |
have "(cos (arctan x))\<^sup>2 * (1 + (tan (arctan x))\<^sup>2) = 1" |
49962
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents:
47489
diff
changeset
|
3308 |
unfolding tan_def by (simp add: distrib_left power_divide) |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3309 |
thus "(cos (arctan x))\<^sup>2 = (1 / sqrt (1 + x\<^sup>2))\<^sup>2" |
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3310 |
using `0 < 1 + x\<^sup>2` by (simp add: power_divide eq_divide_eq) |
44725 | 3311 |
qed |
3312 |
||
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3313 |
lemma sin_arctan: "sin (arctan x) = x / sqrt (1 + x\<^sup>2)" |
44725 | 3314 |
using add_pos_nonneg [OF zero_less_one zero_le_power2 [of x]] |
3315 |
using tan_arctan [of x] unfolding tan_def cos_arctan |
|
3316 |
by (simp add: eq_divide_eq) |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3317 |
|
53076 | 3318 |
lemma tan_sec: "cos x \<noteq> 0 ==> 1 + (tan x)\<^sup>2 = (inverse (cos x))\<^sup>2" |
53079 | 3319 |
apply (rule power_inverse [THEN subst]) |
56217
dc429a5b13c4
Some rationalisation of basic lemmas
paulson <lp15@cam.ac.uk>
parents:
56213
diff
changeset
|
3320 |
apply (rule_tac c1 = "(cos x)\<^sup>2" in mult_right_cancel [THEN iffD1]) |
53079 | 3321 |
apply (auto dest: field_power_not_zero |
3322 |
simp add: power_mult_distrib distrib_right power_divide tan_def |
|
3323 |
mult_assoc power_inverse [symmetric]) |
|
3324 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3325 |
|
44746 | 3326 |
lemma arctan_less_iff: "arctan x < arctan y \<longleftrightarrow> x < y" |
3327 |
by (metis tan_monotone' arctan_lbound arctan_ubound tan_arctan) |
|
3328 |
||
3329 |
lemma arctan_le_iff: "arctan x \<le> arctan y \<longleftrightarrow> x \<le> y" |
|
3330 |
by (simp only: not_less [symmetric] arctan_less_iff) |
|
3331 |
||
3332 |
lemma arctan_eq_iff: "arctan x = arctan y \<longleftrightarrow> x = y" |
|
3333 |
by (simp only: eq_iff [where 'a=real] arctan_le_iff) |
|
3334 |
||
3335 |
lemma zero_less_arctan_iff [simp]: "0 < arctan x \<longleftrightarrow> 0 < x" |
|
3336 |
using arctan_less_iff [of 0 x] by simp |
|
3337 |
||
3338 |
lemma arctan_less_zero_iff [simp]: "arctan x < 0 \<longleftrightarrow> x < 0" |
|
3339 |
using arctan_less_iff [of x 0] by simp |
|
3340 |
||
3341 |
lemma zero_le_arctan_iff [simp]: "0 \<le> arctan x \<longleftrightarrow> 0 \<le> x" |
|
3342 |
using arctan_le_iff [of 0 x] by simp |
|
3343 |
||
3344 |
lemma arctan_le_zero_iff [simp]: "arctan x \<le> 0 \<longleftrightarrow> x \<le> 0" |
|
3345 |
using arctan_le_iff [of x 0] by simp |
|
3346 |
||
3347 |
lemma arctan_eq_zero_iff [simp]: "arctan x = 0 \<longleftrightarrow> x = 0" |
|
3348 |
using arctan_eq_iff [of x 0] by simp |
|
3349 |
||
51482
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3350 |
lemma continuous_on_arcsin': "continuous_on {-1 .. 1} arcsin" |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3351 |
proof - |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3352 |
have "continuous_on (sin ` {- pi / 2 .. pi / 2}) arcsin" |
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
3353 |
by (rule continuous_on_inv) (auto intro: continuous_intros simp: arcsin_sin) |
51482
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3354 |
also have "sin ` {- pi / 2 .. pi / 2} = {-1 .. 1}" |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3355 |
proof safe |
53079 | 3356 |
fix x :: real |
3357 |
assume "x \<in> {-1..1}" |
|
3358 |
then show "x \<in> sin ` {- pi / 2..pi / 2}" |
|
3359 |
using arcsin_lbound arcsin_ubound |
|
56479
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents:
56409
diff
changeset
|
3360 |
by (intro image_eqI[where x="arcsin x"]) auto |
51482
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3361 |
qed simp |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3362 |
finally show ?thesis . |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3363 |
qed |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3364 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
3365 |
lemma continuous_on_arcsin [continuous_intros]: |
51482
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3366 |
"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:
51481
diff
changeset
|
3367 |
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:
51481
diff
changeset
|
3368 |
by (auto simp: comp_def subset_eq) |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3369 |
|
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3370 |
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:
51481
diff
changeset
|
3371 |
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:
51481
diff
changeset
|
3372 |
by (auto simp: continuous_on_eq_continuous_at subset_eq) |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3373 |
|
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3374 |
lemma continuous_on_arccos': "continuous_on {-1 .. 1} arccos" |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3375 |
proof - |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3376 |
have "continuous_on (cos ` {0 .. pi}) arccos" |
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
3377 |
by (rule continuous_on_inv) (auto intro: continuous_intros simp: arccos_cos) |
51482
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3378 |
also have "cos ` {0 .. pi} = {-1 .. 1}" |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3379 |
proof safe |
53079 | 3380 |
fix x :: real |
3381 |
assume "x \<in> {-1..1}" |
|
3382 |
then show "x \<in> cos ` {0..pi}" |
|
3383 |
using arccos_lbound arccos_ubound |
|
3384 |
by (intro image_eqI[where x="arccos x"]) auto |
|
51482
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3385 |
qed simp |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3386 |
finally show ?thesis . |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3387 |
qed |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3388 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
3389 |
lemma continuous_on_arccos [continuous_intros]: |
51482
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3390 |
"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:
51481
diff
changeset
|
3391 |
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:
51481
diff
changeset
|
3392 |
by (auto simp: comp_def subset_eq) |
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3393 |
|
80efd8c49f52
arcsin and arccos are continuous on {0 .. 1} (including the endpoints)
hoelzl
parents:
51481
diff
changeset
|
3394 |
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:
51481
diff
changeset
|
3395 |
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:
51481
diff
changeset
|
3396 |
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:
23043
diff
changeset
|
3397 |
|
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
3398 |
lemma isCont_arctan: "isCont arctan x" |
53079 | 3399 |
apply (rule arctan_lbound [of x, THEN dense, THEN exE], clarify) |
3400 |
apply (rule arctan_ubound [of x, THEN dense, THEN exE], clarify) |
|
3401 |
apply (subgoal_tac "isCont arctan (tan (arctan x))", simp) |
|
3402 |
apply (erule (1) isCont_inverse_function2 [where f=tan]) |
|
3403 |
apply (metis arctan_tan order_le_less_trans order_less_le_trans) |
|
3404 |
apply (metis cos_gt_zero_pi isCont_tan order_less_le_trans less_le) |
|
3405 |
done |
|
23045
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
3406 |
|
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:
51477
diff
changeset
|
3407 |
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:
51477
diff
changeset
|
3408 |
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:
51477
diff
changeset
|
3409 |
|
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:
51477
diff
changeset
|
3410 |
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:
51477
diff
changeset
|
3411 |
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:
51477
diff
changeset
|
3412 |
|
56371
fb9ae0727548
extend continuous_intros; remove continuous_on_intros and isCont_intros
hoelzl
parents:
56261
diff
changeset
|
3413 |
lemma continuous_on_arctan [continuous_intros]: "continuous_on s f \<Longrightarrow> continuous_on s (\<lambda>x. arctan (f x))" |
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:
51477
diff
changeset
|
3414 |
unfolding continuous_on_def by (auto intro: tendsto_arctan) |
53079 | 3415 |
|
23045
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
3416 |
lemma DERIV_arcsin: |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3417 |
"\<lbrakk>-1 < x; x < 1\<rbrakk> \<Longrightarrow> DERIV arcsin x :> inverse (sqrt (1 - x\<^sup>2))" |
53079 | 3418 |
apply (rule DERIV_inverse_function [where f=sin and a="-1" and b="1"]) |
3419 |
apply (rule DERIV_cong [OF DERIV_sin]) |
|
3420 |
apply (simp add: cos_arcsin) |
|
3421 |
apply (subgoal_tac "\<bar>x\<bar>\<^sup>2 < 1\<^sup>2", simp) |
|
3422 |
apply (rule power_strict_mono, simp, simp, simp) |
|
3423 |
apply assumption |
|
3424 |
apply assumption |
|
3425 |
apply simp |
|
3426 |
apply (erule (1) isCont_arcsin) |
|
3427 |
done |
|
23045
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
3428 |
|
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
3429 |
lemma DERIV_arccos: |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3430 |
"\<lbrakk>-1 < x; x < 1\<rbrakk> \<Longrightarrow> DERIV arccos x :> inverse (- sqrt (1 - x\<^sup>2))" |
53079 | 3431 |
apply (rule DERIV_inverse_function [where f=cos and a="-1" and b="1"]) |
3432 |
apply (rule DERIV_cong [OF DERIV_cos]) |
|
3433 |
apply (simp add: sin_arccos) |
|
3434 |
apply (subgoal_tac "\<bar>x\<bar>\<^sup>2 < 1\<^sup>2", simp) |
|
3435 |
apply (rule power_strict_mono, simp, simp, simp) |
|
3436 |
apply assumption |
|
3437 |
apply assumption |
|
3438 |
apply simp |
|
3439 |
apply (erule (1) isCont_arccos) |
|
3440 |
done |
|
23045
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
3441 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3442 |
lemma DERIV_arctan: "DERIV arctan x :> inverse (1 + x\<^sup>2)" |
53079 | 3443 |
apply (rule DERIV_inverse_function [where f=tan and a="x - 1" and b="x + 1"]) |
3444 |
apply (rule DERIV_cong [OF DERIV_tan]) |
|
3445 |
apply (rule cos_arctan_not_zero) |
|
3446 |
apply (simp add: power_inverse tan_sec [symmetric]) |
|
3447 |
apply (subgoal_tac "0 < 1 + x\<^sup>2", simp) |
|
3448 |
apply (simp add: add_pos_nonneg) |
|
3449 |
apply (simp, simp, simp, rule isCont_arctan) |
|
3450 |
done |
|
23045
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
3451 |
|
31880 | 3452 |
declare |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
3453 |
DERIV_arcsin[THEN DERIV_chain2, derivative_intros] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
3454 |
DERIV_arccos[THEN DERIV_chain2, derivative_intros] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
3455 |
DERIV_arctan[THEN DERIV_chain2, derivative_intros] |
31880 | 3456 |
|
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:
50326
diff
changeset
|
3457 |
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:
50326
diff
changeset
|
3458 |
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]) |
56479
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents:
56409
diff
changeset
|
3459 |
(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:
50326
diff
changeset
|
3460 |
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:
50326
diff
changeset
|
3461 |
|
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:
50326
diff
changeset
|
3462 |
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:
50326
diff
changeset
|
3463 |
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]) |
56479
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents:
56409
diff
changeset
|
3464 |
(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:
50326
diff
changeset
|
3465 |
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:
50326
diff
changeset
|
3466 |
|
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:
50326
diff
changeset
|
3467 |
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:
50326
diff
changeset
|
3468 |
proof (rule tendstoI) |
53079 | 3469 |
fix e :: real |
3470 |
assume "0 < e" |
|
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:
50326
diff
changeset
|
3471 |
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:
50326
diff
changeset
|
3472 |
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:
50326
diff
changeset
|
3473 |
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:
50326
diff
changeset
|
3474 |
|
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:
50326
diff
changeset
|
3475 |
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:
50326
diff
changeset
|
3476 |
proof (intro eventually_at_top_dense[THEN iffD2] exI allI impI) |
53079 | 3477 |
fix x |
3478 |
assume "tan y < x" |
|
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:
50326
diff
changeset
|
3479 |
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:
50326
diff
changeset
|
3480 |
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:
50326
diff
changeset
|
3481 |
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:
50326
diff
changeset
|
3482 |
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:
50326
diff
changeset
|
3483 |
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:
50326
diff
changeset
|
3484 |
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:
50326
diff
changeset
|
3485 |
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:
50326
diff
changeset
|
3486 |
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:
50326
diff
changeset
|
3487 |
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:
50326
diff
changeset
|
3488 |
|
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:
50326
diff
changeset
|
3489 |
lemma tendsto_arctan_at_bot: "(arctan ---> - (pi/2)) at_bot" |
53079 | 3490 |
unfolding filterlim_at_bot_mirror arctan_minus |
3491 |
by (intro tendsto_minus tendsto_arctan_at_top) |
|
3492 |
||
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:
50326
diff
changeset
|
3493 |
|
23043 | 3494 |
subsection {* More Theorems about Sin and Cos *} |
3495 |
||
23052
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3496 |
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:
23049
diff
changeset
|
3497 |
proof - |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3498 |
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:
23049
diff
changeset
|
3499 |
have nonneg: "0 \<le> ?c" |
45308
2e84e5f0463b
extend cancellation simproc patterns to cover terms like '- (2 * pi) < pi'
huffman
parents:
44756
diff
changeset
|
3500 |
by (simp add: cos_ge_zero) |
23052
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3501 |
have "0 = cos (pi / 4 + pi / 4)" |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3502 |
by simp |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3503 |
also have "cos (pi / 4 + pi / 4) = ?c\<^sup>2 - ?s\<^sup>2" |
23052
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3504 |
by (simp only: cos_add power2_eq_square) |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3505 |
also have "\<dots> = 2 * ?c\<^sup>2 - 1" |
23052
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3506 |
by (simp add: sin_squared_eq) |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3507 |
finally have "?c\<^sup>2 = (sqrt 2 / 2)\<^sup>2" |
23052
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3508 |
by (simp add: power_divide) |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3509 |
thus ?thesis |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3510 |
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:
23049
diff
changeset
|
3511 |
qed |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3512 |
|
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3513 |
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:
23049
diff
changeset
|
3514 |
proof - |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3515 |
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:
23049
diff
changeset
|
3516 |
have pos_c: "0 < ?c" |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3517 |
by (rule cos_gt_zero, simp, simp) |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3518 |
have "0 = cos (pi / 6 + pi / 6 + pi / 6)" |
23066
26a9157b620a
new field_combine_numerals simproc, which uses fractions as coefficients
huffman
parents:
23053
diff
changeset
|
3519 |
by simp |
23052
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3520 |
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:
23049
diff
changeset
|
3521 |
by (simp only: cos_add sin_add) |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3522 |
also have "\<dots> = ?c * (?c\<^sup>2 - 3 * ?s\<^sup>2)" |
29667 | 3523 |
by (simp add: algebra_simps power2_eq_square) |
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
3524 |
finally have "?c\<^sup>2 = (sqrt 3 / 2)\<^sup>2" |
23052
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3525 |
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:
23049
diff
changeset
|
3526 |
thus ?thesis |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3527 |
using pos_c [THEN order_less_imp_le] |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3528 |
by (rule power2_eq_imp_eq) simp |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3529 |
qed |
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3530 |
|
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3531 |
lemma sin_45: "sin (pi / 4) = sqrt 2 / 2" |
53079 | 3532 |
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:
23049
diff
changeset
|
3533 |
|
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3534 |
lemma sin_60: "sin (pi / 3) = sqrt 3 / 2" |
53079 | 3535 |
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:
23049
diff
changeset
|
3536 |
|
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3537 |
lemma cos_60: "cos (pi / 3) = 1 / 2" |
53079 | 3538 |
apply (rule power2_eq_imp_eq) |
3539 |
apply (simp add: cos_squared_eq sin_60 power_divide) |
|
3540 |
apply (rule cos_ge_zero, rule order_trans [where y=0], simp_all) |
|
3541 |
done |
|
23052
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3542 |
|
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3543 |
lemma sin_30: "sin (pi / 6) = 1 / 2" |
53079 | 3544 |
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:
23049
diff
changeset
|
3545 |
|
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3546 |
lemma tan_30: "tan (pi / 6) = 1 / sqrt 3" |
53079 | 3547 |
unfolding tan_def by (simp add: sin_30 cos_30) |
23052
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3548 |
|
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3549 |
lemma tan_45: "tan (pi / 4) = 1" |
53079 | 3550 |
unfolding tan_def by (simp add: sin_45 cos_45) |
23052
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3551 |
|
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3552 |
lemma tan_60: "tan (pi / 3) = sqrt 3" |
53079 | 3553 |
unfolding tan_def by (simp add: sin_60 cos_60) |
23052
0e36f0dbfa1c
add lemmas for sin,cos,tan of 30,45,60 degrees; cleaned up
huffman
parents:
23049
diff
changeset
|
3554 |
|
15383 | 3555 |
lemma sin_cos_npi [simp]: "sin (real (Suc (2 * n)) * pi / 2) = (-1) ^ n" |
3556 |
proof - |
|
3557 |
have "sin ((real n + 1/2) * pi) = cos (real n * pi)" |
|
29667 | 3558 |
by (auto simp add: algebra_simps sin_add) |
15383 | 3559 |
thus ?thesis |
49962
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents:
47489
diff
changeset
|
3560 |
by (simp add: real_of_nat_Suc distrib_right add_divide_distrib |
15383 | 3561 |
mult_commute [of pi]) |
3562 |
qed |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3563 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3564 |
lemma cos_2npi [simp]: "cos (2 * real (n::nat) * pi) = 1" |
53079 | 3565 |
by (simp add: cos_double mult_assoc power_add [symmetric] numeral_2_eq_2) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3566 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3567 |
lemma cos_3over2_pi [simp]: "cos (3 / 2 * pi) = 0" |
53079 | 3568 |
apply (subgoal_tac "cos (pi + pi/2) = 0", simp) |
3569 |
apply (subst cos_add, simp) |
|
3570 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3571 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3572 |
lemma sin_2npi [simp]: "sin (2 * real (n::nat) * pi) = 0" |
53079 | 3573 |
by (auto simp add: mult_assoc) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3574 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3575 |
lemma sin_3over2_pi [simp]: "sin (3 / 2 * pi) = - 1" |
53079 | 3576 |
apply (subgoal_tac "sin (pi + pi/2) = - 1", simp) |
3577 |
apply (subst sin_add, simp) |
|
3578 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3579 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3580 |
lemma cos_pi_eq_zero [simp]: "cos (pi * real (Suc (2 * m)) / 2) = 0" |
53079 | 3581 |
apply (simp only: cos_add sin_add real_of_nat_Suc distrib_right distrib_left add_divide_distrib) |
3582 |
apply auto |
|
3583 |
done |
|
3584 |
||
3585 |
lemma DERIV_cos_add [simp]: "DERIV (\<lambda>x. cos (x + k)) xa :> - sin (xa + k)" |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56371
diff
changeset
|
3586 |
by (auto intro!: derivative_eq_intros) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3587 |
|
15081 | 3588 |
lemma sin_zero_abs_cos_one: "sin x = 0 ==> \<bar>cos x\<bar> = 1" |
53079 | 3589 |
by (auto simp add: sin_zero_iff even_mult_two_ex) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3590 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3591 |
lemma cos_one_sin_zero: "cos x = 1 ==> sin x = 0" |
53079 | 3592 |
using sin_cos_squared_add3 [where x = x] by auto |
3593 |
||
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
3594 |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3595 |
subsection {* Machins formula *} |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3596 |
|
44746 | 3597 |
lemma arctan_one: "arctan 1 = pi / 4" |
3598 |
by (rule arctan_unique, simp_all add: tan_45 m2pi_less_pi) |
|
3599 |
||
53079 | 3600 |
lemma tan_total_pi4: |
3601 |
assumes "\<bar>x\<bar> < 1" |
|
3602 |
shows "\<exists>z. - (pi / 4) < z \<and> z < pi / 4 \<and> tan z = x" |
|
44746 | 3603 |
proof |
3604 |
show "- (pi / 4) < arctan x \<and> arctan x < pi / 4 \<and> tan (arctan x) = x" |
|
3605 |
unfolding arctan_one [symmetric] arctan_minus [symmetric] |
|
3606 |
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:
29695
diff
changeset
|
3607 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3608 |
|
53079 | 3609 |
lemma arctan_add: |
3610 |
assumes "\<bar>x\<bar> \<le> 1" and "\<bar>y\<bar> < 1" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3611 |
shows "arctan x + arctan y = arctan ((x + y) / (1 - x * y))" |
44746 | 3612 |
proof (rule arctan_unique [symmetric]) |
3613 |
have "- (pi / 4) \<le> arctan x" and "- (pi / 4) < arctan y" |
|
3614 |
unfolding arctan_one [symmetric] arctan_minus [symmetric] |
|
3615 |
unfolding arctan_le_iff arctan_less_iff using assms by auto |
|
3616 |
from add_le_less_mono [OF this] |
|
3617 |
show 1: "- (pi / 2) < arctan x + arctan y" by simp |
|
3618 |
have "arctan x \<le> pi / 4" and "arctan y < pi / 4" |
|
3619 |
unfolding arctan_one [symmetric] |
|
3620 |
unfolding arctan_le_iff arctan_less_iff using assms by auto |
|
3621 |
from add_le_less_mono [OF this] |
|
3622 |
show 2: "arctan x + arctan y < pi / 2" by simp |
|
3623 |
show "tan (arctan x + arctan y) = (x + y) / (1 - x * y)" |
|
3624 |
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:
29695
diff
changeset
|
3625 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3626 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3627 |
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:
29695
diff
changeset
|
3628 |
proof - |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3629 |
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:
29695
diff
changeset
|
3630 |
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:
29695
diff
changeset
|
3631 |
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:
29695
diff
changeset
|
3632 |
moreover |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3633 |
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:
29695
diff
changeset
|
3634 |
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:
29695
diff
changeset
|
3635 |
have "2 * arctan (5 / 12) = arctan (120 / 119)" by auto |
41970 | 3636 |
moreover |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3637 |
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:
29695
diff
changeset
|
3638 |
from arctan_add[OF this] |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3639 |
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:
29695
diff
changeset
|
3640 |
ultimately have "arctan 1 + arctan (1 / 239) = 4 * arctan (1 / 5)" by auto |
44746 | 3641 |
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:
29695
diff
changeset
|
3642 |
qed |
44746 | 3643 |
|
53079 | 3644 |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3645 |
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:
29695
diff
changeset
|
3646 |
|
53079 | 3647 |
lemma monoseq_arctan_series: |
3648 |
fixes x :: real |
|
3649 |
assumes "\<bar>x\<bar> \<le> 1" |
|
3650 |
shows "monoseq (\<lambda> n. 1 / real (n*2+1) * x^(n*2+1))" (is "monoseq ?a") |
|
3651 |
proof (cases "x = 0") |
|
3652 |
case True |
|
3653 |
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:
29695
diff
changeset
|
3654 |
next |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3655 |
case False |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3656 |
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:
29695
diff
changeset
|
3657 |
show "monoseq ?a" |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3658 |
proof - |
53079 | 3659 |
{ |
3660 |
fix n |
|
3661 |
fix x :: real |
|
3662 |
assume "0 \<le> x" and "x \<le> 1" |
|
3663 |
have "1 / real (Suc (Suc n * 2)) * x ^ Suc (Suc n * 2) \<le> |
|
3664 |
1 / real (Suc (n * 2)) * x ^ Suc (n * 2)" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3665 |
proof (rule mult_mono) |
53079 | 3666 |
show "1 / real (Suc (Suc n * 2)) \<le> 1 / real (Suc (n * 2))" |
3667 |
by (rule frac_le) simp_all |
|
3668 |
show "0 \<le> 1 / real (Suc (n * 2))" |
|
3669 |
by auto |
|
3670 |
show "x ^ Suc (Suc n * 2) \<le> x ^ Suc (n * 2)" |
|
3671 |
by (rule power_decreasing) (simp_all add: `0 \<le> x` `x \<le> 1`) |
|
3672 |
show "0 \<le> x ^ Suc (Suc n * 2)" |
|
3673 |
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:
29695
diff
changeset
|
3674 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3675 |
} note mono = this |
41970 | 3676 |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3677 |
show ?thesis |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3678 |
proof (cases "0 \<le> x") |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3679 |
case True from mono[OF this `x \<le> 1`, THEN allI] |
53079 | 3680 |
show ?thesis unfolding Suc_eq_plus1[symmetric] |
3681 |
by (rule mono_SucI2) |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3682 |
next |
53079 | 3683 |
case False |
3684 |
hence "0 \<le> -x" and "-x \<le> 1" using `-1 \<le> x` by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3685 |
from mono[OF this] |
53079 | 3686 |
have "\<And>n. 1 / real (Suc (Suc n * 2)) * x ^ Suc (Suc n * 2) \<ge> |
3687 |
1 / real (Suc (n * 2)) * x ^ Suc (n * 2)" using `0 \<le> -x` by auto |
|
31790 | 3688 |
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:
29695
diff
changeset
|
3689 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3690 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3691 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3692 |
|
53079 | 3693 |
lemma zeroseq_arctan_series: |
3694 |
fixes x :: real |
|
3695 |
assumes "\<bar>x\<bar> \<le> 1" |
|
3696 |
shows "(\<lambda> n. 1 / real (n*2+1) * x^(n*2+1)) ----> 0" (is "?a ----> 0") |
|
3697 |
proof (cases "x = 0") |
|
3698 |
case True |
|
3699 |
thus ?thesis |
|
3700 |
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:
29695
diff
changeset
|
3701 |
next |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3702 |
case False |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3703 |
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:
29695
diff
changeset
|
3704 |
show "?a ----> 0" |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3705 |
proof (cases "\<bar>x\<bar> < 1") |
53079 | 3706 |
case True |
3707 |
hence "norm x < 1" by auto |
|
44568
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44319
diff
changeset
|
3708 |
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:
29803
diff
changeset
|
3709 |
have "(\<lambda>n. 1 / real (n + 1) * x ^ (n + 1)) ----> 0" |
31790 | 3710 |
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:
29803
diff
changeset
|
3711 |
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:
29695
diff
changeset
|
3712 |
next |
53079 | 3713 |
case False |
3714 |
hence "x = -1 \<or> x = 1" using `\<bar>x\<bar> \<le> 1` by auto |
|
3715 |
hence n_eq: "\<And> n. x ^ (n * 2 + 1) = x" |
|
3716 |
unfolding One_nat_def by auto |
|
44568
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44319
diff
changeset
|
3717 |
from tendsto_mult[OF LIMSEQ_inverse_real_of_nat[THEN LIMSEQ_linear, OF pos2, unfolded inverse_eq_divide] tendsto_const[of x]] |
31790 | 3718 |
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:
29695
diff
changeset
|
3719 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3720 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3721 |
|
53079 | 3722 |
lemma summable_arctan_series: |
3723 |
fixes x :: real and n :: nat |
|
3724 |
assumes "\<bar>x\<bar> \<le> 1" |
|
3725 |
shows "summable (\<lambda> k. (-1)^k * (1 / real (k*2+1) * x ^ (k*2+1)))" |
|
3726 |
(is "summable (?c x)") |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3727 |
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:
29695
diff
changeset
|
3728 |
|
53079 | 3729 |
lemma less_one_imp_sqr_less_one: |
3730 |
fixes x :: real |
|
3731 |
assumes "\<bar>x\<bar> < 1" |
|
3732 |
shows "x\<^sup>2 < 1" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3733 |
proof - |
54573 | 3734 |
have "\<bar>x\<^sup>2\<bar> < 1" |
3735 |
by (metis abs_power2 assms pos2 power2_abs power_0 power_strict_decreasing zero_eq_power2 zero_less_abs_iff) |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3736 |
thus ?thesis using zero_le_power2 by auto |
41970 | 3737 |
qed |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3738 |
|
53079 | 3739 |
lemma DERIV_arctan_series: |
3740 |
assumes "\<bar> x \<bar> < 1" |
|
3741 |
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))" |
|
3742 |
(is "DERIV ?arctan _ :> ?Int") |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3743 |
proof - |
53079 | 3744 |
let ?f = "\<lambda>n. if even n then (-1)^(n div 2) * 1 / real (Suc n) else 0" |
3745 |
||
3746 |
have n_even: "\<And>n :: nat. even n \<Longrightarrow> 2 * (n div 2) = n" |
|
3747 |
by presburger |
|
3748 |
then have if_eq: "\<And>n x'. ?f n * real (Suc n) * x'^n = |
|
3749 |
(if even n then (-1)^(n div 2) * x'^(2 * (n div 2)) else 0)" |
|
3750 |
by auto |
|
3751 |
||
3752 |
{ |
|
3753 |
fix x :: real |
|
3754 |
assume "\<bar>x\<bar> < 1" |
|
3755 |
hence "x\<^sup>2 < 1" by (rule less_one_imp_sqr_less_one) |
|
53076 | 3756 |
have "summable (\<lambda> n. -1 ^ n * (x\<^sup>2) ^n)" |
3757 |
by (rule summable_Leibniz(1), auto intro!: LIMSEQ_realpow_zero monoseq_realpow `x\<^sup>2 < 1` order_less_imp_le[OF `x\<^sup>2 < 1`]) |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3758 |
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:
29695
diff
changeset
|
3759 |
} note summable_Integral = this |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3760 |
|
53079 | 3761 |
{ |
3762 |
fix f :: "nat \<Rightarrow> real" |
|
3763 |
have "\<And>x. f sums x = (\<lambda> n. if even n then f (n div 2) else 0) sums x" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3764 |
proof |
53079 | 3765 |
fix x :: real |
3766 |
assume "f sums x" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3767 |
from sums_if[OF sums_zero this] |
53079 | 3768 |
show "(\<lambda>n. if even n then f (n div 2) else 0) sums x" |
3769 |
by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3770 |
next |
53079 | 3771 |
fix x :: real |
3772 |
assume "(\<lambda> n. if even n then f (n div 2) else 0) sums x" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3773 |
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:
29695
diff
changeset
|
3774 |
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:
29695
diff
changeset
|
3775 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3776 |
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:
29695
diff
changeset
|
3777 |
} note sums_even = this |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3778 |
|
53079 | 3779 |
have Int_eq: "(\<Sum>n. ?f n * real (Suc n) * x^n) = ?Int" |
3780 |
unfolding if_eq mult_commute[of _ 2] suminf_def sums_even[of "\<lambda> n. -1 ^ n * x ^ (2 * n)", symmetric] |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3781 |
by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3782 |
|
53079 | 3783 |
{ |
3784 |
fix x :: real |
|
3785 |
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:
29695
diff
changeset
|
3786 |
(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:
29695
diff
changeset
|
3787 |
using n_even by auto |
53079 | 3788 |
have idx_eq: "\<And>n. n * 2 + 1 = Suc (2 * n)" by auto |
3789 |
have "(\<Sum>n. ?f n * x^(Suc n)) = ?arctan x" |
|
3790 |
unfolding if_eq' idx_eq suminf_def sums_even[of "\<lambda> n. -1 ^ n * (1 / real (Suc (2 * n)) * x ^ Suc (2 * n))", symmetric] |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3791 |
by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3792 |
} note arctan_eq = this |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3793 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3794 |
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:
29695
diff
changeset
|
3795 |
proof (rule DERIV_power_series') |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3796 |
show "x \<in> {- 1 <..< 1}" using `\<bar> x \<bar> < 1` by auto |
53079 | 3797 |
{ |
3798 |
fix x' :: real |
|
3799 |
assume x'_bounds: "x' \<in> {- 1 <..< 1}" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3800 |
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:
29695
diff
changeset
|
3801 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3802 |
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:
29695
diff
changeset
|
3803 |
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:
32047
diff
changeset
|
3804 |
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:
29695
diff
changeset
|
3805 |
} |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3806 |
qed auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3807 |
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:
29695
diff
changeset
|
3808 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3809 |
|
53079 | 3810 |
lemma arctan_series: |
3811 |
assumes "\<bar> x \<bar> \<le> 1" |
|
3812 |
shows "arctan x = (\<Sum>k. (-1)^k * (1 / real (k*2+1) * x ^ (k*2+1)))" |
|
3813 |
(is "_ = suminf (\<lambda> n. ?c x n)") |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3814 |
proof - |
53079 | 3815 |
let ?c' = "\<lambda>x n. (-1)^n * x^(n*2)" |
3816 |
||
3817 |
{ |
|
3818 |
fix r x :: real |
|
3819 |
assume "0 < r" and "r < 1" and "\<bar> x \<bar> < r" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3820 |
have "\<bar>x\<bar> < 1" using `r < 1` and `\<bar>x\<bar> < r` by auto |
53079 | 3821 |
from DERIV_arctan_series[OF this] have "DERIV (\<lambda> x. suminf (?c x)) x :> (suminf (?c' x))" . |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3822 |
} note DERIV_arctan_suminf = this |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3823 |
|
53079 | 3824 |
{ |
3825 |
fix x :: real |
|
3826 |
assume "\<bar>x\<bar> \<le> 1" |
|
3827 |
note summable_Leibniz[OF zeroseq_arctan_series[OF this] monoseq_arctan_series[OF this]] |
|
3828 |
} note arctan_series_borders = this |
|
3829 |
||
3830 |
{ |
|
3831 |
fix x :: real |
|
3832 |
assume "\<bar>x\<bar> < 1" |
|
3833 |
have "arctan x = (\<Sum>k. ?c x k)" |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3834 |
proof - |
53079 | 3835 |
obtain r where "\<bar>x\<bar> < r" and "r < 1" |
3836 |
using dense[OF `\<bar>x\<bar> < 1`] by blast |
|
3837 |
hence "0 < r" and "-r < x" and "x < r" by auto |
|
3838 |
||
3839 |
have suminf_eq_arctan_bounded: "\<And>x a b. \<lbrakk> -r < a ; b < r ; a < b ; a \<le> x ; x \<le> b \<rbrakk> \<Longrightarrow> |
|
3840 |
suminf (?c x) - arctan x = suminf (?c a) - arctan a" |
|
3841 |
proof - |
|
3842 |
fix x a b |
|
3843 |
assume "-r < a" and "b < r" and "a < b" and "a \<le> x" and "x \<le> b" |
|
3844 |
hence "\<bar>x\<bar> < r" by auto |
|
3845 |
show "suminf (?c x) - arctan x = suminf (?c a) - arctan a" |
|
3846 |
proof (rule DERIV_isconst2[of "a" "b"]) |
|
3847 |
show "a < b" and "a \<le> x" and "x \<le> b" |
|
3848 |
using `a < b` `a \<le> x` `x \<le> b` by auto |
|
3849 |
have "\<forall>x. -r < x \<and> x < r \<longrightarrow> DERIV (\<lambda> x. suminf (?c x) - arctan x) x :> 0" |
|
3850 |
proof (rule allI, rule impI) |
|
3851 |
fix x |
|
3852 |
assume "-r < x \<and> x < r" |
|
3853 |
hence "\<bar>x\<bar> < r" by auto |
|
3854 |
hence "\<bar>x\<bar> < 1" using `r < 1` by auto |
|
3855 |
have "\<bar> - (x\<^sup>2) \<bar> < 1" |
|
3856 |
using less_one_imp_sqr_less_one[OF `\<bar>x\<bar> < 1`] by auto |
|
3857 |
hence "(\<lambda> n. (- (x\<^sup>2)) ^ n) sums (1 / (1 - (- (x\<^sup>2))))" |
|
3858 |
unfolding real_norm_def[symmetric] by (rule geometric_sums) |
|
3859 |
hence "(?c' x) sums (1 / (1 - (- (x\<^sup>2))))" |
|
3860 |
unfolding power_mult_distrib[symmetric] power_mult nat_mult_commute[of _ 2] by auto |
|
3861 |
hence suminf_c'_eq_geom: "inverse (1 + x\<^sup>2) = suminf (?c' x)" |
|
3862 |
using sums_unique unfolding inverse_eq_divide by auto |
|
3863 |
have "DERIV (\<lambda> x. suminf (?c x)) x :> (inverse (1 + x\<^sup>2))" |
|
3864 |
unfolding suminf_c'_eq_geom |
|
3865 |
by (rule DERIV_arctan_suminf[OF `0 < r` `r < 1` `\<bar>x\<bar> < r`]) |
|
56261 | 3866 |
from DERIV_diff [OF this DERIV_arctan] |
53079 | 3867 |
show "DERIV (\<lambda> x. suminf (?c x) - arctan x) x :> 0" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53602
diff
changeset
|
3868 |
by auto |
53079 | 3869 |
qed |
3870 |
hence DERIV_in_rball: "\<forall> y. a \<le> y \<and> y \<le> b \<longrightarrow> DERIV (\<lambda> x. suminf (?c x) - arctan x) y :> 0" |
|
3871 |
using `-r < a` `b < r` by auto |
|
3872 |
thus "\<forall> y. a < y \<and> y < b \<longrightarrow> DERIV (\<lambda> x. suminf (?c x) - arctan x) y :> 0" |
|
3873 |
using `\<bar>x\<bar> < r` by auto |
|
3874 |
show "\<forall> y. a \<le> y \<and> y \<le> b \<longrightarrow> isCont (\<lambda> x. suminf (?c x) - arctan x) y" |
|
3875 |
using DERIV_in_rball DERIV_isCont by auto |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
3876 |
qed |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3877 |
qed |
53079 | 3878 |
|
3879 |
have suminf_arctan_zero: "suminf (?c 0) - arctan 0 = 0" |
|
3880 |
unfolding Suc_eq_plus1[symmetric] power_Suc2 mult_zero_right arctan_zero_zero suminf_zero |
|
3881 |
by auto |
|
3882 |
||
3883 |
have "suminf (?c x) - arctan x = 0" |
|
3884 |
proof (cases "x = 0") |
|
3885 |
case True |
|
3886 |
thus ?thesis using suminf_arctan_zero by auto |
|
3887 |
next |
|
3888 |
case False |
|
3889 |
hence "0 < \<bar>x\<bar>" and "- \<bar>x\<bar> < \<bar>x\<bar>" by auto |
|
3890 |
have "suminf (?c (-\<bar>x\<bar>)) - arctan (-\<bar>x\<bar>) = suminf (?c 0) - arctan 0" |
|
3891 |
by (rule suminf_eq_arctan_bounded[where x="0" and a="-\<bar>x\<bar>" and b="\<bar>x\<bar>", symmetric]) |
|
3892 |
(simp_all only: `\<bar>x\<bar> < r` `-\<bar>x\<bar> < \<bar>x\<bar>` neg_less_iff_less) |
|
3893 |
moreover |
|
3894 |
have "suminf (?c x) - arctan x = suminf (?c (-\<bar>x\<bar>)) - arctan (-\<bar>x\<bar>)" |
|
3895 |
by (rule suminf_eq_arctan_bounded[where x="x" and a="-\<bar>x\<bar>" and b="\<bar>x\<bar>"]) |
|
54573 | 3896 |
(simp_all only: `\<bar>x\<bar> < r` `-\<bar>x\<bar> < \<bar>x\<bar>` neg_less_iff_less) |
53079 | 3897 |
ultimately |
3898 |
show ?thesis using suminf_arctan_zero by auto |
|
3899 |
qed |
|
3900 |
thus ?thesis by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3901 |
qed |
53079 | 3902 |
} note when_less_one = this |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3903 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3904 |
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:
29695
diff
changeset
|
3905 |
proof (cases "\<bar>x\<bar> < 1") |
53079 | 3906 |
case True |
3907 |
thus ?thesis by (rule when_less_one) |
|
3908 |
next |
|
3909 |
case False |
|
3910 |
hence "\<bar>x\<bar> = 1" using `\<bar>x\<bar> \<le> 1` by auto |
|
3911 |
let ?a = "\<lambda>x n. \<bar>1 / real (n*2+1) * x^(n*2+1)\<bar>" |
|
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
3912 |
let ?diff = "\<lambda> x n. \<bar> arctan x - (\<Sum> i<n. ?c x i)\<bar>" |
53079 | 3913 |
{ |
3914 |
fix n :: nat |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3915 |
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:
29695
diff
changeset
|
3916 |
moreover |
53079 | 3917 |
{ |
3918 |
fix x :: real |
|
3919 |
assume "0 < x" and "x < 1" |
|
3920 |
hence "\<bar>x\<bar> \<le> 1" and "\<bar>x\<bar> < 1" by auto |
|
3921 |
from `0 < x` have "0 < 1 / real (0 * 2 + (1::nat)) * x ^ (0 * 2 + 1)" |
|
3922 |
by auto |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
3923 |
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] |
53079 | 3924 |
have "0 < 1 / real (n*2+1) * x^(n*2+1)" |
3925 |
by (rule mult_pos_pos, auto simp only: zero_less_power[OF `0 < x`], auto) |
|
3926 |
hence a_pos: "?a x n = 1 / real (n*2+1) * x^(n*2+1)" |
|
3927 |
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:
29695
diff
changeset
|
3928 |
have "?diff x n \<le> ?a x n" |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
3929 |
proof (cases "even n") |
53079 | 3930 |
case True |
3931 |
hence sgn_pos: "(-1)^n = (1::real)" by auto |
|
3932 |
from `even n` obtain m where "2 * m = n" |
|
3933 |
unfolding even_mult_two_ex by auto |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
3934 |
from bounds[of m, unfolded this atLeastAtMost_iff] |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
3935 |
have "\<bar>arctan x - (\<Sum>i<n. (?c x i))\<bar> \<le> (\<Sum>i<n + 1. (?c x i)) - (\<Sum>i<n. (?c x i))" |
53079 | 3936 |
by auto |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
3937 |
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:
32047
diff
changeset
|
3938 |
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:
32047
diff
changeset
|
3939 |
finally show ?thesis . |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
3940 |
next |
53079 | 3941 |
case False |
3942 |
hence sgn_neg: "(-1)^n = (-1::real)" by auto |
|
3943 |
from `odd n` obtain m where m_def: "2 * m + 1 = n" |
|
3944 |
unfolding odd_Suc_mult_two_ex by auto |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
3945 |
hence m_plus: "2 * (m + 1) = n + 1" by auto |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
3946 |
from bounds[of "m + 1", unfolded this atLeastAtMost_iff, THEN conjunct1] bounds[of m, unfolded m_def atLeastAtMost_iff, THEN conjunct2] |
56193
c726ecfb22b6
cleanup Series: sorted according to typeclass hierarchy, use {..<_} instead of {0..<_}
hoelzl
parents:
56181
diff
changeset
|
3947 |
have "\<bar>arctan x - (\<Sum>i<n. (?c x i))\<bar> \<le> (\<Sum>i<n. (?c x i)) - (\<Sum>i<n+1. (?c x i))" |
53079 | 3948 |
by auto |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
3949 |
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:
32047
diff
changeset
|
3950 |
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:
32047
diff
changeset
|
3951 |
finally show ?thesis . |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32047
diff
changeset
|
3952 |
qed |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3953 |
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:
29695
diff
changeset
|
3954 |
} |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3955 |
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:
29695
diff
changeset
|
3956 |
moreover have "\<And>x. isCont (\<lambda> x. ?a x n - ?diff x n) x" |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53602
diff
changeset
|
3957 |
unfolding diff_conv_add_uminus divide_inverse |
53079 | 3958 |
by (auto intro!: isCont_add isCont_rabs isCont_ident isCont_minus isCont_arctan |
54230
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53602
diff
changeset
|
3959 |
isCont_inverse isCont_mult isCont_power isCont_const isCont_setsum |
b1d955791529
more simplification rules on unary and binary minus
haftmann
parents:
53602
diff
changeset
|
3960 |
simp del: add_uminus_conv_diff) |
53079 | 3961 |
ultimately have "0 \<le> ?a 1 n - ?diff 1 n" |
3962 |
by (rule LIM_less_bound) |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3963 |
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:
29695
diff
changeset
|
3964 |
} |
30082
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
huffman
parents:
29803
diff
changeset
|
3965 |
have "?a 1 ----> 0" |
44568
e6f291cb5810
discontinue many legacy theorems about LIM and LIMSEQ, in favor of tendsto theorems
huffman
parents:
44319
diff
changeset
|
3966 |
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:
44319
diff
changeset
|
3967 |
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:
29695
diff
changeset
|
3968 |
have "?diff 1 ----> 0" |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3969 |
proof (rule LIMSEQ_I) |
53079 | 3970 |
fix r :: real |
3971 |
assume "0 < r" |
|
3972 |
obtain N :: nat where N_I: "\<And>n. N \<le> n \<Longrightarrow> ?a 1 n < r" |
|
3973 |
using LIMSEQ_D[OF `?a 1 ----> 0` `0 < r`] by auto |
|
3974 |
{ |
|
3975 |
fix n |
|
3976 |
assume "N \<le> n" from `?diff 1 n \<le> ?a 1 n` N_I[OF this] |
|
3977 |
have "norm (?diff 1 n - 0) < r" by auto |
|
3978 |
} |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3979 |
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:
29695
diff
changeset
|
3980 |
qed |
44710 | 3981 |
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:
29695
diff
changeset
|
3982 |
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:
29695
diff
changeset
|
3983 |
hence "arctan 1 = (\<Sum> i. ?c 1 i)" by (rule sums_unique) |
41970 | 3984 |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3985 |
show ?thesis |
53079 | 3986 |
proof (cases "x = 1") |
3987 |
case True |
|
3988 |
then show ?thesis by (simp add: `arctan 1 = (\<Sum> i. ?c 1 i)`) |
|
3989 |
next |
|
3990 |
case False |
|
3991 |
hence "x = -1" using `\<bar>x\<bar> = 1` by auto |
|
41970 | 3992 |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
3993 |
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:
29695
diff
changeset
|
3994 |
have "- (2 * pi) < 0" using pi_gt_zero by auto |
41970 | 3995 |
|
53079 | 3996 |
have c_minus_minus: "\<And>i. ?c (- 1) i = - ?c 1 i" |
3997 |
unfolding One_nat_def by auto |
|
3998 |
||
3999 |
have "arctan (- 1) = arctan (tan (-(pi / 4)))" |
|
4000 |
unfolding tan_45 tan_minus .. |
|
4001 |
also have "\<dots> = - (pi / 4)" |
|
4002 |
by (rule arctan_tan, auto simp add: order_less_trans[OF `- (pi / 2) < 0` pi_gt_zero]) |
|
4003 |
also have "\<dots> = - (arctan (tan (pi / 4)))" |
|
4004 |
unfolding neg_equal_iff_equal by (rule arctan_tan[symmetric], auto simp add: order_less_trans[OF `- (2 * pi) < 0` pi_gt_zero]) |
|
4005 |
also have "\<dots> = - (arctan 1)" |
|
4006 |
unfolding tan_45 .. |
|
4007 |
also have "\<dots> = - (\<Sum> i. ?c 1 i)" |
|
4008 |
using `arctan 1 = (\<Sum> i. ?c 1 i)` by auto |
|
4009 |
also have "\<dots> = (\<Sum> i. ?c (- 1) i)" |
|
4010 |
using suminf_minus[OF sums_summable[OF `(?c 1) sums (arctan 1)`]] |
|
4011 |
unfolding c_minus_minus by auto |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4012 |
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:
29695
diff
changeset
|
4013 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4014 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4015 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4016 |
|
53079 | 4017 |
lemma arctan_half: |
4018 |
fixes x :: real |
|
53076 | 4019 |
shows "arctan x = 2 * arctan (x / (1 + sqrt(1 + x\<^sup>2)))" |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4020 |
proof - |
53079 | 4021 |
obtain y where low: "- (pi / 2) < y" and high: "y < pi / 2" and y_eq: "tan y = x" |
4022 |
using tan_total by blast |
|
4023 |
hence low2: "- (pi / 2) < y / 2" and high2: "y / 2 < pi / 2" |
|
4024 |
by auto |
|
4025 |
||
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4026 |
have "0 < cos y" using cos_gt_zero_pi[OF low high] . |
53079 | 4027 |
hence "cos y \<noteq> 0" and cos_sqrt: "sqrt ((cos y)\<^sup>2) = cos y" |
4028 |
by auto |
|
4029 |
||
4030 |
have "1 + (tan y)\<^sup>2 = 1 + (sin y)\<^sup>2 / (cos y)\<^sup>2" |
|
4031 |
unfolding tan_def power_divide .. |
|
4032 |
also have "\<dots> = (cos y)\<^sup>2 / (cos y)\<^sup>2 + (sin y)\<^sup>2 / (cos y)\<^sup>2" |
|
4033 |
using `cos y \<noteq> 0` by auto |
|
4034 |
also have "\<dots> = 1 / (cos y)\<^sup>2" |
|
4035 |
unfolding add_divide_distrib[symmetric] sin_cos_squared_add2 .. |
|
53076 | 4036 |
finally have "1 + (tan y)\<^sup>2 = 1 / (cos y)\<^sup>2" . |
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4037 |
|
53079 | 4038 |
have "sin y / (cos y + 1) = tan y / ((cos y + 1) / cos y)" |
56571
f4635657d66f
added divide_nonneg_nonneg and co; made it a simp rule
hoelzl
parents:
56544
diff
changeset
|
4039 |
unfolding tan_def using `cos y \<noteq> 0` by (simp add: field_simps) |
53079 | 4040 |
also have "\<dots> = tan y / (1 + 1 / cos y)" |
4041 |
using `cos y \<noteq> 0` unfolding add_divide_distrib by auto |
|
4042 |
also have "\<dots> = tan y / (1 + 1 / sqrt ((cos y)\<^sup>2))" |
|
4043 |
unfolding cos_sqrt .. |
|
4044 |
also have "\<dots> = tan y / (1 + sqrt (1 / (cos y)\<^sup>2))" |
|
4045 |
unfolding real_sqrt_divide by auto |
|
4046 |
finally have eq: "sin y / (cos y + 1) = tan y / (1 + sqrt(1 + (tan y)\<^sup>2))" |
|
4047 |
unfolding `1 + (tan y)\<^sup>2 = 1 / (cos y)\<^sup>2` . |
|
4048 |
||
4049 |
have "arctan x = y" |
|
4050 |
using arctan_tan low high y_eq by auto |
|
4051 |
also have "\<dots> = 2 * (arctan (tan (y/2)))" |
|
4052 |
using arctan_tan[OF low2 high2] by auto |
|
4053 |
also have "\<dots> = 2 * (arctan (sin y / (cos y + 1)))" |
|
4054 |
unfolding tan_half by auto |
|
4055 |
finally show ?thesis |
|
4056 |
unfolding eq `tan y = x` . |
|
29803
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4057 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4058 |
|
53079 | 4059 |
lemma arctan_monotone: "x < y \<Longrightarrow> arctan x < arctan y" |
4060 |
by (simp only: arctan_less_iff) |
|
4061 |
||
4062 |
lemma arctan_monotone': "x \<le> y \<Longrightarrow> arctan x \<le> arctan y" |
|
4063 |
by (simp only: arctan_le_iff) |
|
44746 | 4064 |
|
4065 |
lemma arctan_inverse: |
|
53079 | 4066 |
assumes "x \<noteq> 0" |
4067 |
shows "arctan (1 / x) = sgn x * pi / 2 - arctan x" |
|
44746 | 4068 |
proof (rule arctan_unique) |
4069 |
show "- (pi / 2) < sgn x * pi / 2 - arctan x" |
|
4070 |
using arctan_bounded [of x] assms |
|
4071 |
unfolding sgn_real_def |
|
4072 |
apply (auto simp add: algebra_simps) |
|
4073 |
apply (drule zero_less_arctan_iff [THEN iffD2]) |
|
4074 |
apply arith |
|
4075 |
done |
|
4076 |
show "sgn x * pi / 2 - arctan x < pi / 2" |
|
4077 |
using arctan_bounded [of "- x"] assms |
|
4078 |
unfolding sgn_real_def arctan_minus |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
4079 |
by (auto simp add: algebra_simps) |
44746 | 4080 |
show "tan (sgn x * pi / 2 - arctan x) = 1 / x" |
4081 |
unfolding tan_inverse [of "arctan x", unfolded tan_arctan] |
|
4082 |
unfolding sgn_real_def |
|
56479
91958d4b30f7
revert c1bbd3e22226, a14831ac3023, and 36489d77c484: divide_minus_left/right are again simp rules
hoelzl
parents:
56409
diff
changeset
|
4083 |
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:
29695
diff
changeset
|
4084 |
qed |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4085 |
|
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4086 |
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:
29695
diff
changeset
|
4087 |
proof - |
44746 | 4088 |
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:
29695
diff
changeset
|
4089 |
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:
29695
diff
changeset
|
4090 |
finally show ?thesis by auto |
c56a5571f60a
Added derivation lemmas for power series and theorems for the pi, arcus tangens and logarithm series
hoelzl
parents:
29695
diff
changeset
|
4091 |
qed |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
4092 |
|
53079 | 4093 |
|
22978
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
huffman
parents:
22977
diff
changeset
|
4094 |
subsection {* Existence of Polar Coordinates *} |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
4095 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
4096 |
lemma cos_x_y_le_one: "\<bar>x / sqrt (x\<^sup>2 + y\<^sup>2)\<bar> \<le> 1" |
53079 | 4097 |
apply (rule power2_le_imp_le [OF _ zero_le_one]) |
4098 |
apply (simp add: power_divide divide_le_eq not_sum_power2_lt_zero) |
|
4099 |
done |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
4100 |
|
22978
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
huffman
parents:
22977
diff
changeset
|
4101 |
lemma cos_arccos_abs: "\<bar>y\<bar> \<le> 1 \<Longrightarrow> cos (arccos y) = y" |
53079 | 4102 |
by (simp add: abs_le_iff) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
4103 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
52139
diff
changeset
|
4104 |
lemma sin_arccos_abs: "\<bar>y\<bar> \<le> 1 \<Longrightarrow> sin (arccos y) = sqrt (1 - y\<^sup>2)" |
53079 | 4105 |
by (simp add: sin_arccos abs_le_iff) |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
4106 |
|
22978
1cd8cc21a7c3
clean up polar_Ex proofs; remove unnecessary lemmas
huffman
parents:
22977
diff
changeset
|
4107 |
lemmas cos_arccos_lemma1 = cos_arccos_abs [OF cos_x_y_le_one] |
15228 | 4108 |
|
23045
95e04f335940
add lemmas about inverse functions; cleaned up proof of polar_ex
huffman
parents:
23043
diff
changeset
|
4109 |
lemmas sin_arccos_lemma1 = sin_arccos_abs [OF cos_x_y_le_one] |
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
4110 |
|
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
4111 |
lemma polar_Ex: "\<exists>r a. x = r * cos a & y = r * sin a" |
54573 | 4112 |
proof - |
4113 |
have polar_ex1: "\<And>y. 0 < y \<Longrightarrow> \<exists>r a. x = r * cos a & y = r * sin a" |
|
4114 |
apply (rule_tac x = "sqrt (x\<^sup>2 + y\<^sup>2)" in exI) |
|
4115 |
apply (rule_tac x = "arccos (x / sqrt (x\<^sup>2 + y\<^sup>2))" in exI) |
|
4116 |
apply (simp add: cos_arccos_lemma1 sin_arccos_lemma1 power_divide |
|
4117 |
real_sqrt_mult [symmetric] right_diff_distrib) |
|
4118 |
done |
|
4119 |
show ?thesis |
|
4120 |
proof (cases "0::real" y rule: linorder_cases) |
|
4121 |
case less |
|
4122 |
then show ?thesis by (rule polar_ex1) |
|
4123 |
next |
|
4124 |
case equal |
|
4125 |
then show ?thesis |
|
4126 |
by (force simp add: intro!: cos_zero sin_zero) |
|
4127 |
next |
|
4128 |
case greater |
|
4129 |
then show ?thesis |
|
4130 |
using polar_ex1 [where y="-y"] |
|
4131 |
by auto (metis cos_minus minus_minus minus_mult_right sin_minus) |
|
4132 |
qed |
|
4133 |
qed |
|
15077
89840837108e
converting Hyperreal/Transcendental to Isar script
paulson
parents:
15013
diff
changeset
|
4134 |
|
30082
43c5b7bfc791
make more proofs work whether or not One_nat_def is a simp rule
huffman
parents:
29803
diff
changeset
|
4135 |
end |