| author | wenzelm | 
| Tue, 01 Nov 2016 19:43:13 +0100 | |
| changeset 64454 | 4c868fa9d79b | 
| parent 64394 | 141e1ed8d5a0 | 
| child 64508 | 874555896035 | 
| permissions | -rw-r--r-- | 
| 60420 | 1 | section \<open>Complex Transcendental Functions\<close> | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 2 | |
| 61711 
21d7910d6816
Theory of homotopic paths (from HOL Light), plus comments and minor refinements
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 3 | text\<open>By John Harrison et al. Ported from HOL Light by L C Paulson (2015)\<close> | 
| 
21d7910d6816
Theory of homotopic paths (from HOL Light), plus comments and minor refinements
 paulson <lp15@cam.ac.uk> parents: 
61694diff
changeset | 4 | |
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 5 | theory Complex_Transcendental | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 6 | imports | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 7 | Complex_Analysis_Basics | 
| 63594 
bd218a9320b5
HOL-Multivariate_Analysis: rename theories for more descriptive names
 hoelzl parents: 
63589diff
changeset | 8 | Summation_Tests | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 9 | begin | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 10 | |
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 11 | (* TODO: Figure out what to do with Möbius transformations *) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 12 | definition "moebius a b c d = (\<lambda>z. (a*z+b) / (c*z+d :: 'a :: field))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 13 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 14 | lemma moebius_inverse: | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 15 | assumes "a * d \<noteq> b * c" "c * z + d \<noteq> 0" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 16 | shows "moebius d (-b) (-c) a (moebius a b c d z) = z" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 17 | proof - | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 18 | from assms have "(-c) * moebius a b c d z + a \<noteq> 0" unfolding moebius_def | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 19 | by (simp add: field_simps) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 20 | with assms show ?thesis | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 21 | unfolding moebius_def by (simp add: moebius_def divide_simps) (simp add: algebra_simps)? | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 22 | qed | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 23 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 24 | lemma moebius_inverse': | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 25 | assumes "a * d \<noteq> b * c" "c * z - a \<noteq> 0" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 26 | shows "moebius a b c d (moebius d (-b) (-c) a z) = z" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 27 | using assms moebius_inverse[of d a "-b" "-c" z] | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 28 | by (auto simp: algebra_simps) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 29 | |
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 30 | lemma cmod_add_real_less: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 31 | assumes "Im z \<noteq> 0" "r\<noteq>0" | 
| 61945 | 32 | shows "cmod (z + r) < cmod z + \<bar>r\<bar>" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 33 | proof (cases z) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 34 | case (Complex x y) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 35 | have "r * x / \<bar>r\<bar> < sqrt (x*x + y*y)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 36 | apply (rule real_less_rsqrt) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 37 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 38 | apply (simp add: Complex power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 39 | using not_real_square_gt_zero by blast | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 40 | then show ?thesis using assms Complex | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 41 | apply (auto simp: cmod_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 42 | apply (rule power2_less_imp_less, auto) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 43 | apply (simp add: power2_eq_square field_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 44 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 45 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 46 | |
| 61945 | 47 | lemma cmod_diff_real_less: "Im z \<noteq> 0 \<Longrightarrow> x\<noteq>0 \<Longrightarrow> cmod (z - x) < cmod z + \<bar>x\<bar>" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 48 | using cmod_add_real_less [of z "-x"] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 49 | by simp | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 50 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 51 | lemma cmod_square_less_1_plus: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 52 | assumes "Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 53 | shows "(cmod z)\<^sup>2 < 1 + cmod (1 - z\<^sup>2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 54 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 55 | apply (cases "Im z = 0 \<or> Re z = 0") | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 56 | using abs_square_less_1 | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 57 | apply (force simp add: Re_power2 Im_power2 cmod_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 58 | using cmod_diff_real_less [of "1 - z\<^sup>2" "1"] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 59 | apply (simp add: norm_power Im_power2) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 60 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 61 | |
| 60420 | 62 | subsection\<open>The Exponential Function is Differentiable and Continuous\<close> | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 63 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 64 | lemma field_differentiable_within_exp: "exp field_differentiable (at z within s)" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 65 | using DERIV_exp field_differentiable_at_within field_differentiable_def by blast | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 66 | |
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 67 | lemma continuous_within_exp: | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 68 |   fixes z::"'a::{real_normed_field,banach}"
 | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 69 | shows "continuous (at z within s) exp" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 70 | by (simp add: continuous_at_imp_continuous_within) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 71 | |
| 62381 
a6479cb85944
New and revised material for (multivariate) analysis
 paulson <lp15@cam.ac.uk> parents: 
62131diff
changeset | 72 | lemma holomorphic_on_exp [holomorphic_intros]: "exp holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 73 | by (simp add: field_differentiable_within_exp holomorphic_on_def) | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 74 | |
| 60420 | 75 | subsection\<open>Euler and de Moivre formulas.\<close> | 
| 76 | ||
| 77 | text\<open>The sine series times @{term i}\<close>
 | |
| 63589 | 78 | lemma sin_ii_eq: "(\<lambda>n. (\<i> * sin_coeff n) * z^n) sums (\<i> * sin z)" | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 79 | proof - | 
| 63589 | 80 | have "(\<lambda>n. \<i> * sin_coeff n *\<^sub>R z^n) sums (\<i> * sin z)" | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 81 | using sin_converges sums_mult by blast | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 82 | then show ?thesis | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 83 | by (simp add: scaleR_conv_of_real field_simps) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 84 | qed | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 85 | |
| 63589 | 86 | theorem exp_Euler: "exp(\<i> * z) = cos(z) + \<i> * sin(z)" | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 87 | proof - | 
| 63589 | 88 | have "(\<lambda>n. (cos_coeff n + \<i> * sin_coeff n) * z^n) | 
| 89 | = (\<lambda>n. (\<i> * z) ^ n /\<^sub>R (fact n))" | |
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 90 | proof | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 91 | fix n | 
| 63589 | 92 | show "(cos_coeff n + \<i> * sin_coeff n) * z^n = (\<i> * z) ^ n /\<^sub>R (fact n)" | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 93 | by (auto simp: cos_coeff_def sin_coeff_def scaleR_conv_of_real field_simps elim!: evenE oddE) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 94 | qed | 
| 63589 | 95 | also have "... sums (exp (\<i> * z))" | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 96 | by (rule exp_converges) | 
| 63589 | 97 | finally have "(\<lambda>n. (cos_coeff n + \<i> * sin_coeff n) * z^n) sums (exp (\<i> * z))" . | 
| 98 | moreover have "(\<lambda>n. (cos_coeff n + \<i> * sin_coeff n) * z^n) sums (cos z + \<i> * sin z)" | |
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 99 | using sums_add [OF cos_converges [of z] sin_ii_eq [of z]] | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 100 | by (simp add: field_simps scaleR_conv_of_real) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 101 | ultimately show ?thesis | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 102 | using sums_unique2 by blast | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 103 | qed | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 104 | |
| 63589 | 105 | corollary exp_minus_Euler: "exp(-(\<i> * z)) = cos(z) - \<i> * sin(z)" | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 106 | using exp_Euler [of "-z"] | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 107 | by simp | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 108 | |
| 63589 | 109 | lemma sin_exp_eq: "sin z = (exp(\<i> * z) - exp(-(\<i> * z))) / (2*\<i>)" | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 110 | by (simp add: exp_Euler exp_minus_Euler) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 111 | |
| 63589 | 112 | lemma sin_exp_eq': "sin z = \<i> * (exp(-(\<i> * z)) - exp(\<i> * z)) / 2" | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 113 | by (simp add: exp_Euler exp_minus_Euler) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 114 | |
| 63589 | 115 | lemma cos_exp_eq: "cos z = (exp(\<i> * z) + exp(-(\<i> * z))) / 2" | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 116 | by (simp add: exp_Euler exp_minus_Euler) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 117 | |
| 60420 | 118 | subsection\<open>Relationships between real and complex trig functions\<close> | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 119 | |
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 120 | lemma real_sin_eq [simp]: | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 121 | fixes x::real | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 122 | shows "Re(sin(of_real x)) = sin x" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 123 | by (simp add: sin_of_real) | 
| 59862 | 124 | |
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 125 | lemma real_cos_eq [simp]: | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 126 | fixes x::real | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 127 | shows "Re(cos(of_real x)) = cos x" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 128 | by (simp add: cos_of_real) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 129 | |
| 63589 | 130 | lemma DeMoivre: "(cos z + \<i> * sin z) ^ n = cos(n * z) + \<i> * sin(n * z)" | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 131 | apply (simp add: exp_Euler [symmetric]) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 132 | by (metis exp_of_nat_mult mult.left_commute) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 133 | |
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 134 | lemma exp_cnj: | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 135 | fixes z::complex | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 136 | shows "cnj (exp z) = exp (cnj z)" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 137 | proof - | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 138 | have "(\<lambda>n. cnj (z ^ n /\<^sub>R (fact n))) = (\<lambda>n. (cnj z)^n /\<^sub>R (fact n))" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 139 | by auto | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 140 | also have "... sums (exp (cnj z))" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 141 | by (rule exp_converges) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 142 | finally have "(\<lambda>n. cnj (z ^ n /\<^sub>R (fact n))) sums (exp (cnj z))" . | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 143 | moreover have "(\<lambda>n. cnj (z ^ n /\<^sub>R (fact n))) sums (cnj (exp z))" | 
| 59862 | 144 | by (metis exp_converges sums_cnj) | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 145 | ultimately show ?thesis | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 146 | using sums_unique2 | 
| 59862 | 147 | by blast | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 148 | qed | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 149 | |
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 150 | lemma cnj_sin: "cnj(sin z) = sin(cnj z)" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 151 | by (simp add: sin_exp_eq exp_cnj field_simps) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 152 | |
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 153 | lemma cnj_cos: "cnj(cos z) = cos(cnj z)" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 154 | by (simp add: cos_exp_eq exp_cnj field_simps) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 155 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 156 | lemma field_differentiable_at_sin: "sin field_differentiable at z" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 157 | using DERIV_sin field_differentiable_def by blast | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 158 | |
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 159 | lemma field_differentiable_within_sin: "sin field_differentiable (at z within s)" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 160 | by (simp add: field_differentiable_at_sin field_differentiable_at_within) | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 161 | |
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 162 | lemma field_differentiable_at_cos: "cos field_differentiable at z" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 163 | using DERIV_cos field_differentiable_def by blast | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 164 | |
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 165 | lemma field_differentiable_within_cos: "cos field_differentiable (at z within s)" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 166 | by (simp add: field_differentiable_at_cos field_differentiable_at_within) | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 167 | |
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 168 | lemma holomorphic_on_sin: "sin holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 169 | by (simp add: field_differentiable_within_sin holomorphic_on_def) | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 170 | |
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 171 | lemma holomorphic_on_cos: "cos holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 172 | by (simp add: field_differentiable_within_cos holomorphic_on_def) | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 173 | |
| 60420 | 174 | subsection\<open>Get a nice real/imaginary separation in Euler's formula.\<close> | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 175 | |
| 59862 | 176 | lemma Euler: "exp(z) = of_real(exp(Re z)) * | 
| 63589 | 177 | (of_real(cos(Im z)) + \<i> * of_real(sin(Im z)))" | 
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 178 | by (cases z) (simp add: exp_add exp_Euler cos_of_real exp_of_real sin_of_real) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 179 | |
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 180 | lemma Re_sin: "Re(sin z) = sin(Re z) * (exp(Im z) + exp(-(Im z))) / 2" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 181 | by (simp add: sin_exp_eq field_simps Re_divide Im_exp) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 182 | |
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 183 | lemma Im_sin: "Im(sin z) = cos(Re z) * (exp(Im z) - exp(-(Im z))) / 2" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 184 | by (simp add: sin_exp_eq field_simps Im_divide Re_exp) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 185 | |
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 186 | lemma Re_cos: "Re(cos z) = cos(Re z) * (exp(Im z) + exp(-(Im z))) / 2" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 187 | by (simp add: cos_exp_eq field_simps Re_divide Re_exp) | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 188 | |
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 189 | lemma Im_cos: "Im(cos z) = sin(Re z) * (exp(-(Im z)) - exp(Im z)) / 2" | 
| 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 190 | by (simp add: cos_exp_eq field_simps Im_divide Im_exp) | 
| 59862 | 191 | |
| 192 | lemma Re_sin_pos: "0 < Re z \<Longrightarrow> Re z < pi \<Longrightarrow> Re (sin z) > 0" | |
| 193 | by (auto simp: Re_sin Im_sin add_pos_pos sin_gt_zero) | |
| 194 | ||
| 195 | lemma Im_sin_nonneg: "Re z = 0 \<Longrightarrow> 0 \<le> Im z \<Longrightarrow> 0 \<le> Im (sin z)" | |
| 196 | by (simp add: Re_sin Im_sin algebra_simps) | |
| 197 | ||
| 198 | lemma Im_sin_nonneg2: "Re z = pi \<Longrightarrow> Im z \<le> 0 \<Longrightarrow> 0 \<le> Im (sin z)" | |
| 199 | by (simp add: Re_sin Im_sin algebra_simps) | |
| 200 | ||
| 60420 | 201 | subsection\<open>More on the Polar Representation of Complex Numbers\<close> | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 202 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 203 | lemma exp_Complex: "exp(Complex r t) = of_real(exp r) * Complex (cos t) (sin t)" | 
| 59862 | 204 | by (simp add: exp_add exp_Euler exp_of_real sin_of_real cos_of_real) | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 205 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 206 | lemma exp_eq_1: "exp z = 1 \<longleftrightarrow> Re(z) = 0 \<and> (\<exists>n::int. Im(z) = of_int (2 * n) * pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 207 | apply auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 208 | apply (metis exp_eq_one_iff norm_exp_eq_Re norm_one) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 209 | apply (metis Re_exp cos_one_2pi_int mult.commute mult.left_neutral norm_exp_eq_Re norm_one one_complex.simps(1)) | 
| 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 210 | by (metis Im_exp Re_exp complex_Re_Im_cancel_iff cos_one_2pi_int sin_double Re_complex_of_real complex_Re_numeral exp_zero mult.assoc mult.left_commute mult_eq_0_iff mult_numeral_1 numeral_One of_real_0 sin_zero_iff_int2) | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 211 | |
| 63589 | 212 | lemma exp_eq: "exp w = exp z \<longleftrightarrow> (\<exists>n::int. w = z + (of_int (2 * n) * pi) * \<i>)" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 213 | (is "?lhs = ?rhs") | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 214 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 215 | have "exp w = exp z \<longleftrightarrow> exp (w-z) = 1" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 216 | by (simp add: exp_diff) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 217 | also have "... \<longleftrightarrow> (Re w = Re z \<and> (\<exists>n::int. Im w - Im z = of_int (2 * n) * pi))" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 218 | by (simp add: exp_eq_1) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 219 | also have "... \<longleftrightarrow> ?rhs" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 220 | by (auto simp: algebra_simps intro!: complex_eqI) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 221 | finally show ?thesis . | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 222 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 223 | |
| 61945 | 224 | lemma exp_complex_eqI: "\<bar>Im w - Im z\<bar> < 2*pi \<Longrightarrow> exp w = exp z \<Longrightarrow> w = z" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 225 | by (auto simp: exp_eq abs_mult) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 226 | |
| 59862 | 227 | lemma exp_integer_2pi: | 
| 61070 | 228 | assumes "n \<in> \<int>" | 
| 63589 | 229 | shows "exp((2 * n * pi) * \<i>) = 1" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 230 | proof - | 
| 63589 | 231 | have "exp((2 * n * pi) * \<i>) = exp 0" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 232 | using assms | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 233 | by (simp only: Ints_def exp_eq) auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 234 | also have "... = 1" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 235 | by simp | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 236 | finally show ?thesis . | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 237 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 238 | |
| 64287 | 239 | lemma exp_plus_2pin [simp]: "exp (z + \<i> * (of_int n * (of_real pi * 2))) = exp z" | 
| 240 | by (simp add: exp_eq) | |
| 241 | ||
| 242 | lemma inj_on_exp_pi: | |
| 243 | fixes z::complex shows "inj_on exp (ball z pi)" | |
| 244 | proof (clarsimp simp: inj_on_def exp_eq) | |
| 245 | fix y n | |
| 246 | assume "dist z (y + 2 * of_int n * of_real pi * \<i>) < pi" | |
| 247 | "dist z y < pi" | |
| 248 | then have "dist y (y + 2 * of_int n * of_real pi * \<i>) < pi+pi" | |
| 249 | using dist_commute_lessI dist_triangle_less_add by blast | |
| 250 | then have "norm (2 * of_int n * of_real pi * \<i>) < 2*pi" | |
| 251 | by (simp add: dist_norm) | |
| 252 | then show "n = 0" | |
| 253 | by (auto simp: norm_mult) | |
| 254 | qed | |
| 255 | ||
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 256 | lemma sin_cos_eq_iff: "sin y = sin x \<and> cos y = cos x \<longleftrightarrow> (\<exists>n::int. y = x + 2 * n * pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 257 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 258 |   { assume "sin y = sin x" "cos y = cos x"
 | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 259 | then have "cos (y-x) = 1" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 260 | using cos_add [of y "-x"] by simp | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 261 | then have "\<exists>n::int. y-x = n * 2 * pi" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 262 | using cos_one_2pi_int by blast } | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 263 | then show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 264 | apply (auto simp: sin_add cos_add) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 265 | apply (metis add.commute diff_add_cancel mult.commute) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 266 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 267 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 268 | |
| 59862 | 269 | lemma exp_i_ne_1: | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 270 | assumes "0 < x" "x < 2*pi" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 271 | shows "exp(\<i> * of_real x) \<noteq> 1" | 
| 59862 | 272 | proof | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 273 | assume "exp (\<i> * of_real x) = 1" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 274 | then have "exp (\<i> * of_real x) = exp 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 275 | by simp | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 276 | then obtain n where "\<i> * of_real x = (of_int (2 * n) * pi) * \<i>" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 277 | by (simp only: Ints_def exp_eq) auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 278 | then have "of_real x = (of_int (2 * n) * pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 279 | by (metis complex_i_not_zero mult.commute mult_cancel_left of_real_eq_iff real_scaleR_def scaleR_conv_of_real) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 280 | then have "x = (of_int (2 * n) * pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 281 | by simp | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 282 | then show False using assms | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 283 | by (cases n) (auto simp: zero_less_mult_iff mult_less_0_iff) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 284 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 285 | |
| 59862 | 286 | lemma sin_eq_0: | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 287 | fixes z::complex | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 288 | shows "sin z = 0 \<longleftrightarrow> (\<exists>n::int. z = of_real(n * pi))" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 289 | by (simp add: sin_exp_eq exp_eq of_real_numeral) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 290 | |
| 59862 | 291 | lemma cos_eq_0: | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 292 | fixes z::complex | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 293 | shows "cos z = 0 \<longleftrightarrow> (\<exists>n::int. z = of_real(n * pi) + of_real pi/2)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 294 | using sin_eq_0 [of "z - of_real pi/2"] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 295 | by (simp add: sin_diff algebra_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 296 | |
| 59862 | 297 | lemma cos_eq_1: | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 298 | fixes z::complex | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 299 | shows "cos z = 1 \<longleftrightarrow> (\<exists>n::int. z = of_real(2 * n * pi))" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 300 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 301 | have "cos z = cos (2*(z/2))" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 302 | by simp | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 303 | also have "... = 1 - 2 * sin (z/2) ^ 2" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 304 | by (simp only: cos_double_sin) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 305 | finally have [simp]: "cos z = 1 \<longleftrightarrow> sin (z/2) = 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 306 | by simp | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 307 | show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 308 | by (auto simp: sin_eq_0 of_real_numeral) | 
| 59862 | 309 | qed | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 310 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 311 | lemma csin_eq_1: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 312 | fixes z::complex | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 313 | shows "sin z = 1 \<longleftrightarrow> (\<exists>n::int. z = of_real(2 * n * pi) + of_real pi/2)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 314 | using cos_eq_1 [of "z - of_real pi/2"] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 315 | by (simp add: cos_diff algebra_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 316 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 317 | lemma csin_eq_minus1: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 318 | fixes z::complex | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 319 | shows "sin z = -1 \<longleftrightarrow> (\<exists>n::int. z = of_real(2 * n * pi) + 3/2*pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 320 | (is "_ = ?rhs") | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 321 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 322 | have "sin z = -1 \<longleftrightarrow> sin (-z) = 1" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 323 | by (simp add: equation_minus_iff) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 324 | also have "... \<longleftrightarrow> (\<exists>n::int. -z = of_real(2 * n * pi) + of_real pi/2)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 325 | by (simp only: csin_eq_1) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 326 | also have "... \<longleftrightarrow> (\<exists>n::int. z = - of_real(2 * n * pi) - of_real pi/2)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 327 | apply (rule iff_exI) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 328 | by (metis (no_types) is_num_normalize(8) minus_minus of_real_def real_vector.scale_minus_left uminus_add_conv_diff) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 329 | also have "... = ?rhs" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 330 | apply (auto simp: of_real_numeral) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 331 | apply (rule_tac [2] x="-(x+1)" in exI) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 332 | apply (rule_tac x="-(x+1)" in exI) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 333 | apply (simp_all add: algebra_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 334 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 335 | finally show ?thesis . | 
| 59862 | 336 | qed | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 337 | |
| 59862 | 338 | lemma ccos_eq_minus1: | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 339 | fixes z::complex | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 340 | shows "cos z = -1 \<longleftrightarrow> (\<exists>n::int. z = of_real(2 * n * pi) + pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 341 | using csin_eq_1 [of "z - of_real pi/2"] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 342 | apply (simp add: sin_diff) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 343 | apply (simp add: algebra_simps of_real_numeral equation_minus_iff) | 
| 59862 | 344 | done | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 345 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 346 | lemma sin_eq_1: "sin x = 1 \<longleftrightarrow> (\<exists>n::int. x = (2 * n + 1 / 2) * pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 347 | (is "_ = ?rhs") | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 348 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 349 | have "sin x = 1 \<longleftrightarrow> sin (complex_of_real x) = 1" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 350 | by (metis of_real_1 one_complex.simps(1) real_sin_eq sin_of_real) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 351 | also have "... \<longleftrightarrow> (\<exists>n::int. complex_of_real x = of_real(2 * n * pi) + of_real pi/2)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 352 | by (simp only: csin_eq_1) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 353 | also have "... \<longleftrightarrow> (\<exists>n::int. x = of_real(2 * n * pi) + of_real pi/2)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 354 | apply (rule iff_exI) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 355 | apply (auto simp: algebra_simps of_real_numeral) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 356 | apply (rule injD [OF inj_of_real [where 'a = complex]]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 357 | apply (auto simp: of_real_numeral) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 358 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 359 | also have "... = ?rhs" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 360 | by (auto simp: algebra_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 361 | finally show ?thesis . | 
| 59862 | 362 | qed | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 363 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 364 | lemma sin_eq_minus1: "sin x = -1 \<longleftrightarrow> (\<exists>n::int. x = (2*n + 3/2) * pi)" (is "_ = ?rhs") | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 365 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 366 | have "sin x = -1 \<longleftrightarrow> sin (complex_of_real x) = -1" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 367 | by (metis Re_complex_of_real of_real_def scaleR_minus1_left sin_of_real) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 368 | also have "... \<longleftrightarrow> (\<exists>n::int. complex_of_real x = of_real(2 * n * pi) + 3/2*pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 369 | by (simp only: csin_eq_minus1) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 370 | also have "... \<longleftrightarrow> (\<exists>n::int. x = of_real(2 * n * pi) + 3/2*pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 371 | apply (rule iff_exI) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 372 | apply (auto simp: algebra_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 373 | apply (rule injD [OF inj_of_real [where 'a = complex]], auto) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 374 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 375 | also have "... = ?rhs" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 376 | by (auto simp: algebra_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 377 | finally show ?thesis . | 
| 59862 | 378 | qed | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 379 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 380 | lemma cos_eq_minus1: "cos x = -1 \<longleftrightarrow> (\<exists>n::int. x = (2*n + 1) * pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 381 | (is "_ = ?rhs") | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 382 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 383 | have "cos x = -1 \<longleftrightarrow> cos (complex_of_real x) = -1" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 384 | by (metis Re_complex_of_real of_real_def scaleR_minus1_left cos_of_real) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 385 | also have "... \<longleftrightarrow> (\<exists>n::int. complex_of_real x = of_real(2 * n * pi) + pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 386 | by (simp only: ccos_eq_minus1) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 387 | also have "... \<longleftrightarrow> (\<exists>n::int. x = of_real(2 * n * pi) + pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 388 | apply (rule iff_exI) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 389 | apply (auto simp: algebra_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 390 | apply (rule injD [OF inj_of_real [where 'a = complex]], auto) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 391 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 392 | also have "... = ?rhs" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 393 | by (auto simp: algebra_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 394 | finally show ?thesis . | 
| 59862 | 395 | qed | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 396 | |
| 63589 | 397 | lemma dist_exp_ii_1: "norm(exp(\<i> * of_real t) - 1) = 2 * \<bar>sin(t / 2)\<bar>" | 
| 59862 | 398 | apply (simp add: exp_Euler cmod_def power2_diff sin_of_real cos_of_real algebra_simps) | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 399 | using cos_double_sin [of "t/2"] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 400 | apply (simp add: real_sqrt_mult) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 401 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 402 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 403 | lemma sinh_complex: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 404 | fixes z :: complex | 
| 63589 | 405 | shows "(exp z - inverse (exp z)) / 2 = -\<i> * sin(\<i> * z)" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 406 | by (simp add: sin_exp_eq divide_simps exp_minus of_real_numeral) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 407 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 408 | lemma sin_ii_times: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 409 | fixes z :: complex | 
| 63589 | 410 | shows "sin(\<i> * z) = \<i> * ((exp z - inverse (exp z)) / 2)" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 411 | using sinh_complex by auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 412 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 413 | lemma sinh_real: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 414 | fixes x :: real | 
| 63589 | 415 | shows "of_real((exp x - inverse (exp x)) / 2) = -\<i> * sin(\<i> * of_real x)" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 416 | by (simp add: exp_of_real sin_ii_times of_real_numeral) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 417 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 418 | lemma cosh_complex: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 419 | fixes z :: complex | 
| 63589 | 420 | shows "(exp z + inverse (exp z)) / 2 = cos(\<i> * z)" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 421 | by (simp add: cos_exp_eq divide_simps exp_minus of_real_numeral exp_of_real) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 422 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 423 | lemma cosh_real: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 424 | fixes x :: real | 
| 63589 | 425 | shows "of_real((exp x + inverse (exp x)) / 2) = cos(\<i> * of_real x)" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 426 | by (simp add: cos_exp_eq divide_simps exp_minus of_real_numeral exp_of_real) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 427 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 428 | lemmas cos_ii_times = cosh_complex [symmetric] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 429 | |
| 59862 | 430 | lemma norm_cos_squared: | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 431 | "norm(cos z) ^ 2 = cos(Re z) ^ 2 + (exp(Im z) - inverse(exp(Im z))) ^ 2 / 4" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 432 | apply (cases z) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 433 | apply (simp add: cos_add cmod_power2 cos_of_real sin_of_real) | 
| 61694 
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
 paulson <lp15@cam.ac.uk> parents: 
61649diff
changeset | 434 | apply (simp add: cos_exp_eq sin_exp_eq exp_minus exp_of_real Re_divide Im_divide power_divide) | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 435 | apply (simp only: left_diff_distrib [symmetric] power_mult_distrib) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 436 | apply (simp add: sin_squared_eq) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 437 | apply (simp add: power2_eq_square algebra_simps divide_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 438 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 439 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 440 | lemma norm_sin_squared: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 441 | "norm(sin z) ^ 2 = (exp(2 * Im z) + inverse(exp(2 * Im z)) - 2 * cos(2 * Re z)) / 4" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 442 | apply (cases z) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 443 | apply (simp add: sin_add cmod_power2 cos_of_real sin_of_real cos_double_cos exp_double) | 
| 61694 
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
 paulson <lp15@cam.ac.uk> parents: 
61649diff
changeset | 444 | apply (simp add: cos_exp_eq sin_exp_eq exp_minus exp_of_real Re_divide Im_divide power_divide) | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 445 | apply (simp only: left_diff_distrib [symmetric] power_mult_distrib) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 446 | apply (simp add: cos_squared_eq) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 447 | apply (simp add: power2_eq_square algebra_simps divide_simps) | 
| 59862 | 448 | done | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 449 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 450 | lemma exp_uminus_Im: "exp (- Im z) \<le> exp (cmod z)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 451 | using abs_Im_le_cmod linear order_trans by fastforce | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 452 | |
| 59862 | 453 | lemma norm_cos_le: | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 454 | fixes z::complex | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 455 | shows "norm(cos z) \<le> exp(norm z)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 456 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 457 | have "Im z \<le> cmod z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 458 | using abs_Im_le_cmod abs_le_D1 by auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 459 | with exp_uminus_Im show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 460 | apply (simp add: cos_exp_eq norm_divide) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 461 | apply (rule order_trans [OF norm_triangle_ineq], simp) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 462 | apply (metis add_mono exp_le_cancel_iff mult_2_right) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 463 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 464 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 465 | |
| 59862 | 466 | lemma norm_cos_plus1_le: | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 467 | fixes z::complex | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 468 | shows "norm(1 + cos z) \<le> 2 * exp(norm z)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 469 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 470 | have mono: "\<And>u w z::real. (1 \<le> w | 1 \<le> z) \<Longrightarrow> (w \<le> u & z \<le> u) \<Longrightarrow> 2 + w + z \<le> 4 * u" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 471 | by arith | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 472 | have *: "Im z \<le> cmod z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 473 | using abs_Im_le_cmod abs_le_D1 by auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 474 | have triangle3: "\<And>x y z. norm(x + y + z) \<le> norm(x) + norm(y) + norm(z)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 475 | by (simp add: norm_add_rule_thm) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 476 | have "norm(1 + cos z) = cmod (1 + (exp (\<i> * z) + exp (- (\<i> * z))) / 2)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 477 | by (simp add: cos_exp_eq) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 478 | also have "... = cmod ((2 + exp (\<i> * z) + exp (- (\<i> * z))) / 2)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 479 | by (simp add: field_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 480 | also have "... = cmod (2 + exp (\<i> * z) + exp (- (\<i> * z))) / 2" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 481 | by (simp add: norm_divide) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 482 | finally show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 483 | apply (rule ssubst, simp) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 484 | apply (rule order_trans [OF triangle3], simp) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 485 | using exp_uminus_Im * | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 486 | apply (auto intro: mono) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 487 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 488 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 489 | |
| 60420 | 490 | subsection\<open>Taylor series for complex exponential, sine and cosine.\<close> | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 491 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 492 | declare power_Suc [simp del] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 493 | |
| 59862 | 494 | lemma Taylor_exp: | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 495 | "norm(exp z - (\<Sum>k\<le>n. z ^ k / (fact k))) \<le> exp\<bar>Re z\<bar> * (norm z) ^ (Suc n) / (fact n)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 496 | proof (rule complex_taylor [of _ n "\<lambda>k. exp" "exp\<bar>Re z\<bar>" 0 z, simplified]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 497 | show "convex (closed_segment 0 z)" | 
| 61518 
ff12606337e9
new lemmas about topology, etc., for Cauchy integral formula
 paulson parents: 
61426diff
changeset | 498 | by (rule convex_closed_segment [of 0 z]) | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 499 | next | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 500 | fix k x | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 501 | assume "x \<in> closed_segment 0 z" "k \<le> n" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 502 | show "(exp has_field_derivative exp x) (at x within closed_segment 0 z)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 503 | using DERIV_exp DERIV_subset by blast | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 504 | next | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 505 | fix x | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 506 | assume "x \<in> closed_segment 0 z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 507 | then show "Re x \<le> \<bar>Re z\<bar>" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 508 | apply (auto simp: closed_segment_def scaleR_conv_of_real) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 509 | by (meson abs_ge_self abs_ge_zero linear mult_left_le_one_le mult_nonneg_nonpos order_trans) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 510 | next | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 511 | show "0 \<in> closed_segment 0 z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 512 | by (auto simp: closed_segment_def) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 513 | next | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 514 | show "z \<in> closed_segment 0 z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 515 | apply (simp add: closed_segment_def scaleR_conv_of_real) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 516 | using of_real_1 zero_le_one by blast | 
| 59862 | 517 | qed | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 518 | |
| 59862 | 519 | lemma | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 520 | assumes "0 \<le> u" "u \<le> 1" | 
| 59862 | 521 | shows cmod_sin_le_exp: "cmod (sin (u *\<^sub>R z)) \<le> exp \<bar>Im z\<bar>" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 522 | and cmod_cos_le_exp: "cmod (cos (u *\<^sub>R z)) \<le> exp \<bar>Im z\<bar>" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 523 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 524 | have mono: "\<And>u w z::real. w \<le> u \<Longrightarrow> z \<le> u \<Longrightarrow> w + z \<le> u*2" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 525 | by arith | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 526 | show "cmod (sin (u *\<^sub>R z)) \<le> exp \<bar>Im z\<bar>" using assms | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 527 | apply (auto simp: scaleR_conv_of_real norm_mult norm_power sin_exp_eq norm_divide) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 528 | apply (rule order_trans [OF norm_triangle_ineq4]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 529 | apply (rule mono) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 530 | apply (auto simp: abs_if mult_left_le_one_le) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 531 | apply (meson mult_nonneg_nonneg neg_le_0_iff_le not_le order_trans) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 532 | apply (meson less_eq_real_def mult_nonneg_nonpos neg_0_le_iff_le order_trans) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 533 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 534 | show "cmod (cos (u *\<^sub>R z)) \<le> exp \<bar>Im z\<bar>" using assms | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 535 | apply (auto simp: scaleR_conv_of_real norm_mult norm_power cos_exp_eq norm_divide) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 536 | apply (rule order_trans [OF norm_triangle_ineq]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 537 | apply (rule mono) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 538 | apply (auto simp: abs_if mult_left_le_one_le) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 539 | apply (meson mult_nonneg_nonneg neg_le_0_iff_le not_le order_trans) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 540 | apply (meson less_eq_real_def mult_nonneg_nonpos neg_0_le_iff_le order_trans) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 541 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 542 | qed | 
| 59862 | 543 | |
| 544 | lemma Taylor_sin: | |
| 545 | "norm(sin z - (\<Sum>k\<le>n. complex_of_real (sin_coeff k) * z ^ k)) | |
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 546 | \<le> exp\<bar>Im z\<bar> * (norm z) ^ (Suc n) / (fact n)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 547 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 548 | have mono: "\<And>u w z::real. w \<le> u \<Longrightarrow> z \<le> u \<Longrightarrow> w + z \<le> u*2" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 549 | by arith | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 550 | have *: "cmod (sin z - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 551 | (\<Sum>i\<le>n. (-1) ^ (i div 2) * (if even i then sin 0 else cos 0) * z ^ i / (fact i))) | 
| 59862 | 552 | \<le> exp \<bar>Im z\<bar> * cmod z ^ Suc n / (fact n)" | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 553 | proof (rule complex_taylor [of "closed_segment 0 z" n | 
| 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 554 | "\<lambda>k x. (-1)^(k div 2) * (if even k then sin x else cos x)" | 
| 60162 | 555 | "exp\<bar>Im z\<bar>" 0 z, simplified]) | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 556 | fix k x | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 557 | show "((\<lambda>x. (- 1) ^ (k div 2) * (if even k then sin x else cos x)) has_field_derivative | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 558 | (- 1) ^ (Suc k div 2) * (if odd k then sin x else cos x)) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 559 | (at x within closed_segment 0 z)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 560 | apply (auto simp: power_Suc) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 561 | apply (intro derivative_eq_intros | simp)+ | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 562 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 563 | next | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 564 | fix x | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 565 | assume "x \<in> closed_segment 0 z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 566 | then show "cmod ((- 1) ^ (Suc n div 2) * (if odd n then sin x else cos x)) \<le> exp \<bar>Im z\<bar>" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 567 | by (auto simp: closed_segment_def norm_mult norm_power cmod_sin_le_exp cmod_cos_le_exp) | 
| 59862 | 568 | qed | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 569 | have **: "\<And>k. complex_of_real (sin_coeff k) * z ^ k | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 570 | = (-1)^(k div 2) * (if even k then sin 0 else cos 0) * z^k / of_nat (fact k)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 571 | by (auto simp: sin_coeff_def elim!: oddE) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 572 | show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 573 | apply (rule order_trans [OF _ *]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 574 | apply (simp add: **) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 575 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 576 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 577 | |
| 59862 | 578 | lemma Taylor_cos: | 
| 579 | "norm(cos z - (\<Sum>k\<le>n. complex_of_real (cos_coeff k) * z ^ k)) | |
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 580 | \<le> exp\<bar>Im z\<bar> * (norm z) ^ Suc n / (fact n)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 581 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 582 | have mono: "\<And>u w z::real. w \<le> u \<Longrightarrow> z \<le> u \<Longrightarrow> w + z \<le> u*2" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 583 | by arith | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 584 | have *: "cmod (cos z - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 585 | (\<Sum>i\<le>n. (-1) ^ (Suc i div 2) * (if even i then cos 0 else sin 0) * z ^ i / (fact i))) | 
| 59862 | 586 | \<le> exp \<bar>Im z\<bar> * cmod z ^ Suc n / (fact n)" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 587 | proof (rule complex_taylor [of "closed_segment 0 z" n "\<lambda>k x. (-1)^(Suc k div 2) * (if even k then cos x else sin x)" "exp\<bar>Im z\<bar>" 0 z, | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 588 | simplified]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 589 | fix k x | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 590 | assume "x \<in> closed_segment 0 z" "k \<le> n" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 591 | show "((\<lambda>x. (- 1) ^ (Suc k div 2) * (if even k then cos x else sin x)) has_field_derivative | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 592 | (- 1) ^ Suc (k div 2) * (if odd k then cos x else sin x)) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 593 | (at x within closed_segment 0 z)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 594 | apply (auto simp: power_Suc) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 595 | apply (intro derivative_eq_intros | simp)+ | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 596 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 597 | next | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 598 | fix x | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 599 | assume "x \<in> closed_segment 0 z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 600 | then show "cmod ((- 1) ^ Suc (n div 2) * (if odd n then cos x else sin x)) \<le> exp \<bar>Im z\<bar>" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 601 | by (auto simp: closed_segment_def norm_mult norm_power cmod_sin_le_exp cmod_cos_le_exp) | 
| 59862 | 602 | qed | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 603 | have **: "\<And>k. complex_of_real (cos_coeff k) * z ^ k | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 604 | = (-1)^(Suc k div 2) * (if even k then cos 0 else sin 0) * z^k / of_nat (fact k)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 605 | by (auto simp: cos_coeff_def elim!: evenE) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 606 | show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 607 | apply (rule order_trans [OF _ *]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 608 | apply (simp add: **) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 609 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 610 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 611 | |
| 60162 | 612 | declare power_Suc [simp] | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 613 | |
| 60420 | 614 | text\<open>32-bit Approximation to e\<close> | 
| 61945 | 615 | lemma e_approx_32: "\<bar>exp(1) - 5837465777 / 2147483648\<bar> \<le> (inverse(2 ^ 32)::real)" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 616 | using Taylor_exp [of 1 14] exp_le | 
| 64267 | 617 | apply (simp add: sum_distrib_right in_Reals_norm Re_exp atMost_nat_numeral fact_numeral) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 618 | apply (simp only: pos_le_divide_eq [symmetric], linarith) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 619 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 620 | |
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 621 | lemma e_less_3: "exp 1 < (3::real)" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 622 | using e_approx_32 | 
| 62390 | 623 | by (simp add: abs_if split: if_split_asm) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 624 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 625 | lemma ln3_gt_1: "ln 3 > (1::real)" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 626 | by (metis e_less_3 exp_less_cancel_iff exp_ln_iff less_trans ln_exp) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 627 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 628 | |
| 60420 | 629 | subsection\<open>The argument of a complex number\<close> | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 630 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 631 | definition Arg :: "complex \<Rightarrow> real" where | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 632 | "Arg z \<equiv> if z = 0 then 0 | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 633 | else THE t. 0 \<le> t \<and> t < 2*pi \<and> | 
| 63589 | 634 | z = of_real(norm z) * exp(\<i> * of_real t)" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 635 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 636 | lemma Arg_0 [simp]: "Arg(0) = 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 637 | by (simp add: Arg_def) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 638 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 639 | lemma Arg_unique_lemma: | 
| 63589 | 640 | assumes z: "z = of_real(norm z) * exp(\<i> * of_real t)" | 
| 641 | and z': "z = of_real(norm z) * exp(\<i> * of_real t')" | |
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 642 | and t: "0 \<le> t" "t < 2*pi" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 643 | and t': "0 \<le> t'" "t' < 2*pi" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 644 | and nz: "z \<noteq> 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 645 | shows "t' = t" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 646 | proof - | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 647 | have [dest]: "\<And>x y z::real. x\<ge>0 \<Longrightarrow> x+y < z \<Longrightarrow> y<z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 648 | by arith | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 649 | have "of_real (cmod z) * exp (\<i> * of_real t') = of_real (cmod z) * exp (\<i> * of_real t)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 650 | by (metis z z') | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 651 | then have "exp (\<i> * of_real t') = exp (\<i> * of_real t)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 652 | by (metis nz mult_left_cancel mult_zero_left z) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 653 | then have "sin t' = sin t \<and> cos t' = cos t" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 654 | apply (simp add: exp_Euler sin_of_real cos_of_real) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 655 | by (metis Complex_eq complex.sel) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 656 | then obtain n::int where n: "t' = t + 2 * n * pi" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 657 | by (auto simp: sin_cos_eq_iff) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 658 | then have "n=0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 659 | apply (rule_tac z=n in int_cases) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 660 | using t t' | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 661 | apply (auto simp: mult_less_0_iff algebra_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 662 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 663 | then show "t' = t" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 664 | by (simp add: n) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 665 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 666 | |
| 63589 | 667 | lemma Arg: "0 \<le> Arg z & Arg z < 2*pi & z = of_real(norm z) * exp(\<i> * of_real(Arg z))" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 668 | proof (cases "z=0") | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 669 | case True then show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 670 | by (simp add: Arg_def) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 671 | next | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 672 | case False | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 673 | obtain t where t: "0 \<le> t" "t < 2*pi" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 674 | and ReIm: "Re z / cmod z = cos t" "Im z / cmod z = sin t" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 675 | using sincos_total_2pi [OF complex_unit_circle [OF False]] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 676 | by blast | 
| 63589 | 677 | have z: "z = of_real(norm z) * exp(\<i> * of_real t)" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 678 | apply (rule complex_eqI) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 679 | using t False ReIm | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 680 | apply (auto simp: exp_Euler sin_of_real cos_of_real divide_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 681 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 682 | show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 683 | apply (simp add: Arg_def False) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 684 | apply (rule theI [where a=t]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 685 | using t z False | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 686 | apply (auto intro: Arg_unique_lemma) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 687 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 688 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 689 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 690 | corollary | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 691 | shows Arg_ge_0: "0 \<le> Arg z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 692 | and Arg_lt_2pi: "Arg z < 2*pi" | 
| 63589 | 693 | and Arg_eq: "z = of_real(norm z) * exp(\<i> * of_real(Arg z))" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 694 | using Arg by auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 695 | |
| 64394 | 696 | lemma complex_norm_eq_1_exp: "norm z = 1 \<longleftrightarrow> exp(\<i> * of_real (Arg z)) = z" | 
| 697 | by (metis Arg_eq cis_conv_exp mult.left_neutral norm_cis of_real_1) | |
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 698 | |
| 63589 | 699 | lemma Arg_unique: "\<lbrakk>of_real r * exp(\<i> * of_real a) = z; 0 < r; 0 \<le> a; a < 2*pi\<rbrakk> \<Longrightarrow> Arg z = a" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 700 | apply (rule Arg_unique_lemma [OF _ Arg_eq]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 701 | using Arg [of z] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 702 | apply (auto simp: norm_mult) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 703 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 704 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 705 | lemma Arg_minus: "z \<noteq> 0 \<Longrightarrow> Arg (-z) = (if Arg z < pi then Arg z + pi else Arg z - pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 706 | apply (rule Arg_unique [of "norm z"]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 707 | apply (rule complex_eqI) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 708 | using Arg_ge_0 [of z] Arg_eq [of z] Arg_lt_2pi [of z] Arg_eq [of z] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 709 | apply auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 710 | apply (auto simp: Re_exp Im_exp cos_diff sin_diff cis_conv_exp [symmetric]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 711 | apply (metis Re_rcis Im_rcis rcis_def)+ | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 712 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 713 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 714 | lemma Arg_times_of_real [simp]: "0 < r \<Longrightarrow> Arg (of_real r * z) = Arg z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 715 | apply (cases "z=0", simp) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 716 | apply (rule Arg_unique [of "r * norm z"]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 717 | using Arg | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 718 | apply auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 719 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 720 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 721 | lemma Arg_times_of_real2 [simp]: "0 < r \<Longrightarrow> Arg (z * of_real r) = Arg z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 722 | by (metis Arg_times_of_real mult.commute) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 723 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 724 | lemma Arg_divide_of_real [simp]: "0 < r \<Longrightarrow> Arg (z / of_real r) = Arg z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 725 | by (metis Arg_times_of_real2 less_numeral_extra(3) nonzero_eq_divide_eq of_real_eq_0_iff) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 726 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 727 | lemma Arg_le_pi: "Arg z \<le> pi \<longleftrightarrow> 0 \<le> Im z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 728 | proof (cases "z=0") | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 729 | case True then show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 730 | by simp | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 731 | next | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 732 | case False | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 733 | have "0 \<le> Im z \<longleftrightarrow> 0 \<le> Im (of_real (cmod z) * exp (\<i> * complex_of_real (Arg z)))" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 734 | by (metis Arg_eq) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 735 | also have "... = (0 \<le> Im (exp (\<i> * complex_of_real (Arg z))))" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 736 | using False | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 737 | by (simp add: zero_le_mult_iff) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 738 | also have "... \<longleftrightarrow> Arg z \<le> pi" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 739 | by (simp add: Im_exp) (metis Arg_ge_0 Arg_lt_2pi sin_lt_zero sin_ge_zero not_le) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 740 | finally show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 741 | by blast | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 742 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 743 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 744 | lemma Arg_lt_pi: "0 < Arg z \<and> Arg z < pi \<longleftrightarrow> 0 < Im z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 745 | proof (cases "z=0") | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 746 | case True then show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 747 | by simp | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 748 | next | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 749 | case False | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 750 | have "0 < Im z \<longleftrightarrow> 0 < Im (of_real (cmod z) * exp (\<i> * complex_of_real (Arg z)))" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 751 | by (metis Arg_eq) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 752 | also have "... = (0 < Im (exp (\<i> * complex_of_real (Arg z))))" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 753 | using False | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 754 | by (simp add: zero_less_mult_iff) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 755 | also have "... \<longleftrightarrow> 0 < Arg z \<and> Arg z < pi" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 756 | using Arg_ge_0 Arg_lt_2pi sin_le_zero sin_gt_zero | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 757 | apply (auto simp: Im_exp) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 758 | using le_less apply fastforce | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 759 | using not_le by blast | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 760 | finally show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 761 | by blast | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 762 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 763 | |
| 61070 | 764 | lemma Arg_eq_0: "Arg z = 0 \<longleftrightarrow> z \<in> \<real> \<and> 0 \<le> Re z" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 765 | proof (cases "z=0") | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 766 | case True then show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 767 | by simp | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 768 | next | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 769 | case False | 
| 61070 | 770 | have "z \<in> \<real> \<and> 0 \<le> Re z \<longleftrightarrow> z \<in> \<real> \<and> 0 \<le> Re (of_real (cmod z) * exp (\<i> * complex_of_real (Arg z)))" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 771 | by (metis Arg_eq) | 
| 61070 | 772 | also have "... \<longleftrightarrow> z \<in> \<real> \<and> 0 \<le> Re (exp (\<i> * complex_of_real (Arg z)))" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 773 | using False | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 774 | by (simp add: zero_le_mult_iff) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 775 | also have "... \<longleftrightarrow> Arg z = 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 776 | apply (auto simp: Re_exp) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 777 | apply (metis Arg_lt_pi Arg_ge_0 Arg_le_pi cos_pi complex_is_Real_iff leD less_linear less_minus_one_simps(2) minus_minus neg_less_eq_nonneg order_refl) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 778 | using Arg_eq [of z] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 779 | apply (auto simp: Reals_def) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 780 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 781 | finally show ?thesis | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 782 | by blast | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 783 | qed | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 784 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 785 | corollary Arg_gt_0: | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 786 | assumes "z \<in> \<real> \<Longrightarrow> Re z < 0" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 787 | shows "Arg z > 0" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 788 | using Arg_eq_0 Arg_ge_0 assms dual_order.strict_iff_order by fastforce | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 789 | |
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 790 | lemma Arg_of_real: "Arg(of_real x) = 0 \<longleftrightarrow> 0 \<le> x" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 791 | by (simp add: Arg_eq_0) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 792 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 793 | lemma Arg_eq_pi: "Arg z = pi \<longleftrightarrow> z \<in> \<real> \<and> Re z < 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 794 | apply (cases "z=0", simp) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 795 | using Arg_eq_0 [of "-z"] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 796 | apply (auto simp: complex_is_Real_iff Arg_minus) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 797 | apply (simp add: complex_Re_Im_cancel_iff) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 798 | apply (metis Arg_minus pi_gt_zero add.left_neutral minus_minus minus_zero) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 799 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 800 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 801 | lemma Arg_eq_0_pi: "Arg z = 0 \<or> Arg z = pi \<longleftrightarrow> z \<in> \<real>" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 802 | using Arg_eq_0 Arg_eq_pi not_le by auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 803 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 804 | lemma Arg_inverse: "Arg(inverse z) = (if z \<in> \<real> \<and> 0 \<le> Re z then Arg z else 2*pi - Arg z)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 805 | apply (cases "z=0", simp) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 806 | apply (rule Arg_unique [of "inverse (norm z)"]) | 
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61711diff
changeset | 807 | using Arg_ge_0 [of z] Arg_lt_2pi [of z] Arg_eq [of z] Arg_eq_0 [of z] exp_two_pi_i | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 808 | apply (auto simp: of_real_numeral algebra_simps exp_diff divide_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 809 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 810 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 811 | lemma Arg_eq_iff: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 812 | assumes "w \<noteq> 0" "z \<noteq> 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 813 | shows "Arg w = Arg z \<longleftrightarrow> (\<exists>x. 0 < x & w = of_real x * z)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 814 | using assms Arg_eq [of z] Arg_eq [of w] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 815 | apply auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 816 | apply (rule_tac x="norm w / norm z" in exI) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 817 | apply (simp add: divide_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 818 | by (metis mult.commute mult.left_commute) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 819 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 820 | lemma Arg_inverse_eq_0: "Arg(inverse z) = 0 \<longleftrightarrow> Arg z = 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 821 | using complex_is_Real_iff | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 822 | apply (simp add: Arg_eq_0) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 823 | apply (auto simp: divide_simps not_sum_power2_lt_zero) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 824 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 825 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 826 | lemma Arg_divide: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 827 | assumes "w \<noteq> 0" "z \<noteq> 0" "Arg w \<le> Arg z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 828 | shows "Arg(z / w) = Arg z - Arg w" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 829 | apply (rule Arg_unique [of "norm(z / w)"]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 830 | using assms Arg_eq [of z] Arg_eq [of w] Arg_ge_0 [of w] Arg_lt_2pi [of z] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 831 | apply (auto simp: exp_diff norm_divide algebra_simps divide_simps) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 832 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 833 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 834 | lemma Arg_le_div_sum: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 835 | assumes "w \<noteq> 0" "z \<noteq> 0" "Arg w \<le> Arg z" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 836 | shows "Arg z = Arg w + Arg(z / w)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 837 | by (simp add: Arg_divide assms) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 838 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 839 | lemma Arg_le_div_sum_eq: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 840 | assumes "w \<noteq> 0" "z \<noteq> 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 841 | shows "Arg w \<le> Arg z \<longleftrightarrow> Arg z = Arg w + Arg(z / w)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 842 | using assms | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 843 | by (auto simp: Arg_ge_0 intro: Arg_le_div_sum) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 844 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 845 | lemma Arg_diff: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 846 | assumes "w \<noteq> 0" "z \<noteq> 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 847 | shows "Arg w - Arg z = (if Arg z \<le> Arg w then Arg(w / z) else Arg(w/z) - 2*pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 848 | using assms | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 849 | apply (auto simp: Arg_ge_0 Arg_divide not_le) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 850 | using Arg_divide [of w z] Arg_inverse [of "w/z"] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 851 | apply auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 852 | by (metis Arg_eq_0 less_irrefl minus_diff_eq right_minus_eq) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 853 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 854 | lemma Arg_add: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 855 | assumes "w \<noteq> 0" "z \<noteq> 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 856 | shows "Arg w + Arg z = (if Arg w + Arg z < 2*pi then Arg(w * z) else Arg(w * z) + 2*pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 857 | using assms | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 858 | using Arg_diff [of "w*z" z] Arg_le_div_sum_eq [of z "w*z"] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 859 | apply (auto simp: Arg_ge_0 Arg_divide not_le) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 860 | apply (metis Arg_lt_2pi add.commute) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 861 | apply (metis (no_types) Arg add.commute diff_0 diff_add_cancel diff_less_eq diff_minus_eq_add not_less) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 862 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 863 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 864 | lemma Arg_times: | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 865 | assumes "w \<noteq> 0" "z \<noteq> 0" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 866 | shows "Arg (w * z) = (if Arg w + Arg z < 2*pi then Arg w + Arg z | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 867 | else (Arg w + Arg z) - 2*pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 868 | using Arg_add [OF assms] | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 869 | by auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 870 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 871 | lemma Arg_cnj: "Arg(cnj z) = (if z \<in> \<real> \<and> 0 \<le> Re z then Arg z else 2*pi - Arg z)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 872 | apply (cases "z=0", simp) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 873 | apply (rule trans [of _ "Arg(inverse z)"]) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 874 | apply (simp add: Arg_eq_iff divide_simps complex_norm_square [symmetric] mult.commute) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 875 | apply (metis norm_eq_zero of_real_power zero_less_power2) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 876 | apply (auto simp: of_real_numeral Arg_inverse) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 877 | done | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 878 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 879 | lemma Arg_real: "z \<in> \<real> \<Longrightarrow> Arg z = (if 0 \<le> Re z then 0 else pi)" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 880 | using Arg_eq_0 Arg_eq_0_pi | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 881 | by auto | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 882 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59745diff
changeset | 883 | lemma Arg_exp: "0 \<le> Im z \<Longrightarrow> Im z < 2*pi \<Longrightarrow> Arg(exp z) = Im z" | 
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61711diff
changeset | 884 | by (rule Arg_unique [of "exp(Re z)"]) (auto simp: exp_eq_polar) | 
| 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61711diff
changeset | 885 | |
| 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61711diff
changeset | 886 | lemma complex_split_polar: | 
| 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61711diff
changeset | 887 | obtains r a::real where "z = complex_of_real r * (cos a + \<i> * sin a)" "0 \<le> r" "0 \<le> a" "a < 2*pi" | 
| 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61711diff
changeset | 888 | using Arg cis.ctr cis_conv_exp by fastforce | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 889 | |
| 61806 
d2e62ae01cd8
Cauchy's integral formula for circles.  Starting to fix eventually_mono.
 paulson <lp15@cam.ac.uk> parents: 
61762diff
changeset | 890 | lemma Re_Im_le_cmod: "Im w * sin \<phi> + Re w * cos \<phi> \<le> cmod w" | 
| 
d2e62ae01cd8
Cauchy's integral formula for circles.  Starting to fix eventually_mono.
 paulson <lp15@cam.ac.uk> parents: 
61762diff
changeset | 891 | proof (cases w rule: complex_split_polar) | 
| 
d2e62ae01cd8
Cauchy's integral formula for circles.  Starting to fix eventually_mono.
 paulson <lp15@cam.ac.uk> parents: 
61762diff
changeset | 892 | case (1 r a) with sin_cos_le1 [of a \<phi>] show ?thesis | 
| 
d2e62ae01cd8
Cauchy's integral formula for circles.  Starting to fix eventually_mono.
 paulson <lp15@cam.ac.uk> parents: 
61762diff
changeset | 893 | apply (simp add: norm_mult cmod_unit_one) | 
| 
d2e62ae01cd8
Cauchy's integral formula for circles.  Starting to fix eventually_mono.
 paulson <lp15@cam.ac.uk> parents: 
61762diff
changeset | 894 | by (metis (no_types, hide_lams) abs_le_D1 distrib_left mult.commute mult.left_commute mult_left_le) | 
| 
d2e62ae01cd8
Cauchy's integral formula for circles.  Starting to fix eventually_mono.
 paulson <lp15@cam.ac.uk> parents: 
61762diff
changeset | 895 | qed | 
| 
d2e62ae01cd8
Cauchy's integral formula for circles.  Starting to fix eventually_mono.
 paulson <lp15@cam.ac.uk> parents: 
61762diff
changeset | 896 | |
| 60420 | 897 | subsection\<open>Analytic properties of tangent function\<close> | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 898 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 899 | lemma cnj_tan: "cnj(tan z) = tan(cnj z)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 900 | by (simp add: cnj_cos cnj_sin tan_def) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 901 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 902 | lemma field_differentiable_at_tan: "~(cos z = 0) \<Longrightarrow> tan field_differentiable at z" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 903 | unfolding field_differentiable_def | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 904 | using DERIV_tan by blast | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 905 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 906 | lemma field_differentiable_within_tan: "~(cos z = 0) | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 907 | \<Longrightarrow> tan field_differentiable (at z within s)" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 908 | using field_differentiable_at_tan field_differentiable_at_within by blast | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 909 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 910 | lemma continuous_within_tan: "~(cos z = 0) \<Longrightarrow> continuous (at z within s) tan" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 911 | using continuous_at_imp_continuous_within isCont_tan by blast | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 912 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 913 | lemma continuous_on_tan [continuous_intros]: "(\<And>z. z \<in> s \<Longrightarrow> ~(cos z = 0)) \<Longrightarrow> continuous_on s tan" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 914 | by (simp add: continuous_at_imp_continuous_on) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 915 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 916 | lemma holomorphic_on_tan: "(\<And>z. z \<in> s \<Longrightarrow> ~(cos z = 0)) \<Longrightarrow> tan holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 917 | by (simp add: field_differentiable_within_tan holomorphic_on_def) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 918 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 919 | |
| 60420 | 920 | subsection\<open>Complex logarithms (the conventional principal value)\<close> | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 921 | |
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 922 | instantiation complex :: ln | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 923 | begin | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 924 | |
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 925 | definition ln_complex :: "complex \<Rightarrow> complex" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 926 | where "ln_complex \<equiv> \<lambda>z. THE w. exp w = z & -pi < Im(w) & Im(w) \<le> pi" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 927 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 928 | lemma | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 929 | assumes "z \<noteq> 0" | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 930 | shows exp_Ln [simp]: "exp(ln z) = z" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 931 | and mpi_less_Im_Ln: "-pi < Im(ln z)" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 932 | and Im_Ln_le_pi: "Im(ln z) \<le> pi" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 933 | proof - | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 934 | obtain \<psi> where z: "z / (cmod z) = Complex (cos \<psi>) (sin \<psi>)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 935 | using complex_unimodular_polar [of "z / (norm z)"] assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 936 | by (auto simp: norm_divide divide_simps) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 937 | obtain \<phi> where \<phi>: "- pi < \<phi>" "\<phi> \<le> pi" "sin \<phi> = sin \<psi>" "cos \<phi> = cos \<psi>" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 938 | using sincos_principal_value [of "\<psi>"] assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 939 | by (auto simp: norm_divide divide_simps) | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 940 | have "exp(ln z) = z & -pi < Im(ln z) & Im(ln z) \<le> pi" unfolding ln_complex_def | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 941 | apply (rule theI [where a = "Complex (ln(norm z)) \<phi>"]) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 942 | using z assms \<phi> | 
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61711diff
changeset | 943 | apply (auto simp: field_simps exp_complex_eqI exp_eq_polar cis.code) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 944 | done | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 945 | then show "exp(ln z) = z" "-pi < Im(ln z)" "Im(ln z) \<le> pi" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 946 | by auto | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 947 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 948 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 949 | lemma Ln_exp [simp]: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 950 | assumes "-pi < Im(z)" "Im(z) \<le> pi" | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 951 | shows "ln(exp z) = z" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 952 | apply (rule exp_complex_eqI) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 953 | using assms mpi_less_Im_Ln [of "exp z"] Im_Ln_le_pi [of "exp z"] | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 954 | apply auto | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 955 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 956 | |
| 60420 | 957 | subsection\<open>Relation to Real Logarithm\<close> | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 958 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 959 | lemma Ln_of_real: | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 960 | assumes "0 < z" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 961 | shows "ln(of_real z::complex) = of_real(ln z)" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 962 | proof - | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 963 | have "ln(of_real (exp (ln z))::complex) = ln (exp (of_real (ln z)))" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 964 | by (simp add: exp_of_real) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 965 | also have "... = of_real(ln z)" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 966 | using assms | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 967 | by (subst Ln_exp) auto | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 968 | finally show ?thesis | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 969 | using assms by simp | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 970 | qed | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 971 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 972 | corollary Ln_in_Reals [simp]: "z \<in> \<real> \<Longrightarrow> Re z > 0 \<Longrightarrow> ln z \<in> \<real>" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 973 | by (auto simp: Ln_of_real elim: Reals_cases) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 974 | |
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 975 | corollary Im_Ln_of_real [simp]: "r > 0 \<Longrightarrow> Im (ln (of_real r)) = 0" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 976 | by (simp add: Ln_of_real) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 977 | |
| 61070 | 978 | lemma cmod_Ln_Reals [simp]: "z \<in> \<real> \<Longrightarrow> 0 < Re z \<Longrightarrow> cmod (ln z) = norm (ln (Re z))" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 979 | using Ln_of_real by force | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 980 | |
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 981 | lemma Ln_1: "ln 1 = (0::complex)" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 982 | proof - | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 983 | have "ln (exp 0) = (0::complex)" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 984 | by (metis (mono_tags, hide_lams) Ln_of_real exp_zero ln_one of_real_0 of_real_1 zero_less_one) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 985 | then show ?thesis | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 986 | by simp | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 987 | qed | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 988 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 989 | instance | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 990 | by intro_classes (rule ln_complex_def Ln_1) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 991 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 992 | end | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 993 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 994 | abbreviation Ln :: "complex \<Rightarrow> complex" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 995 | where "Ln \<equiv> ln" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 996 | |
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 997 | lemma Ln_eq_iff: "w \<noteq> 0 \<Longrightarrow> z \<noteq> 0 \<Longrightarrow> (Ln w = Ln z \<longleftrightarrow> w = z)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 998 | by (metis exp_Ln) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 999 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1000 | lemma Ln_unique: "exp(z) = w \<Longrightarrow> -pi < Im(z) \<Longrightarrow> Im(z) \<le> pi \<Longrightarrow> Ln w = z" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1001 | using Ln_exp by blast | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1002 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1003 | lemma Re_Ln [simp]: "z \<noteq> 0 \<Longrightarrow> Re(Ln z) = ln(norm z)" | 
| 63092 | 1004 | by (metis exp_Ln ln_exp norm_exp_eq_Re) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1005 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1006 | corollary ln_cmod_le: | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1007 | assumes z: "z \<noteq> 0" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1008 | shows "ln (cmod z) \<le> cmod (Ln z)" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1009 | using norm_exp [of "Ln z", simplified exp_Ln [OF z]] | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1010 | by (metis Re_Ln complex_Re_le_cmod z) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1011 | |
| 62843 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1012 | proposition exists_complex_root: | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1013 | fixes z :: complex | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1014 | assumes "n \<noteq> 0" obtains w where "z = w ^ n" | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1015 | apply (cases "z=0") | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1016 | using assms apply (simp add: power_0_left) | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1017 | apply (rule_tac w = "exp(Ln z / n)" in that) | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1018 | apply (auto simp: assms exp_of_nat_mult [symmetric]) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1019 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1020 | |
| 62843 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1021 | corollary exists_complex_root_nonzero: | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1022 | fixes z::complex | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1023 | assumes "z \<noteq> 0" "n \<noteq> 0" | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1024 | obtains w where "w \<noteq> 0" "z = w ^ n" | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1025 | by (metis exists_complex_root [of n z] assms power_0_left) | 
| 
313d3b697c9a
Mostly renaming (from HOL Light to Isabelle conventions), with a couple of new results
 paulson <lp15@cam.ac.uk> parents: 
62534diff
changeset | 1026 | |
| 60420 | 1027 | subsection\<open>The Unwinding Number and the Ln-product Formula\<close> | 
| 1028 | ||
| 1029 | text\<open>Note that in this special case the unwinding number is -1, 0 or 1.\<close> | |
| 59862 | 1030 | |
| 1031 | definition unwinding :: "complex \<Rightarrow> complex" where | |
| 63589 | 1032 | "unwinding(z) = (z - Ln(exp z)) / (of_real(2*pi) * \<i>)" | 
| 1033 | ||
| 1034 | lemma unwinding_2pi: "(2*pi) * \<i> * unwinding(z) = z - Ln(exp z)" | |
| 59862 | 1035 | by (simp add: unwinding_def) | 
| 1036 | ||
| 1037 | lemma Ln_times_unwinding: | |
| 63589 | 1038 | "w \<noteq> 0 \<Longrightarrow> z \<noteq> 0 \<Longrightarrow> Ln(w * z) = Ln(w) + Ln(z) - (2*pi) * \<i> * unwinding(Ln w + Ln z)" | 
| 59862 | 1039 | using unwinding_2pi by (simp add: exp_add) | 
| 1040 | ||
| 1041 | ||
| 60420 | 1042 | subsection\<open>Derivative of Ln away from the branch cut\<close> | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1043 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1044 | lemma | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1045 | assumes "z \<notin> \<real>\<^sub>\<le>\<^sub>0" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1046 | shows has_field_derivative_Ln: "(Ln has_field_derivative inverse(z)) (at z)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1047 | and Im_Ln_less_pi: "Im (Ln z) < pi" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1048 | proof - | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1049 | have znz: "z \<noteq> 0" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1050 | using assms by auto | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1051 | then have "Im (Ln z) \<noteq> pi" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1052 | by (metis (no_types) Im_exp Ln_in_Reals assms complex_nonpos_Reals_iff complex_is_Real_iff exp_Ln mult_zero_right not_less pi_neq_zero sin_pi znz) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1053 | then show *: "Im (Ln z) < pi" using assms Im_Ln_le_pi | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1054 | by (simp add: le_neq_trans znz) | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1055 | have "(exp has_field_derivative z) (at (Ln z))" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1056 | by (metis znz DERIV_exp exp_Ln) | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1057 | then show "(Ln has_field_derivative inverse(z)) (at z)" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1058 | apply (rule has_complex_derivative_inverse_strong_x | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1059 |               [where s = "{w. -pi < Im(w) \<and> Im(w) < pi}"])
 | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1060 | using znz * | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1061 | apply (auto simp: Transcendental.continuous_on_exp [OF continuous_on_id] open_Collect_conj open_halfspace_Im_gt open_halfspace_Im_lt mpi_less_Im_Ln) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1062 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1063 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1064 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1065 | declare has_field_derivative_Ln [derivative_intros] | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1066 | declare has_field_derivative_Ln [THEN DERIV_chain2, derivative_intros] | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1067 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1068 | lemma field_differentiable_at_Ln: "z \<notin> \<real>\<^sub>\<le>\<^sub>0 \<Longrightarrow> Ln field_differentiable at z" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1069 | using field_differentiable_def has_field_derivative_Ln by blast | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1070 | |
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1071 | lemma field_differentiable_within_Ln: "z \<notin> \<real>\<^sub>\<le>\<^sub>0 | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1072 | \<Longrightarrow> Ln field_differentiable (at z within s)" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1073 | using field_differentiable_at_Ln field_differentiable_within_subset by blast | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1074 | |
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1075 | lemma continuous_at_Ln: "z \<notin> \<real>\<^sub>\<le>\<^sub>0 \<Longrightarrow> continuous (at z) Ln" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1076 | by (simp add: field_differentiable_imp_continuous_at field_differentiable_within_Ln) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1077 | |
| 59862 | 1078 | lemma isCont_Ln' [simp]: | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1079 | "\<lbrakk>isCont f z; f z \<notin> \<real>\<^sub>\<le>\<^sub>0\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. Ln (f x)) z" | 
| 59862 | 1080 | by (blast intro: isCont_o2 [OF _ continuous_at_Ln]) | 
| 1081 | ||
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1082 | lemma continuous_within_Ln: "z \<notin> \<real>\<^sub>\<le>\<^sub>0 \<Longrightarrow> continuous (at z within s) Ln" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1083 | using continuous_at_Ln continuous_at_imp_continuous_within by blast | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1084 | |
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1085 | lemma continuous_on_Ln [continuous_intros]: "(\<And>z. z \<in> s \<Longrightarrow> z \<notin> \<real>\<^sub>\<le>\<^sub>0) \<Longrightarrow> continuous_on s Ln" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1086 | by (simp add: continuous_at_imp_continuous_on continuous_within_Ln) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1087 | |
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1088 | lemma holomorphic_on_Ln: "(\<And>z. z \<in> s \<Longrightarrow> z \<notin> \<real>\<^sub>\<le>\<^sub>0) \<Longrightarrow> Ln holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1089 | by (simp add: field_differentiable_within_Ln holomorphic_on_def) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1090 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1091 | |
| 60420 | 1092 | subsection\<open>Quadrant-type results for Ln\<close> | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1093 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1094 | lemma cos_lt_zero_pi: "pi/2 < x \<Longrightarrow> x < 3*pi/2 \<Longrightarrow> cos x < 0" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1095 | using cos_minus_pi cos_gt_zero_pi [of "x-pi"] | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1096 | by simp | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1097 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1098 | lemma Re_Ln_pos_lt: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1099 | assumes "z \<noteq> 0" | 
| 61945 | 1100 | shows "\<bar>Im(Ln z)\<bar> < pi/2 \<longleftrightarrow> 0 < Re(z)" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1101 | proof - | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1102 |   { fix w
 | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1103 | assume "w = Ln z" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1104 | then have w: "Im w \<le> pi" "- pi < Im w" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1105 | using Im_Ln_le_pi [of z] mpi_less_Im_Ln [of z] assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1106 | by auto | 
| 61945 | 1107 | then have "\<bar>Im w\<bar> < pi/2 \<longleftrightarrow> 0 < Re(exp w)" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1108 | apply (auto simp: Re_exp zero_less_mult_iff cos_gt_zero_pi) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1109 | using cos_lt_zero_pi [of "-(Im w)"] cos_lt_zero_pi [of "(Im w)"] | 
| 62390 | 1110 | apply (simp add: abs_if split: if_split_asm) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1111 | apply (metis (no_types) cos_minus cos_pi_half eq_divide_eq_numeral1(1) eq_numeral_simps(4) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1112 | less_numeral_extra(3) linorder_neqE_linordered_idom minus_mult_minus minus_mult_right | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1113 | mult_numeral_1_right) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1114 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1115 | } | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1116 | then show ?thesis using assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1117 | by auto | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1118 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1119 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1120 | lemma Re_Ln_pos_le: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1121 | assumes "z \<noteq> 0" | 
| 61945 | 1122 | shows "\<bar>Im(Ln z)\<bar> \<le> pi/2 \<longleftrightarrow> 0 \<le> Re(z)" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1123 | proof - | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1124 |   { fix w
 | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1125 | assume "w = Ln z" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1126 | then have w: "Im w \<le> pi" "- pi < Im w" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1127 | using Im_Ln_le_pi [of z] mpi_less_Im_Ln [of z] assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1128 | by auto | 
| 61945 | 1129 | then have "\<bar>Im w\<bar> \<le> pi/2 \<longleftrightarrow> 0 \<le> Re(exp w)" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1130 | apply (auto simp: Re_exp zero_le_mult_iff cos_ge_zero) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1131 | using cos_lt_zero_pi [of "- (Im w)"] cos_lt_zero_pi [of "(Im w)"] not_le | 
| 62390 | 1132 | apply (auto simp: abs_if split: if_split_asm) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1133 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1134 | } | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1135 | then show ?thesis using assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1136 | by auto | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1137 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1138 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1139 | lemma Im_Ln_pos_lt: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1140 | assumes "z \<noteq> 0" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1141 | shows "0 < Im(Ln z) \<and> Im(Ln z) < pi \<longleftrightarrow> 0 < Im(z)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1142 | proof - | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1143 |   { fix w
 | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1144 | assume "w = Ln z" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1145 | then have w: "Im w \<le> pi" "- pi < Im w" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1146 | using Im_Ln_le_pi [of z] mpi_less_Im_Ln [of z] assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1147 | by auto | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1148 | then have "0 < Im w \<and> Im w < pi \<longleftrightarrow> 0 < Im(exp w)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1149 | using sin_gt_zero [of "- (Im w)"] sin_gt_zero [of "(Im w)"] | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1150 | apply (auto simp: Im_exp zero_less_mult_iff) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1151 | using less_linear apply fastforce | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1152 | using less_linear apply fastforce | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1153 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1154 | } | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1155 | then show ?thesis using assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1156 | by auto | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1157 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1158 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1159 | lemma Im_Ln_pos_le: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1160 | assumes "z \<noteq> 0" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1161 | shows "0 \<le> Im(Ln z) \<and> Im(Ln z) \<le> pi \<longleftrightarrow> 0 \<le> Im(z)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1162 | proof - | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1163 |   { fix w
 | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1164 | assume "w = Ln z" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1165 | then have w: "Im w \<le> pi" "- pi < Im w" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1166 | using Im_Ln_le_pi [of z] mpi_less_Im_Ln [of z] assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1167 | by auto | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1168 | then have "0 \<le> Im w \<and> Im w \<le> pi \<longleftrightarrow> 0 \<le> Im(exp w)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1169 | using sin_ge_zero [of "- (Im w)"] sin_ge_zero [of "(Im w)"] | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1170 | apply (auto simp: Im_exp zero_le_mult_iff sin_ge_zero) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1171 | apply (metis not_le not_less_iff_gr_or_eq pi_not_less_zero sin_eq_0_pi) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1172 | done } | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1173 | then show ?thesis using assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1174 | by auto | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1175 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1176 | |
| 61945 | 1177 | lemma Re_Ln_pos_lt_imp: "0 < Re(z) \<Longrightarrow> \<bar>Im(Ln z)\<bar> < pi/2" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1178 | by (metis Re_Ln_pos_lt less_irrefl zero_complex.simps(1)) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1179 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1180 | lemma Im_Ln_pos_lt_imp: "0 < Im(z) \<Longrightarrow> 0 < Im(Ln z) \<and> Im(Ln z) < pi" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1181 | by (metis Im_Ln_pos_lt not_le order_refl zero_complex.simps(2)) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1182 | |
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1183 | text\<open>A reference to the set of positive real numbers\<close> | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1184 | lemma Im_Ln_eq_0: "z \<noteq> 0 \<Longrightarrow> (Im(Ln z) = 0 \<longleftrightarrow> 0 < Re(z) \<and> Im(z) = 0)" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1185 | by (metis Im_complex_of_real Im_exp Ln_in_Reals Re_Ln_pos_lt Re_Ln_pos_lt_imp | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1186 | Re_complex_of_real complex_is_Real_iff exp_Ln exp_of_real pi_gt_zero) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1187 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1188 | lemma Im_Ln_eq_pi: "z \<noteq> 0 \<Longrightarrow> (Im(Ln z) = pi \<longleftrightarrow> Re(z) < 0 \<and> Im(z) = 0)" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1189 | by (metis Im_Ln_eq_0 Im_Ln_pos_le Im_Ln_pos_lt add.left_neutral complex_eq less_eq_real_def | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1190 | mult_zero_right not_less_iff_gr_or_eq pi_ge_zero pi_neq_zero rcis_zero_arg rcis_zero_mod) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1191 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1192 | |
| 60420 | 1193 | subsection\<open>More Properties of Ln\<close> | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1194 | |
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1195 | lemma cnj_Ln: "z \<notin> \<real>\<^sub>\<le>\<^sub>0 \<Longrightarrow> cnj(Ln z) = Ln(cnj z)" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1196 | apply (cases "z=0", auto) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1197 | apply (rule exp_complex_eqI) | 
| 62390 | 1198 | apply (auto simp: abs_if split: if_split_asm) | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1199 | using Im_Ln_less_pi Im_Ln_le_pi apply force | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1200 | apply (metis complex_cnj_zero_iff diff_minus_eq_add diff_strict_mono minus_less_iff | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1201 | mpi_less_Im_Ln mult.commute mult_2_right) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1202 | by (metis exp_Ln exp_cnj) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1203 | |
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1204 | lemma Ln_inverse: "z \<notin> \<real>\<^sub>\<le>\<^sub>0 \<Longrightarrow> Ln(inverse z) = -(Ln z)" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1205 | apply (cases "z=0", auto) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1206 | apply (rule exp_complex_eqI) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1207 | using mpi_less_Im_Ln [of z] mpi_less_Im_Ln [of "inverse z"] | 
| 62390 | 1208 | apply (auto simp: abs_if exp_minus split: if_split_asm) | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1209 | apply (metis Im_Ln_less_pi Im_Ln_le_pi add.commute add_mono_thms_linordered_field(3) inverse_nonzero_iff_nonzero mult_2) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1210 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1211 | |
| 63589 | 1212 | lemma Ln_minus1 [simp]: "Ln(-1) = \<i> * pi" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1213 | apply (rule exp_complex_eqI) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1214 | using Im_Ln_le_pi [of "-1"] mpi_less_Im_Ln [of "-1"] cis_conv_exp cis_pi | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1215 | apply (auto simp: abs_if) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1216 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1217 | |
| 63589 | 1218 | lemma Ln_ii [simp]: "Ln \<i> = \<i> * of_real pi/2" | 
| 1219 | using Ln_exp [of "\<i> * (of_real pi/2)"] | |
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1220 | unfolding exp_Euler | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1221 | by simp | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1222 | |
| 63589 | 1223 | lemma Ln_minus_ii [simp]: "Ln(-\<i>) = - (\<i> * pi/2)" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1224 | proof - | 
| 63589 | 1225 | have "Ln(-\<i>) = Ln(inverse \<i>)" by simp | 
| 1226 | also have "... = - (Ln \<i>)" using Ln_inverse by blast | |
| 1227 | also have "... = - (\<i> * pi/2)" by simp | |
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1228 | finally show ?thesis . | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1229 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1230 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1231 | lemma Ln_times: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1232 | assumes "w \<noteq> 0" "z \<noteq> 0" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1233 | shows "Ln(w * z) = | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1234 | (if Im(Ln w + Ln z) \<le> -pi then | 
| 63589 | 1235 | (Ln(w) + Ln(z)) + \<i> * of_real(2*pi) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1236 | else if Im(Ln w + Ln z) > pi then | 
| 63589 | 1237 | (Ln(w) + Ln(z)) - \<i> * of_real(2*pi) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1238 | else Ln(w) + Ln(z))" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1239 | using pi_ge_zero Im_Ln_le_pi [of w] Im_Ln_le_pi [of z] | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1240 | using assms mpi_less_Im_Ln [of w] mpi_less_Im_Ln [of z] | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1241 | by (auto simp: exp_add exp_diff sin_double cos_double exp_Euler intro!: Ln_unique) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1242 | |
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1243 | corollary Ln_times_simple: | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1244 | "\<lbrakk>w \<noteq> 0; z \<noteq> 0; -pi < Im(Ln w) + Im(Ln z); Im(Ln w) + Im(Ln z) \<le> pi\<rbrakk> | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1245 | \<Longrightarrow> Ln(w * z) = Ln(w) + Ln(z)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1246 | by (simp add: Ln_times) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1247 | |
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1248 | corollary Ln_times_of_real: | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1249 | "\<lbrakk>r > 0; z \<noteq> 0\<rbrakk> \<Longrightarrow> Ln(of_real r * z) = ln r + Ln(z)" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1250 | using mpi_less_Im_Ln Im_Ln_le_pi | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1251 | by (force simp: Ln_times) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1252 | |
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1253 | corollary Ln_divide_of_real: | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1254 | "\<lbrakk>r > 0; z \<noteq> 0\<rbrakk> \<Longrightarrow> Ln(z / of_real r) = Ln(z) - ln r" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1255 | using Ln_times_of_real [of "inverse r" z] | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1256 | by (simp add: ln_inverse Ln_of_real mult.commute divide_inverse of_real_inverse [symmetric] | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1257 | del: of_real_inverse) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1258 | |
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1259 | lemma Ln_minus: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1260 | assumes "z \<noteq> 0" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1261 | shows "Ln(-z) = (if Im(z) \<le> 0 \<and> ~(Re(z) < 0 \<and> Im(z) = 0) | 
| 63589 | 1262 | then Ln(z) + \<i> * pi | 
| 1263 | else Ln(z) - \<i> * pi)" (is "_ = ?rhs") | |
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1264 | using Im_Ln_le_pi [of z] mpi_less_Im_Ln [of z] assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1265 | Im_Ln_eq_pi [of z] Im_Ln_pos_lt [of z] | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1266 | by (fastforce simp: exp_add exp_diff exp_Euler intro!: Ln_unique) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1267 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1268 | lemma Ln_inverse_if: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1269 | assumes "z \<noteq> 0" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1270 | shows "Ln (inverse z) = (if z \<in> \<real>\<^sub>\<le>\<^sub>0 then -(Ln z) + \<i> * 2 * complex_of_real pi else -(Ln z))" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1271 | proof (cases "z \<in> \<real>\<^sub>\<le>\<^sub>0") | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1272 | case False then show ?thesis | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1273 | by (simp add: Ln_inverse) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1274 | next | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1275 | case True | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1276 | then have z: "Im z = 0" "Re z < 0" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1277 | using assms | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1278 | apply (auto simp: complex_nonpos_Reals_iff) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1279 | by (metis complex_is_Real_iff le_imp_less_or_eq of_real_0 of_real_Re) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1280 | have "Ln(inverse z) = Ln(- (inverse (-z)))" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1281 | by simp | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1282 | also have "... = Ln (inverse (-z)) + \<i> * complex_of_real pi" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1283 | using assms z | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1284 | apply (simp add: Ln_minus) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1285 | apply (simp add: field_simps) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1286 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1287 | also have "... = - Ln (- z) + \<i> * complex_of_real pi" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1288 | apply (subst Ln_inverse) | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1289 | using z by (auto simp add: complex_nonneg_Reals_iff) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1290 | also have "... = - (Ln z) + \<i> * 2 * complex_of_real pi" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1291 | apply (subst Ln_minus [OF assms]) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1292 | using assms z | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1293 | apply simp | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1294 | done | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1295 | finally show ?thesis by (simp add: True) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1296 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1297 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1298 | lemma Ln_times_ii: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1299 | assumes "z \<noteq> 0" | 
| 63589 | 1300 | shows "Ln(\<i> * z) = (if 0 \<le> Re(z) | Im(z) < 0 | 
| 1301 | then Ln(z) + \<i> * of_real pi/2 | |
| 1302 | else Ln(z) - \<i> * of_real(3 * pi/2))" | |
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1303 | using Im_Ln_le_pi [of z] mpi_less_Im_Ln [of z] assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1304 | Im_Ln_eq_pi [of z] Im_Ln_pos_lt [of z] Re_Ln_pos_le [of z] | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1305 | by (auto simp: Ln_times) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1306 | |
| 61524 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1307 | lemma Ln_of_nat: "0 < n \<Longrightarrow> Ln (of_nat n) = of_real (ln (of_nat n))" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1308 | by (subst of_real_of_nat_eq[symmetric], subst Ln_of_real[symmetric]) simp_all | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1309 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1310 | lemma Ln_of_nat_over_of_nat: | 
| 61524 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1311 | assumes "m > 0" "n > 0" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1312 | shows "Ln (of_nat m / of_nat n) = of_real (ln (of_nat m) - ln (of_nat n))" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1313 | proof - | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1314 | have "of_nat m / of_nat n = (of_real (of_nat m / of_nat n) :: complex)" by simp | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1315 | also from assms have "Ln ... = of_real (ln (of_nat m / of_nat n))" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1316 | by (simp add: Ln_of_real[symmetric]) | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1317 | also from assms have "... = of_real (ln (of_nat m) - ln (of_nat n))" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1318 | by (simp add: ln_div) | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1319 | finally show ?thesis . | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1320 | qed | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1321 | |
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1322 | |
| 60420 | 1323 | subsection\<open>Relation between Ln and Arg, and hence continuity of Arg\<close> | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1324 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1325 | lemma Arg_Ln: | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1326 | assumes "0 < Arg z" shows "Arg z = Im(Ln(-z)) + pi" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1327 | proof (cases "z = 0") | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1328 | case True | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1329 | with assms show ?thesis | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1330 | by simp | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1331 | next | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1332 | case False | 
| 63589 | 1333 | then have "z / of_real(norm z) = exp(\<i> * of_real(Arg z))" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1334 | using Arg [of z] | 
| 64240 | 1335 | by (metis abs_norm_cancel nonzero_mult_div_cancel_left norm_of_real zero_less_norm_iff) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1336 | then have "- z / of_real(norm z) = exp (\<i> * (of_real (Arg z) - pi))" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1337 | using cis_conv_exp cis_pi | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1338 | by (auto simp: exp_diff algebra_simps) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1339 | then have "ln (- z / of_real(norm z)) = ln (exp (\<i> * (of_real (Arg z) - pi)))" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1340 | by simp | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1341 | also have "... = \<i> * (of_real(Arg z) - pi)" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1342 | using Arg [of z] assms pi_not_less_zero | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1343 | by auto | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1344 | finally have "Arg z = Im (Ln (- z / of_real (cmod z))) + pi" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1345 | by simp | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1346 | also have "... = Im (Ln (-z) - ln (cmod z)) + pi" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1347 | by (metis diff_0_right minus_diff_eq zero_less_norm_iff Ln_divide_of_real False) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1348 | also have "... = Im (Ln (-z)) + pi" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1349 | by simp | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1350 | finally show ?thesis . | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1351 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1352 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1353 | lemma continuous_at_Arg: | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1354 | assumes "z \<notin> \<real>\<^sub>\<ge>\<^sub>0" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1355 | shows "continuous (at z) Arg" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1356 | proof - | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1357 | have *: "isCont (\<lambda>z. Im (Ln (- z)) + pi) z" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1358 | by (rule Complex.isCont_Im isCont_Ln' continuous_intros | simp add: assms complex_is_Real_iff)+ | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1359 | have [simp]: "\<And>x. \<lbrakk>Im x \<noteq> 0\<rbrakk> \<Longrightarrow> Im (Ln (- x)) + pi = Arg x" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1360 | using Arg_Ln Arg_gt_0 complex_is_Real_iff by auto | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1361 | consider "Re z < 0" | "Im z \<noteq> 0" using assms | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1362 | using complex_nonneg_Reals_iff not_le by blast | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1363 | then have [simp]: "(\<lambda>z. Im (Ln (- z)) + pi) \<midarrow>z\<rightarrow> Arg z" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1364 | using "*" by (simp add: isCont_def) (metis Arg_Ln Arg_gt_0 complex_is_Real_iff) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1365 | show ?thesis | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1366 | apply (simp add: continuous_at) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1367 | apply (rule Lim_transform_within_open [where s= "-\<real>\<^sub>\<ge>\<^sub>0" and f = "\<lambda>z. Im(Ln(-z)) + pi"]) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1368 | apply (auto simp add: not_le Arg_Ln [OF Arg_gt_0] complex_nonneg_Reals_iff closed_def [symmetric]) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1369 | using assms apply (force simp add: complex_nonneg_Reals_iff) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1370 | done | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1371 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1372 | |
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1373 | lemma Ln_series: | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1374 | fixes z :: complex | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1375 | assumes "norm z < 1" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1376 | shows "(\<lambda>n. (-1)^Suc n / of_nat n * z^n) sums ln (1 + z)" (is "(\<lambda>n. ?f n * z^n) sums _") | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1377 | proof - | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1378 | let ?F = "\<lambda>z. \<Sum>n. ?f n * z^n" and ?F' = "\<lambda>z. \<Sum>n. diffs ?f n * z^n" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1379 | have r: "conv_radius ?f = 1" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1380 | by (intro conv_radius_ratio_limit_nonzero[of _ 1]) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1381 | (simp_all add: norm_divide LIMSEQ_Suc_n_over_n del: of_nat_Suc) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1382 | |
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1383 | have "\<exists>c. \<forall>z\<in>ball 0 1. ln (1 + z) - ?F z = c" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1384 | proof (rule has_field_derivative_zero_constant) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1385 | fix z :: complex assume z': "z \<in> ball 0 1" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1386 | hence z: "norm z < 1" by (simp add: dist_0_norm) | 
| 63040 | 1387 | define t :: complex where "t = of_real (1 + norm z) / 2" | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1388 | from z have t: "norm z < norm t" "norm t < 1" unfolding t_def | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1389 | by (simp_all add: field_simps norm_divide del: of_real_add) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1390 | |
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1391 | have "Re (-z) \<le> norm (-z)" by (rule complex_Re_le_cmod) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1392 | also from z have "... < 1" by simp | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1393 | finally have "((\<lambda>z. ln (1 + z)) has_field_derivative inverse (1+z)) (at z)" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1394 | by (auto intro!: derivative_eq_intros simp: complex_nonpos_Reals_iff) | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1395 | moreover have "(?F has_field_derivative ?F' z) (at z)" using t r | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1396 | by (intro termdiffs_strong[of _ t] summable_in_conv_radius) simp_all | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1397 | ultimately have "((\<lambda>z. ln (1 + z) - ?F z) has_field_derivative (inverse (1 + z) - ?F' z)) | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1398 | (at z within ball 0 1)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1399 | by (intro derivative_intros) (simp_all add: at_within_open[OF z']) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1400 | also have "(\<lambda>n. of_nat n * ?f n * z ^ (n - Suc 0)) sums ?F' z" using t r | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1401 | by (intro diffs_equiv termdiff_converges[OF t(1)] summable_in_conv_radius) simp_all | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1402 | from sums_split_initial_segment[OF this, of 1] | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1403 | have "(\<lambda>i. (-z) ^ i) sums ?F' z" by (simp add: power_minus[of z] del: of_nat_Suc) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1404 | hence "?F' z = inverse (1 + z)" using z by (simp add: sums_iff suminf_geometric divide_inverse) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1405 | also have "inverse (1 + z) - inverse (1 + z) = 0" by simp | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1406 | finally show "((\<lambda>z. ln (1 + z) - ?F z) has_field_derivative 0) (at z within ball 0 1)" . | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1407 | qed simp_all | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1408 | then obtain c where c: "\<And>z. z \<in> ball 0 1 \<Longrightarrow> ln (1 + z) - ?F z = c" by blast | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1409 | from c[of 0] have "c = 0" by (simp only: powser_zero) simp | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1410 | with c[of z] assms have "ln (1 + z) = ?F z" by (simp add: dist_0_norm) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1411 | moreover have "summable (\<lambda>n. ?f n * z^n)" using assms r | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1412 | by (intro summable_in_conv_radius) simp_all | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1413 | ultimately show ?thesis by (simp add: sums_iff) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1414 | qed | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1415 | |
| 63721 | 1416 | lemma Ln_series': "cmod z < 1 \<Longrightarrow> (\<lambda>n. - ((-z)^n) / of_nat n) sums ln (1 + z)" | 
| 1417 | by (drule Ln_series) (simp add: power_minus') | |
| 1418 | ||
| 1419 | lemma ln_series': | |
| 1420 | assumes "abs (x::real) < 1" | |
| 1421 | shows "(\<lambda>n. - ((-x)^n) / of_nat n) sums ln (1 + x)" | |
| 1422 | proof - | |
| 1423 | from assms have "(\<lambda>n. - ((-of_real x)^n) / of_nat n) sums ln (1 + complex_of_real x)" | |
| 1424 | by (intro Ln_series') simp_all | |
| 1425 | also have "(\<lambda>n. - ((-of_real x)^n) / of_nat n) = (\<lambda>n. complex_of_real (- ((-x)^n) / of_nat n))" | |
| 1426 | by (rule ext) simp | |
| 1427 | also from assms have "ln (1 + complex_of_real x) = of_real (ln (1 + x))" | |
| 1428 | by (subst Ln_of_real [symmetric]) simp_all | |
| 1429 | finally show ?thesis by (subst (asm) sums_of_real_iff) | |
| 1430 | qed | |
| 1431 | ||
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1432 | lemma Ln_approx_linear: | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1433 | fixes z :: complex | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1434 | assumes "norm z < 1" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1435 | shows "norm (ln (1 + z) - z) \<le> norm z^2 / (1 - norm z)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1436 | proof - | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1437 | let ?f = "\<lambda>n. (-1)^Suc n / of_nat n" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1438 | from assms have "(\<lambda>n. ?f n * z^n) sums ln (1 + z)" using Ln_series by simp | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1439 | moreover have "(\<lambda>n. (if n = 1 then 1 else 0) * z^n) sums z" using powser_sums_if[of 1] by simp | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1440 | ultimately have "(\<lambda>n. (?f n - (if n = 1 then 1 else 0)) * z^n) sums (ln (1 + z) - z)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1441 | by (subst left_diff_distrib, intro sums_diff) simp_all | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1442 | from sums_split_initial_segment[OF this, of "Suc 1"] | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1443 | have "(\<lambda>i. (-(z^2)) * inverse (2 + of_nat i) * (- z)^i) sums (Ln (1 + z) - z)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1444 | by (simp add: power2_eq_square mult_ac power_minus[of z] divide_inverse) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1445 | hence "(Ln (1 + z) - z) = (\<Sum>i. (-(z^2)) * inverse (of_nat (i+2)) * (-z)^i)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1446 | by (simp add: sums_iff) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1447 | also have A: "summable (\<lambda>n. norm z^2 * (inverse (real_of_nat (Suc (Suc n))) * cmod z ^ n))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1448 | by (rule summable_mult, rule summable_comparison_test_ev[OF _ summable_geometric[of "norm z"]]) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1449 | (auto simp: assms field_simps intro!: always_eventually) | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1450 | hence "norm (\<Sum>i. (-(z^2)) * inverse (of_nat (i+2)) * (-z)^i) \<le> | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1451 | (\<Sum>i. norm (-(z^2) * inverse (of_nat (i+2)) * (-z)^i))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1452 | by (intro summable_norm) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1453 | (auto simp: norm_power norm_inverse norm_mult mult_ac simp del: of_nat_add of_nat_Suc) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1454 | also have "norm ((-z)^2 * (-z)^i) * inverse (of_nat (i+2)) \<le> norm ((-z)^2 * (-z)^i) * 1" for i | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1455 | by (intro mult_left_mono) (simp_all add: divide_simps) | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1456 | hence "(\<Sum>i. norm (-(z^2) * inverse (of_nat (i+2)) * (-z)^i)) \<le> | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1457 | (\<Sum>i. norm (-(z^2) * (-z)^i))" using A assms | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1458 | apply (simp_all only: norm_power norm_inverse norm_divide norm_mult) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1459 | apply (intro suminf_le summable_mult summable_geometric) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1460 | apply (auto simp: norm_power field_simps simp del: of_nat_add of_nat_Suc) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1461 | done | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1462 | also have "... = norm z^2 * (\<Sum>i. norm z^i)" using assms | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1463 | by (subst suminf_mult [symmetric]) (auto intro!: summable_geometric simp: norm_mult norm_power) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1464 | also have "(\<Sum>i. norm z^i) = inverse (1 - norm z)" using assms | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1465 | by (subst suminf_geometric) (simp_all add: divide_inverse) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1466 | also have "norm z^2 * ... = norm z^2 / (1 - norm z)" by (simp add: divide_inverse) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1467 | finally show ?thesis . | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1468 | qed | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1469 | |
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 1470 | |
| 60420 | 1471 | text\<open>Relation between Arg and arctangent in upper halfplane\<close> | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1472 | lemma Arg_arctan_upperhalf: | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1473 | assumes "0 < Im z" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1474 | shows "Arg z = pi/2 - arctan(Re z / Im z)" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1475 | proof (cases "z = 0") | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1476 | case True with assms show ?thesis | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1477 | by simp | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1478 | next | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1479 | case False | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1480 | show ?thesis | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1481 | apply (rule Arg_unique [of "norm z"]) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1482 | using False assms arctan [of "Re z / Im z"] pi_ge_two pi_half_less_two | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1483 | apply (auto simp: exp_Euler cos_diff sin_diff) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1484 | using norm_complex_def [of z, symmetric] | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1485 | apply (simp add: sin_of_real cos_of_real sin_arctan cos_arctan field_simps real_sqrt_divide) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1486 | apply (metis complex_eq mult.assoc ring_class.ring_distribs(2)) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1487 | done | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1488 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1489 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1490 | lemma Arg_eq_Im_Ln: | 
| 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1491 | assumes "0 \<le> Im z" "0 < Re z" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1492 | shows "Arg z = Im (Ln z)" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1493 | proof (cases "z = 0 \<or> Im z = 0") | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1494 | case True then show ?thesis | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1495 | using assms Arg_eq_0 complex_is_Real_iff | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1496 | apply auto | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1497 | by (metis Arg_eq_0_pi Arg_eq_pi Im_Ln_eq_0 Im_Ln_eq_pi less_numeral_extra(3) zero_complex.simps(1)) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1498 | next | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1499 | case False | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1500 | then have "Arg z > 0" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1501 | using Arg_gt_0 complex_is_Real_iff by blast | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1502 | then show ?thesis | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1503 | using assms False | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1504 | by (subst Arg_Ln) (auto simp: Ln_minus) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1505 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1506 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1507 | lemma continuous_within_upperhalf_Arg: | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1508 | assumes "z \<noteq> 0" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1509 |     shows "continuous (at z within {z. 0 \<le> Im z}) Arg"
 | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1510 | proof (cases "z \<in> \<real>\<^sub>\<ge>\<^sub>0") | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1511 | case False then show ?thesis | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1512 | using continuous_at_Arg continuous_at_imp_continuous_within by auto | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1513 | next | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1514 | case True | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1515 | then have z: "z \<in> \<real>" "0 < Re z" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1516 | using assms by (auto simp: complex_nonneg_Reals_iff complex_is_Real_iff complex_neq_0) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1517 | then have [simp]: "Arg z = 0" "Im (Ln z) = 0" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1518 | by (auto simp: Arg_eq_0 Im_Ln_eq_0 assms complex_is_Real_iff) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1519 | show ?thesis | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1520 | proof (clarsimp simp add: continuous_within Lim_within dist_norm) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1521 | fix e::real | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1522 | assume "0 < e" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1523 | moreover have "continuous (at z) (\<lambda>x. Im (Ln x))" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1524 | using z by (simp add: continuous_at_Ln complex_nonpos_Reals_iff) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1525 | ultimately | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1526 | obtain d where d: "d>0" "\<And>x. x \<noteq> z \<Longrightarrow> cmod (x - z) < d \<Longrightarrow> \<bar>Im (Ln x)\<bar> < e" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1527 | by (auto simp: continuous_within Lim_within dist_norm) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1528 |     { fix x
 | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1529 | assume "cmod (x - z) < Re z / 2" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1530 | then have "\<bar>Re x - Re z\<bar> < Re z / 2" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1531 | by (metis le_less_trans abs_Re_le_cmod minus_complex.simps(1)) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1532 | then have "0 < Re x" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1533 | using z by linarith | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1534 | } | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1535 | then show "\<exists>d>0. \<forall>x. 0 \<le> Im x \<longrightarrow> x \<noteq> z \<and> cmod (x - z) < d \<longrightarrow> \<bar>Arg x\<bar> < e" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1536 | apply (rule_tac x="min d (Re z / 2)" in exI) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1537 | using z d | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1538 | apply (auto simp: Arg_eq_Im_Ln) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1539 | done | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1540 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1541 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1542 | |
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1543 | lemma continuous_on_upperhalf_Arg: "continuous_on ({z. 0 \<le> Im z} - {0}) Arg"
 | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1544 | apply (auto simp: continuous_on_eq_continuous_within) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1545 | by (metis Diff_subset continuous_within_subset continuous_within_upperhalf_Arg) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1546 | |
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1547 | lemma open_Arg_less_Int: | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1548 | assumes "0 \<le> s" "t \<le> 2*pi" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1549 |     shows "open ({y. s < Arg y} \<inter> {y. Arg y < t})"
 | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1550 | proof - | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1551 | have 1: "continuous_on (UNIV - \<real>\<^sub>\<ge>\<^sub>0) Arg" | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1552 | using continuous_at_Arg continuous_at_imp_continuous_within | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1553 | by (auto simp: continuous_on_eq_continuous_within) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1554 | have 2: "open (UNIV - \<real>\<^sub>\<ge>\<^sub>0 :: complex set)" by (simp add: open_Diff) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1555 |   have "open ({z. s < z} \<inter> {z. z < t})"
 | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1556 | using open_lessThan [of t] open_greaterThan [of s] | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1557 | by (metis greaterThan_def lessThan_def open_Int) | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1558 |   moreover have "{y. s < Arg y} \<inter> {y. Arg y < t} \<subseteq> - \<real>\<^sub>\<ge>\<^sub>0"
 | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1559 | using assms by (auto simp: Arg_real complex_nonneg_Reals_iff complex_is_Real_iff) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1560 | ultimately show ?thesis | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1561 |     using continuous_imp_open_vimage [OF 1 2, of  "{z. Re z > s} \<inter> {z. Re z < t}"]
 | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1562 | by auto | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1563 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1564 | |
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1565 | lemma open_Arg_gt: "open {z. t < Arg z}"
 | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1566 | proof (cases "t < 0") | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1567 |   case True then have "{z. t < Arg z} = UNIV"
 | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1568 | using Arg_ge_0 less_le_trans by auto | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1569 | then show ?thesis | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1570 | by simp | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1571 | next | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1572 | case False then show ?thesis | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1573 | using open_Arg_less_Int [of t "2*pi"] Arg_lt_2pi | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1574 | by auto | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1575 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1576 | |
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1577 | lemma closed_Arg_le: "closed {z. Arg z \<le> t}"
 | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1578 | using open_Arg_gt [of t] | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1579 | by (simp add: closed_def Set.Collect_neg_eq [symmetric] not_le) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1580 | |
| 60420 | 1581 | subsection\<open>Complex Powers\<close> | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1582 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1583 | lemma powr_to_1 [simp]: "z powr 1 = (z::complex)" | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1584 | by (simp add: powr_def) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1585 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1586 | lemma powr_nat: | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1587 | fixes n::nat and z::complex shows "z powr n = (if z = 0 then 0 else z^n)" | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1588 | by (simp add: exp_of_nat_mult powr_def) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1589 | |
| 60809 
457abb82fb9e
the Cauchy integral theorem and related material
 paulson <lp15@cam.ac.uk> parents: 
60420diff
changeset | 1590 | lemma powr_add_complex: | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1591 | fixes w::complex shows "w powr (z1 + z2) = w powr z1 * w powr z2" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1592 | by (simp add: powr_def algebra_simps exp_add) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1593 | |
| 60809 
457abb82fb9e
the Cauchy integral theorem and related material
 paulson <lp15@cam.ac.uk> parents: 
60420diff
changeset | 1594 | lemma powr_minus_complex: | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1595 | fixes w::complex shows "w powr (-z) = inverse(w powr z)" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1596 | by (simp add: powr_def exp_minus) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1597 | |
| 60809 
457abb82fb9e
the Cauchy integral theorem and related material
 paulson <lp15@cam.ac.uk> parents: 
60420diff
changeset | 1598 | lemma powr_diff_complex: | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1599 | fixes w::complex shows "w powr (z1 - z2) = w powr z1 / w powr z2" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1600 | by (simp add: powr_def algebra_simps exp_diff) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1601 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1602 | lemma norm_powr_real: "w \<in> \<real> \<Longrightarrow> 0 < Re w \<Longrightarrow> norm(w powr z) = exp(Re z * ln(Re w))" | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1603 | apply (simp add: powr_def) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1604 | using Im_Ln_eq_0 complex_is_Real_iff norm_complex_def | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1605 | by auto | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1606 | |
| 61524 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1607 | lemma cnj_powr: | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1608 | assumes "Im a = 0 \<Longrightarrow> Re a \<ge> 0" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1609 | shows "cnj (a powr b) = cnj a powr cnj b" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1610 | proof (cases "a = 0") | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1611 | case False | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1612 | with assms have "a \<notin> \<real>\<^sub>\<le>\<^sub>0" by (auto simp: complex_eq_iff complex_nonpos_Reals_iff) | 
| 61524 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1613 | with False show ?thesis by (simp add: powr_def exp_cnj cnj_Ln) | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1614 | qed simp | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1615 | |
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1616 | lemma powr_real_real: | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1617 | "\<lbrakk>w \<in> \<real>; z \<in> \<real>; 0 < Re w\<rbrakk> \<Longrightarrow> w powr z = exp(Re z * ln(Re w))" | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1618 | apply (simp add: powr_def) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1619 | by (metis complex_eq complex_is_Real_iff diff_0 diff_0_right diff_minus_eq_add exp_ln exp_not_eq_zero | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1620 | exp_of_real Ln_of_real mult_zero_right of_real_0 of_real_mult) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1621 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1622 | lemma powr_of_real: | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1623 | fixes x::real and y::real | 
| 63296 | 1624 | shows "0 \<le> x \<Longrightarrow> of_real x powr (of_real y::complex) = of_real (x powr y)" | 
| 1625 | by (simp_all add: powr_def exp_eq_polar) | |
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1626 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1627 | lemma norm_powr_real_mono: | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1628 | "\<lbrakk>w \<in> \<real>; 1 < Re w\<rbrakk> | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1629 | \<Longrightarrow> cmod(w powr z1) \<le> cmod(w powr z2) \<longleftrightarrow> Re z1 \<le> Re z2" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1630 | by (auto simp: powr_def algebra_simps Reals_def Ln_of_real) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1631 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1632 | lemma powr_times_real: | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1633 | "\<lbrakk>x \<in> \<real>; y \<in> \<real>; 0 \<le> Re x; 0 \<le> Re y\<rbrakk> | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1634 | \<Longrightarrow> (x * y) powr z = x powr z * y powr z" | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1635 | by (auto simp: Reals_def powr_def Ln_times exp_add algebra_simps less_eq_real_def Ln_of_real) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1636 | |
| 61524 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1637 | lemma powr_neg_real_complex: | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1638 | shows "(- of_real x) powr a = (-1) powr (of_real (sgn x) * a) * of_real x powr (a :: complex)" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1639 | proof (cases "x = 0") | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1640 | assume x: "x \<noteq> 0" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1641 | hence "(-x) powr a = exp (a * ln (-of_real x))" by (simp add: powr_def) | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1642 | also from x have "ln (-of_real x) = Ln (of_real x) + of_real (sgn x) * pi * \<i>" | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1643 | by (simp add: Ln_minus Ln_of_real) | 
| 63092 | 1644 | also from x have "exp (a * ...) = cis pi powr (of_real (sgn x) * a) * of_real x powr a" | 
| 61524 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1645 | by (simp add: powr_def exp_add algebra_simps Ln_of_real cis_conv_exp) | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1646 | also note cis_pi | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1647 | finally show ?thesis by simp | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1648 | qed simp_all | 
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1649 | |
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1650 | lemma has_field_derivative_powr: | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1651 | fixes z :: complex | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1652 | shows "z \<notin> \<real>\<^sub>\<le>\<^sub>0 \<Longrightarrow> ((\<lambda>z. z powr s) has_field_derivative (s * z powr (s - 1))) (at z)" | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1653 | apply (cases "z=0", auto) | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1654 | apply (simp add: powr_def) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1655 | apply (rule DERIV_transform_at [where d = "norm z" and f = "\<lambda>z. exp (s * Ln z)"]) | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1656 | apply (auto simp: dist_complex_def) | 
| 63092 | 1657 | apply (intro derivative_eq_intros | simp)+ | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1658 | apply (simp add: field_simps exp_diff) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1659 | done | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1660 | |
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1661 | declare has_field_derivative_powr[THEN DERIV_chain2, derivative_intros] | 
| 61524 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1662 | |
| 
f2e51e704a96
added many small lemmas about setsum/setprod/powr/...
 eberlm parents: 
61518diff
changeset | 1663 | |
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1664 | lemma has_field_derivative_powr_right: | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1665 | "w \<noteq> 0 \<Longrightarrow> ((\<lambda>z. w powr z) has_field_derivative Ln w * w powr z) (at z)" | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 1666 | apply (simp add: powr_def) | 
| 63092 | 1667 | apply (intro derivative_eq_intros | simp)+ | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1668 | done | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1669 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1670 | lemma field_differentiable_powr_right: | 
| 62533 
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
 paulson <lp15@cam.ac.uk> parents: 
62393diff
changeset | 1671 | fixes w::complex | 
| 
bc25f3916a99
new material to Blochj's theorem, as well as supporting lemmas
 paulson <lp15@cam.ac.uk> parents: 
62393diff
changeset | 1672 | shows | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1673 | "w \<noteq> 0 \<Longrightarrow> (\<lambda>z. w powr z) field_differentiable (at z)" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1674 | using field_differentiable_def has_field_derivative_powr_right by blast | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1675 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1676 | lemma holomorphic_on_powr_right: | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1677 | "f holomorphic_on s \<Longrightarrow> w \<noteq> 0 \<Longrightarrow> (\<lambda>z. w powr (f z)) holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1678 | unfolding holomorphic_on_def field_differentiable_def | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1679 | by (metis (full_types) DERIV_chain' has_field_derivative_powr_right) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1680 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1681 | lemma norm_powr_real_powr: | 
| 63295 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1682 | "w \<in> \<real> \<Longrightarrow> 0 \<le> Re w \<Longrightarrow> cmod (w powr z) = Re w powr Re z" | 
| 63594 
bd218a9320b5
HOL-Multivariate_Analysis: rename theories for more descriptive names
 hoelzl parents: 
63589diff
changeset | 1683 | by (cases "w = 0") (auto simp add: norm_powr_real powr_def Im_Ln_eq_0 | 
| 63295 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1684 | complex_is_Real_iff in_Reals_norm complex_eq_iff) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1685 | |
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1686 | lemma tendsto_ln_complex [tendsto_intros]: | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1687 | assumes "(f \<longlongrightarrow> a) F" "a \<notin> \<real>\<^sub>\<le>\<^sub>0" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1688 | shows "((\<lambda>z. ln (f z :: complex)) \<longlongrightarrow> ln a) F" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1689 | using tendsto_compose[OF continuous_at_Ln[of a, unfolded isCont_def] assms(1)] assms(2) by simp | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1690 | |
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1691 | lemma tendsto_powr_complex: | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1692 | fixes f g :: "_ \<Rightarrow> complex" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1693 | assumes a: "a \<notin> \<real>\<^sub>\<le>\<^sub>0" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1694 | assumes f: "(f \<longlongrightarrow> a) F" and g: "(g \<longlongrightarrow> b) F" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1695 | shows "((\<lambda>z. f z powr g z) \<longlongrightarrow> a powr b) F" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1696 | proof - | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1697 | from a have [simp]: "a \<noteq> 0" by auto | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1698 | from f g a have "((\<lambda>z. exp (g z * ln (f z))) \<longlongrightarrow> a powr b) F" (is ?P) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1699 | by (auto intro!: tendsto_intros simp: powr_def) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1700 |   also {
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1701 | have "eventually (\<lambda>z. z \<noteq> 0) (nhds a)" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1702 | by (intro t1_space_nhds) simp_all | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1703 | with f have "eventually (\<lambda>z. f z \<noteq> 0) F" using filterlim_iff by blast | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1704 | } | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1705 | hence "?P \<longleftrightarrow> ((\<lambda>z. f z powr g z) \<longlongrightarrow> a powr b) F" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1706 | by (intro tendsto_cong refl) (simp_all add: powr_def mult_ac) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1707 | finally show ?thesis . | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1708 | qed | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1709 | |
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1710 | lemma tendsto_powr_complex_0: | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1711 | fixes f g :: "'a \<Rightarrow> complex" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1712 | assumes f: "(f \<longlongrightarrow> 0) F" and g: "(g \<longlongrightarrow> b) F" and b: "Re b > 0" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1713 | shows "((\<lambda>z. f z powr g z) \<longlongrightarrow> 0) F" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1714 | proof (rule tendsto_norm_zero_cancel) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1715 | define h where | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1716 | "h = (\<lambda>z. if f z = 0 then 0 else exp (Re (g z) * ln (cmod (f z)) + abs (Im (g z)) * pi))" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1717 |   {
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1718 | fix z :: 'a assume z: "f z \<noteq> 0" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1719 | define c where "c = abs (Im (g z)) * pi" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1720 | from mpi_less_Im_Ln[OF z] Im_Ln_le_pi[OF z] | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1721 | have "abs (Im (Ln (f z))) \<le> pi" by simp | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1722 | from mult_left_mono[OF this, of "abs (Im (g z))"] | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1723 | have "abs (Im (g z) * Im (ln (f z))) \<le> c" by (simp add: abs_mult c_def) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1724 | hence "-Im (g z) * Im (ln (f z)) \<le> c" by simp | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1725 | hence "norm (f z powr g z) \<le> h z" by (simp add: powr_def field_simps h_def c_def) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1726 | } | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1727 | hence le: "norm (f z powr g z) \<le> h z" for z by (cases "f x = 0") (simp_all add: h_def) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1728 | |
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1729 |   have g': "(g \<longlongrightarrow> b) (inf F (principal {z. f z \<noteq> 0}))"
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1730 | by (rule tendsto_mono[OF _ g]) simp_all | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1731 |   have "((\<lambda>x. norm (f x)) \<longlongrightarrow> 0) (inf F (principal {z. f z \<noteq> 0}))"
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1732 | by (subst tendsto_norm_zero_iff, rule tendsto_mono[OF _ f]) simp_all | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1733 |   moreover {
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1734 |     have "filterlim (\<lambda>x. norm (f x)) (principal {0<..}) (principal {z. f z \<noteq> 0})"
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1735 | by (auto simp: filterlim_def) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1736 |     hence "filterlim (\<lambda>x. norm (f x)) (principal {0<..})
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1737 |              (inf F (principal {z. f z \<noteq> 0}))"
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1738 | by (rule filterlim_mono) simp_all | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1739 | } | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1740 |   ultimately have norm: "filterlim (\<lambda>x. norm (f x)) (at_right 0) (inf F (principal {z. f z \<noteq> 0}))"
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1741 | by (simp add: filterlim_inf at_within_def) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1742 | |
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1743 |   have A: "LIM x inf F (principal {z. f z \<noteq> 0}). Re (g x) * -ln (cmod (f x)) :> at_top"
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1744 | by (rule filterlim_tendsto_pos_mult_at_top tendsto_intros g' b | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1745 | filterlim_compose[OF filterlim_uminus_at_top_at_bot] filterlim_compose[OF ln_at_0] norm)+ | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1746 |   have B: "LIM x inf F (principal {z. f z \<noteq> 0}).
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1747 | -\<bar>Im (g x)\<bar> * pi + -(Re (g x) * ln (cmod (f x))) :> at_top" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1748 | by (rule filterlim_tendsto_add_at_top tendsto_intros g')+ (insert A, simp_all) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1749 | have C: "(h \<longlongrightarrow> 0) F" unfolding h_def | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1750 | by (intro filterlim_If tendsto_const filterlim_compose[OF exp_at_bot]) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1751 | (insert B, auto simp: filterlim_uminus_at_bot algebra_simps) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1752 | show "((\<lambda>x. norm (f x powr g x)) \<longlongrightarrow> 0) F" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1753 | by (rule Lim_null_comparison[OF always_eventually C]) (insert le, auto) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1754 | qed | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1755 | |
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1756 | lemma tendsto_powr_complex' [tendsto_intros]: | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1757 | fixes f g :: "_ \<Rightarrow> complex" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1758 | assumes fz: "a \<notin> \<real>\<^sub>\<le>\<^sub>0 \<or> (a = 0 \<and> Re b > 0)" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1759 | assumes fg: "(f \<longlongrightarrow> a) F" "(g \<longlongrightarrow> b) F" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1760 | shows "((\<lambda>z. f z powr g z) \<longlongrightarrow> a powr b) F" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1761 | proof (cases "a = 0") | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1762 | case True | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1763 | with assms show ?thesis by (auto intro!: tendsto_powr_complex_0) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1764 | next | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1765 | case False | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1766 | with assms show ?thesis by (auto intro!: tendsto_powr_complex elim!: nonpos_Reals_cases) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1767 | qed | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1768 | |
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1769 | lemma continuous_powr_complex: | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1770 | assumes "f (netlimit F) \<notin> \<real>\<^sub>\<le>\<^sub>0" "continuous F f" "continuous F g" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1771 | shows "continuous F (\<lambda>z. f z powr g z :: complex)" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1772 | using assms unfolding continuous_def by (intro tendsto_powr_complex) simp_all | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1773 | |
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1774 | lemma isCont_powr_complex [continuous_intros]: | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1775 | assumes "f z \<notin> \<real>\<^sub>\<le>\<^sub>0" "isCont f z" "isCont g z" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1776 | shows "isCont (\<lambda>z. f z powr g z :: complex) z" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1777 | using assms unfolding isCont_def by (intro tendsto_powr_complex) simp_all | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1778 | |
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1779 | lemma continuous_on_powr_complex [continuous_intros]: | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1780 |   assumes "A \<subseteq> {z. Re (f z) \<ge> 0 \<or> Im (f z) \<noteq> 0}"
 | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1781 | assumes "\<And>z. z \<in> A \<Longrightarrow> f z = 0 \<Longrightarrow> Re (g z) > 0" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1782 | assumes "continuous_on A f" "continuous_on A g" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1783 | shows "continuous_on A (\<lambda>z. f z powr g z)" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1784 | unfolding continuous_on_def | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1785 | proof | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1786 | fix z assume z: "z \<in> A" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1787 | show "((\<lambda>z. f z powr g z) \<longlongrightarrow> f z powr g z) (at z within A)" | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1788 | proof (cases "f z = 0") | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1789 | case False | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1790 | from assms(1,2) z have "Re (f z) \<ge> 0 \<or> Im (f z) \<noteq> 0" "f z = 0 \<longrightarrow> Re (g z) > 0" by auto | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1791 | with assms(3,4) z show ?thesis | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1792 | by (intro tendsto_powr_complex') | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1793 | (auto elim!: nonpos_Reals_cases simp: complex_eq_iff continuous_on_def) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1794 | next | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1795 | case True | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1796 | with assms z show ?thesis | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1797 | by (auto intro!: tendsto_powr_complex_0 simp: continuous_on_def) | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1798 | qed | 
| 
52792bb9126e
Facts about HK integration, complex powers, Gamma function
 eberlm parents: 
63092diff
changeset | 1799 | qed | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1800 | |
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1801 | |
| 60420 | 1802 | subsection\<open>Some Limits involving Logarithms\<close> | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1803 | |
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1804 | lemma lim_Ln_over_power: | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1805 | fixes s::complex | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1806 | assumes "0 < Re s" | 
| 61973 | 1807 | shows "((\<lambda>n. Ln n / (n powr s)) \<longlongrightarrow> 0) sequentially" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1808 | proof (simp add: lim_sequentially dist_norm, clarify) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1809 | fix e::real | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1810 | assume e: "0 < e" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1811 | have "\<exists>xo>0. \<forall>x\<ge>xo. 0 < e * 2 + (e * Re s * 2 - 2) * x + e * (Re s)\<^sup>2 * x\<^sup>2" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1812 | proof (rule_tac x="2/(e * (Re s)\<^sup>2)" in exI, safe) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1813 | show "0 < 2 / (e * (Re s)\<^sup>2)" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1814 | using e assms by (simp add: field_simps) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1815 | next | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1816 | fix x::real | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1817 | assume x: "2 / (e * (Re s)\<^sup>2) \<le> x" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1818 | then have "x>0" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1819 | using e assms | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1820 | by (metis less_le_trans mult_eq_0_iff mult_pos_pos pos_less_divide_eq power2_eq_square | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1821 | zero_less_numeral) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1822 | then show "0 < e * 2 + (e * Re s * 2 - 2) * x + e * (Re s)\<^sup>2 * x\<^sup>2" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1823 | using e assms x | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1824 | apply (auto simp: field_simps) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1825 | apply (rule_tac y = "e * (x\<^sup>2 * (Re s)\<^sup>2)" in le_less_trans) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1826 | apply (auto simp: power2_eq_square field_simps add_pos_pos) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1827 | done | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1828 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1829 | then have "\<exists>xo>0. \<forall>x\<ge>xo. x / e < 1 + (Re s * x) + (1/2) * (Re s * x)^2" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1830 | using e by (simp add: field_simps) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1831 | then have "\<exists>xo>0. \<forall>x\<ge>xo. x / e < exp (Re s * x)" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1832 | using assms | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1833 | by (force intro: less_le_trans [OF _ exp_lower_taylor_quadratic]) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1834 | then have "\<exists>xo>0. \<forall>x\<ge>xo. x < e * exp (Re s * x)" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1835 | using e by (auto simp: field_simps) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1836 | with e show "\<exists>no. \<forall>n\<ge>no. norm (Ln (of_nat n) / of_nat n powr s) < e" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1837 | apply (auto simp: norm_divide norm_powr_real divide_simps) | 
| 61942 | 1838 | apply (rule_tac x="nat \<lceil>exp xo\<rceil>" in exI) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1839 | apply clarify | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1840 | apply (drule_tac x="ln n" in spec) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1841 | apply (auto simp: exp_less_mono nat_ceiling_le_eq not_le) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1842 | apply (metis exp_less_mono exp_ln not_le of_nat_0_less_iff) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1843 | done | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1844 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1845 | |
| 61973 | 1846 | lemma lim_Ln_over_n: "((\<lambda>n. Ln(of_nat n) / of_nat n) \<longlongrightarrow> 0) sequentially" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1847 | using lim_Ln_over_power [of 1] | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1848 | by simp | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1849 | |
| 61070 | 1850 | lemma Ln_Reals_eq: "x \<in> \<real> \<Longrightarrow> Re x > 0 \<Longrightarrow> Ln x = of_real (ln (Re x))" | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1851 | using Ln_of_real by force | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1852 | |
| 61070 | 1853 | lemma powr_Reals_eq: "x \<in> \<real> \<Longrightarrow> Re x > 0 \<Longrightarrow> x powr complex_of_real y = of_real (x powr y)" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1854 | by (simp add: powr_of_real) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1855 | |
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1856 | lemma lim_ln_over_power: | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1857 | fixes s :: real | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1858 | assumes "0 < s" | 
| 61973 | 1859 | shows "((\<lambda>n. ln n / (n powr s)) \<longlongrightarrow> 0) sequentially" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1860 | using lim_Ln_over_power [of "of_real s", THEN filterlim_sequentially_Suc [THEN iffD2]] assms | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1861 | apply (subst filterlim_sequentially_Suc [symmetric]) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1862 | apply (simp add: lim_sequentially dist_norm | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1863 | Ln_Reals_eq norm_powr_real_powr norm_divide) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1864 | done | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1865 | |
| 61973 | 1866 | lemma lim_ln_over_n: "((\<lambda>n. ln(real_of_nat n) / of_nat n) \<longlongrightarrow> 0) sequentially" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1867 | using lim_ln_over_power [of 1, THEN filterlim_sequentially_Suc [THEN iffD2]] | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1868 | apply (subst filterlim_sequentially_Suc [symmetric]) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1869 | apply (simp add: lim_sequentially dist_norm) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1870 | done | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1871 | |
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1872 | lemma lim_1_over_complex_power: | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1873 | assumes "0 < Re s" | 
| 61973 | 1874 | shows "((\<lambda>n. 1 / (of_nat n powr s)) \<longlongrightarrow> 0) sequentially" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1875 | proof - | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1876 | have "\<forall>n>0. 3 \<le> n \<longrightarrow> 1 \<le> ln (real_of_nat n)" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1877 | using ln3_gt_1 | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1878 | by (force intro: order_trans [of _ "ln 3"] ln3_gt_1) | 
| 61969 | 1879 | moreover have "(\<lambda>n. cmod (Ln (of_nat n) / of_nat n powr s)) \<longlonglongrightarrow> 0" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1880 | using lim_Ln_over_power [OF assms] | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1881 | by (metis tendsto_norm_zero_iff) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1882 | ultimately show ?thesis | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1883 | apply (auto intro!: Lim_null_comparison [where g = "\<lambda>n. norm (Ln(of_nat n) / of_nat n powr s)"]) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1884 | apply (auto simp: norm_divide divide_simps eventually_sequentially) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1885 | done | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1886 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1887 | |
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1888 | lemma lim_1_over_real_power: | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1889 | fixes s :: real | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1890 | assumes "0 < s" | 
| 61973 | 1891 | shows "((\<lambda>n. 1 / (of_nat n powr s)) \<longlongrightarrow> 0) sequentially" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1892 | using lim_1_over_complex_power [of "of_real s", THEN filterlim_sequentially_Suc [THEN iffD2]] assms | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1893 | apply (subst filterlim_sequentially_Suc [symmetric]) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1894 | apply (simp add: lim_sequentially dist_norm) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1895 | apply (simp add: Ln_Reals_eq norm_powr_real_powr norm_divide) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1896 | done | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1897 | |
| 61973 | 1898 | lemma lim_1_over_Ln: "((\<lambda>n. 1 / Ln(of_nat n)) \<longlongrightarrow> 0) sequentially" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1899 | proof (clarsimp simp add: lim_sequentially dist_norm norm_divide divide_simps) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1900 | fix r::real | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1901 | assume "0 < r" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1902 | have ir: "inverse (exp (inverse r)) > 0" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1903 | by simp | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1904 | obtain n where n: "1 < of_nat n * inverse (exp (inverse r))" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1905 | using ex_less_of_nat_mult [of _ 1, OF ir] | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1906 | by auto | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1907 | then have "exp (inverse r) < of_nat n" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1908 | by (simp add: divide_simps) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1909 | then have "ln (exp (inverse r)) < ln (of_nat n)" | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1910 | by (metis exp_gt_zero less_trans ln_exp ln_less_cancel_iff) | 
| 60420 | 1911 | with \<open>0 < r\<close> have "1 < r * ln (real_of_nat n)" | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1912 | by (simp add: field_simps) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1913 | moreover have "n > 0" using n | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1914 | using neq0_conv by fastforce | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1915 | ultimately show "\<exists>no. \<forall>n. Ln (of_nat n) \<noteq> 0 \<longrightarrow> no \<le> n \<longrightarrow> 1 < r * cmod (Ln (of_nat n))" | 
| 60420 | 1916 | using n \<open>0 < r\<close> | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1917 | apply (rule_tac x=n in exI) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1918 | apply (auto simp: divide_simps) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1919 | apply (erule less_le_trans, auto) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1920 | done | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1921 | qed | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1922 | |
| 61973 | 1923 | lemma lim_1_over_ln: "((\<lambda>n. 1 / ln(real_of_nat n)) \<longlongrightarrow> 0) sequentially" | 
| 63092 | 1924 | using lim_1_over_Ln [THEN filterlim_sequentially_Suc [THEN iffD2]] | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1925 | apply (subst filterlim_sequentially_Suc [symmetric]) | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1926 | apply (simp add: lim_sequentially dist_norm) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 1927 | apply (simp add: Ln_Reals_eq norm_powr_real_powr norm_divide) | 
| 60150 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1928 | done | 
| 
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
 paulson <lp15@cam.ac.uk> parents: 
60141diff
changeset | 1929 | |
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 1930 | |
| 60420 | 1931 | subsection\<open>Relation between Square Root and exp/ln, hence its derivative\<close> | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1932 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1933 | lemma csqrt_exp_Ln: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1934 | assumes "z \<noteq> 0" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1935 | shows "csqrt z = exp(Ln(z) / 2)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1936 | proof - | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1937 | have "(exp (Ln z / 2))\<^sup>2 = (exp (Ln z))" | 
| 64240 | 1938 | by (metis exp_double nonzero_mult_div_cancel_left times_divide_eq_right zero_neq_numeral) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1939 | also have "... = z" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1940 | using assms exp_Ln by blast | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1941 | finally have "csqrt z = csqrt ((exp (Ln z / 2))\<^sup>2)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1942 | by simp | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1943 | also have "... = exp (Ln z / 2)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1944 | apply (subst csqrt_square) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1945 | using cos_gt_zero_pi [of "(Im (Ln z) / 2)"] Im_Ln_le_pi mpi_less_Im_Ln assms | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1946 | apply (auto simp: Re_exp Im_exp zero_less_mult_iff zero_le_mult_iff, fastforce+) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1947 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1948 | finally show ?thesis using assms csqrt_square | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1949 | by simp | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1950 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1951 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1952 | lemma csqrt_inverse: | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1953 | assumes "z \<notin> \<real>\<^sub>\<le>\<^sub>0" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1954 | shows "csqrt (inverse z) = inverse (csqrt z)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1955 | proof (cases "z=0", simp) | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1956 | assume "z \<noteq> 0" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1957 | then show ?thesis | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1958 | using assms csqrt_exp_Ln Ln_inverse exp_minus | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1959 | by (simp add: csqrt_exp_Ln Ln_inverse exp_minus) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1960 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1961 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1962 | lemma cnj_csqrt: | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1963 | assumes "z \<notin> \<real>\<^sub>\<le>\<^sub>0" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1964 | shows "cnj(csqrt z) = csqrt(cnj z)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1965 | proof (cases "z=0", simp) | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1966 | assume "z \<noteq> 0" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1967 | then show ?thesis | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1968 | by (simp add: assms cnj_Ln csqrt_exp_Ln exp_cnj) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1969 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1970 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1971 | lemma has_field_derivative_csqrt: | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1972 | assumes "z \<notin> \<real>\<^sub>\<le>\<^sub>0" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1973 | shows "(csqrt has_field_derivative inverse(2 * csqrt z)) (at z)" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1974 | proof - | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1975 | have z: "z \<noteq> 0" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1976 | using assms by auto | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1977 | then have *: "inverse z = inverse (2*z) * 2" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1978 | by (simp add: divide_simps) | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1979 | have [simp]: "exp (Ln z / 2) * inverse z = inverse (csqrt z)" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1980 | by (simp add: z field_simps csqrt_exp_Ln [symmetric]) (metis power2_csqrt power2_eq_square) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1981 | have "Im z = 0 \<Longrightarrow> 0 < Re z" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1982 | using assms complex_nonpos_Reals_iff not_less by blast | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1983 | with z have "((\<lambda>z. exp (Ln z / 2)) has_field_derivative inverse (2 * csqrt z)) (at z)" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1984 | by (force intro: derivative_eq_intros * simp add: assms) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1985 | then show ?thesis | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1986 | apply (rule DERIV_transform_at[where d = "norm z"]) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 1987 | apply (intro z derivative_eq_intros | simp add: assms)+ | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1988 | using z | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1989 | apply (metis csqrt_exp_Ln dist_0_norm less_irrefl) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1990 | done | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1991 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 1992 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1993 | lemma field_differentiable_at_csqrt: | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1994 | "z \<notin> \<real>\<^sub>\<le>\<^sub>0 \<Longrightarrow> csqrt field_differentiable at z" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1995 | using field_differentiable_def has_field_derivative_csqrt by blast | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1996 | |
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1997 | lemma field_differentiable_within_csqrt: | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1998 | "z \<notin> \<real>\<^sub>\<le>\<^sub>0 \<Longrightarrow> csqrt field_differentiable (at z within s)" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 1999 | using field_differentiable_at_csqrt field_differentiable_within_subset by blast | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2000 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2001 | lemma continuous_at_csqrt: | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2002 | "z \<notin> \<real>\<^sub>\<le>\<^sub>0 \<Longrightarrow> continuous (at z) csqrt" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2003 | by (simp add: field_differentiable_within_csqrt field_differentiable_imp_continuous_at) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2004 | |
| 59862 | 2005 | corollary isCont_csqrt' [simp]: | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2006 | "\<lbrakk>isCont f z; f z \<notin> \<real>\<^sub>\<le>\<^sub>0\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. csqrt (f x)) z" | 
| 59862 | 2007 | by (blast intro: isCont_o2 [OF _ continuous_at_csqrt]) | 
| 2008 | ||
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2009 | lemma continuous_within_csqrt: | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2010 | "z \<notin> \<real>\<^sub>\<le>\<^sub>0 \<Longrightarrow> continuous (at z within s) csqrt" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2011 | by (simp add: field_differentiable_imp_continuous_at field_differentiable_within_csqrt) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2012 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2013 | lemma continuous_on_csqrt [continuous_intros]: | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2014 | "(\<And>z. z \<in> s \<Longrightarrow> z \<notin> \<real>\<^sub>\<le>\<^sub>0) \<Longrightarrow> continuous_on s csqrt" | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2015 | by (simp add: continuous_at_imp_continuous_on continuous_within_csqrt) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2016 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2017 | lemma holomorphic_on_csqrt: | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2018 | "(\<And>z. z \<in> s \<Longrightarrow> z \<notin> \<real>\<^sub>\<le>\<^sub>0) \<Longrightarrow> csqrt holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2019 | by (simp add: field_differentiable_within_csqrt holomorphic_on_def) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2020 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2021 | lemma continuous_within_closed_nontrivial: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2022 | "closed s \<Longrightarrow> a \<notin> s ==> continuous (at a within s) f" | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2023 | using open_Compl | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2024 | by (force simp add: continuous_def eventually_at_topological filterlim_iff open_Collect_neg) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2025 | |
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2026 | lemma continuous_within_csqrt_posreal: | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2027 |     "continuous (at z within (\<real> \<inter> {w. 0 \<le> Re(w)})) csqrt"
 | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2028 | proof (cases "z \<in> \<real>\<^sub>\<le>\<^sub>0") | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2029 | case True | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2030 | then have "Im z = 0" "Re z < 0 \<or> z = 0" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2031 | using cnj.code complex_cnj_zero_iff by (auto simp: complex_nonpos_Reals_iff) fastforce | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2032 | then show ?thesis | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2033 | apply (auto simp: continuous_within_closed_nontrivial [OF closed_Real_halfspace_Re_ge]) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2034 | apply (auto simp: continuous_within_eps_delta norm_conv_dist [symmetric]) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2035 | apply (rule_tac x="e^2" in exI) | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2036 | apply (auto simp: Reals_def) | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2037 | by (metis linear not_less real_sqrt_less_iff real_sqrt_pow2_iff real_sqrt_power) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2038 | next | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2039 | case False | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2040 | then show ?thesis by (blast intro: continuous_within_csqrt) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2041 | qed | 
| 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 2042 | |
| 60420 | 2043 | subsection\<open>Complex arctangent\<close> | 
| 2044 | ||
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2045 | text\<open>The branch cut gives standard bounds in the real case.\<close> | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2046 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2047 | definition Arctan :: "complex \<Rightarrow> complex" where | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2048 | "Arctan \<equiv> \<lambda>z. (\<i>/2) * Ln((1 - \<i>*z) / (1 + \<i>*z))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2049 | |
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2050 | lemma Arctan_def_moebius: "Arctan z = \<i>/2 * Ln (moebius (-\<i>) 1 \<i> 1 z)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2051 | by (simp add: Arctan_def moebius_def add_ac) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2052 | |
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2053 | lemma Ln_conv_Arctan: | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2054 | assumes "z \<noteq> -1" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2055 | shows "Ln z = -2*\<i> * Arctan (moebius 1 (- 1) (- \<i>) (- \<i>) z)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2056 | proof - | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2057 | have "Arctan (moebius 1 (- 1) (- \<i>) (- \<i>) z) = | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2058 | \<i>/2 * Ln (moebius (- \<i>) 1 \<i> 1 (moebius 1 (- 1) (- \<i>) (- \<i>) z))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2059 | by (simp add: Arctan_def_moebius) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2060 | also from assms have "\<i> * z \<noteq> \<i> * (-1)" by (subst mult_left_cancel) simp | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2061 | hence "\<i> * z - -\<i> \<noteq> 0" by (simp add: eq_neg_iff_add_eq_0) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2062 | from moebius_inverse'[OF _ this, of 1 1] | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2063 | have "moebius (- \<i>) 1 \<i> 1 (moebius 1 (- 1) (- \<i>) (- \<i>) z) = z" by simp | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2064 | finally show ?thesis by (simp add: field_simps) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2065 | qed | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2066 | |
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2067 | lemma Arctan_0 [simp]: "Arctan 0 = 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2068 | by (simp add: Arctan_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2069 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2070 | lemma Im_complex_div_lemma: "Im((1 - \<i>*z) / (1 + \<i>*z)) = 0 \<longleftrightarrow> Re z = 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2071 | by (auto simp: Im_complex_div_eq_0 algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2072 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2073 | lemma Re_complex_div_lemma: "0 < Re((1 - \<i>*z) / (1 + \<i>*z)) \<longleftrightarrow> norm z < 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2074 | by (simp add: Re_complex_div_gt_0 algebra_simps cmod_def power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2075 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2076 | lemma tan_Arctan: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2077 | assumes "z\<^sup>2 \<noteq> -1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2078 | shows [simp]:"tan(Arctan z) = z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2079 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2080 | have "1 + \<i>*z \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2081 | by (metis assms complex_i_mult_minus i_squared minus_unique power2_eq_square power2_minus) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2082 | moreover | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2083 | have "1 - \<i>*z \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2084 | by (metis assms complex_i_mult_minus i_squared power2_eq_square power2_minus right_minus_eq) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2085 | ultimately | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2086 | show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2087 | by (simp add: Arctan_def tan_def sin_exp_eq cos_exp_eq exp_minus csqrt_exp_Ln [symmetric] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2088 | divide_simps power2_eq_square [symmetric]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2089 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2090 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2091 | lemma Arctan_tan [simp]: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2092 | assumes "\<bar>Re z\<bar> < pi/2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2093 | shows "Arctan(tan z) = z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2094 | proof - | 
| 61945 | 2095 | have ge_pi2: "\<And>n::int. \<bar>of_int (2*n + 1) * pi/2\<bar> \<ge> pi/2" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2096 | by (case_tac n rule: int_cases) (auto simp: abs_mult) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2097 | have "exp (\<i>*z)*exp (\<i>*z) = -1 \<longleftrightarrow> exp (2*\<i>*z) = -1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2098 | by (metis distrib_right exp_add mult_2) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2099 | also have "... \<longleftrightarrow> exp (2*\<i>*z) = exp (\<i>*pi)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2100 | using cis_conv_exp cis_pi by auto | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2101 | also have "... \<longleftrightarrow> exp (2*\<i>*z - \<i>*pi) = 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2102 | by (metis (no_types) diff_add_cancel diff_minus_eq_add exp_add exp_minus_inverse mult.commute) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2103 | also have "... \<longleftrightarrow> Re(\<i>*2*z - \<i>*pi) = 0 \<and> (\<exists>n::int. Im(\<i>*2*z - \<i>*pi) = of_int (2 * n) * pi)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2104 | by (simp add: exp_eq_1) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2105 | also have "... \<longleftrightarrow> Im z = 0 \<and> (\<exists>n::int. 2 * Re z = of_int (2*n + 1) * pi)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2106 | by (simp add: algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2107 | also have "... \<longleftrightarrow> False" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2108 | using assms ge_pi2 | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2109 | apply (auto simp: algebra_simps) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 2110 | by (metis abs_mult_pos not_less of_nat_less_0_iff of_nat_numeral) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2111 | finally have *: "exp (\<i>*z)*exp (\<i>*z) + 1 \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2112 | by (auto simp: add.commute minus_unique) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2113 | show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2114 | using assms * | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2115 | apply (simp add: Arctan_def tan_def sin_exp_eq cos_exp_eq exp_minus divide_simps | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2116 | ii_times_eq_iff power2_eq_square [symmetric]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2117 | apply (rule Ln_unique) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2118 | apply (auto simp: divide_simps exp_minus) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2119 | apply (simp add: algebra_simps exp_double [symmetric]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2120 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2121 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2122 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2123 | lemma | 
| 61945 | 2124 | assumes "Re z = 0 \<Longrightarrow> \<bar>Im z\<bar> < 1" | 
| 2125 | shows Re_Arctan_bounds: "\<bar>Re(Arctan z)\<bar> < pi/2" | |
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2126 | and has_field_derivative_Arctan: "(Arctan has_field_derivative inverse(1 + z\<^sup>2)) (at z)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2127 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2128 | have nz0: "1 + \<i>*z \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2129 | using assms | 
| 60141 
833adf7db7d8
New material, mostly about limits. Consolidation.
 paulson <lp15@cam.ac.uk> parents: 
60020diff
changeset | 2130 | by (metis abs_one complex_i_mult_minus diff_0_right diff_minus_eq_add ii.simps(1) ii.simps(2) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2131 | less_irrefl minus_diff_eq mult.right_neutral right_minus_eq) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2132 | have "z \<noteq> -\<i>" using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2133 | by auto | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2134 | then have zz: "1 + z * z \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2135 | by (metis abs_one assms i_squared ii.simps less_irrefl minus_unique square_eq_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2136 | have nz1: "1 - \<i>*z \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2137 | using assms by (force simp add: ii_times_eq_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2138 | have nz2: "inverse (1 + \<i>*z) \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2139 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2140 | by (metis Im_complex_div_lemma Re_complex_div_lemma cmod_eq_Im divide_complex_def | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2141 | less_irrefl mult_zero_right zero_complex.simps(1) zero_complex.simps(2)) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2142 | have nzi: "((1 - \<i>*z) * inverse (1 + \<i>*z)) \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2143 | using nz1 nz2 by auto | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2144 | have "Im ((1 - \<i>*z) / (1 + \<i>*z)) = 0 \<Longrightarrow> 0 < Re ((1 - \<i>*z) / (1 + \<i>*z))" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2145 | apply (simp add: divide_complex_def) | 
| 62390 | 2146 | apply (simp add: divide_simps split: if_split_asm) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2147 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2148 | apply (auto simp: algebra_simps abs_square_less_1 [unfolded power2_eq_square]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2149 | done | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2150 | then have *: "((1 - \<i>*z) / (1 + \<i>*z)) \<notin> \<real>\<^sub>\<le>\<^sub>0" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2151 | by (auto simp add: complex_nonpos_Reals_iff) | 
| 61945 | 2152 | show "\<bar>Re(Arctan z)\<bar> < pi/2" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2153 | unfolding Arctan_def divide_complex_def | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2154 | using mpi_less_Im_Ln [OF nzi] | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2155 | apply (auto simp: abs_if intro!: Im_Ln_less_pi * [unfolded divide_complex_def]) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2156 | done | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2157 | show "(Arctan has_field_derivative inverse(1 + z\<^sup>2)) (at z)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2158 | unfolding Arctan_def scaleR_conv_of_real | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2159 | apply (rule DERIV_cong) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2160 | apply (intro derivative_eq_intros | simp add: nz0 *)+ | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2161 | using nz0 nz1 zz | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2162 | apply (simp add: divide_simps power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2163 | apply (auto simp: algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2164 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2165 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2166 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2167 | lemma field_differentiable_at_Arctan: "(Re z = 0 \<Longrightarrow> \<bar>Im z\<bar> < 1) \<Longrightarrow> Arctan field_differentiable at z" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2168 | using has_field_derivative_Arctan | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2169 | by (auto simp: field_differentiable_def) | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2170 | |
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2171 | lemma field_differentiable_within_Arctan: | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2172 | "(Re z = 0 \<Longrightarrow> \<bar>Im z\<bar> < 1) \<Longrightarrow> Arctan field_differentiable (at z within s)" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2173 | using field_differentiable_at_Arctan field_differentiable_at_within by blast | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2174 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2175 | declare has_field_derivative_Arctan [derivative_intros] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2176 | declare has_field_derivative_Arctan [THEN DERIV_chain2, derivative_intros] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2177 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2178 | lemma continuous_at_Arctan: | 
| 61945 | 2179 | "(Re z = 0 \<Longrightarrow> \<bar>Im z\<bar> < 1) \<Longrightarrow> continuous (at z) Arctan" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2180 | by (simp add: field_differentiable_imp_continuous_at field_differentiable_within_Arctan) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2181 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2182 | lemma continuous_within_Arctan: | 
| 61945 | 2183 | "(Re z = 0 \<Longrightarrow> \<bar>Im z\<bar> < 1) \<Longrightarrow> continuous (at z within s) Arctan" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2184 | using continuous_at_Arctan continuous_at_imp_continuous_within by blast | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2185 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2186 | lemma continuous_on_Arctan [continuous_intros]: | 
| 61945 | 2187 | "(\<And>z. z \<in> s \<Longrightarrow> Re z = 0 \<Longrightarrow> \<bar>Im z\<bar> < 1) \<Longrightarrow> continuous_on s Arctan" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2188 | by (auto simp: continuous_at_imp_continuous_on continuous_within_Arctan) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2189 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2190 | lemma holomorphic_on_Arctan: | 
| 61945 | 2191 | "(\<And>z. z \<in> s \<Longrightarrow> Re z = 0 \<Longrightarrow> \<bar>Im z\<bar> < 1) \<Longrightarrow> Arctan holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2192 | by (simp add: field_differentiable_within_Arctan holomorphic_on_def) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2193 | |
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2194 | lemma Arctan_series: | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2195 | assumes z: "norm (z :: complex) < 1" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2196 | defines "g \<equiv> \<lambda>n. if odd n then -\<i>*\<i>^n / n else 0" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2197 | defines "h \<equiv> \<lambda>z n. (-1)^n / of_nat (2*n+1) * (z::complex)^(2*n+1)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2198 | shows "(\<lambda>n. g n * z^n) sums Arctan z" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2199 | and "h z sums Arctan z" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2200 | proof - | 
| 63040 | 2201 | define G where [abs_def]: "G z = (\<Sum>n. g n * z^n)" for z | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2202 | have summable: "summable (\<lambda>n. g n * u^n)" if "norm u < 1" for u | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2203 | proof (cases "u = 0") | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2204 | assume u: "u \<noteq> 0" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2205 | have "(\<lambda>n. ereal (norm (h u n) / norm (h u (Suc n)))) = (\<lambda>n. ereal (inverse (norm u)^2) * | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2206 | ereal ((2 + inverse (real (Suc n))) / (2 - inverse (real (Suc n)))))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2207 | proof | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2208 | fix n | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2209 | have "ereal (norm (h u n) / norm (h u (Suc n))) = | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2210 | ereal (inverse (norm u)^2) * ereal ((of_nat (2*Suc n+1) / of_nat (Suc n)) / | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2211 | (of_nat (2*Suc n-1) / of_nat (Suc n)))" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2212 | by (simp add: h_def norm_mult norm_power norm_divide divide_simps | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2213 | power2_eq_square eval_nat_numeral del: of_nat_add of_nat_Suc) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2214 | also have "of_nat (2*Suc n+1) / of_nat (Suc n) = (2::real) + inverse (real (Suc n))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2215 | by (auto simp: divide_simps simp del: of_nat_Suc) simp_all? | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2216 | also have "of_nat (2*Suc n-1) / of_nat (Suc n) = (2::real) - inverse (real (Suc n))" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2217 | by (auto simp: divide_simps simp del: of_nat_Suc) simp_all? | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2218 | finally show "ereal (norm (h u n) / norm (h u (Suc n))) = ereal (inverse (norm u)^2) * | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2219 | ereal ((2 + inverse (real (Suc n))) / (2 - inverse (real (Suc n))))" . | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2220 | qed | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2221 | also have "\<dots> \<longlonglongrightarrow> ereal (inverse (norm u)^2) * ereal ((2 + 0) / (2 - 0))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2222 | by (intro tendsto_intros LIMSEQ_inverse_real_of_nat) simp_all | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2223 | finally have "liminf (\<lambda>n. ereal (cmod (h u n) / cmod (h u (Suc n)))) = inverse (norm u)^2" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2224 | by (intro lim_imp_Liminf) simp_all | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2225 | moreover from power_strict_mono[OF that, of 2] u have "inverse (norm u)^2 > 1" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2226 | by (simp add: divide_simps) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2227 | ultimately have A: "liminf (\<lambda>n. ereal (cmod (h u n) / cmod (h u (Suc n)))) > 1" by simp | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2228 | from u have "summable (h u)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2229 | by (intro summable_norm_cancel[OF ratio_test_convergence[OF _ A]]) | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2230 | (auto simp: h_def norm_divide norm_mult norm_power simp del: of_nat_Suc | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2231 | intro!: mult_pos_pos divide_pos_pos always_eventually) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2232 | thus "summable (\<lambda>n. g n * u^n)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2233 | by (subst summable_mono_reindex[of "\<lambda>n. 2*n+1", symmetric]) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2234 | (auto simp: power_mult subseq_def g_def h_def elim!: oddE) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2235 | qed (simp add: h_def) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2236 | |
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2237 | have "\<exists>c. \<forall>u\<in>ball 0 1. Arctan u - G u = c" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2238 | proof (rule has_field_derivative_zero_constant) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2239 | fix u :: complex assume "u \<in> ball 0 1" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2240 | hence u: "norm u < 1" by (simp add: dist_0_norm) | 
| 63040 | 2241 | define K where "K = (norm u + 1) / 2" | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2242 | from u and abs_Im_le_cmod[of u] have Im_u: "\<bar>Im u\<bar> < 1" by linarith | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2243 | from u have K: "0 \<le> K" "norm u < K" "K < 1" by (simp_all add: K_def) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2244 | hence "(G has_field_derivative (\<Sum>n. diffs g n * u ^ n)) (at u)" unfolding G_def | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2245 | by (intro termdiffs_strong[of _ "of_real K"] summable) simp_all | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2246 | also have "(\<lambda>n. diffs g n * u^n) = (\<lambda>n. if even n then (\<i>*u)^n else 0)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2247 | by (intro ext) (simp_all del: of_nat_Suc add: g_def diffs_def power_mult_distrib) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2248 | also have "suminf \<dots> = (\<Sum>n. (-(u^2))^n)" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2249 | by (subst suminf_mono_reindex[of "\<lambda>n. 2*n", symmetric]) | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2250 | (auto elim!: evenE simp: subseq_def power_mult power_mult_distrib) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2251 | also from u have "norm u^2 < 1^2" by (intro power_strict_mono) simp_all | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2252 | hence "(\<Sum>n. (-(u^2))^n) = inverse (1 + u^2)" | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2253 | by (subst suminf_geometric) (simp_all add: norm_power inverse_eq_divide) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2254 | finally have "(G has_field_derivative inverse (1 + u\<^sup>2)) (at u)" . | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2255 | from DERIV_diff[OF has_field_derivative_Arctan this] Im_u u | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2256 | show "((\<lambda>u. Arctan u - G u) has_field_derivative 0) (at u within ball 0 1)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2257 | by (simp_all add: dist_0_norm at_within_open[OF _ open_ball]) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2258 | qed simp_all | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2259 | then obtain c where c: "\<And>u. norm u < 1 \<Longrightarrow> Arctan u - G u = c" by (auto simp: dist_0_norm) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2260 | from this[of 0] have "c = 0" by (simp add: G_def g_def powser_zero) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2261 | with c z have "Arctan z = G z" by simp | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2262 | with summable[OF z] show "(\<lambda>n. g n * z^n) sums Arctan z" unfolding G_def by (simp add: sums_iff) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2263 | thus "h z sums Arctan z" by (subst (asm) sums_mono_reindex[of "\<lambda>n. 2*n+1", symmetric]) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2264 | (auto elim!: oddE simp: subseq_def power_mult g_def h_def) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2265 | qed | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2266 | |
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2267 | text \<open>A quickly-converging series for the logarithm, based on the arctangent.\<close> | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2268 | lemma ln_series_quadratic: | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2269 | assumes x: "x > (0::real)" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2270 | shows "(\<lambda>n. (2*((x - 1) / (x + 1)) ^ (2*n+1) / of_nat (2*n+1))) sums ln x" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2271 | proof - | 
| 63040 | 2272 | define y :: complex where "y = of_real ((x-1)/(x+1))" | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2273 | from x have x': "complex_of_real x \<noteq> of_real (-1)" by (subst of_real_eq_iff) auto | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2274 | from x have "\<bar>x - 1\<bar> < \<bar>x + 1\<bar>" by linarith | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2275 | hence "norm (complex_of_real (x - 1) / complex_of_real (x + 1)) < 1" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2276 | by (simp add: norm_divide del: of_real_add of_real_diff) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2277 | hence "norm (\<i> * y) < 1" unfolding y_def by (subst norm_mult) simp | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2278 | hence "(\<lambda>n. (-2*\<i>) * ((-1)^n / of_nat (2*n+1) * (\<i>*y)^(2*n+1))) sums ((-2*\<i>) * Arctan (\<i>*y))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2279 | by (intro Arctan_series sums_mult) simp_all | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2280 | also have "(\<lambda>n. (-2*\<i>) * ((-1)^n / of_nat (2*n+1) * (\<i>*y)^(2*n+1))) = | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2281 | (\<lambda>n. (-2*\<i>) * ((-1)^n * (\<i>*y*(-y\<^sup>2)^n)/of_nat (2*n+1)))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2282 | by (intro ext) (simp_all add: power_mult power_mult_distrib) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2283 | also have "\<dots> = (\<lambda>n. 2*y* ((-1) * (-y\<^sup>2))^n/of_nat (2*n+1))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2284 | by (intro ext, subst power_mult_distrib) (simp add: algebra_simps power_mult) | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2285 | also have "\<dots> = (\<lambda>n. 2*y^(2*n+1) / of_nat (2*n+1))" | 
| 62049 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2286 | by (subst power_add, subst power_mult) (simp add: mult_ac) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2287 | also have "\<dots> = (\<lambda>n. of_real (2*((x-1)/(x+1))^(2*n+1) / of_nat (2*n+1)))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2288 | by (intro ext) (simp add: y_def) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2289 | also have "\<i> * y = (of_real x - 1) / (-\<i> * (of_real x + 1))" | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2290 | by (subst divide_divide_eq_left [symmetric]) (simp add: y_def) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2291 | also have "\<dots> = moebius 1 (-1) (-\<i>) (-\<i>) (of_real x)" by (simp add: moebius_def algebra_simps) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2292 | also from x' have "-2*\<i>*Arctan \<dots> = Ln (of_real x)" by (intro Ln_conv_Arctan [symmetric]) simp_all | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2293 | also from x have "\<dots> = ln x" by (rule Ln_of_real) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2294 | finally show ?thesis by (subst (asm) sums_of_real_iff) | 
| 
b0f941e207cf
Added lots of material on infinite sums, convergence radii, harmonic numbers, Gamma function
 eberlm parents: 
61973diff
changeset | 2295 | qed | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2296 | |
| 60420 | 2297 | subsection \<open>Real arctangent\<close> | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2298 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2299 | lemma norm_exp_ii_times [simp]: "norm (exp(\<i> * of_real y)) = 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2300 | by simp | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2301 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2302 | lemma norm_exp_imaginary: "norm(exp z) = 1 \<Longrightarrow> Re z = 0" | 
| 64394 | 2303 | by simp | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2304 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2305 | lemma Im_Arctan_of_real [simp]: "Im (Arctan (of_real x)) = 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2306 | unfolding Arctan_def divide_complex_def | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2307 | apply (simp add: complex_eq_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2308 | apply (rule norm_exp_imaginary) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2309 | apply (subst exp_Ln, auto) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2310 | apply (simp_all add: cmod_def complex_eq_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2311 | apply (auto simp: divide_simps) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61524diff
changeset | 2312 | apply (metis power_one sum_power2_eq_zero_iff zero_neq_one, algebra) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2313 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2314 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2315 | lemma arctan_eq_Re_Arctan: "arctan x = Re (Arctan (of_real x))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2316 | proof (rule arctan_unique) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2317 | show "- (pi / 2) < Re (Arctan (complex_of_real x))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2318 | apply (simp add: Arctan_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2319 | apply (rule Im_Ln_less_pi) | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2320 | apply (auto simp: Im_complex_div_lemma complex_nonpos_Reals_iff) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2321 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2322 | next | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2323 | have *: " (1 - \<i>*x) / (1 + \<i>*x) \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2324 | by (simp add: divide_simps) ( simp add: complex_eq_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2325 | show "Re (Arctan (complex_of_real x)) < pi / 2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2326 | using mpi_less_Im_Ln [OF *] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2327 | by (simp add: Arctan_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2328 | next | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2329 | have "tan (Re (Arctan (of_real x))) = Re (tan (Arctan (of_real x)))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2330 | apply (auto simp: tan_def Complex.Re_divide Re_sin Re_cos Im_sin Im_cos) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2331 | apply (simp add: field_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2332 | by (simp add: power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2333 | also have "... = x" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2334 | apply (subst tan_Arctan, auto) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2335 | by (metis diff_0_right minus_diff_eq mult_zero_left not_le of_real_1 of_real_eq_iff of_real_minus of_real_power power2_eq_square real_minus_mult_self_le zero_less_one) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2336 | finally show "tan (Re (Arctan (complex_of_real x))) = x" . | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2337 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2338 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2339 | lemma Arctan_of_real: "Arctan (of_real x) = of_real (arctan x)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2340 | unfolding arctan_eq_Re_Arctan divide_complex_def | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2341 | by (simp add: complex_eq_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2342 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2343 | lemma Arctan_in_Reals [simp]: "z \<in> \<real> \<Longrightarrow> Arctan z \<in> \<real>" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2344 | by (metis Reals_cases Reals_of_real Arctan_of_real) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2345 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2346 | declare arctan_one [simp] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2347 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2348 | lemma arctan_less_pi4_pos: "x < 1 \<Longrightarrow> arctan x < pi/4" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2349 | by (metis arctan_less_iff arctan_one) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2350 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2351 | lemma arctan_less_pi4_neg: "-1 < x \<Longrightarrow> -(pi/4) < arctan x" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2352 | by (metis arctan_less_iff arctan_minus arctan_one) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2353 | |
| 61945 | 2354 | lemma arctan_less_pi4: "\<bar>x\<bar> < 1 \<Longrightarrow> \<bar>arctan x\<bar> < pi/4" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2355 | by (metis abs_less_iff arctan_less_pi4_pos arctan_minus) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2356 | |
| 61945 | 2357 | lemma arctan_le_pi4: "\<bar>x\<bar> \<le> 1 \<Longrightarrow> \<bar>arctan x\<bar> \<le> pi/4" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2358 | by (metis abs_le_iff arctan_le_iff arctan_minus arctan_one) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2359 | |
| 61945 | 2360 | lemma abs_arctan: "\<bar>arctan x\<bar> = arctan \<bar>x\<bar>" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2361 | by (simp add: abs_if arctan_minus) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2362 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2363 | lemma arctan_add_raw: | 
| 61945 | 2364 | assumes "\<bar>arctan x + arctan y\<bar> < pi/2" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2365 | shows "arctan x + arctan y = arctan((x + y) / (1 - x * y))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2366 | proof (rule arctan_unique [symmetric]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2367 | show 12: "- (pi / 2) < arctan x + arctan y" "arctan x + arctan y < pi / 2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2368 | using assms by linarith+ | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2369 | show "tan (arctan x + arctan y) = (x + y) / (1 - x * y)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2370 | using cos_gt_zero_pi [OF 12] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2371 | by (simp add: arctan tan_add) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2372 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2373 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2374 | lemma arctan_inverse: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2375 | assumes "0 < x" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2376 | shows "arctan(inverse x) = pi/2 - arctan x" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2377 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2378 | have "arctan(inverse x) = arctan(inverse(tan(arctan x)))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2379 | by (simp add: arctan) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2380 | also have "... = arctan (tan (pi / 2 - arctan x))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2381 | by (simp add: tan_cot) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2382 | also have "... = pi/2 - arctan x" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2383 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2384 | have "0 < pi - arctan x" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2385 | using arctan_ubound [of x] pi_gt_zero by linarith | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2386 | with assms show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2387 | by (simp add: Transcendental.arctan_tan) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2388 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2389 | finally show ?thesis . | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2390 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2391 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2392 | lemma arctan_add_small: | 
| 61945 | 2393 | assumes "\<bar>x * y\<bar> < 1" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2394 | shows "(arctan x + arctan y = arctan((x + y) / (1 - x * y)))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2395 | proof (cases "x = 0 \<or> y = 0") | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2396 | case True then show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2397 | by auto | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2398 | next | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2399 | case False | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2400 | then have *: "\<bar>arctan x\<bar> < pi / 2 - \<bar>arctan y\<bar>" using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2401 | apply (auto simp add: abs_arctan arctan_inverse [symmetric] arctan_less_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2402 | apply (simp add: divide_simps abs_mult) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2403 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2404 | show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2405 | apply (rule arctan_add_raw) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2406 | using * by linarith | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2407 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2408 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2409 | lemma abs_arctan_le: | 
| 61945 | 2410 | fixes x::real shows "\<bar>arctan x\<bar> \<le> \<bar>x\<bar>" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2411 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2412 |   { fix w::complex and z::complex
 | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2413 | assume *: "w \<in> \<real>" "z \<in> \<real>" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2414 | have "cmod (Arctan w - Arctan z) \<le> 1 * cmod (w-z)" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2415 | apply (rule field_differentiable_bound [OF convex_Reals, of Arctan _ 1]) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2416 | apply (rule has_field_derivative_at_within [OF has_field_derivative_Arctan]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2417 | apply (force simp add: Reals_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2418 | apply (simp add: norm_divide divide_simps in_Reals_norm complex_is_Real_iff power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2419 | using * by auto | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2420 | } | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2421 | then have "cmod (Arctan (of_real x) - Arctan 0) \<le> 1 * cmod (of_real x -0)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2422 | using Reals_0 Reals_of_real by blast | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2423 | then show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2424 | by (simp add: Arctan_of_real) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2425 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2426 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2427 | lemma arctan_le_self: "0 \<le> x \<Longrightarrow> arctan x \<le> x" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2428 | by (metis abs_arctan_le abs_of_nonneg zero_le_arctan_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2429 | |
| 61945 | 2430 | lemma abs_tan_ge: "\<bar>x\<bar> < pi/2 \<Longrightarrow> \<bar>x\<bar> \<le> \<bar>tan x\<bar>" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2431 | by (metis abs_arctan_le abs_less_iff arctan_tan minus_less_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2432 | |
| 63556 | 2433 | lemma arctan_bounds: | 
| 2434 | assumes "0 \<le> x" "x < 1" | |
| 2435 | shows arctan_lower_bound: | |
| 2436 | "(\<Sum>k<2 * n. (- 1) ^ k * (1 / real (k * 2 + 1) * x ^ (k * 2 + 1))) \<le> arctan x" | |
| 2437 | (is "(\<Sum>k<_. (- 1)^ k * ?a k) \<le> _") | |
| 2438 | and arctan_upper_bound: | |
| 2439 | "arctan x \<le> (\<Sum>k<2 * n + 1. (- 1) ^ k * (1 / real (k * 2 + 1) * x ^ (k * 2 + 1)))" | |
| 2440 | proof - | |
| 2441 | have tendsto_zero: "?a \<longlonglongrightarrow> 0" | |
| 2442 | using assms | |
| 2443 | apply - | |
| 2444 | apply (rule tendsto_eq_rhs[where x="0 * 0"]) | |
| 2445 | subgoal by (intro tendsto_mult real_tendsto_divide_at_top) | |
| 2446 | (auto simp: filterlim_real_sequentially filterlim_sequentially_iff_filterlim_real | |
| 2447 | intro!: real_tendsto_divide_at_top tendsto_power_zero filterlim_real_sequentially | |
| 2448 | tendsto_eq_intros filterlim_at_top_mult_tendsto_pos filterlim_tendsto_add_at_top) | |
| 2449 | subgoal by simp | |
| 2450 | done | |
| 2451 | have nonneg: "0 \<le> ?a n" for n | |
| 2452 | by (force intro!: divide_nonneg_nonneg mult_nonneg_nonneg zero_le_power assms) | |
| 2453 | have le: "?a (Suc n) \<le> ?a n" for n | |
| 2454 | by (rule mult_mono[OF _ power_decreasing]) (auto simp: divide_simps assms less_imp_le) | |
| 2455 | from summable_Leibniz'(4)[of ?a, OF tendsto_zero nonneg le, of n] | |
| 2456 | summable_Leibniz'(2)[of ?a, OF tendsto_zero nonneg le, of n] | |
| 2457 | assms | |
| 2458 | show "(\<Sum>k<2*n. (- 1)^ k * ?a k) \<le> arctan x" "arctan x \<le> (\<Sum>k<2 * n + 1. (- 1)^ k * ?a k)" | |
| 2459 | by (auto simp: arctan_series) | |
| 2460 | qed | |
| 2461 | ||
| 2462 | subsection \<open>Bounds on pi using real arctangent\<close> | |
| 2463 | ||
| 2464 | lemma pi_machin: "pi = 16 * arctan (1 / 5) - 4 * arctan (1 / 239)" | |
| 2465 | using machin | |
| 2466 | by simp | |
| 2467 | ||
| 2468 | lemma pi_approx: "3.141592653588 \<le> pi" "pi \<le> 3.1415926535899" | |
| 2469 | unfolding pi_machin | |
| 2470 | using arctan_bounds[of "1/5" 4] | |
| 2471 | arctan_bounds[of "1/239" 4] | |
| 2472 | by (simp_all add: eval_nat_numeral) | |
| 2473 | ||
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2474 | |
| 60420 | 2475 | subsection\<open>Inverse Sine\<close> | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2476 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2477 | definition Arcsin :: "complex \<Rightarrow> complex" where | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2478 | "Arcsin \<equiv> \<lambda>z. -\<i> * Ln(\<i> * z + csqrt(1 - z\<^sup>2))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2479 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2480 | lemma Arcsin_body_lemma: "\<i> * z + csqrt(1 - z\<^sup>2) \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2481 | using power2_csqrt [of "1 - z\<^sup>2"] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2482 | apply auto | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2483 | by (metis complex_i_mult_minus diff_add_cancel diff_minus_eq_add diff_self mult.assoc mult.left_commute numeral_One power2_csqrt power2_eq_square zero_neq_numeral) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2484 | |
| 61945 | 2485 | lemma Arcsin_range_lemma: "\<bar>Re z\<bar> < 1 \<Longrightarrow> 0 < Re(\<i> * z + csqrt(1 - z\<^sup>2))" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2486 | using Complex.cmod_power2 [of z, symmetric] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2487 | by (simp add: real_less_rsqrt algebra_simps Re_power2 cmod_square_less_1_plus) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2488 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2489 | lemma Re_Arcsin: "Re(Arcsin z) = Im (Ln (\<i> * z + csqrt(1 - z\<^sup>2)))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2490 | by (simp add: Arcsin_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2491 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2492 | lemma Im_Arcsin: "Im(Arcsin z) = - ln (cmod (\<i> * z + csqrt (1 - z\<^sup>2)))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2493 | by (simp add: Arcsin_def Arcsin_body_lemma) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2494 | |
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2495 | lemma one_minus_z2_notin_nonpos_Reals: | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2496 | assumes "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1)" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2497 | shows "1 - z\<^sup>2 \<notin> \<real>\<^sub>\<le>\<^sub>0" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2498 | using assms | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2499 | apply (auto simp: complex_nonpos_Reals_iff Re_power2 Im_power2) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2500 | using power2_less_0 [of "Im z"] apply force | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2501 | using abs_square_less_1 not_le by blast | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2502 | |
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2503 | lemma isCont_Arcsin_lemma: | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2504 | assumes le0: "Re (\<i> * z + csqrt (1 - z\<^sup>2)) \<le> 0" and "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1)" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2505 | shows False | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2506 | proof (cases "Im z = 0") | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2507 | case True | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2508 | then show ?thesis | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2509 | using assms by (fastforce simp: cmod_def abs_square_less_1 [symmetric]) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2510 | next | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2511 | case False | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2512 | have neq: "(cmod z)\<^sup>2 \<noteq> 1 + cmod (1 - z\<^sup>2)" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2513 | proof (clarsimp simp add: cmod_def) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2514 | assume "(Re z)\<^sup>2 + (Im z)\<^sup>2 = 1 + sqrt ((1 - Re (z\<^sup>2))\<^sup>2 + (Im (z\<^sup>2))\<^sup>2)" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2515 | then have "((Re z)\<^sup>2 + (Im z)\<^sup>2 - 1)\<^sup>2 = ((1 - Re (z\<^sup>2))\<^sup>2 + (Im (z\<^sup>2))\<^sup>2)" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2516 | by simp | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2517 | then show False using False | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2518 | by (simp add: power2_eq_square algebra_simps) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2519 | qed | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2520 | moreover have 2: "(Im z)\<^sup>2 = (1 + ((Im z)\<^sup>2 + cmod (1 - z\<^sup>2)) - (Re z)\<^sup>2) / 2" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2521 | using le0 | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2522 | apply simp | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2523 | apply (drule sqrt_le_D) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2524 | using cmod_power2 [of z] norm_triangle_ineq2 [of "z^2" 1] | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2525 | apply (simp add: norm_power Re_power2 norm_minus_commute [of 1]) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2526 | done | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2527 | ultimately show False | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2528 | by (simp add: Re_power2 Im_power2 cmod_power2) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2529 | qed | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2530 | |
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2531 | lemma isCont_Arcsin: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2532 | assumes "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2533 | shows "isCont Arcsin z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2534 | proof - | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2535 | have *: "\<i> * z + csqrt (1 - z\<^sup>2) \<notin> \<real>\<^sub>\<le>\<^sub>0" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2536 | by (metis isCont_Arcsin_lemma assms complex_nonpos_Reals_iff) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2537 | show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2538 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2539 | apply (simp add: Arcsin_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2540 | apply (rule isCont_Ln' isCont_csqrt' continuous_intros)+ | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2541 | apply (simp add: one_minus_z2_notin_nonpos_Reals assms) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2542 | apply (rule *) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2543 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2544 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2545 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2546 | lemma isCont_Arcsin' [simp]: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2547 | shows "isCont f z \<Longrightarrow> (Im (f z) = 0 \<Longrightarrow> \<bar>Re (f z)\<bar> < 1) \<Longrightarrow> isCont (\<lambda>x. Arcsin (f x)) z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2548 | by (blast intro: isCont_o2 [OF _ isCont_Arcsin]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2549 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2550 | lemma sin_Arcsin [simp]: "sin(Arcsin z) = z" | 
| 60141 
833adf7db7d8
New material, mostly about limits. Consolidation.
 paulson <lp15@cam.ac.uk> parents: 
60020diff
changeset | 2551 | proof - | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2552 | have "\<i>*z*2 + csqrt (1 - z\<^sup>2)*2 = 0 \<longleftrightarrow> (\<i>*z)*2 + csqrt (1 - z\<^sup>2)*2 = 0" | 
| 61808 | 2553 | by (simp add: algebra_simps) \<comment>\<open>Cancelling a factor of 2\<close> | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2554 | moreover have "... \<longleftrightarrow> (\<i>*z) + csqrt (1 - z\<^sup>2) = 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2555 | by (metis Arcsin_body_lemma distrib_right no_zero_divisors zero_neq_numeral) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2556 | ultimately show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2557 | apply (simp add: sin_exp_eq Arcsin_def Arcsin_body_lemma exp_minus divide_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2558 | apply (simp add: algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2559 | apply (simp add: power2_eq_square [symmetric] algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2560 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2561 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2562 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2563 | lemma Re_eq_pihalf_lemma: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2564 | "\<bar>Re z\<bar> = pi/2 \<Longrightarrow> Im z = 0 \<Longrightarrow> | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2565 | Re ((exp (\<i>*z) + inverse (exp (\<i>*z))) / 2) = 0 \<and> 0 \<le> Im ((exp (\<i>*z) + inverse (exp (\<i>*z))) / 2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2566 | apply (simp add: cos_ii_times [symmetric] Re_cos Im_cos abs_if del: eq_divide_eq_numeral1) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2567 | by (metis cos_minus cos_pi_half) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2568 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2569 | lemma Re_less_pihalf_lemma: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2570 | assumes "\<bar>Re z\<bar> < pi / 2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2571 | shows "0 < Re ((exp (\<i>*z) + inverse (exp (\<i>*z))) / 2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2572 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2573 | have "0 < cos (Re z)" using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2574 | using cos_gt_zero_pi by auto | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2575 | then show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2576 | by (simp add: cos_ii_times [symmetric] Re_cos Im_cos add_pos_pos) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2577 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2578 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2579 | lemma Arcsin_sin: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2580 | assumes "\<bar>Re z\<bar> < pi/2 \<or> (\<bar>Re z\<bar> = pi/2 \<and> Im z = 0)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2581 | shows "Arcsin(sin z) = z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2582 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2583 | have "Arcsin(sin z) = - (\<i> * Ln (csqrt (1 - (\<i> * (exp (\<i>*z) - inverse (exp (\<i>*z))))\<^sup>2 / 4) - (inverse (exp (\<i>*z)) - exp (\<i>*z)) / 2))" | 
| 61694 
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
 paulson <lp15@cam.ac.uk> parents: 
61649diff
changeset | 2584 | by (simp add: sin_exp_eq Arcsin_def exp_minus power_divide) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2585 | also have "... = - (\<i> * Ln (csqrt (((exp (\<i>*z) + inverse (exp (\<i>*z)))/2)\<^sup>2) - (inverse (exp (\<i>*z)) - exp (\<i>*z)) / 2))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2586 | by (simp add: field_simps power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2587 | also have "... = - (\<i> * Ln (((exp (\<i>*z) + inverse (exp (\<i>*z)))/2) - (inverse (exp (\<i>*z)) - exp (\<i>*z)) / 2))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2588 | apply (subst csqrt_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2589 | using assms Re_eq_pihalf_lemma Re_less_pihalf_lemma | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2590 | apply auto | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2591 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2592 | also have "... = - (\<i> * Ln (exp (\<i>*z)))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2593 | by (simp add: field_simps power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2594 | also have "... = z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2595 | apply (subst Complex_Transcendental.Ln_exp) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2596 | using assms | 
| 62390 | 2597 | apply (auto simp: abs_if simp del: eq_divide_eq_numeral1 split: if_split_asm) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2598 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2599 | finally show ?thesis . | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2600 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2601 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2602 | lemma Arcsin_unique: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2603 | "\<lbrakk>sin z = w; \<bar>Re z\<bar> < pi/2 \<or> (\<bar>Re z\<bar> = pi/2 \<and> Im z = 0)\<rbrakk> \<Longrightarrow> Arcsin w = z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2604 | by (metis Arcsin_sin) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2605 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2606 | lemma Arcsin_0 [simp]: "Arcsin 0 = 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2607 | by (metis Arcsin_sin norm_zero pi_half_gt_zero real_norm_def sin_zero zero_complex.simps(1)) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2608 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2609 | lemma Arcsin_1 [simp]: "Arcsin 1 = pi/2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2610 | by (metis Arcsin_sin Im_complex_of_real Re_complex_of_real numeral_One of_real_numeral pi_half_ge_zero real_sqrt_abs real_sqrt_pow2 real_sqrt_power sin_of_real sin_pi_half) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2611 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2612 | lemma Arcsin_minus_1 [simp]: "Arcsin(-1) = - (pi/2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2613 | by (metis Arcsin_1 Arcsin_sin Im_complex_of_real Re_complex_of_real abs_of_nonneg of_real_minus pi_half_ge_zero power2_minus real_sqrt_abs sin_Arcsin sin_minus) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2614 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2615 | lemma has_field_derivative_Arcsin: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2616 | assumes "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2617 | shows "(Arcsin has_field_derivative inverse(cos(Arcsin z))) (at z)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2618 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2619 | have "(sin (Arcsin z))\<^sup>2 \<noteq> 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2620 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2621 | apply atomize | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2622 | apply (auto simp: complex_eq_iff Re_power2 Im_power2 abs_square_eq_1) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2623 | apply (metis abs_minus_cancel abs_one abs_power2 numeral_One numeral_neq_neg_one) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2624 | by (metis abs_minus_cancel abs_one abs_power2 one_neq_neg_one) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2625 | then have "cos (Arcsin z) \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2626 | by (metis diff_0_right power_zero_numeral sin_squared_eq) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2627 | then show ?thesis | 
| 63492 
a662e8139804
More advanced theorems about retracts, homotopies., etc
 paulson <lp15@cam.ac.uk> parents: 
63296diff
changeset | 2628 | apply (rule has_complex_derivative_inverse_basic [OF DERIV_sin _ _ open_ball [of z 1]]) | 
| 
a662e8139804
More advanced theorems about retracts, homotopies., etc
 paulson <lp15@cam.ac.uk> parents: 
63296diff
changeset | 2629 | apply (auto intro: isCont_Arcsin assms) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2630 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2631 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2632 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2633 | declare has_field_derivative_Arcsin [derivative_intros] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2634 | declare has_field_derivative_Arcsin [THEN DERIV_chain2, derivative_intros] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2635 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2636 | lemma field_differentiable_at_Arcsin: | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2637 | "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arcsin field_differentiable at z" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2638 | using field_differentiable_def has_field_derivative_Arcsin by blast | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2639 | |
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2640 | lemma field_differentiable_within_Arcsin: | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2641 | "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arcsin field_differentiable (at z within s)" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2642 | using field_differentiable_at_Arcsin field_differentiable_within_subset by blast | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2643 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2644 | lemma continuous_within_Arcsin: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2645 | "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> continuous (at z within s) Arcsin" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2646 | using continuous_at_imp_continuous_within isCont_Arcsin by blast | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2647 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2648 | lemma continuous_on_Arcsin [continuous_intros]: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2649 | "(\<And>z. z \<in> s \<Longrightarrow> Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> continuous_on s Arcsin" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2650 | by (simp add: continuous_at_imp_continuous_on) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2651 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2652 | lemma holomorphic_on_Arcsin: "(\<And>z. z \<in> s \<Longrightarrow> Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arcsin holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2653 | by (simp add: field_differentiable_within_Arcsin holomorphic_on_def) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2654 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2655 | |
| 60420 | 2656 | subsection\<open>Inverse Cosine\<close> | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2657 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2658 | definition Arccos :: "complex \<Rightarrow> complex" where | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2659 | "Arccos \<equiv> \<lambda>z. -\<i> * Ln(z + \<i> * csqrt(1 - z\<^sup>2))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2660 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2661 | lemma Arccos_range_lemma: "\<bar>Re z\<bar> < 1 \<Longrightarrow> 0 < Im(z + \<i> * csqrt(1 - z\<^sup>2))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2662 | using Arcsin_range_lemma [of "-z"] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2663 | by simp | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2664 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2665 | lemma Arccos_body_lemma: "z + \<i> * csqrt(1 - z\<^sup>2) \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2666 | using Arcsin_body_lemma [of z] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2667 | by (metis complex_i_mult_minus diff_add_cancel minus_diff_eq minus_unique mult.assoc mult.left_commute | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2668 | power2_csqrt power2_eq_square zero_neq_one) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2669 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2670 | lemma Re_Arccos: "Re(Arccos z) = Im (Ln (z + \<i> * csqrt(1 - z\<^sup>2)))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2671 | by (simp add: Arccos_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2672 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2673 | lemma Im_Arccos: "Im(Arccos z) = - ln (cmod (z + \<i> * csqrt (1 - z\<^sup>2)))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2674 | by (simp add: Arccos_def Arccos_body_lemma) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2675 | |
| 60420 | 2676 | text\<open>A very tricky argument to find!\<close> | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2677 | lemma isCont_Arccos_lemma: | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2678 | assumes eq0: "Im (z + \<i> * csqrt (1 - z\<^sup>2)) = 0" and "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1)" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2679 | shows False | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2680 | proof (cases "Im z = 0") | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2681 | case True | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2682 | then show ?thesis | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2683 | using assms by (fastforce simp add: cmod_def abs_square_less_1 [symmetric]) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2684 | next | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2685 | case False | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2686 | have Imz: "Im z = - sqrt ((1 + ((Im z)\<^sup>2 + cmod (1 - z\<^sup>2)) - (Re z)\<^sup>2) / 2)" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2687 | using eq0 abs_Re_le_cmod [of "1-z\<^sup>2"] | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2688 | by (simp add: Re_power2 algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2689 | have "(cmod z)\<^sup>2 - 1 \<noteq> cmod (1 - z\<^sup>2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2690 | proof (clarsimp simp add: cmod_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2691 | assume "(Re z)\<^sup>2 + (Im z)\<^sup>2 - 1 = sqrt ((1 - Re (z\<^sup>2))\<^sup>2 + (Im (z\<^sup>2))\<^sup>2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2692 | then have "((Re z)\<^sup>2 + (Im z)\<^sup>2 - 1)\<^sup>2 = ((1 - Re (z\<^sup>2))\<^sup>2 + (Im (z\<^sup>2))\<^sup>2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2693 | by simp | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2694 | then show False using False | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2695 | by (simp add: power2_eq_square algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2696 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2697 | moreover have "(Im z)\<^sup>2 = ((1 + ((Im z)\<^sup>2 + cmod (1 - z\<^sup>2)) - (Re z)\<^sup>2) / 2)" | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2698 | apply (subst Imz) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2699 | using abs_Re_le_cmod [of "1-z\<^sup>2"] | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2700 | apply (simp add: Re_power2) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2701 | done | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2702 | ultimately show False | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2703 | by (simp add: cmod_power2) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2704 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2705 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2706 | lemma isCont_Arccos: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2707 | assumes "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2708 | shows "isCont Arccos z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2709 | proof - | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2710 | have "z + \<i> * csqrt (1 - z\<^sup>2) \<notin> \<real>\<^sub>\<le>\<^sub>0" | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2711 | by (metis complex_nonpos_Reals_iff isCont_Arccos_lemma assms) | 
| 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2712 | with assms show ?thesis | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2713 | apply (simp add: Arccos_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2714 | apply (rule isCont_Ln' isCont_csqrt' continuous_intros)+ | 
| 62131 
1baed43f453e
nonneg_Reals, nonpos_Reals, Cauchy integral formula, etc.
 paulson parents: 
62087diff
changeset | 2715 | apply (simp_all add: one_minus_z2_notin_nonpos_Reals assms) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2716 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2717 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2718 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2719 | lemma isCont_Arccos' [simp]: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2720 | shows "isCont f z \<Longrightarrow> (Im (f z) = 0 \<Longrightarrow> \<bar>Re (f z)\<bar> < 1) \<Longrightarrow> isCont (\<lambda>x. Arccos (f x)) z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2721 | by (blast intro: isCont_o2 [OF _ isCont_Arccos]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2722 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2723 | lemma cos_Arccos [simp]: "cos(Arccos z) = z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2724 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2725 | have "z*2 + \<i> * (2 * csqrt (1 - z\<^sup>2)) = 0 \<longleftrightarrow> z*2 + \<i> * csqrt (1 - z\<^sup>2)*2 = 0" | 
| 61808 | 2726 | by (simp add: algebra_simps) \<comment>\<open>Cancelling a factor of 2\<close> | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2727 | moreover have "... \<longleftrightarrow> z + \<i> * csqrt (1 - z\<^sup>2) = 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2728 | by (metis distrib_right mult_eq_0_iff zero_neq_numeral) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2729 | ultimately show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2730 | apply (simp add: cos_exp_eq Arccos_def Arccos_body_lemma exp_minus field_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2731 | apply (simp add: power2_eq_square [symmetric]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2732 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2733 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2734 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2735 | lemma Arccos_cos: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2736 | assumes "0 < Re z & Re z < pi \<or> | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2737 | Re z = 0 & 0 \<le> Im z \<or> | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2738 | Re z = pi & Im z \<le> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2739 | shows "Arccos(cos z) = z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2740 | proof - | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 2741 | have *: "((\<i> - (exp (\<i> * z))\<^sup>2 * \<i>) / (2 * exp (\<i> * z))) = sin z" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2742 | by (simp add: sin_exp_eq exp_minus field_simps power2_eq_square) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 2743 | have "1 - (exp (\<i> * z) + inverse (exp (\<i> * z)))\<^sup>2 / 4 = ((\<i> - (exp (\<i> * z))\<^sup>2 * \<i>) / (2 * exp (\<i> * z)))\<^sup>2" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2744 | by (simp add: field_simps power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2745 | then have "Arccos(cos z) = - (\<i> * Ln ((exp (\<i> * z) + inverse (exp (\<i> * z))) / 2 + | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 2746 | \<i> * csqrt (((\<i> - (exp (\<i> * z))\<^sup>2 * \<i>) / (2 * exp (\<i> * z)))\<^sup>2)))" | 
| 61694 
6571c78c9667
Removed some legacy theorems; minor adjustments to simplification rules; new material on homotopic paths
 paulson <lp15@cam.ac.uk> parents: 
61649diff
changeset | 2747 | by (simp add: cos_exp_eq Arccos_def exp_minus power_divide) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2748 | also have "... = - (\<i> * Ln ((exp (\<i> * z) + inverse (exp (\<i> * z))) / 2 + | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 2749 | \<i> * ((\<i> - (exp (\<i> * z))\<^sup>2 * \<i>) / (2 * exp (\<i> * z)))))" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2750 | apply (subst csqrt_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2751 | using assms Re_sin_pos [of z] Im_sin_nonneg [of z] Im_sin_nonneg2 [of z] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2752 | apply (auto simp: * Re_sin Im_sin) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2753 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2754 | also have "... = - (\<i> * Ln (exp (\<i>*z)))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2755 | by (simp add: field_simps power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2756 | also have "... = z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2757 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2758 | apply (subst Complex_Transcendental.Ln_exp, auto) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2759 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2760 | finally show ?thesis . | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2761 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2762 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2763 | lemma Arccos_unique: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2764 | "\<lbrakk>cos z = w; | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2765 | 0 < Re z \<and> Re z < pi \<or> | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2766 | Re z = 0 \<and> 0 \<le> Im z \<or> | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2767 | Re z = pi \<and> Im z \<le> 0\<rbrakk> \<Longrightarrow> Arccos w = z" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2768 | using Arccos_cos by blast | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2769 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2770 | lemma Arccos_0 [simp]: "Arccos 0 = pi/2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2771 | by (rule Arccos_unique) (auto simp: of_real_numeral) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2772 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2773 | lemma Arccos_1 [simp]: "Arccos 1 = 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2774 | by (rule Arccos_unique) auto | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2775 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2776 | lemma Arccos_minus1: "Arccos(-1) = pi" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2777 | by (rule Arccos_unique) auto | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2778 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2779 | lemma has_field_derivative_Arccos: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2780 | assumes "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2781 | shows "(Arccos has_field_derivative - inverse(sin(Arccos z))) (at z)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2782 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2783 | have "(cos (Arccos z))\<^sup>2 \<noteq> 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2784 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2785 | apply atomize | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2786 | apply (auto simp: complex_eq_iff Re_power2 Im_power2 abs_square_eq_1) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2787 | apply (metis abs_minus_cancel abs_one abs_power2 numeral_One numeral_neq_neg_one) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2788 | apply (metis left_minus less_irrefl power_one sum_power2_gt_zero_iff zero_neq_neg_one) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2789 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2790 | then have "- sin (Arccos z) \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2791 | by (metis cos_squared_eq diff_0_right mult_zero_left neg_0_equal_iff_equal power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2792 | then have "(Arccos has_field_derivative inverse(- sin(Arccos z))) (at z)" | 
| 63492 
a662e8139804
More advanced theorems about retracts, homotopies., etc
 paulson <lp15@cam.ac.uk> parents: 
63296diff
changeset | 2793 | apply (rule has_complex_derivative_inverse_basic [OF DERIV_cos _ _ open_ball [of z 1]]) | 
| 
a662e8139804
More advanced theorems about retracts, homotopies., etc
 paulson <lp15@cam.ac.uk> parents: 
63296diff
changeset | 2794 | apply (auto intro: isCont_Arccos assms) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2795 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2796 | then show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2797 | by simp | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2798 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2799 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2800 | declare has_field_derivative_Arcsin [derivative_intros] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2801 | declare has_field_derivative_Arcsin [THEN DERIV_chain2, derivative_intros] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2802 | |
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2803 | lemma field_differentiable_at_Arccos: | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2804 | "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arccos field_differentiable at z" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2805 | using field_differentiable_def has_field_derivative_Arccos by blast | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2806 | |
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2807 | lemma field_differentiable_within_Arccos: | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2808 | "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arccos field_differentiable (at z within s)" | 
| 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2809 | using field_differentiable_at_Arccos field_differentiable_within_subset by blast | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2810 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2811 | lemma continuous_within_Arccos: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2812 | "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> continuous (at z within s) Arccos" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2813 | using continuous_at_imp_continuous_within isCont_Arccos by blast | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2814 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2815 | lemma continuous_on_Arccos [continuous_intros]: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2816 | "(\<And>z. z \<in> s \<Longrightarrow> Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> continuous_on s Arccos" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2817 | by (simp add: continuous_at_imp_continuous_on) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2818 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2819 | lemma holomorphic_on_Arccos: "(\<And>z. z \<in> s \<Longrightarrow> Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arccos holomorphic_on s" | 
| 62534 
6855b348e828
complex_differentiable -> field_differentiable, etc. (making these theorems also available for type real)
 paulson <lp15@cam.ac.uk> parents: 
62533diff
changeset | 2820 | by (simp add: field_differentiable_within_Arccos holomorphic_on_def) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2821 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2822 | |
| 60420 | 2823 | subsection\<open>Upper and Lower Bounds for Inverse Sine and Cosine\<close> | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2824 | |
| 61945 | 2825 | lemma Arcsin_bounds: "\<bar>Re z\<bar> < 1 \<Longrightarrow> \<bar>Re(Arcsin z)\<bar> < pi/2" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2826 | unfolding Re_Arcsin | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2827 | by (blast intro: Re_Ln_pos_lt_imp Arcsin_range_lemma) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2828 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2829 | lemma Arccos_bounds: "\<bar>Re z\<bar> < 1 \<Longrightarrow> 0 < Re(Arccos z) \<and> Re(Arccos z) < pi" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2830 | unfolding Re_Arccos | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2831 | by (blast intro!: Im_Ln_pos_lt_imp Arccos_range_lemma) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2832 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2833 | lemma Re_Arccos_bounds: "-pi < Re(Arccos z) \<and> Re(Arccos z) \<le> pi" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2834 | unfolding Re_Arccos | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2835 | by (blast intro!: mpi_less_Im_Ln Im_Ln_le_pi Arccos_body_lemma) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2836 | |
| 61945 | 2837 | lemma Re_Arccos_bound: "\<bar>Re(Arccos z)\<bar> \<le> pi" | 
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61610diff
changeset | 2838 | by (meson Re_Arccos_bounds abs_le_iff less_eq_real_def minus_less_iff) | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2839 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2840 | lemma Re_Arcsin_bounds: "-pi < Re(Arcsin z) & Re(Arcsin z) \<le> pi" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2841 | unfolding Re_Arcsin | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2842 | by (blast intro!: mpi_less_Im_Ln Im_Ln_le_pi Arcsin_body_lemma) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2843 | |
| 61945 | 2844 | lemma Re_Arcsin_bound: "\<bar>Re(Arcsin z)\<bar> \<le> pi" | 
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61610diff
changeset | 2845 | by (meson Re_Arcsin_bounds abs_le_iff less_eq_real_def minus_less_iff) | 
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61711diff
changeset | 2846 | |
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2847 | |
| 60420 | 2848 | subsection\<open>Interrelations between Arcsin and Arccos\<close> | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2849 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2850 | lemma cos_Arcsin_nonzero: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2851 | assumes "z\<^sup>2 \<noteq> 1" shows "cos(Arcsin z) \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2852 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2853 | have eq: "(\<i> * z * (csqrt (1 - z\<^sup>2)))\<^sup>2 = z\<^sup>2 * (z\<^sup>2 - 1)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2854 | by (simp add: power_mult_distrib algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2855 | have "\<i> * z * (csqrt (1 - z\<^sup>2)) \<noteq> z\<^sup>2 - 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2856 | proof | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2857 | assume "\<i> * z * (csqrt (1 - z\<^sup>2)) = z\<^sup>2 - 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2858 | then have "(\<i> * z * (csqrt (1 - z\<^sup>2)))\<^sup>2 = (z\<^sup>2 - 1)\<^sup>2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2859 | by simp | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2860 | then have "z\<^sup>2 * (z\<^sup>2 - 1) = (z\<^sup>2 - 1)*(z\<^sup>2 - 1)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2861 | using eq power2_eq_square by auto | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2862 | then show False | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2863 | using assms by simp | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2864 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2865 | then have "1 + \<i> * z * (csqrt (1 - z * z)) \<noteq> z\<^sup>2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2866 | by (metis add_minus_cancel power2_eq_square uminus_add_conv_diff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2867 | then have "2*(1 + \<i> * z * (csqrt (1 - z * z))) \<noteq> 2*z\<^sup>2" (*FIXME cancel_numeral_factor*) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2868 | by (metis mult_cancel_left zero_neq_numeral) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2869 | then have "(\<i> * z + csqrt (1 - z\<^sup>2))\<^sup>2 \<noteq> -1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2870 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2871 | apply (auto simp: power2_sum) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2872 | apply (simp add: power2_eq_square algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2873 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2874 | then show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2875 | apply (simp add: cos_exp_eq Arcsin_def exp_minus) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2876 | apply (simp add: divide_simps Arcsin_body_lemma) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2877 | apply (metis add.commute minus_unique power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2878 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2879 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2880 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2881 | lemma sin_Arccos_nonzero: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2882 | assumes "z\<^sup>2 \<noteq> 1" shows "sin(Arccos z) \<noteq> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2883 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2884 | have eq: "(\<i> * z * (csqrt (1 - z\<^sup>2)))\<^sup>2 = -(z\<^sup>2) * (1 - z\<^sup>2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2885 | by (simp add: power_mult_distrib algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2886 | have "\<i> * z * (csqrt (1 - z\<^sup>2)) \<noteq> 1 - z\<^sup>2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2887 | proof | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2888 | assume "\<i> * z * (csqrt (1 - z\<^sup>2)) = 1 - z\<^sup>2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2889 | then have "(\<i> * z * (csqrt (1 - z\<^sup>2)))\<^sup>2 = (1 - z\<^sup>2)\<^sup>2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2890 | by simp | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2891 | then have "-(z\<^sup>2) * (1 - z\<^sup>2) = (1 - z\<^sup>2)*(1 - z\<^sup>2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2892 | using eq power2_eq_square by auto | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2893 | then have "-(z\<^sup>2) = (1 - z\<^sup>2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2894 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2895 | by (metis add.commute add.right_neutral diff_add_cancel mult_right_cancel) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2896 | then show False | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2897 | using assms by simp | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2898 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2899 | then have "z\<^sup>2 + \<i> * z * (csqrt (1 - z\<^sup>2)) \<noteq> 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2900 | by (simp add: algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2901 | then have "2*(z\<^sup>2 + \<i> * z * (csqrt (1 - z\<^sup>2))) \<noteq> 2*1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2902 | by (metis mult_cancel_left2 zero_neq_numeral) (*FIXME cancel_numeral_factor*) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2903 | then have "(z + \<i> * csqrt (1 - z\<^sup>2))\<^sup>2 \<noteq> 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2904 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2905 | apply (auto simp: Power.comm_semiring_1_class.power2_sum power_mult_distrib) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2906 | apply (simp add: power2_eq_square algebra_simps) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2907 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2908 | then show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2909 | apply (simp add: sin_exp_eq Arccos_def exp_minus) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2910 | apply (simp add: divide_simps Arccos_body_lemma) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2911 | apply (simp add: power2_eq_square) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2912 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2913 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2914 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2915 | lemma cos_sin_csqrt: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2916 | assumes "0 < cos(Re z) \<or> cos(Re z) = 0 \<and> Im z * sin(Re z) \<le> 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2917 | shows "cos z = csqrt(1 - (sin z)\<^sup>2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2918 | apply (rule csqrt_unique [THEN sym]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2919 | apply (simp add: cos_squared_eq) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2920 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2921 | apply (auto simp: Re_cos Im_cos add_pos_pos mult_le_0_iff zero_le_mult_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2922 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2923 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2924 | lemma sin_cos_csqrt: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2925 | assumes "0 < sin(Re z) \<or> sin(Re z) = 0 \<and> 0 \<le> Im z * cos(Re z)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2926 | shows "sin z = csqrt(1 - (cos z)\<^sup>2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2927 | apply (rule csqrt_unique [THEN sym]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2928 | apply (simp add: sin_squared_eq) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2929 | using assms | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2930 | apply (auto simp: Re_sin Im_sin add_pos_pos mult_le_0_iff zero_le_mult_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2931 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2932 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2933 | lemma Arcsin_Arccos_csqrt_pos: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2934 | "(0 < Re z | Re z = 0 & 0 \<le> Im z) \<Longrightarrow> Arcsin z = Arccos(csqrt(1 - z\<^sup>2))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2935 | by (simp add: Arcsin_def Arccos_def Complex.csqrt_square add.commute) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2936 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2937 | lemma Arccos_Arcsin_csqrt_pos: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2938 | "(0 < Re z | Re z = 0 & 0 \<le> Im z) \<Longrightarrow> Arccos z = Arcsin(csqrt(1 - z\<^sup>2))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2939 | by (simp add: Arcsin_def Arccos_def Complex.csqrt_square add.commute) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2940 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2941 | lemma sin_Arccos: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2942 | "0 < Re z | Re z = 0 & 0 \<le> Im z \<Longrightarrow> sin(Arccos z) = csqrt(1 - z\<^sup>2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2943 | by (simp add: Arccos_Arcsin_csqrt_pos) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2944 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2945 | lemma cos_Arcsin: | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2946 | "0 < Re z | Re z = 0 & 0 \<le> Im z \<Longrightarrow> cos(Arcsin z) = csqrt(1 - z\<^sup>2)" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2947 | by (simp add: Arcsin_Arccos_csqrt_pos) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2948 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2949 | |
| 60420 | 2950 | subsection\<open>Relationship with Arcsin on the Real Numbers\<close> | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2951 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2952 | lemma Im_Arcsin_of_real: | 
| 61945 | 2953 | assumes "\<bar>x\<bar> \<le> 1" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2954 | shows "Im (Arcsin (of_real x)) = 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2955 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2956 | have "csqrt (1 - (of_real x)\<^sup>2) = (if x^2 \<le> 1 then sqrt (1 - x^2) else \<i> * sqrt (x^2 - 1))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2957 | by (simp add: of_real_sqrt del: csqrt_of_real_nonneg) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2958 | then have "cmod (\<i> * of_real x + csqrt (1 - (of_real x)\<^sup>2))^2 = 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2959 | using assms abs_square_le_1 | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2960 | by (force simp add: Complex.cmod_power2) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2961 | then have "cmod (\<i> * of_real x + csqrt (1 - (of_real x)\<^sup>2)) = 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2962 | by (simp add: norm_complex_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2963 | then show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2964 | by (simp add: Im_Arcsin exp_minus) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2965 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2966 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2967 | corollary Arcsin_in_Reals [simp]: "z \<in> \<real> \<Longrightarrow> \<bar>Re z\<bar> \<le> 1 \<Longrightarrow> Arcsin z \<in> \<real>" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2968 | by (metis Im_Arcsin_of_real Re_complex_of_real Reals_cases complex_is_Real_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2969 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2970 | lemma arcsin_eq_Re_Arcsin: | 
| 61945 | 2971 | assumes "\<bar>x\<bar> \<le> 1" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2972 | shows "arcsin x = Re (Arcsin (of_real x))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2973 | unfolding arcsin_def | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2974 | proof (rule the_equality, safe) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2975 | show "- (pi / 2) \<le> Re (Arcsin (complex_of_real x))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2976 | using Re_Ln_pos_le [OF Arcsin_body_lemma, of "of_real x"] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2977 | by (auto simp: Complex.in_Reals_norm Re_Arcsin) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2978 | next | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2979 | show "Re (Arcsin (complex_of_real x)) \<le> pi / 2" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2980 | using Re_Ln_pos_le [OF Arcsin_body_lemma, of "of_real x"] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2981 | by (auto simp: Complex.in_Reals_norm Re_Arcsin) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2982 | next | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2983 | show "sin (Re (Arcsin (complex_of_real x))) = x" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2984 | using Re_sin [of "Arcsin (of_real x)"] Arcsin_body_lemma [of "of_real x"] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2985 | by (simp add: Im_Arcsin_of_real assms) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2986 | next | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2987 | fix x' | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2988 | assume "- (pi / 2) \<le> x'" "x' \<le> pi / 2" "x = sin x'" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2989 | then show "x' = Re (Arcsin (complex_of_real (sin x')))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2990 | apply (simp add: sin_of_real [symmetric]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2991 | apply (subst Arcsin_sin) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2992 | apply (auto simp: ) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2993 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2994 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2995 | |
| 61945 | 2996 | lemma of_real_arcsin: "\<bar>x\<bar> \<le> 1 \<Longrightarrow> of_real(arcsin x) = Arcsin(of_real x)" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2997 | by (metis Im_Arcsin_of_real add.right_neutral arcsin_eq_Re_Arcsin complex_eq mult_zero_right of_real_0) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2998 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 2999 | |
| 60420 | 3000 | subsection\<open>Relationship with Arccos on the Real Numbers\<close> | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3001 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3002 | lemma Im_Arccos_of_real: | 
| 61945 | 3003 | assumes "\<bar>x\<bar> \<le> 1" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3004 | shows "Im (Arccos (of_real x)) = 0" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3005 | proof - | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3006 | have "csqrt (1 - (of_real x)\<^sup>2) = (if x^2 \<le> 1 then sqrt (1 - x^2) else \<i> * sqrt (x^2 - 1))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3007 | by (simp add: of_real_sqrt del: csqrt_of_real_nonneg) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3008 | then have "cmod (of_real x + \<i> * csqrt (1 - (of_real x)\<^sup>2))^2 = 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3009 | using assms abs_square_le_1 | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3010 | by (force simp add: Complex.cmod_power2) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3011 | then have "cmod (of_real x + \<i> * csqrt (1 - (of_real x)\<^sup>2)) = 1" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3012 | by (simp add: norm_complex_def) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3013 | then show ?thesis | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3014 | by (simp add: Im_Arccos exp_minus) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3015 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3016 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3017 | corollary Arccos_in_Reals [simp]: "z \<in> \<real> \<Longrightarrow> \<bar>Re z\<bar> \<le> 1 \<Longrightarrow> Arccos z \<in> \<real>" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3018 | by (metis Im_Arccos_of_real Re_complex_of_real Reals_cases complex_is_Real_iff) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3019 | |
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3020 | lemma arccos_eq_Re_Arccos: | 
| 61945 | 3021 | assumes "\<bar>x\<bar> \<le> 1" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3022 | shows "arccos x = Re (Arccos (of_real x))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3023 | unfolding arccos_def | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3024 | proof (rule the_equality, safe) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3025 | show "0 \<le> Re (Arccos (complex_of_real x))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3026 | using Im_Ln_pos_le [OF Arccos_body_lemma, of "of_real x"] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3027 | by (auto simp: Complex.in_Reals_norm Re_Arccos) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3028 | next | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3029 | show "Re (Arccos (complex_of_real x)) \<le> pi" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3030 | using Im_Ln_pos_le [OF Arccos_body_lemma, of "of_real x"] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3031 | by (auto simp: Complex.in_Reals_norm Re_Arccos) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3032 | next | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3033 | show "cos (Re (Arccos (complex_of_real x))) = x" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3034 | using Re_cos [of "Arccos (of_real x)"] Arccos_body_lemma [of "of_real x"] | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3035 | by (simp add: Im_Arccos_of_real assms) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3036 | next | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3037 | fix x' | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3038 | assume "0 \<le> x'" "x' \<le> pi" "x = cos x'" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3039 | then show "x' = Re (Arccos (complex_of_real (cos x')))" | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3040 | apply (simp add: cos_of_real [symmetric]) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3041 | apply (subst Arccos_cos) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3042 | apply (auto simp: ) | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3043 | done | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3044 | qed | 
| 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3045 | |
| 61945 | 3046 | lemma of_real_arccos: "\<bar>x\<bar> \<le> 1 \<Longrightarrow> of_real(arccos x) = Arccos(of_real x)" | 
| 59870 
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
 paulson <lp15@cam.ac.uk> parents: 
59862diff
changeset | 3047 | by (metis Im_Arccos_of_real add.right_neutral arccos_eq_Re_Arccos complex_eq mult_zero_right of_real_0) | 
| 59751 
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
 paulson <lp15@cam.ac.uk> parents: 
59746diff
changeset | 3048 | |
| 60420 | 3049 | subsection\<open>Some interrelationships among the real inverse trig functions.\<close> | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3050 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3051 | lemma arccos_arctan: | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3052 | assumes "-1 < x" "x < 1" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3053 | shows "arccos x = pi/2 - arctan(x / sqrt(1 - x\<^sup>2))" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3054 | proof - | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3055 | have "arctan(x / sqrt(1 - x\<^sup>2)) - (pi/2 - arccos x) = 0" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3056 | proof (rule sin_eq_0_pi) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3057 | show "- pi < arctan (x / sqrt (1 - x\<^sup>2)) - (pi / 2 - arccos x)" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3058 | using arctan_lbound [of "x / sqrt(1 - x\<^sup>2)"] arccos_bounded [of x] assms | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3059 | by (simp add: algebra_simps) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3060 | next | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3061 | show "arctan (x / sqrt (1 - x\<^sup>2)) - (pi / 2 - arccos x) < pi" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3062 | using arctan_ubound [of "x / sqrt(1 - x\<^sup>2)"] arccos_bounded [of x] assms | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3063 | by (simp add: algebra_simps) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3064 | next | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3065 | show "sin (arctan (x / sqrt (1 - x\<^sup>2)) - (pi / 2 - arccos x)) = 0" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3066 | using assms | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3067 | by (simp add: algebra_simps sin_diff cos_add sin_arccos sin_arctan cos_arctan | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3068 | power2_eq_square square_eq_1_iff) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3069 | qed | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3070 | then show ?thesis | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3071 | by simp | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3072 | qed | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3073 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3074 | lemma arcsin_plus_arccos: | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3075 | assumes "-1 \<le> x" "x \<le> 1" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3076 | shows "arcsin x + arccos x = pi/2" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3077 | proof - | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3078 | have "arcsin x = pi/2 - arccos x" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3079 | apply (rule sin_inj_pi) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3080 | using assms arcsin [OF assms] arccos [OF assms] | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3081 | apply (auto simp: algebra_simps sin_diff) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3082 | done | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3083 | then show ?thesis | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3084 | by (simp add: algebra_simps) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3085 | qed | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3086 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3087 | lemma arcsin_arccos_eq: "-1 \<le> x \<Longrightarrow> x \<le> 1 \<Longrightarrow> arcsin x = pi/2 - arccos x" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3088 | using arcsin_plus_arccos by force | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3089 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3090 | lemma arccos_arcsin_eq: "-1 \<le> x \<Longrightarrow> x \<le> 1 \<Longrightarrow> arccos x = pi/2 - arcsin x" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3091 | using arcsin_plus_arccos by force | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3092 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3093 | lemma arcsin_arctan: "-1 < x \<Longrightarrow> x < 1 \<Longrightarrow> arcsin x = arctan(x / sqrt(1 - x\<^sup>2))" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3094 | by (simp add: arccos_arctan arcsin_arccos_eq) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3095 | |
| 60162 | 3096 | lemma csqrt_1_diff_eq: "csqrt (1 - (of_real x)\<^sup>2) = (if x^2 \<le> 1 then sqrt (1 - x^2) else \<i> * sqrt (x^2 - 1))" | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3097 | by ( simp add: of_real_sqrt del: csqrt_of_real_nonneg) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3098 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3099 | lemma arcsin_arccos_sqrt_pos: "0 \<le> x \<Longrightarrow> x \<le> 1 \<Longrightarrow> arcsin x = arccos(sqrt(1 - x\<^sup>2))" | 
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61711diff
changeset | 3100 | apply (simp add: abs_square_le_1 arcsin_eq_Re_Arcsin arccos_eq_Re_Arccos) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3101 | apply (subst Arcsin_Arccos_csqrt_pos) | 
| 60162 | 3102 | apply (auto simp: power_le_one csqrt_1_diff_eq) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3103 | done | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3104 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3105 | lemma arcsin_arccos_sqrt_neg: "-1 \<le> x \<Longrightarrow> x \<le> 0 \<Longrightarrow> arcsin x = -arccos(sqrt(1 - x\<^sup>2))" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3106 | using arcsin_arccos_sqrt_pos [of "-x"] | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3107 | by (simp add: arcsin_minus) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3108 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3109 | lemma arccos_arcsin_sqrt_pos: "0 \<le> x \<Longrightarrow> x \<le> 1 \<Longrightarrow> arccos x = arcsin(sqrt(1 - x\<^sup>2))" | 
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61711diff
changeset | 3110 | apply (simp add: abs_square_le_1 arcsin_eq_Re_Arcsin arccos_eq_Re_Arccos) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3111 | apply (subst Arccos_Arcsin_csqrt_pos) | 
| 60162 | 3112 | apply (auto simp: power_le_one csqrt_1_diff_eq) | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3113 | done | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3114 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3115 | lemma arccos_arcsin_sqrt_neg: "-1 \<le> x \<Longrightarrow> x \<le> 0 \<Longrightarrow> arccos x = pi - arcsin(sqrt(1 - x\<^sup>2))" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3116 | using arccos_arcsin_sqrt_pos [of "-x"] | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3117 | by (simp add: arccos_minus) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3118 | |
| 60420 | 3119 | subsection\<open>continuity results for arcsin and arccos.\<close> | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3120 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3121 | lemma continuous_on_Arcsin_real [continuous_intros]: | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3122 |     "continuous_on {w \<in> \<real>. \<bar>Re w\<bar> \<le> 1} Arcsin"
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3123 | proof - | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3124 |   have "continuous_on {w \<in> \<real>. \<bar>Re w\<bar> \<le> 1} (\<lambda>x. complex_of_real (arcsin (Re x))) =
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3125 |         continuous_on {w \<in> \<real>. \<bar>Re w\<bar> \<le> 1} (\<lambda>x. complex_of_real (Re (Arcsin (of_real (Re x)))))"
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3126 | by (rule continuous_on_cong [OF refl]) (simp add: arcsin_eq_Re_Arcsin) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3127 | also have "... = ?thesis" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3128 | by (rule continuous_on_cong [OF refl]) simp | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3129 | finally show ?thesis | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3130 |     using continuous_on_arcsin [OF continuous_on_Re [OF continuous_on_id], of "{w \<in> \<real>. \<bar>Re w\<bar> \<le> 1}"]
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3131 | continuous_on_of_real | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3132 | by fastforce | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3133 | qed | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3134 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3135 | lemma continuous_within_Arcsin_real: | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3136 |     "continuous (at z within {w \<in> \<real>. \<bar>Re w\<bar> \<le> 1}) Arcsin"
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3137 | proof (cases "z \<in> {w \<in> \<real>. \<bar>Re w\<bar> \<le> 1}")
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3138 | case True then show ?thesis | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3139 | using continuous_on_Arcsin_real continuous_on_eq_continuous_within | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3140 | by blast | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3141 | next | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3142 | case False | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3143 | with closed_real_abs_le [of 1] show ?thesis | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3144 | by (rule continuous_within_closed_nontrivial) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3145 | qed | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3146 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3147 | lemma continuous_on_Arccos_real: | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3148 |     "continuous_on {w \<in> \<real>. \<bar>Re w\<bar> \<le> 1} Arccos"
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3149 | proof - | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3150 |   have "continuous_on {w \<in> \<real>. \<bar>Re w\<bar> \<le> 1} (\<lambda>x. complex_of_real (arccos (Re x))) =
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3151 |         continuous_on {w \<in> \<real>. \<bar>Re w\<bar> \<le> 1} (\<lambda>x. complex_of_real (Re (Arccos (of_real (Re x)))))"
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3152 | by (rule continuous_on_cong [OF refl]) (simp add: arccos_eq_Re_Arccos) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3153 | also have "... = ?thesis" | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3154 | by (rule continuous_on_cong [OF refl]) simp | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3155 | finally show ?thesis | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3156 |     using continuous_on_arccos [OF continuous_on_Re [OF continuous_on_id], of "{w \<in> \<real>. \<bar>Re w\<bar> \<le> 1}"]
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3157 | continuous_on_of_real | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3158 | by fastforce | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3159 | qed | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3160 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3161 | lemma continuous_within_Arccos_real: | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3162 |     "continuous (at z within {w \<in> \<real>. \<bar>Re w\<bar> \<le> 1}) Arccos"
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3163 | proof (cases "z \<in> {w \<in> \<real>. \<bar>Re w\<bar> \<le> 1}")
 | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3164 | case True then show ?thesis | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3165 | using continuous_on_Arccos_real continuous_on_eq_continuous_within | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3166 | by blast | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3167 | next | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3168 | case False | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3169 | with closed_real_abs_le [of 1] show ?thesis | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3170 | by (rule continuous_within_closed_nontrivial) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3171 | qed | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3172 | |
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59870diff
changeset | 3173 | |
| 60420 | 3174 | subsection\<open>Roots of unity\<close> | 
| 60020 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3175 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3176 | lemma complex_root_unity: | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3177 | fixes j::nat | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3178 | assumes "n \<noteq> 0" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3179 | shows "exp(2 * of_real pi * \<i> * of_nat j / of_nat n)^n = 1" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3180 | proof - | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3181 | have *: "of_nat j * (complex_of_real pi * 2) = complex_of_real (2 * real j * pi)" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3182 | by (simp add: of_real_numeral) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3183 | then show ?thesis | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3184 | apply (simp add: exp_of_nat_mult [symmetric] mult_ac exp_Euler) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3185 | apply (simp only: * cos_of_real sin_of_real) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3186 | apply (simp add: ) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3187 | done | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3188 | qed | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3189 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3190 | lemma complex_root_unity_eq: | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3191 | fixes j::nat and k::nat | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3192 | assumes "1 \<le> n" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3193 | shows "(exp(2 * of_real pi * \<i> * of_nat j / of_nat n) = exp(2 * of_real pi * \<i> * of_nat k / of_nat n) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3194 | \<longleftrightarrow> j mod n = k mod n)" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3195 | proof - | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3196 | have "(\<exists>z::int. \<i> * (of_nat j * (of_real pi * 2)) = | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3197 | \<i> * (of_nat k * (of_real pi * 2)) + \<i> * (of_int z * (of_nat n * (of_real pi * 2)))) \<longleftrightarrow> | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3198 | (\<exists>z::int. of_nat j * (\<i> * (of_real pi * 2)) = | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3199 | (of_nat k + of_nat n * of_int z) * (\<i> * (of_real pi * 2)))" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3200 | by (simp add: algebra_simps) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3201 | also have "... \<longleftrightarrow> (\<exists>z::int. of_nat j = of_nat k + of_nat n * (of_int z :: complex))" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3202 | by simp | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3203 | also have "... \<longleftrightarrow> (\<exists>z::int. of_nat j = of_nat k + of_nat n * z)" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3204 | apply (rule HOL.iff_exI) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3205 | apply (auto simp: ) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3206 | using of_int_eq_iff apply fastforce | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3207 | by (metis of_int_add of_int_mult of_int_of_nat_eq) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3208 | also have "... \<longleftrightarrow> int j mod int n = int k mod int n" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3209 | by (auto simp: zmod_eq_dvd_iff dvd_def algebra_simps) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3210 | also have "... \<longleftrightarrow> j mod n = k mod n" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3211 | by (metis of_nat_eq_iff zmod_int) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3212 | finally have "(\<exists>z. \<i> * (of_nat j * (of_real pi * 2)) = | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3213 | \<i> * (of_nat k * (of_real pi * 2)) + \<i> * (of_int z * (of_nat n * (of_real pi * 2)))) \<longleftrightarrow> j mod n = k mod n" . | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3214 | note * = this | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3215 | show ?thesis | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3216 | using assms | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3217 | by (simp add: exp_eq divide_simps mult_ac of_real_numeral *) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3218 | qed | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3219 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3220 | corollary bij_betw_roots_unity: | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3221 | "bij_betw (\<lambda>j. exp(2 * of_real pi * \<i> * of_nat j / of_nat n)) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3222 |               {..<n}  {exp(2 * of_real pi * \<i> * of_nat j / of_nat n) | j. j < n}"
 | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3223 | by (auto simp: bij_betw_def inj_on_def complex_root_unity_eq) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3224 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3225 | lemma complex_root_unity_eq_1: | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3226 | fixes j::nat and k::nat | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3227 | assumes "1 \<le> n" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3228 | shows "exp(2 * of_real pi * \<i> * of_nat j / of_nat n) = 1 \<longleftrightarrow> n dvd j" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3229 | proof - | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3230 | have "1 = exp(2 * of_real pi * \<i> * (of_nat n / of_nat n))" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3231 | using assms by simp | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3232 | then have "exp(2 * of_real pi * \<i> * (of_nat j / of_nat n)) = 1 \<longleftrightarrow> j mod n = n mod n" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3233 | using complex_root_unity_eq [of n j n] assms | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3234 | by simp | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3235 | then show ?thesis | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3236 | by auto | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3237 | qed | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3238 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3239 | lemma finite_complex_roots_unity_explicit: | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3240 |      "finite {exp(2 * of_real pi * \<i> * of_nat j / of_nat n) | j::nat. j < n}"
 | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3241 | by simp | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3242 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3243 | lemma card_complex_roots_unity_explicit: | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3244 |      "card {exp(2 * of_real pi * \<i> * of_nat j / of_nat n) | j::nat. j < n} = n"
 | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3245 | by (simp add: Finite_Set.bij_betw_same_card [OF bij_betw_roots_unity, symmetric]) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3246 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3247 | lemma complex_roots_unity: | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3248 | assumes "1 \<le> n" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3249 |     shows "{z::complex. z^n = 1} = {exp(2 * of_real pi * \<i> * of_nat j / of_nat n) | j::nat. j < n}"
 | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3250 | apply (rule Finite_Set.card_seteq [symmetric]) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3251 | using assms | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3252 | apply (auto simp: card_complex_roots_unity_explicit finite_roots_unity complex_root_unity card_roots_unity) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3253 | done | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3254 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3255 | lemma card_complex_roots_unity: "1 \<le> n \<Longrightarrow> card {z::complex. z^n = 1} = n"
 | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3256 | by (simp add: card_complex_roots_unity_explicit complex_roots_unity) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3257 | |
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3258 | lemma complex_not_root_unity: | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3259 | "1 \<le> n \<Longrightarrow> \<exists>u::complex. norm u = 1 \<and> u^n \<noteq> 1" | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3260 | apply (rule_tac x="exp (of_real pi * \<i> * of_real (1 / n))" in exI) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3261 | apply (auto simp: Re_complex_div_eq_0 exp_of_nat_mult [symmetric] mult_ac exp_Euler) | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3262 | done | 
| 
065ecea354d0
Complex roots of unity. Better definition of ln for complex numbers. Used [code del] to stop code generation for powr.
 paulson <lp15@cam.ac.uk> parents: 
60017diff
changeset | 3263 | |
| 64394 | 3264 | subsection\<open> Formulation of loop homotopy in terms of maps out of type complex\<close> | 
| 3265 | ||
| 3266 | lemma homotopic_circlemaps_imp_homotopic_loops: | |
| 3267 | assumes "homotopic_with (\<lambda>h. True) (sphere 0 1) S f g" | |
| 3268 | shows "homotopic_loops S (f \<circ> exp \<circ> (\<lambda>t. 2 * of_real pi * of_real t * ii)) | |
| 3269 | (g \<circ> exp \<circ> (\<lambda>t. 2 * of_real pi * of_real t * ii))" | |
| 3270 | proof - | |
| 3271 |   have "homotopic_with (\<lambda>f. True) {z. cmod z = 1} S f g"
 | |
| 3272 | using assms by (auto simp: sphere_def) | |
| 3273 |   moreover have "continuous_on {0..1} (exp \<circ> (\<lambda>t. 2 * of_real pi * of_real t * \<i>))"
 | |
| 3274 | by (intro continuous_intros) | |
| 3275 |   moreover have "(exp \<circ> (\<lambda>t. 2 * of_real pi * of_real t * \<i>)) ` {0..1} \<subseteq> {z. cmod z = 1}"
 | |
| 3276 | by (auto simp: norm_mult) | |
| 3277 | ultimately | |
| 3278 | show ?thesis | |
| 3279 | apply (simp add: homotopic_loops_def comp_assoc) | |
| 3280 | apply (rule homotopic_with_compose_continuous_right) | |
| 3281 | apply (auto simp: pathstart_def pathfinish_def) | |
| 3282 | done | |
| 3283 | qed | |
| 3284 | ||
| 3285 | lemma homotopic_loops_imp_homotopic_circlemaps: | |
| 3286 | assumes "homotopic_loops S p q" | |
| 3287 | shows "homotopic_with (\<lambda>h. True) (sphere 0 1) S | |
| 3288 | (p \<circ> (\<lambda>z. (Arg z / (2 * pi)))) | |
| 3289 | (q \<circ> (\<lambda>z. (Arg z / (2 * pi))))" | |
| 3290 | proof - | |
| 3291 |   obtain h where conth: "continuous_on ({0..1::real} \<times> {0..1}) h"
 | |
| 3292 |              and him: "h ` ({0..1} \<times> {0..1}) \<subseteq> S"
 | |
| 3293 | and h0: "(\<forall>x. h (0, x) = p x)" | |
| 3294 | and h1: "(\<forall>x. h (1, x) = q x)" | |
| 3295 |              and h01: "(\<forall>t\<in>{0..1}. h (t, 1) = h (t, 0)) "
 | |
| 3296 | using assms | |
| 3297 | by (auto simp: homotopic_loops_def sphere_def homotopic_with_def pathstart_def pathfinish_def) | |
| 3298 | define j where "j \<equiv> \<lambda>z. if 0 \<le> Im (snd z) | |
| 3299 | then h (fst z, Arg (snd z) / (2 * pi)) | |
| 3300 | else h (fst z, 1 - Arg (cnj (snd z)) / (2 * pi))" | |
| 3301 | have Arg_eq: "1 - Arg (cnj y) / (2 * pi) = Arg y / (2 * pi) \<or> Arg y = 0 \<and> Arg (cnj y) = 0" if "cmod y = 1" for y | |
| 3302 | using that Arg_eq_0_pi Arg_eq_pi by (force simp: Arg_cnj divide_simps) | |
| 3303 | show ?thesis | |
| 3304 | proof (simp add: homotopic_with; intro conjI ballI exI) | |
| 3305 |     show "continuous_on ({0..1} \<times> sphere 0 1) (\<lambda>w. h (fst w, Arg (snd w) / (2 * pi)))"
 | |
| 3306 | proof (rule continuous_on_eq) | |
| 3307 |       show j: "j x = h (fst x, Arg (snd x) / (2 * pi))" if "x \<in> {0..1} \<times> sphere 0 1" for x
 | |
| 3308 | using Arg_eq that h01 by (force simp: j_def) | |
| 3309 |       have eq:  "S = S \<inter> (UNIV \<times> {z. 0 \<le> Im z}) \<union> S \<inter> (UNIV \<times> {z. Im z \<le> 0})" for S :: "(real*complex)set"
 | |
| 3310 | by auto | |
| 3311 |       have c1: "continuous_on ({0..1} \<times> sphere 0 1 \<inter> UNIV \<times> {z. 0 \<le> Im z}) (\<lambda>x. h (fst x, Arg (snd x) / (2 * pi)))"
 | |
| 3312 | apply (intro continuous_intros continuous_on_compose2 [OF conth] continuous_on_compose2 [OF continuous_on_upperhalf_Arg]) | |
| 3313 | apply (auto simp: Arg) | |
| 3314 | apply (meson Arg_lt_2pi linear not_le) | |
| 3315 | done | |
| 3316 |       have c2: "continuous_on ({0..1} \<times> sphere 0 1 \<inter> UNIV \<times> {z. Im z \<le> 0}) (\<lambda>x. h (fst x, 1 - Arg (cnj (snd x)) / (2 * pi)))"
 | |
| 3317 | apply (intro continuous_intros continuous_on_compose2 [OF conth] continuous_on_compose2 [OF continuous_on_upperhalf_Arg]) | |
| 3318 | apply (auto simp: Arg) | |
| 3319 | apply (meson Arg_lt_2pi linear not_le) | |
| 3320 | done | |
| 3321 |       show "continuous_on ({0..1} \<times> sphere 0 1) j"
 | |
| 3322 | apply (simp add: j_def) | |
| 3323 | apply (subst eq) | |
| 3324 | apply (rule continuous_on_cases_local) | |
| 3325 | apply (simp_all add: eq [symmetric] closedin_closed_Int closed_Times closed_halfspace_Im_le closed_halfspace_Im_ge c1 c2) | |
| 3326 | using Arg_eq h01 | |
| 3327 | by force | |
| 3328 | qed | |
| 3329 |     have "(\<lambda>w. h (fst w, Arg (snd w) / (2 * pi))) ` ({0..1} \<times> sphere 0 1) \<subseteq> h ` ({0..1} \<times> {0..1})"
 | |
| 3330 | by (auto simp: Arg_ge_0 Arg_lt_2pi less_imp_le) | |
| 3331 | also have "... \<subseteq> S" | |
| 3332 | using him by blast | |
| 3333 |     finally show "(\<lambda>w. h (fst w, Arg (snd w) / (2 * pi))) ` ({0..1} \<times> sphere 0 1) \<subseteq> S" .
 | |
| 3334 | qed (auto simp: h0 h1) | |
| 3335 | qed | |
| 3336 | ||
| 3337 | lemma simply_connected_homotopic_loops: | |
| 3338 | "simply_connected S \<longleftrightarrow> | |
| 3339 | (\<forall>p q. homotopic_loops S p p \<and> homotopic_loops S q q \<longrightarrow> homotopic_loops S p q)" | |
| 3340 | unfolding simply_connected_def using homotopic_loops_refl by metis | |
| 3341 | ||
| 3342 | ||
| 3343 | lemma simply_connected_eq_homotopic_circlemaps1: | |
| 3344 | fixes f :: "complex \<Rightarrow> 'a::topological_space" and g :: "complex \<Rightarrow> 'a" | |
| 3345 | assumes S: "simply_connected S" | |
| 3346 | and contf: "continuous_on (sphere 0 1) f" and fim: "f ` (sphere 0 1) \<subseteq> S" | |
| 3347 | and contg: "continuous_on (sphere 0 1) g" and gim: "g ` (sphere 0 1) \<subseteq> S" | |
| 3348 | shows "homotopic_with (\<lambda>h. True) (sphere 0 1) S f g" | |
| 3349 | proof - | |
| 3350 | have "homotopic_loops S (f \<circ> exp \<circ> (\<lambda>t. of_real(2 * pi * t) * ii)) (g \<circ> exp \<circ> (\<lambda>t. of_real(2 * pi * t) * ii))" | |
| 3351 | apply (rule S [unfolded simply_connected_homotopic_loops, rule_format]) | |
| 3352 | apply (simp add: homotopic_circlemaps_imp_homotopic_loops homotopic_with_refl contf fim contg gim) | |
| 3353 | done | |
| 3354 | then show ?thesis | |
| 3355 | apply (rule homotopic_with_eq [OF homotopic_loops_imp_homotopic_circlemaps]) | |
| 3356 | apply (auto simp: o_def complex_norm_eq_1_exp mult.commute) | |
| 3357 | done | |
| 3358 | qed | |
| 3359 | ||
| 3360 | lemma simply_connected_eq_homotopic_circlemaps2a: | |
| 3361 | fixes h :: "complex \<Rightarrow> 'a::topological_space" | |
| 3362 | assumes conth: "continuous_on (sphere 0 1) h" and him: "h ` (sphere 0 1) \<subseteq> S" | |
| 3363 | and hom: "\<And>f g::complex \<Rightarrow> 'a. | |
| 3364 | \<lbrakk>continuous_on (sphere 0 1) f; f ` (sphere 0 1) \<subseteq> S; | |
| 3365 | continuous_on (sphere 0 1) g; g ` (sphere 0 1) \<subseteq> S\<rbrakk> | |
| 3366 | \<Longrightarrow> homotopic_with (\<lambda>h. True) (sphere 0 1) S f g" | |
| 3367 | shows "\<exists>a. homotopic_with (\<lambda>h. True) (sphere 0 1) S h (\<lambda>x. a)" | |
| 3368 | apply (rule_tac x="h 1" in exI) | |
| 3369 | apply (rule hom) | |
| 3370 | using assms | |
| 3371 | by (auto simp: continuous_on_const) | |
| 3372 | ||
| 3373 | lemma simply_connected_eq_homotopic_circlemaps2b: | |
| 3374 | fixes S :: "'a::real_normed_vector set" | |
| 3375 | assumes "\<And>f g::complex \<Rightarrow> 'a. | |
| 3376 | \<lbrakk>continuous_on (sphere 0 1) f; f ` (sphere 0 1) \<subseteq> S; | |
| 3377 | continuous_on (sphere 0 1) g; g ` (sphere 0 1) \<subseteq> S\<rbrakk> | |
| 3378 | \<Longrightarrow> homotopic_with (\<lambda>h. True) (sphere 0 1) S f g" | |
| 3379 | shows "path_connected S" | |
| 3380 | proof (clarsimp simp add: path_connected_eq_homotopic_points) | |
| 3381 | fix a b | |
| 3382 | assume "a \<in> S" "b \<in> S" | |
| 3383 | then show "homotopic_loops S (linepath a a) (linepath b b)" | |
| 3384 | using homotopic_circlemaps_imp_homotopic_loops [OF assms [of "\<lambda>x. a" "\<lambda>x. b"]] | |
| 3385 | by (auto simp: o_def continuous_on_const linepath_def) | |
| 3386 | qed | |
| 3387 | ||
| 3388 | lemma simply_connected_eq_homotopic_circlemaps3: | |
| 3389 | fixes h :: "complex \<Rightarrow> 'a::real_normed_vector" | |
| 3390 | assumes "path_connected S" | |
| 3391 | and hom: "\<And>f::complex \<Rightarrow> 'a. | |
| 3392 | \<lbrakk>continuous_on (sphere 0 1) f; f `(sphere 0 1) \<subseteq> S\<rbrakk> | |
| 3393 | \<Longrightarrow> \<exists>a. homotopic_with (\<lambda>h. True) (sphere 0 1) S f (\<lambda>x. a)" | |
| 3394 | shows "simply_connected S" | |
| 3395 | proof (clarsimp simp add: simply_connected_eq_contractible_loop_some assms) | |
| 3396 | fix p | |
| 3397 | assume p: "path p" "path_image p \<subseteq> S" "pathfinish p = pathstart p" | |
| 3398 | then have "homotopic_loops S p p" | |
| 3399 | by (simp add: homotopic_loops_refl) | |
| 3400 | then obtain a where homp: "homotopic_with (\<lambda>h. True) (sphere 0 1) S (p \<circ> (\<lambda>z. Arg z / (2 * pi))) (\<lambda>x. a)" | |
| 3401 | by (metis homotopic_with_imp_subset2 homotopic_loops_imp_homotopic_circlemaps homotopic_with_imp_continuous hom) | |
| 3402 | show "\<exists>a. a \<in> S \<and> homotopic_loops S p (linepath a a)" | |
| 3403 | proof (intro exI conjI) | |
| 3404 | show "a \<in> S" | |
| 3405 | using homotopic_with_imp_subset2 [OF homp] | |
| 3406 | by (metis dist_0_norm image_subset_iff mem_sphere norm_one) | |
| 3407 | have teq: "\<And>t. \<lbrakk>0 \<le> t; t \<le> 1\<rbrakk> | |
| 3408 | \<Longrightarrow> t = Arg (exp (2 * of_real pi * of_real t * \<i>)) / (2 * pi) \<or> t=1 \<and> Arg (exp (2 * of_real pi * of_real t * \<i>)) = 0" | |
| 3409 | apply (rule disjCI) | |
| 3410 | using Arg_of_real [of 1] apply (auto simp: Arg_exp) | |
| 3411 | done | |
| 3412 | have "homotopic_loops S p (p \<circ> (\<lambda>z. Arg z / (2 * pi)) \<circ> exp \<circ> (\<lambda>t. 2 * complex_of_real pi * complex_of_real t * \<i>))" | |
| 3413 | apply (rule homotopic_loops_eq [OF p]) | |
| 3414 | using p teq apply (fastforce simp: pathfinish_def pathstart_def) | |
| 3415 | done | |
| 3416 | then | |
| 3417 | show "homotopic_loops S p (linepath a a)" | |
| 3418 | by (simp add: linepath_refl homotopic_loops_trans [OF _ homotopic_circlemaps_imp_homotopic_loops [OF homp, simplified K_record_comp]]) | |
| 3419 | qed | |
| 3420 | qed | |
| 3421 | ||
| 3422 | ||
| 3423 | proposition simply_connected_eq_homotopic_circlemaps: | |
| 3424 | fixes S :: "'a::real_normed_vector set" | |
| 3425 | shows "simply_connected S \<longleftrightarrow> | |
| 3426 | (\<forall>f g::complex \<Rightarrow> 'a. | |
| 3427 | continuous_on (sphere 0 1) f \<and> f ` (sphere 0 1) \<subseteq> S \<and> | |
| 3428 | continuous_on (sphere 0 1) g \<and> g ` (sphere 0 1) \<subseteq> S | |
| 3429 | \<longrightarrow> homotopic_with (\<lambda>h. True) (sphere 0 1) S f g)" | |
| 3430 | apply (rule iffI) | |
| 3431 | apply (blast elim: dest: simply_connected_eq_homotopic_circlemaps1) | |
| 3432 | by (simp add: simply_connected_eq_homotopic_circlemaps2a simply_connected_eq_homotopic_circlemaps2b simply_connected_eq_homotopic_circlemaps3) | |
| 3433 | ||
| 3434 | proposition simply_connected_eq_contractible_circlemap: | |
| 3435 | fixes S :: "'a::real_normed_vector set" | |
| 3436 | shows "simply_connected S \<longleftrightarrow> | |
| 3437 | path_connected S \<and> | |
| 3438 | (\<forall>f::complex \<Rightarrow> 'a. | |
| 3439 | continuous_on (sphere 0 1) f \<and> f `(sphere 0 1) \<subseteq> S | |
| 3440 | \<longrightarrow> (\<exists>a. homotopic_with (\<lambda>h. True) (sphere 0 1) S f (\<lambda>x. a)))" | |
| 3441 | apply (rule iffI) | |
| 3442 | apply (simp add: simply_connected_eq_homotopic_circlemaps1 simply_connected_eq_homotopic_circlemaps2a simply_connected_eq_homotopic_circlemaps2b) | |
| 3443 | using simply_connected_eq_homotopic_circlemaps3 by blast | |
| 3444 | ||
| 3445 | corollary homotopy_eqv_simple_connectedness: | |
| 3446 | fixes S :: "'a::real_normed_vector set" and T :: "'b::real_normed_vector set" | |
| 3447 | shows "S homotopy_eqv T \<Longrightarrow> simply_connected S \<longleftrightarrow> simply_connected T" | |
| 3448 | by (simp add: simply_connected_eq_homotopic_circlemaps homotopy_eqv_homotopic_triviality) | |
| 3449 | ||
| 59745 
390476a0ef13
new file for complex transcendental functions
 paulson <lp15@cam.ac.uk> parents: diff
changeset | 3450 | end |