author | wenzelm |
Wed, 10 Jun 2015 19:10:20 +0200 | |
changeset 60420 | 884f54e01427 |
parent 60162 | 645058aa9d6f |
child 60809 | 457abb82fb9e |
permissions | -rw-r--r-- |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
1 |
(* Author: John Harrison |
59745
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
2 |
Ported from "hol_light/Multivariate/transcendentals.ml" by L C Paulson (2015) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
3 |
*) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
4 |
|
60420 | 5 |
section \<open>Complex Transcendental Functions\<close> |
59745
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
6 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
7 |
theory Complex_Transcendental |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
8 |
imports "~~/src/HOL/Multivariate_Analysis/Complex_Analysis_Basics" |
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 |
|
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
11 |
lemma cmod_add_real_less: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
12 |
assumes "Im z \<noteq> 0" "r\<noteq>0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
13 |
shows "cmod (z + r) < cmod z + abs r" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
14 |
proof (cases z) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
15 |
case (Complex x y) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
16 |
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:
59862
diff
changeset
|
17 |
apply (rule real_less_rsqrt) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
18 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
19 |
apply (simp add: Complex power2_eq_square) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
20 |
using not_real_square_gt_zero by blast |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
21 |
then show ?thesis using assms Complex |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
22 |
apply (auto simp: cmod_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
23 |
apply (rule power2_less_imp_less, auto) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
24 |
apply (simp add: power2_eq_square field_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
25 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
26 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
27 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
28 |
lemma cmod_diff_real_less: "Im z \<noteq> 0 \<Longrightarrow> x\<noteq>0 \<Longrightarrow> cmod (z - x) < cmod z + abs x" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
29 |
using cmod_add_real_less [of z "-x"] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
30 |
by simp |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
31 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
32 |
lemma cmod_square_less_1_plus: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
33 |
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:
59862
diff
changeset
|
34 |
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:
59862
diff
changeset
|
35 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
36 |
apply (cases "Im z = 0 \<or> Re z = 0") |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
37 |
using abs_square_less_1 |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
38 |
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:
59862
diff
changeset
|
39 |
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:
59862
diff
changeset
|
40 |
apply (simp add: norm_power Im_power2) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
41 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
42 |
|
60420 | 43 |
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
|
44 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
45 |
lemma complex_differentiable_within_exp: "exp complex_differentiable (at z within s)" |
60150
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
46 |
using DERIV_exp complex_differentiable_at_within complex_differentiable_def by blast |
59745
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
47 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
48 |
lemma continuous_within_exp: |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
49 |
fixes z::"'a::{real_normed_field,banach}" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
50 |
shows "continuous (at z within s) exp" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
51 |
by (simp add: continuous_at_imp_continuous_within) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
52 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
53 |
lemma continuous_on_exp: |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
54 |
fixes s::"'a::{real_normed_field,banach} set" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
55 |
shows "continuous_on s exp" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
56 |
by (simp add: continuous_on_exp continuous_on_id) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
57 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
58 |
lemma holomorphic_on_exp: "exp holomorphic_on s" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
59 |
by (simp add: complex_differentiable_within_exp holomorphic_on_def) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
60 |
|
60420 | 61 |
subsection\<open>Euler and de Moivre formulas.\<close> |
62 |
||
63 |
text\<open>The sine series times @{term i}\<close> |
|
59745
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
64 |
lemma sin_ii_eq: "(\<lambda>n. (ii * sin_coeff n) * z^n) sums (ii * sin z)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
65 |
proof - |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
66 |
have "(\<lambda>n. ii * sin_coeff n *\<^sub>R z^n) sums (ii * sin z)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
67 |
using sin_converges sums_mult by blast |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
68 |
then show ?thesis |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
69 |
by (simp add: scaleR_conv_of_real field_simps) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
70 |
qed |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
71 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
72 |
theorem exp_Euler: "exp(ii * z) = cos(z) + ii * sin(z)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
73 |
proof - |
59862 | 74 |
have "(\<lambda>n. (cos_coeff n + ii * sin_coeff n) * z^n) |
59745
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
75 |
= (\<lambda>n. (ii * z) ^ n /\<^sub>R (fact n))" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
76 |
proof |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
77 |
fix n |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
78 |
show "(cos_coeff n + ii * sin_coeff n) * z^n = (ii * z) ^ n /\<^sub>R (fact n)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
79 |
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
|
80 |
qed |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
81 |
also have "... sums (exp (ii * z))" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
82 |
by (rule exp_converges) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
83 |
finally have "(\<lambda>n. (cos_coeff n + ii * sin_coeff n) * z^n) sums (exp (ii * z))" . |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
84 |
moreover have "(\<lambda>n. (cos_coeff n + ii * sin_coeff n) * z^n) sums (cos z + ii * sin z)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
85 |
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
|
86 |
by (simp add: field_simps scaleR_conv_of_real) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
87 |
ultimately show ?thesis |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
88 |
using sums_unique2 by blast |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
89 |
qed |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
90 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
91 |
corollary exp_minus_Euler: "exp(-(ii * z)) = cos(z) - ii * sin(z)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
92 |
using exp_Euler [of "-z"] |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
93 |
by simp |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
94 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
95 |
lemma sin_exp_eq: "sin z = (exp(ii * z) - exp(-(ii * z))) / (2*ii)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
96 |
by (simp add: exp_Euler exp_minus_Euler) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
97 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
98 |
lemma sin_exp_eq': "sin z = ii * (exp(-(ii * z)) - exp(ii * z)) / 2" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
99 |
by (simp add: exp_Euler exp_minus_Euler) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
100 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
101 |
lemma cos_exp_eq: "cos z = (exp(ii * z) + exp(-(ii * z))) / 2" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
102 |
by (simp add: exp_Euler exp_minus_Euler) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
103 |
|
60420 | 104 |
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
|
105 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
106 |
lemma real_sin_eq [simp]: |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
107 |
fixes x::real |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
108 |
shows "Re(sin(of_real x)) = sin x" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
109 |
by (simp add: sin_of_real) |
59862 | 110 |
|
59745
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
111 |
lemma real_cos_eq [simp]: |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
112 |
fixes x::real |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
113 |
shows "Re(cos(of_real x)) = cos x" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
114 |
by (simp add: cos_of_real) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
115 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
116 |
lemma DeMoivre: "(cos z + ii * sin z) ^ n = cos(n * z) + ii * sin(n * z)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
117 |
apply (simp add: exp_Euler [symmetric]) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
118 |
by (metis exp_of_nat_mult mult.left_commute) |
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 exp_cnj: |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
121 |
fixes z::complex |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
122 |
shows "cnj (exp z) = exp (cnj z)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
123 |
proof - |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
124 |
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
|
125 |
by auto |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
126 |
also have "... sums (exp (cnj z))" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
127 |
by (rule exp_converges) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
128 |
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
|
129 |
moreover have "(\<lambda>n. cnj (z ^ n /\<^sub>R (fact n))) sums (cnj (exp z))" |
59862 | 130 |
by (metis exp_converges sums_cnj) |
59745
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
131 |
ultimately show ?thesis |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
132 |
using sums_unique2 |
59862 | 133 |
by blast |
59745
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
134 |
qed |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
135 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
136 |
lemma cnj_sin: "cnj(sin z) = sin(cnj z)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
137 |
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
|
138 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
139 |
lemma cnj_cos: "cnj(cos z) = cos(cnj z)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
140 |
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
|
141 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
142 |
lemma complex_differentiable_at_sin: "sin complex_differentiable at z" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
143 |
using DERIV_sin complex_differentiable_def by blast |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
144 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
145 |
lemma complex_differentiable_within_sin: "sin complex_differentiable (at z within s)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
146 |
by (simp add: complex_differentiable_at_sin complex_differentiable_at_within) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
147 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
148 |
lemma complex_differentiable_at_cos: "cos complex_differentiable at z" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
149 |
using DERIV_cos complex_differentiable_def by blast |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
150 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
151 |
lemma complex_differentiable_within_cos: "cos complex_differentiable (at z within s)" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
152 |
by (simp add: complex_differentiable_at_cos complex_differentiable_at_within) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
153 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
154 |
lemma holomorphic_on_sin: "sin holomorphic_on s" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
155 |
by (simp add: complex_differentiable_within_sin holomorphic_on_def) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
156 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
157 |
lemma holomorphic_on_cos: "cos holomorphic_on s" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
158 |
by (simp add: complex_differentiable_within_cos holomorphic_on_def) |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
159 |
|
60420 | 160 |
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
|
161 |
|
59862 | 162 |
lemma Euler: "exp(z) = of_real(exp(Re z)) * |
59745
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
163 |
(of_real(cos(Im z)) + ii * of_real(sin(Im z)))" |
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
164 |
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
|
165 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
166 |
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
|
167 |
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
|
168 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
169 |
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
|
170 |
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
|
171 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
172 |
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
|
173 |
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
|
174 |
|
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
175 |
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
|
176 |
by (simp add: cos_exp_eq field_simps Im_divide Im_exp) |
59862 | 177 |
|
178 |
lemma Re_sin_pos: "0 < Re z \<Longrightarrow> Re z < pi \<Longrightarrow> Re (sin z) > 0" |
|
179 |
by (auto simp: Re_sin Im_sin add_pos_pos sin_gt_zero) |
|
180 |
||
181 |
lemma Im_sin_nonneg: "Re z = 0 \<Longrightarrow> 0 \<le> Im z \<Longrightarrow> 0 \<le> Im (sin z)" |
|
182 |
by (simp add: Re_sin Im_sin algebra_simps) |
|
183 |
||
184 |
lemma Im_sin_nonneg2: "Re z = pi \<Longrightarrow> Im z \<le> 0 \<Longrightarrow> 0 \<le> Im (sin z)" |
|
185 |
by (simp add: Re_sin Im_sin algebra_simps) |
|
186 |
||
60420 | 187 |
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:
59745
diff
changeset
|
188 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
189 |
lemma exp_Complex: "exp(Complex r t) = of_real(exp r) * Complex (cos t) (sin t)" |
59862 | 190 |
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:
59745
diff
changeset
|
191 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
192 |
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:
59745
diff
changeset
|
193 |
apply auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
194 |
apply (metis exp_eq_one_iff norm_exp_eq_Re norm_one) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
195 |
apply (metis Re_exp cos_one_2pi_int mult.commute mult.left_neutral norm_exp_eq_Re norm_one one_complex.simps(1) real_of_int_def) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
196 |
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 real_of_int_def sin_zero_iff_int2) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
197 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
198 |
lemma exp_eq: "exp w = exp z \<longleftrightarrow> (\<exists>n::int. w = z + (of_int (2 * n) * pi) * ii)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
199 |
(is "?lhs = ?rhs") |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
200 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
201 |
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:
59745
diff
changeset
|
202 |
by (simp add: exp_diff) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
203 |
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:
59745
diff
changeset
|
204 |
by (simp add: exp_eq_1) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
205 |
also have "... \<longleftrightarrow> ?rhs" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
206 |
by (auto simp: algebra_simps intro!: complex_eqI) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
207 |
finally show ?thesis . |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
208 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
209 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
210 |
lemma exp_complex_eqI: "abs(Im w - Im z) < 2*pi \<Longrightarrow> exp w = exp z \<Longrightarrow> w = z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
211 |
by (auto simp: exp_eq abs_mult) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
212 |
|
59862 | 213 |
lemma exp_integer_2pi: |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
214 |
assumes "n \<in> Ints" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
215 |
shows "exp((2 * n * pi) * ii) = 1" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
216 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
217 |
have "exp((2 * n * pi) * ii) = exp 0" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
218 |
using assms |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
219 |
by (simp only: Ints_def exp_eq) auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
220 |
also have "... = 1" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
221 |
by simp |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
222 |
finally show ?thesis . |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
223 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
224 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
225 |
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:
59745
diff
changeset
|
226 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
227 |
{ assume "sin y = sin x" "cos y = cos x" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
228 |
then have "cos (y-x) = 1" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
229 |
using cos_add [of y "-x"] by simp |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
230 |
then have "\<exists>n::int. y-x = real n * 2 * pi" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
231 |
using cos_one_2pi_int by blast } |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
232 |
then show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
233 |
apply (auto simp: sin_add cos_add) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
234 |
apply (metis add.commute diff_add_cancel mult.commute) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
235 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
236 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
237 |
|
59862 | 238 |
lemma exp_i_ne_1: |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
239 |
assumes "0 < x" "x < 2*pi" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
240 |
shows "exp(\<i> * of_real x) \<noteq> 1" |
59862 | 241 |
proof |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
242 |
assume "exp (\<i> * of_real x) = 1" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
243 |
then have "exp (\<i> * of_real x) = exp 0" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
244 |
by simp |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
245 |
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:
59745
diff
changeset
|
246 |
by (simp only: Ints_def exp_eq) auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
247 |
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:
59745
diff
changeset
|
248 |
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:
59745
diff
changeset
|
249 |
then have "x = (of_int (2 * n) * pi)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
250 |
by simp |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
251 |
then show False using assms |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
252 |
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:
59745
diff
changeset
|
253 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
254 |
|
59862 | 255 |
lemma sin_eq_0: |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
256 |
fixes z::complex |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
257 |
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:
59745
diff
changeset
|
258 |
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:
59745
diff
changeset
|
259 |
|
59862 | 260 |
lemma cos_eq_0: |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
261 |
fixes z::complex |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
262 |
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:
59745
diff
changeset
|
263 |
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:
59745
diff
changeset
|
264 |
by (simp add: sin_diff algebra_simps) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
265 |
|
59862 | 266 |
lemma cos_eq_1: |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
267 |
fixes z::complex |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
268 |
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:
59745
diff
changeset
|
269 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
270 |
have "cos z = cos (2*(z/2))" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
271 |
by simp |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
272 |
also have "... = 1 - 2 * sin (z/2) ^ 2" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
273 |
by (simp only: cos_double_sin) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
274 |
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:
59745
diff
changeset
|
275 |
by simp |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
276 |
show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
277 |
by (auto simp: sin_eq_0 of_real_numeral) |
59862 | 278 |
qed |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
279 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
280 |
lemma csin_eq_1: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
281 |
fixes z::complex |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
282 |
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:
59745
diff
changeset
|
283 |
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:
59745
diff
changeset
|
284 |
by (simp add: cos_diff algebra_simps) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
285 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
286 |
lemma csin_eq_minus1: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
287 |
fixes z::complex |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
288 |
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:
59745
diff
changeset
|
289 |
(is "_ = ?rhs") |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
290 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
291 |
have "sin z = -1 \<longleftrightarrow> sin (-z) = 1" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
292 |
by (simp add: equation_minus_iff) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
293 |
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:
59745
diff
changeset
|
294 |
by (simp only: csin_eq_1) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
295 |
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:
59745
diff
changeset
|
296 |
apply (rule iff_exI) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
297 |
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:
59745
diff
changeset
|
298 |
also have "... = ?rhs" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
299 |
apply (auto simp: of_real_numeral) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
300 |
apply (rule_tac [2] x="-(x+1)" in exI) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
301 |
apply (rule_tac x="-(x+1)" in exI) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
302 |
apply (simp_all add: algebra_simps) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
303 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
304 |
finally show ?thesis . |
59862 | 305 |
qed |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
306 |
|
59862 | 307 |
lemma ccos_eq_minus1: |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
308 |
fixes z::complex |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
309 |
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:
59745
diff
changeset
|
310 |
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:
59745
diff
changeset
|
311 |
apply (simp add: sin_diff) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
312 |
apply (simp add: algebra_simps of_real_numeral equation_minus_iff) |
59862 | 313 |
done |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
314 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
315 |
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:
59745
diff
changeset
|
316 |
(is "_ = ?rhs") |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
317 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
318 |
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:
59745
diff
changeset
|
319 |
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:
59745
diff
changeset
|
320 |
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:
59745
diff
changeset
|
321 |
by (simp only: csin_eq_1) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
322 |
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:
59745
diff
changeset
|
323 |
apply (rule iff_exI) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
324 |
apply (auto simp: algebra_simps of_real_numeral) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
325 |
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:
59745
diff
changeset
|
326 |
apply (auto simp: of_real_numeral) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
327 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
328 |
also have "... = ?rhs" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
329 |
by (auto simp: algebra_simps) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
330 |
finally show ?thesis . |
59862 | 331 |
qed |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
332 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
333 |
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:
59745
diff
changeset
|
334 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
335 |
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:
59745
diff
changeset
|
336 |
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:
59745
diff
changeset
|
337 |
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:
59745
diff
changeset
|
338 |
by (simp only: csin_eq_minus1) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
339 |
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:
59745
diff
changeset
|
340 |
apply (rule iff_exI) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
341 |
apply (auto simp: algebra_simps) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
342 |
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:
59745
diff
changeset
|
343 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
344 |
also have "... = ?rhs" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
345 |
by (auto simp: algebra_simps) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
346 |
finally show ?thesis . |
59862 | 347 |
qed |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
348 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
349 |
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:
59745
diff
changeset
|
350 |
(is "_ = ?rhs") |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
351 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
352 |
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:
59745
diff
changeset
|
353 |
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:
59745
diff
changeset
|
354 |
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:
59745
diff
changeset
|
355 |
by (simp only: ccos_eq_minus1) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
356 |
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:
59745
diff
changeset
|
357 |
apply (rule iff_exI) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
358 |
apply (auto simp: algebra_simps) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
359 |
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:
59745
diff
changeset
|
360 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
361 |
also have "... = ?rhs" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
362 |
by (auto simp: algebra_simps) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
363 |
finally show ?thesis . |
59862 | 364 |
qed |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
365 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
366 |
lemma dist_exp_ii_1: "norm(exp(ii * of_real t) - 1) = 2 * abs(sin(t / 2))" |
59862 | 367 |
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:
59745
diff
changeset
|
368 |
using cos_double_sin [of "t/2"] |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
369 |
apply (simp add: real_sqrt_mult) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
370 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
371 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
372 |
lemma sinh_complex: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
373 |
fixes z :: complex |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
374 |
shows "(exp z - inverse (exp z)) / 2 = -ii * sin(ii * z)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
375 |
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:
59745
diff
changeset
|
376 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
377 |
lemma sin_ii_times: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
378 |
fixes z :: complex |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
379 |
shows "sin(ii * z) = ii * ((exp z - inverse (exp z)) / 2)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
380 |
using sinh_complex by auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
381 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
382 |
lemma sinh_real: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
383 |
fixes x :: real |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
384 |
shows "of_real((exp x - inverse (exp x)) / 2) = -ii * sin(ii * of_real x)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
385 |
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:
59745
diff
changeset
|
386 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
387 |
lemma cosh_complex: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
388 |
fixes z :: complex |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
389 |
shows "(exp z + inverse (exp z)) / 2 = cos(ii * z)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
390 |
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:
59745
diff
changeset
|
391 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
392 |
lemma cosh_real: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
393 |
fixes x :: real |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
394 |
shows "of_real((exp x + inverse (exp x)) / 2) = cos(ii * of_real x)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
395 |
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:
59745
diff
changeset
|
396 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
397 |
lemmas cos_ii_times = cosh_complex [symmetric] |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
398 |
|
59862 | 399 |
lemma norm_cos_squared: |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
400 |
"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:
59745
diff
changeset
|
401 |
apply (cases z) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
402 |
apply (simp add: cos_add cmod_power2 cos_of_real sin_of_real) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
403 |
apply (simp add: cos_exp_eq sin_exp_eq exp_minus exp_of_real Re_divide Im_divide) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
404 |
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:
59745
diff
changeset
|
405 |
apply (simp add: sin_squared_eq) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
406 |
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:
59745
diff
changeset
|
407 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
408 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
409 |
lemma norm_sin_squared: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
410 |
"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:
59745
diff
changeset
|
411 |
apply (cases z) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
412 |
apply (simp add: sin_add cmod_power2 cos_of_real sin_of_real cos_double_cos exp_double) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
413 |
apply (simp add: cos_exp_eq sin_exp_eq exp_minus exp_of_real Re_divide Im_divide) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
414 |
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:
59745
diff
changeset
|
415 |
apply (simp add: cos_squared_eq) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
416 |
apply (simp add: power2_eq_square algebra_simps divide_simps) |
59862 | 417 |
done |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
418 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
419 |
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:
59745
diff
changeset
|
420 |
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:
59745
diff
changeset
|
421 |
|
59862 | 422 |
lemma norm_cos_le: |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
423 |
fixes z::complex |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
424 |
shows "norm(cos z) \<le> exp(norm z)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
425 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
426 |
have "Im z \<le> cmod z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
427 |
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:
59745
diff
changeset
|
428 |
with exp_uminus_Im show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
429 |
apply (simp add: cos_exp_eq norm_divide) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
430 |
apply (rule order_trans [OF norm_triangle_ineq], simp) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
431 |
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:
59745
diff
changeset
|
432 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
433 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
434 |
|
59862 | 435 |
lemma norm_cos_plus1_le: |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
436 |
fixes z::complex |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
437 |
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:
59745
diff
changeset
|
438 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
439 |
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:
59745
diff
changeset
|
440 |
by arith |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
441 |
have *: "Im z \<le> cmod z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
442 |
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:
59745
diff
changeset
|
443 |
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:
59745
diff
changeset
|
444 |
by (simp add: norm_add_rule_thm) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
445 |
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:
59745
diff
changeset
|
446 |
by (simp add: cos_exp_eq) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
447 |
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:
59745
diff
changeset
|
448 |
by (simp add: field_simps) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
449 |
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:
59745
diff
changeset
|
450 |
by (simp add: norm_divide) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
451 |
finally show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
452 |
apply (rule ssubst, simp) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
453 |
apply (rule order_trans [OF triangle3], simp) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
454 |
using exp_uminus_Im * |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
455 |
apply (auto intro: mono) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
456 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
457 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
458 |
|
60420 | 459 |
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:
59745
diff
changeset
|
460 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
461 |
declare power_Suc [simp del] |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
462 |
|
59862 | 463 |
lemma Taylor_exp: |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
464 |
"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:
59745
diff
changeset
|
465 |
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:
59745
diff
changeset
|
466 |
show "convex (closed_segment 0 z)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
467 |
by (rule convex_segment [of 0 z]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
468 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
469 |
fix k x |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
470 |
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:
59745
diff
changeset
|
471 |
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:
59745
diff
changeset
|
472 |
using DERIV_exp DERIV_subset by blast |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
473 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
474 |
fix x |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
475 |
assume "x \<in> closed_segment 0 z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
476 |
then show "Re x \<le> \<bar>Re z\<bar>" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
477 |
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:
59745
diff
changeset
|
478 |
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:
59745
diff
changeset
|
479 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
480 |
show "0 \<in> closed_segment 0 z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
481 |
by (auto simp: closed_segment_def) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
482 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
483 |
show "z \<in> closed_segment 0 z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
484 |
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:
59745
diff
changeset
|
485 |
using of_real_1 zero_le_one by blast |
59862 | 486 |
qed |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
487 |
|
59862 | 488 |
lemma |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
489 |
assumes "0 \<le> u" "u \<le> 1" |
59862 | 490 |
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:
59745
diff
changeset
|
491 |
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:
59745
diff
changeset
|
492 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
493 |
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:
59745
diff
changeset
|
494 |
by arith |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
495 |
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:
59745
diff
changeset
|
496 |
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:
59745
diff
changeset
|
497 |
apply (rule order_trans [OF norm_triangle_ineq4]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
498 |
apply (rule mono) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
499 |
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:
59745
diff
changeset
|
500 |
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:
59745
diff
changeset
|
501 |
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:
59745
diff
changeset
|
502 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
503 |
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:
59745
diff
changeset
|
504 |
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:
59745
diff
changeset
|
505 |
apply (rule order_trans [OF norm_triangle_ineq]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
506 |
apply (rule mono) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
507 |
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:
59745
diff
changeset
|
508 |
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:
59745
diff
changeset
|
509 |
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:
59745
diff
changeset
|
510 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
511 |
qed |
59862 | 512 |
|
513 |
lemma Taylor_sin: |
|
514 |
"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:
59745
diff
changeset
|
515 |
\<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:
59745
diff
changeset
|
516 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
517 |
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:
59745
diff
changeset
|
518 |
by arith |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
519 |
have *: "cmod (sin z - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
520 |
(\<Sum>i\<le>n. (-1) ^ (i div 2) * (if even i then sin 0 else cos 0) * z ^ i / (fact i))) |
59862 | 521 |
\<le> exp \<bar>Im z\<bar> * cmod z ^ Suc n / (fact n)" |
60162 | 522 |
proof (rule complex_taylor [of "closed_segment 0 z" n |
523 |
"\<lambda>k x. (-1)^(k div 2) * (if even k then sin x else cos x)" |
|
524 |
"exp\<bar>Im z\<bar>" 0 z, simplified]) |
|
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
525 |
show "convex (closed_segment 0 z)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
526 |
by (rule convex_segment [of 0 z]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
527 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
528 |
fix k x |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
529 |
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:
59745
diff
changeset
|
530 |
(- 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:
59745
diff
changeset
|
531 |
(at x within closed_segment 0 z)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
532 |
apply (auto simp: power_Suc) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
533 |
apply (intro derivative_eq_intros | simp)+ |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
534 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
535 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
536 |
fix x |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
537 |
assume "x \<in> closed_segment 0 z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
538 |
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:
59745
diff
changeset
|
539 |
by (auto simp: closed_segment_def norm_mult norm_power cmod_sin_le_exp cmod_cos_le_exp) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
540 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
541 |
show "0 \<in> closed_segment 0 z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
542 |
by (auto simp: closed_segment_def) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
543 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
544 |
show "z \<in> closed_segment 0 z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
545 |
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:
59745
diff
changeset
|
546 |
using of_real_1 zero_le_one by blast |
59862 | 547 |
qed |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
548 |
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:
59745
diff
changeset
|
549 |
= (-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:
59745
diff
changeset
|
550 |
by (auto simp: sin_coeff_def elim!: oddE) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
551 |
show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
552 |
apply (rule order_trans [OF _ *]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
553 |
apply (simp add: **) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
554 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
555 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
556 |
|
59862 | 557 |
lemma Taylor_cos: |
558 |
"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:
59745
diff
changeset
|
559 |
\<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:
59745
diff
changeset
|
560 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
561 |
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:
59745
diff
changeset
|
562 |
by arith |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
563 |
have *: "cmod (cos z - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
564 |
(\<Sum>i\<le>n. (-1) ^ (Suc i div 2) * (if even i then cos 0 else sin 0) * z ^ i / (fact i))) |
59862 | 565 |
\<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:
59745
diff
changeset
|
566 |
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:
59745
diff
changeset
|
567 |
simplified]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
568 |
show "convex (closed_segment 0 z)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
569 |
by (rule convex_segment [of 0 z]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
570 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
571 |
fix k x |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
572 |
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:
59745
diff
changeset
|
573 |
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:
59745
diff
changeset
|
574 |
(- 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:
59745
diff
changeset
|
575 |
(at x within closed_segment 0 z)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
576 |
apply (auto simp: power_Suc) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
577 |
apply (intro derivative_eq_intros | simp)+ |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
578 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
579 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
580 |
fix x |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
581 |
assume "x \<in> closed_segment 0 z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
582 |
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:
59745
diff
changeset
|
583 |
by (auto simp: closed_segment_def norm_mult norm_power cmod_sin_le_exp cmod_cos_le_exp) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
584 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
585 |
show "0 \<in> closed_segment 0 z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
586 |
by (auto simp: closed_segment_def) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
587 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
588 |
show "z \<in> closed_segment 0 z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
589 |
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:
59745
diff
changeset
|
590 |
using of_real_1 zero_le_one by blast |
59862 | 591 |
qed |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
592 |
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:
59745
diff
changeset
|
593 |
= (-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:
59745
diff
changeset
|
594 |
by (auto simp: cos_coeff_def elim!: evenE) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
595 |
show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
596 |
apply (rule order_trans [OF _ *]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
597 |
apply (simp add: **) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
598 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
599 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
600 |
|
60162 | 601 |
declare power_Suc [simp] |
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
602 |
|
60420 | 603 |
text\<open>32-bit Approximation to e\<close> |
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
604 |
lemma e_approx_32: "abs(exp(1) - 5837465777 / 2147483648) \<le> (inverse(2 ^ 32)::real)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
605 |
using Taylor_exp [of 1 14] exp_le |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
606 |
apply (simp add: setsum_left_distrib in_Reals_norm Re_exp atMost_nat_numeral fact_numeral) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
607 |
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:
59746
diff
changeset
|
608 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
609 |
|
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:
59870
diff
changeset
|
610 |
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:
59870
diff
changeset
|
611 |
using e_approx_32 |
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:
59870
diff
changeset
|
612 |
by (simp add: abs_if split: split_if_asm) |
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:
59870
diff
changeset
|
613 |
|
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:
59870
diff
changeset
|
614 |
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:
59870
diff
changeset
|
615 |
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:
59870
diff
changeset
|
616 |
|
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:
59870
diff
changeset
|
617 |
|
60420 | 618 |
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:
59745
diff
changeset
|
619 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
620 |
definition Arg :: "complex \<Rightarrow> real" where |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
621 |
"Arg z \<equiv> if z = 0 then 0 |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
622 |
else THE t. 0 \<le> t \<and> t < 2*pi \<and> |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
623 |
z = of_real(norm z) * exp(ii * of_real t)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
624 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
625 |
lemma Arg_0 [simp]: "Arg(0) = 0" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
626 |
by (simp add: Arg_def) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
627 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
628 |
lemma Arg_unique_lemma: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
629 |
assumes z: "z = of_real(norm z) * exp(ii * of_real t)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
630 |
and z': "z = of_real(norm z) * exp(ii * of_real t')" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
631 |
and t: "0 \<le> t" "t < 2*pi" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
632 |
and t': "0 \<le> t'" "t' < 2*pi" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
633 |
and nz: "z \<noteq> 0" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
634 |
shows "t' = t" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
635 |
proof - |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
636 |
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:
59745
diff
changeset
|
637 |
by arith |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
638 |
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:
59745
diff
changeset
|
639 |
by (metis z z') |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
640 |
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:
59745
diff
changeset
|
641 |
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:
59745
diff
changeset
|
642 |
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:
59745
diff
changeset
|
643 |
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:
59745
diff
changeset
|
644 |
by (metis Complex_eq complex.sel) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
645 |
then obtain n::int where n: "t' = t + 2 * real n * pi" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
646 |
by (auto simp: sin_cos_eq_iff) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
647 |
then have "n=0" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
648 |
apply (rule_tac z=n in int_cases) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
649 |
using t t' |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
650 |
apply (auto simp: mult_less_0_iff algebra_simps) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
651 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
652 |
then show "t' = t" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
653 |
by (simp add: n) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
654 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
655 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
656 |
lemma Arg: "0 \<le> Arg z & Arg z < 2*pi & z = of_real(norm z) * exp(ii * of_real(Arg z))" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
657 |
proof (cases "z=0") |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
658 |
case True then show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
659 |
by (simp add: Arg_def) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
660 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
661 |
case False |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
662 |
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:
59745
diff
changeset
|
663 |
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:
59745
diff
changeset
|
664 |
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:
59745
diff
changeset
|
665 |
by blast |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
666 |
have z: "z = of_real(norm z) * exp(ii * of_real t)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
667 |
apply (rule complex_eqI) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
668 |
using t False ReIm |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
669 |
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:
59745
diff
changeset
|
670 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
671 |
show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
672 |
apply (simp add: Arg_def False) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
673 |
apply (rule theI [where a=t]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
674 |
using t z False |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
675 |
apply (auto intro: Arg_unique_lemma) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
676 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
677 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
678 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
679 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
680 |
corollary |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
681 |
shows Arg_ge_0: "0 \<le> Arg z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
682 |
and Arg_lt_2pi: "Arg z < 2*pi" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
683 |
and Arg_eq: "z = of_real(norm z) * exp(ii * of_real(Arg z))" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
684 |
using Arg by auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
685 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
686 |
lemma complex_norm_eq_1_exp: "norm z = 1 \<longleftrightarrow> (\<exists>t. z = exp(ii * of_real t))" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
687 |
using Arg [of z] by auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
688 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
689 |
lemma Arg_unique: "\<lbrakk>of_real r * exp(ii * of_real a) = z; 0 < r; 0 \<le> a; a < 2*pi\<rbrakk> \<Longrightarrow> Arg z = a" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
690 |
apply (rule Arg_unique_lemma [OF _ Arg_eq]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
691 |
using Arg [of z] |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
692 |
apply (auto simp: norm_mult) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
693 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
694 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
695 |
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:
59745
diff
changeset
|
696 |
apply (rule Arg_unique [of "norm z"]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
697 |
apply (rule complex_eqI) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
698 |
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:
59745
diff
changeset
|
699 |
apply auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
700 |
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:
59745
diff
changeset
|
701 |
apply (metis Re_rcis Im_rcis rcis_def)+ |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
702 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
703 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
704 |
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:
59745
diff
changeset
|
705 |
apply (cases "z=0", simp) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
706 |
apply (rule Arg_unique [of "r * norm z"]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
707 |
using Arg |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
708 |
apply auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
709 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
710 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
711 |
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:
59745
diff
changeset
|
712 |
by (metis Arg_times_of_real mult.commute) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
713 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
714 |
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:
59745
diff
changeset
|
715 |
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:
59745
diff
changeset
|
716 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
717 |
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:
59745
diff
changeset
|
718 |
proof (cases "z=0") |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
719 |
case True then show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
720 |
by simp |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
721 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
722 |
case False |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
723 |
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:
59745
diff
changeset
|
724 |
by (metis Arg_eq) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
725 |
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:
59745
diff
changeset
|
726 |
using False |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
727 |
by (simp add: zero_le_mult_iff) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
728 |
also have "... \<longleftrightarrow> Arg z \<le> pi" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
729 |
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:
59745
diff
changeset
|
730 |
finally show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
731 |
by blast |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
732 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
733 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
734 |
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:
59745
diff
changeset
|
735 |
proof (cases "z=0") |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
736 |
case True then show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
737 |
by simp |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
738 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
739 |
case False |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
740 |
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:
59745
diff
changeset
|
741 |
by (metis Arg_eq) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
742 |
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:
59745
diff
changeset
|
743 |
using False |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
744 |
by (simp add: zero_less_mult_iff) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
745 |
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:
59745
diff
changeset
|
746 |
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:
59745
diff
changeset
|
747 |
apply (auto simp: Im_exp) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
748 |
using le_less apply fastforce |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
749 |
using not_le by blast |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
750 |
finally show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
751 |
by blast |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
752 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
753 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
754 |
lemma Arg_eq_0: "Arg z = 0 \<longleftrightarrow> z \<in> Reals \<and> 0 \<le> Re z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
755 |
proof (cases "z=0") |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
756 |
case True then show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
757 |
by simp |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
758 |
next |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
759 |
case False |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
760 |
have "z \<in> Reals \<and> 0 \<le> Re z \<longleftrightarrow> z \<in> Reals \<and> 0 \<le> Re (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:
59745
diff
changeset
|
761 |
by (metis Arg_eq) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
762 |
also have "... \<longleftrightarrow> z \<in> Reals \<and> 0 \<le> Re (exp (\<i> * complex_of_real (Arg z)))" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
763 |
using False |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
764 |
by (simp add: zero_le_mult_iff) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
765 |
also have "... \<longleftrightarrow> Arg z = 0" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
766 |
apply (auto simp: Re_exp) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
767 |
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:
59745
diff
changeset
|
768 |
using Arg_eq [of z] |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
769 |
apply (auto simp: Reals_def) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
770 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
771 |
finally show ?thesis |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
772 |
by blast |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
773 |
qed |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
774 |
|
60150
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
775 |
corollary Arg_gt_0: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
776 |
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:
60141
diff
changeset
|
777 |
shows "Arg z > 0" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
778 |
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:
60141
diff
changeset
|
779 |
|
59746
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
780 |
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:
59745
diff
changeset
|
781 |
by (simp add: Arg_eq_0) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
782 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
783 |
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:
59745
diff
changeset
|
784 |
apply (cases "z=0", simp) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
785 |
using Arg_eq_0 [of "-z"] |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
786 |
apply (auto simp: complex_is_Real_iff Arg_minus) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
787 |
apply (simp add: complex_Re_Im_cancel_iff) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
788 |
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:
59745
diff
changeset
|
789 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
790 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
791 |
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:
59745
diff
changeset
|
792 |
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:
59745
diff
changeset
|
793 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
794 |
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:
59745
diff
changeset
|
795 |
apply (cases "z=0", simp) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
796 |
apply (rule Arg_unique [of "inverse (norm z)"]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
797 |
using Arg_ge_0 [of z] Arg_lt_2pi [of z] Arg_eq [of z] Arg_eq_0 [of z] Exp_two_pi_i |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
798 |
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:
59745
diff
changeset
|
799 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
800 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
801 |
lemma Arg_eq_iff: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
802 |
assumes "w \<noteq> 0" "z \<noteq> 0" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
803 |
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:
59745
diff
changeset
|
804 |
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:
59745
diff
changeset
|
805 |
apply auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
806 |
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:
59745
diff
changeset
|
807 |
apply (simp add: divide_simps) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
808 |
by (metis mult.commute mult.left_commute) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
809 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
810 |
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:
59745
diff
changeset
|
811 |
using complex_is_Real_iff |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
812 |
apply (simp add: Arg_eq_0) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
813 |
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:
59745
diff
changeset
|
814 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
815 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
816 |
lemma Arg_divide: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
817 |
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:
59745
diff
changeset
|
818 |
shows "Arg(z / w) = Arg z - Arg w" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
819 |
apply (rule Arg_unique [of "norm(z / w)"]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
820 |
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:
59745
diff
changeset
|
821 |
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:
59745
diff
changeset
|
822 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
823 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
824 |
lemma Arg_le_div_sum: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
825 |
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:
59745
diff
changeset
|
826 |
shows "Arg z = Arg w + Arg(z / w)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
827 |
by (simp add: Arg_divide assms) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
828 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
829 |
lemma Arg_le_div_sum_eq: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
830 |
assumes "w \<noteq> 0" "z \<noteq> 0" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
831 |
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:
59745
diff
changeset
|
832 |
using assms |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
833 |
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:
59745
diff
changeset
|
834 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
835 |
lemma Arg_diff: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
836 |
assumes "w \<noteq> 0" "z \<noteq> 0" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
837 |
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:
59745
diff
changeset
|
838 |
using assms |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
839 |
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:
59745
diff
changeset
|
840 |
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:
59745
diff
changeset
|
841 |
apply auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
842 |
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:
59745
diff
changeset
|
843 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
844 |
lemma Arg_add: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
845 |
assumes "w \<noteq> 0" "z \<noteq> 0" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
846 |
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:
59745
diff
changeset
|
847 |
using assms |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
848 |
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:
59745
diff
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:
59745
diff
changeset
|
850 |
apply (metis Arg_lt_2pi add.commute) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
851 |
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:
59745
diff
changeset
|
852 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
853 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
854 |
lemma Arg_times: |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
855 |
assumes "w \<noteq> 0" "z \<noteq> 0" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
856 |
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:
59745
diff
changeset
|
857 |
else (Arg w + Arg z) - 2*pi)" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
858 |
using Arg_add [OF assms] |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
859 |
by auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
860 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
861 |
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:
59745
diff
changeset
|
862 |
apply (cases "z=0", simp) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
863 |
apply (rule trans [of _ "Arg(inverse z)"]) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
864 |
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:
59745
diff
changeset
|
865 |
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:
59745
diff
changeset
|
866 |
apply (auto simp: of_real_numeral Arg_inverse) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
867 |
done |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
868 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
869 |
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:
59745
diff
changeset
|
870 |
using Arg_eq_0 Arg_eq_0_pi |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
871 |
by auto |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
872 |
|
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
873 |
lemma Arg_exp: "0 \<le> Im z \<Longrightarrow> Im z < 2*pi \<Longrightarrow> Arg(exp z) = Im z" |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
874 |
by (rule Arg_unique [of "exp(Re z)"]) (auto simp: Exp_eq_polar) |
ddae5727c5a9
new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents:
59745
diff
changeset
|
875 |
|
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
876 |
|
60420 | 877 |
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:
59746
diff
changeset
|
878 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
879 |
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:
59746
diff
changeset
|
880 |
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:
59746
diff
changeset
|
881 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
882 |
lemma complex_differentiable_at_tan: "~(cos z = 0) \<Longrightarrow> tan complex_differentiable at z" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
883 |
unfolding complex_differentiable_def |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
884 |
using DERIV_tan by blast |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
885 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
886 |
lemma complex_differentiable_within_tan: "~(cos z = 0) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
887 |
\<Longrightarrow> tan complex_differentiable (at z within s)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
888 |
using complex_differentiable_at_tan complex_differentiable_at_within by blast |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
889 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
890 |
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:
59746
diff
changeset
|
891 |
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:
59746
diff
changeset
|
892 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
893 |
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:
59746
diff
changeset
|
894 |
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:
59746
diff
changeset
|
895 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
896 |
lemma holomorphic_on_tan: "(\<And>z. z \<in> s \<Longrightarrow> ~(cos z = 0)) \<Longrightarrow> tan holomorphic_on s" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
897 |
by (simp add: complex_differentiable_within_tan holomorphic_on_def) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
898 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
899 |
|
60420 | 900 |
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:
59746
diff
changeset
|
901 |
|
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:
60017
diff
changeset
|
902 |
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:
60017
diff
changeset
|
903 |
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:
59870
diff
changeset
|
904 |
|
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:
60017
diff
changeset
|
905 |
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:
60017
diff
changeset
|
906 |
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:
59746
diff
changeset
|
907 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
908 |
lemma |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
909 |
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:
60017
diff
changeset
|
910 |
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:
60017
diff
changeset
|
911 |
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:
60017
diff
changeset
|
912 |
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:
59746
diff
changeset
|
913 |
proof - |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
914 |
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:
59746
diff
changeset
|
915 |
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:
59746
diff
changeset
|
916 |
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:
59746
diff
changeset
|
917 |
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:
59746
diff
changeset
|
918 |
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:
59746
diff
changeset
|
919 |
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:
60017
diff
changeset
|
920 |
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:
59746
diff
changeset
|
921 |
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:
59746
diff
changeset
|
922 |
using z assms \<phi> |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
923 |
apply (auto simp: field_simps exp_complex_eqI Exp_eq_polar cis.code) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
924 |
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:
60017
diff
changeset
|
925 |
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:
59746
diff
changeset
|
926 |
by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
927 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
928 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
929 |
lemma Ln_exp [simp]: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
930 |
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:
60017
diff
changeset
|
931 |
shows "ln(exp z) = z" |
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
932 |
apply (rule exp_complex_eqI) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
933 |
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:
59746
diff
changeset
|
934 |
apply auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
935 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
936 |
|
60420 | 937 |
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:
60017
diff
changeset
|
938 |
|
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:
60017
diff
changeset
|
939 |
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:
60017
diff
changeset
|
940 |
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:
60017
diff
changeset
|
941 |
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:
60017
diff
changeset
|
942 |
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:
60017
diff
changeset
|
943 |
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:
60017
diff
changeset
|
944 |
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:
60017
diff
changeset
|
945 |
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:
60017
diff
changeset
|
946 |
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:
60017
diff
changeset
|
947 |
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:
60017
diff
changeset
|
948 |
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:
60017
diff
changeset
|
949 |
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:
60017
diff
changeset
|
950 |
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:
60017
diff
changeset
|
951 |
|
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:
60017
diff
changeset
|
952 |
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:
60017
diff
changeset
|
953 |
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:
60017
diff
changeset
|
954 |
|
60150
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
955 |
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:
60141
diff
changeset
|
956 |
by (simp add: Ln_of_real) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
957 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
958 |
lemma cmod_Ln_Reals [simp]: "z \<in> Reals \<Longrightarrow> 0 < Re z \<Longrightarrow> cmod (ln z) = norm (ln (Re z))" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
959 |
using Ln_of_real by force |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
960 |
|
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:
60017
diff
changeset
|
961 |
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:
60017
diff
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:
60017
diff
changeset
|
963 |
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:
60017
diff
changeset
|
964 |
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:
60017
diff
changeset
|
965 |
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:
60017
diff
changeset
|
966 |
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:
60017
diff
changeset
|
967 |
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:
60017
diff
changeset
|
968 |
|
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:
60017
diff
changeset
|
969 |
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:
60017
diff
changeset
|
970 |
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:
60017
diff
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:
60017
diff
changeset
|
972 |
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:
60017
diff
changeset
|
973 |
|
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:
60017
diff
changeset
|
974 |
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:
60017
diff
changeset
|
975 |
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:
60017
diff
changeset
|
976 |
|
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
977 |
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:
59746
diff
changeset
|
978 |
by (metis exp_Ln) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
979 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
980 |
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:
59746
diff
changeset
|
981 |
using Ln_exp by blast |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
982 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
983 |
lemma Re_Ln [simp]: "z \<noteq> 0 \<Longrightarrow> Re(Ln z) = ln(norm z)" |
60150
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
984 |
by (metis exp_Ln assms ln_exp norm_exp_eq_Re) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
985 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
986 |
corollary ln_cmod_le: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
987 |
assumes z: "z \<noteq> 0" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
988 |
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:
60141
diff
changeset
|
989 |
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:
60141
diff
changeset
|
990 |
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:
59746
diff
changeset
|
991 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
992 |
lemma exists_complex_root: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
993 |
fixes a :: complex |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
994 |
shows "n \<noteq> 0 \<Longrightarrow> \<exists>z. z ^ n = a" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
995 |
apply (cases "a=0", simp) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
996 |
apply (rule_tac x= "exp(Ln(a) / n)" in exI) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
997 |
apply (auto simp: exp_of_nat_mult [symmetric]) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
998 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
999 |
|
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:
59870
diff
changeset
|
1000 |
|
60420 | 1001 |
subsection\<open>The Unwinding Number and the Ln-product Formula\<close> |
1002 |
||
1003 |
text\<open>Note that in this special case the unwinding number is -1, 0 or 1.\<close> |
|
59862 | 1004 |
|
1005 |
definition unwinding :: "complex \<Rightarrow> complex" where |
|
1006 |
"unwinding(z) = (z - Ln(exp z)) / (of_real(2*pi) * ii)" |
|
1007 |
||
1008 |
lemma unwinding_2pi: "(2*pi) * ii * unwinding(z) = z - Ln(exp z)" |
|
1009 |
by (simp add: unwinding_def) |
|
1010 |
||
1011 |
lemma Ln_times_unwinding: |
|
1012 |
"w \<noteq> 0 \<Longrightarrow> z \<noteq> 0 \<Longrightarrow> Ln(w * z) = Ln(w) + Ln(z) - (2*pi) * ii * unwinding(Ln w + Ln z)" |
|
1013 |
using unwinding_2pi by (simp add: exp_add) |
|
1014 |
||
1015 |
||
60420 | 1016 |
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:
59746
diff
changeset
|
1017 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1018 |
lemma |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1019 |
assumes "Im(z) = 0 \<Longrightarrow> 0 < Re(z)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1020 |
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:
59746
diff
changeset
|
1021 |
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:
59746
diff
changeset
|
1022 |
proof - |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1023 |
have znz: "z \<noteq> 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1024 |
using assms by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1025 |
then show *: "Im (Ln z) < pi" using assms |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1026 |
by (metis exp_Ln Im_Ln_le_pi Im_exp Re_exp abs_of_nonneg cmod_eq_Re cos_pi mult.right_neutral mult_minus_right mult_zero_right neg_less_0_iff_less norm_exp_eq_Re not_less not_less_iff_gr_or_eq sin_pi) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1027 |
show "(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:
59746
diff
changeset
|
1028 |
apply (rule has_complex_derivative_inverse_strong_x |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1029 |
[where f = exp and s = "{w. -pi < Im(w) & Im(w) < pi}"]) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1030 |
using znz * |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1031 |
apply (auto simp: continuous_on_exp open_Collect_conj open_halfspace_Im_gt open_halfspace_Im_lt) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1032 |
apply (metis DERIV_exp exp_Ln) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1033 |
apply (metis mpi_less_Im_Ln) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1034 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1035 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1036 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1037 |
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:
59746
diff
changeset
|
1038 |
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:
59746
diff
changeset
|
1039 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1040 |
lemma complex_differentiable_at_Ln: "(Im(z) = 0 \<Longrightarrow> 0 < Re(z)) \<Longrightarrow> Ln complex_differentiable at z" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1041 |
using complex_differentiable_def has_field_derivative_Ln by blast |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1042 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1043 |
lemma complex_differentiable_within_Ln: "(Im(z) = 0 \<Longrightarrow> 0 < Re(z)) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1044 |
\<Longrightarrow> Ln complex_differentiable (at z within s)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1045 |
using complex_differentiable_at_Ln complex_differentiable_within_subset by blast |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1046 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1047 |
lemma continuous_at_Ln: "(Im(z) = 0 \<Longrightarrow> 0 < Re(z)) \<Longrightarrow> continuous (at z) Ln" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1048 |
by (simp add: complex_differentiable_imp_continuous_at complex_differentiable_within_Ln) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1049 |
|
59862 | 1050 |
lemma isCont_Ln' [simp]: |
1051 |
"\<lbrakk>isCont f z; Im(f z) = 0 \<Longrightarrow> 0 < Re(f z)\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. Ln (f x)) z" |
|
1052 |
by (blast intro: isCont_o2 [OF _ continuous_at_Ln]) |
|
1053 |
||
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1054 |
lemma continuous_within_Ln: "(Im(z) = 0 \<Longrightarrow> 0 < Re(z)) \<Longrightarrow> continuous (at z within s) Ln" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1055 |
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:
59746
diff
changeset
|
1056 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1057 |
lemma continuous_on_Ln [continuous_intros]: "(\<And>z. z \<in> s \<Longrightarrow> Im(z) = 0 \<Longrightarrow> 0 < Re(z)) \<Longrightarrow> continuous_on s Ln" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1058 |
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:
59746
diff
changeset
|
1059 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1060 |
lemma holomorphic_on_Ln: "(\<And>z. z \<in> s \<Longrightarrow> Im(z) = 0 \<Longrightarrow> 0 < Re(z)) \<Longrightarrow> Ln holomorphic_on s" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1061 |
by (simp add: complex_differentiable_within_Ln holomorphic_on_def) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1062 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1063 |
|
60420 | 1064 |
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:
59746
diff
changeset
|
1065 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1066 |
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:
59746
diff
changeset
|
1067 |
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:
59746
diff
changeset
|
1068 |
by simp |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1069 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1070 |
lemma Re_Ln_pos_lt: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1071 |
assumes "z \<noteq> 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1072 |
shows "abs(Im(Ln z)) < pi/2 \<longleftrightarrow> 0 < Re(z)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1073 |
proof - |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1074 |
{ fix w |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1075 |
assume "w = Ln z" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1076 |
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:
59746
diff
changeset
|
1077 |
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:
59746
diff
changeset
|
1078 |
by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1079 |
then have "abs(Im w) < pi/2 \<longleftrightarrow> 0 < Re(exp w)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1080 |
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:
59746
diff
changeset
|
1081 |
using cos_lt_zero_pi [of "-(Im w)"] cos_lt_zero_pi [of "(Im w)"] |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1082 |
apply (simp add: abs_if split: split_if_asm) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1083 |
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:
59746
diff
changeset
|
1084 |
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:
59746
diff
changeset
|
1085 |
mult_numeral_1_right) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1086 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1087 |
} |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1088 |
then show ?thesis using assms |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1089 |
by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1090 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1091 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1092 |
lemma Re_Ln_pos_le: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1093 |
assumes "z \<noteq> 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1094 |
shows "abs(Im(Ln z)) \<le> pi/2 \<longleftrightarrow> 0 \<le> Re(z)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1095 |
proof - |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1096 |
{ fix w |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1097 |
assume "w = Ln z" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1098 |
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:
59746
diff
changeset
|
1099 |
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:
59746
diff
changeset
|
1100 |
by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1101 |
then have "abs(Im w) \<le> pi/2 \<longleftrightarrow> 0 \<le> Re(exp w)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1102 |
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:
59746
diff
changeset
|
1103 |
using cos_lt_zero_pi [of "- (Im w)"] cos_lt_zero_pi [of "(Im w)"] not_le |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1104 |
apply (auto simp: abs_if split: split_if_asm) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1105 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1106 |
} |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1107 |
then show ?thesis using assms |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1108 |
by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1109 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1110 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1111 |
lemma Im_Ln_pos_lt: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1112 |
assumes "z \<noteq> 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1113 |
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:
59746
diff
changeset
|
1114 |
proof - |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1115 |
{ fix w |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1116 |
assume "w = Ln z" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1117 |
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:
59746
diff
changeset
|
1118 |
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:
59746
diff
changeset
|
1119 |
by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1120 |
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:
59746
diff
changeset
|
1121 |
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:
59746
diff
changeset
|
1122 |
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:
59746
diff
changeset
|
1123 |
using less_linear apply fastforce |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1124 |
using less_linear apply fastforce |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1125 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1126 |
} |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1127 |
then show ?thesis using assms |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1128 |
by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1129 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1130 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1131 |
lemma Im_Ln_pos_le: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1132 |
assumes "z \<noteq> 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1133 |
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:
59746
diff
changeset
|
1134 |
proof - |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1135 |
{ fix w |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1136 |
assume "w = Ln z" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1137 |
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:
59746
diff
changeset
|
1138 |
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:
59746
diff
changeset
|
1139 |
by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1140 |
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:
59746
diff
changeset
|
1141 |
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:
59746
diff
changeset
|
1142 |
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:
59746
diff
changeset
|
1143 |
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:
59746
diff
changeset
|
1144 |
done } |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1145 |
then show ?thesis using assms |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1146 |
by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1147 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1148 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1149 |
lemma Re_Ln_pos_lt_imp: "0 < Re(z) \<Longrightarrow> abs(Im(Ln z)) < pi/2" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1150 |
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:
59746
diff
changeset
|
1151 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1152 |
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:
59746
diff
changeset
|
1153 |
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:
59746
diff
changeset
|
1154 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1155 |
lemma Im_Ln_eq_0: "z \<noteq> 0 \<Longrightarrow> (Im(Ln z) = 0 \<longleftrightarrow> 0 < Re(z) \<and> Im(z) = 0)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1156 |
by (metis exp_Ln Im_Ln_less_pi Im_Ln_pos_le Im_Ln_pos_lt Re_complex_of_real add.commute add.left_neutral |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1157 |
complex_eq exp_of_real le_less mult_zero_right norm_exp_eq_Re norm_le_zero_iff not_le of_real_0) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1158 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1159 |
lemma Im_Ln_eq_pi: "z \<noteq> 0 \<Longrightarrow> (Im(Ln z) = pi \<longleftrightarrow> Re(z) < 0 \<and> Im(z) = 0)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1160 |
by (metis Im_Ln_eq_0 Im_Ln_less_pi Im_Ln_pos_le Im_Ln_pos_lt add.right_neutral complex_eq mult_zero_right not_less not_less_iff_gr_or_eq of_real_0) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1161 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1162 |
|
60420 | 1163 |
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:
59746
diff
changeset
|
1164 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1165 |
lemma cnj_Ln: "(Im z = 0 \<Longrightarrow> 0 < Re z) \<Longrightarrow> cnj(Ln z) = Ln(cnj z)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1166 |
apply (cases "z=0", auto) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1167 |
apply (rule exp_complex_eqI) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1168 |
apply (auto simp: abs_if split: split_if_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:
59870
diff
changeset
|
1169 |
apply (metis Im_Ln_less_pi add_mono_thms_linordered_field(5) cnj.simps mult_2 neg_equal_0_iff_equal) |
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:
59870
diff
changeset
|
1170 |
apply (metis complex_cnj_zero_iff diff_minus_eq_add diff_strict_mono minus_less_iff 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:
59746
diff
changeset
|
1171 |
by (metis exp_Ln exp_cnj) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1172 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1173 |
lemma Ln_inverse: "(Im(z) = 0 \<Longrightarrow> 0 < Re z) \<Longrightarrow> Ln(inverse z) = -(Ln z)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1174 |
apply (cases "z=0", auto) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1175 |
apply (rule exp_complex_eqI) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1176 |
using mpi_less_Im_Ln [of z] mpi_less_Im_Ln [of "inverse z"] |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1177 |
apply (auto simp: abs_if exp_minus split: split_if_asm) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1178 |
apply (metis Im_Ln_less_pi Im_Ln_pos_le add_less_cancel_left add_strict_mono |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1179 |
inverse_inverse_eq inverse_zero le_less mult.commute mult_2_right) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1180 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1181 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1182 |
lemma Ln_minus1 [simp]: "Ln(-1) = ii * pi" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1183 |
apply (rule exp_complex_eqI) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1184 |
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:
59746
diff
changeset
|
1185 |
apply (auto simp: abs_if) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1186 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1187 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1188 |
lemma Ln_ii [simp]: "Ln ii = ii * of_real pi/2" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1189 |
using Ln_exp [of "ii * (of_real pi/2)"] |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1190 |
unfolding exp_Euler |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1191 |
by simp |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1192 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1193 |
lemma Ln_minus_ii [simp]: "Ln(-ii) = - (ii * pi/2)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1194 |
proof - |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1195 |
have "Ln(-ii) = Ln(1/ii)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1196 |
by simp |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1197 |
also have "... = - (Ln ii)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1198 |
by (metis Ln_inverse ii.sel(2) inverse_eq_divide zero_neq_one) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1199 |
also have "... = - (ii * pi/2)" |
60150
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1200 |
by simp |
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1201 |
finally show ?thesis . |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1202 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1203 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1204 |
lemma Ln_times: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1205 |
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:
59746
diff
changeset
|
1206 |
shows "Ln(w * z) = |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1207 |
(if Im(Ln w + Ln z) \<le> -pi then |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1208 |
(Ln(w) + Ln(z)) + ii * of_real(2*pi) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1209 |
else if Im(Ln w + Ln z) > pi then |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1210 |
(Ln(w) + Ln(z)) - ii * of_real(2*pi) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1211 |
else Ln(w) + Ln(z))" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1212 |
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:
59746
diff
changeset
|
1213 |
using assms mpi_less_Im_Ln [of w] mpi_less_Im_Ln [of z] |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1214 |
by (auto simp: of_real_numeral exp_add exp_diff sin_double cos_double exp_Euler intro!: Ln_unique) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1215 |
|
60150
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1216 |
corollary Ln_times_simple: |
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1217 |
"\<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:
59746
diff
changeset
|
1218 |
\<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:
59746
diff
changeset
|
1219 |
by (simp add: Ln_times) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1220 |
|
60150
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1221 |
corollary Ln_times_of_real: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1222 |
"\<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:
60141
diff
changeset
|
1223 |
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:
60141
diff
changeset
|
1224 |
by (force simp: Ln_times) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1225 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1226 |
corollary Ln_divide_of_real: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1227 |
"\<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:
60141
diff
changeset
|
1228 |
using Ln_times_of_real [of "inverse r" z] |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1229 |
by (simp add: ln_inverse Ln_of_real mult.commute divide_inverse of_real_inverse [symmetric] |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1230 |
del: of_real_inverse) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1231 |
|
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1232 |
lemma Ln_minus: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1233 |
assumes "z \<noteq> 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1234 |
shows "Ln(-z) = (if Im(z) \<le> 0 \<and> ~(Re(z) < 0 \<and> Im(z) = 0) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1235 |
then Ln(z) + ii * pi |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1236 |
else Ln(z) - ii * pi)" (is "_ = ?rhs") |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1237 |
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:
59746
diff
changeset
|
1238 |
Im_Ln_eq_pi [of z] Im_Ln_pos_lt [of z] |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1239 |
by (auto simp: of_real_numeral exp_add exp_diff exp_Euler intro!: Ln_unique) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1240 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1241 |
lemma Ln_inverse_if: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1242 |
assumes "z \<noteq> 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1243 |
shows "Ln (inverse z) = |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1244 |
(if (Im(z) = 0 \<longrightarrow> 0 < Re z) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1245 |
then -(Ln z) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1246 |
else -(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:
59746
diff
changeset
|
1247 |
proof (cases "(Im(z) = 0 \<longrightarrow> 0 < Re z)") |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1248 |
case True then show ?thesis |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1249 |
by (simp add: Ln_inverse) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1250 |
next |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1251 |
case False |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1252 |
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:
59746
diff
changeset
|
1253 |
using assms |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1254 |
apply auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1255 |
by (metis cnj.code complex_cnj_cnj not_less_iff_gr_or_eq zero_complex.simps(1) zero_complex.simps(2)) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1256 |
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:
59746
diff
changeset
|
1257 |
by simp |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1258 |
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:
59746
diff
changeset
|
1259 |
using assms z |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1260 |
apply (simp add: Ln_minus) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1261 |
apply (simp add: field_simps) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1262 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1263 |
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:
59746
diff
changeset
|
1264 |
apply (subst Ln_inverse) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1265 |
using z assms by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1266 |
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:
59746
diff
changeset
|
1267 |
apply (subst Ln_minus [OF assms]) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1268 |
using assms z |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1269 |
apply simp |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1270 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1271 |
finally show ?thesis |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1272 |
using assms z |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1273 |
by simp |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1274 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1275 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1276 |
lemma Ln_times_ii: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1277 |
assumes "z \<noteq> 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1278 |
shows "Ln(ii * z) = (if 0 \<le> Re(z) | Im(z) < 0 |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1279 |
then Ln(z) + ii * of_real pi/2 |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1280 |
else Ln(z) - ii * of_real(3 * pi/2))" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1281 |
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:
59746
diff
changeset
|
1282 |
Im_Ln_eq_pi [of z] Im_Ln_pos_lt [of z] Re_Ln_pos_le [of z] |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1283 |
by (auto simp: of_real_numeral Ln_times) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1284 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1285 |
|
60420 | 1286 |
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:
60141
diff
changeset
|
1287 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1288 |
lemma Arg_Ln: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1289 |
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:
60141
diff
changeset
|
1290 |
proof (cases "z = 0") |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1291 |
case True |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1292 |
with assms show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1293 |
by simp |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1294 |
next |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1295 |
case False |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1296 |
then have "z / of_real(norm z) = exp(ii * of_real(Arg z))" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1297 |
using Arg [of z] |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1298 |
by (metis abs_norm_cancel nonzero_mult_divide_cancel_left norm_of_real zero_less_norm_iff) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1299 |
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:
60141
diff
changeset
|
1300 |
using cis_conv_exp cis_pi |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1301 |
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:
60141
diff
changeset
|
1302 |
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:
60141
diff
changeset
|
1303 |
by simp |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1304 |
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:
60141
diff
changeset
|
1305 |
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:
60141
diff
changeset
|
1306 |
by auto |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1307 |
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:
60141
diff
changeset
|
1308 |
by simp |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1309 |
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:
60141
diff
changeset
|
1310 |
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:
60141
diff
changeset
|
1311 |
also have "... = Im (Ln (-z)) + pi" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1312 |
by simp |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1313 |
finally show ?thesis . |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1314 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1315 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1316 |
lemma continuous_at_Arg: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1317 |
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:
60141
diff
changeset
|
1318 |
shows "continuous (at z) Arg" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1319 |
proof - |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1320 |
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:
60141
diff
changeset
|
1321 |
by (rule Complex.isCont_Im isCont_Ln' continuous_intros | simp add: assms complex_is_Real_iff)+ |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1322 |
then show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1323 |
apply (simp add: continuous_at) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1324 |
apply (rule Lim_transform_within_open [of "-{z. z \<in> \<real> & 0 \<le> Re z}" _ "\<lambda>z. Im(Ln(-z)) + pi"]) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1325 |
apply (simp add: closed_def [symmetric] closed_Collect_conj closed_complex_Reals closed_halfspace_Re_ge) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1326 |
apply (simp_all add: assms not_le Arg_Ln [OF Arg_gt_0]) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1327 |
done |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1328 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1329 |
|
60420 | 1330 |
text\<open>Relation between Arg and arctangent in upper halfplane\<close> |
60150
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1331 |
lemma Arg_arctan_upperhalf: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1332 |
assumes "0 < Im z" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1333 |
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:
60141
diff
changeset
|
1334 |
proof (cases "z = 0") |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1335 |
case True with assms show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1336 |
by simp |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1337 |
next |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1338 |
case False |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1339 |
show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1340 |
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:
60141
diff
changeset
|
1341 |
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:
60141
diff
changeset
|
1342 |
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:
60141
diff
changeset
|
1343 |
using norm_complex_def [of z, symmetric] |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1344 |
apply (simp add: of_real_numeral sin_of_real cos_of_real sin_arctan cos_arctan field_simps real_sqrt_divide) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1345 |
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:
60141
diff
changeset
|
1346 |
done |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1347 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1348 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1349 |
lemma Arg_eq_Im_Ln: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1350 |
assumes "0 \<le> Im z" "0 < Re z" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1351 |
shows "Arg z = Im (Ln z)" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1352 |
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:
60141
diff
changeset
|
1353 |
case True then show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1354 |
using assms Arg_eq_0 complex_is_Real_iff |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1355 |
apply auto |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1356 |
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:
60141
diff
changeset
|
1357 |
next |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1358 |
case False |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1359 |
then have "Arg z > 0" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1360 |
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:
60141
diff
changeset
|
1361 |
then show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1362 |
using assms False |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1363 |
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:
60141
diff
changeset
|
1364 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1365 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1366 |
lemma continuous_within_upperhalf_Arg: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1367 |
assumes "z \<noteq> 0" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1368 |
shows "continuous (at z within {z. 0 \<le> Im z}) Arg" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1369 |
proof (cases "z \<in> \<real> & 0 \<le> Re z") |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1370 |
case False then show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1371 |
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:
60141
diff
changeset
|
1372 |
next |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1373 |
case True |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1374 |
then have z: "z \<in> \<real>" "0 < Re z" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1375 |
using assms by (auto simp: complex_is_Real_iff complex_neq_0) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1376 |
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:
60141
diff
changeset
|
1377 |
by (auto simp: Arg_eq_0 Im_Ln_eq_0 assms complex_is_Real_iff) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1378 |
show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1379 |
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:
60141
diff
changeset
|
1380 |
fix e::real |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1381 |
assume "0 < e" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1382 |
moreover have "continuous (at z) (\<lambda>x. Im (Ln x))" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1383 |
using z by (rule continuous_intros | simp) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1384 |
ultimately |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1385 |
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:
60141
diff
changeset
|
1386 |
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:
60141
diff
changeset
|
1387 |
{ fix x |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1388 |
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:
60141
diff
changeset
|
1389 |
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:
60141
diff
changeset
|
1390 |
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:
60141
diff
changeset
|
1391 |
then have "0 < Re x" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1392 |
using z by linarith |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1393 |
} |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1394 |
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:
60141
diff
changeset
|
1395 |
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:
60141
diff
changeset
|
1396 |
using z d |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1397 |
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:
60141
diff
changeset
|
1398 |
done |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1399 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1400 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1401 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1402 |
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:
60141
diff
changeset
|
1403 |
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:
60141
diff
changeset
|
1404 |
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:
60141
diff
changeset
|
1405 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1406 |
lemma open_Arg_less_Int: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1407 |
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:
60141
diff
changeset
|
1408 |
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:
60141
diff
changeset
|
1409 |
proof - |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1410 |
have 1: "continuous_on (UNIV - {z \<in> \<real>. 0 \<le> Re z}) Arg" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1411 |
using continuous_at_Arg continuous_at_imp_continuous_within |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1412 |
by (auto simp: continuous_on_eq_continuous_within set_diff_eq) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1413 |
have 2: "open (UNIV - {z \<in> \<real>. 0 \<le> Re z})" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1414 |
by (simp add: closed_Collect_conj closed_complex_Reals closed_halfspace_Re_ge open_Diff) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1415 |
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:
60141
diff
changeset
|
1416 |
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:
60141
diff
changeset
|
1417 |
by (metis greaterThan_def lessThan_def open_Int) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1418 |
moreover have "{y. s < Arg y} \<inter> {y. Arg y < t} \<subseteq> - {z \<in> \<real>. 0 \<le> Re z}" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1419 |
using assms |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1420 |
by (auto simp: Arg_real) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1421 |
ultimately show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1422 |
using continuous_imp_open_vimage [OF 1 2, of "{z. Re z > s} \<inter> {z. Re z < t}"] |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1423 |
by auto |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1424 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1425 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1426 |
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:
60141
diff
changeset
|
1427 |
proof (cases "t < 0") |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1428 |
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:
60141
diff
changeset
|
1429 |
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:
60141
diff
changeset
|
1430 |
then show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1431 |
by simp |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1432 |
next |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1433 |
case False then show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1434 |
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:
60141
diff
changeset
|
1435 |
by auto |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1436 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1437 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1438 |
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:
60141
diff
changeset
|
1439 |
using open_Arg_gt [of t] |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1440 |
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:
59870
diff
changeset
|
1441 |
|
60420 | 1442 |
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:
59870
diff
changeset
|
1443 |
|
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:
59870
diff
changeset
|
1444 |
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:
60017
diff
changeset
|
1445 |
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:
59870
diff
changeset
|
1446 |
|
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:
59870
diff
changeset
|
1447 |
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:
59870
diff
changeset
|
1448 |
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:
60017
diff
changeset
|
1449 |
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:
59870
diff
changeset
|
1450 |
|
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:
59870
diff
changeset
|
1451 |
lemma powr_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:
59870
diff
changeset
|
1452 |
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:
59870
diff
changeset
|
1453 |
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:
59870
diff
changeset
|
1454 |
|
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:
59870
diff
changeset
|
1455 |
lemma powr_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:
59870
diff
changeset
|
1456 |
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:
59870
diff
changeset
|
1457 |
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:
59870
diff
changeset
|
1458 |
|
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:
59870
diff
changeset
|
1459 |
lemma powr_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:
59870
diff
changeset
|
1460 |
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:
59870
diff
changeset
|
1461 |
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:
59870
diff
changeset
|
1462 |
|
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:
59870
diff
changeset
|
1463 |
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:
60017
diff
changeset
|
1464 |
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:
59870
diff
changeset
|
1465 |
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:
59870
diff
changeset
|
1466 |
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:
59870
diff
changeset
|
1467 |
|
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:
59870
diff
changeset
|
1468 |
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:
59870
diff
changeset
|
1469 |
"\<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:
60017
diff
changeset
|
1470 |
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:
59870
diff
changeset
|
1471 |
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:
59870
diff
changeset
|
1472 |
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:
59870
diff
changeset
|
1473 |
|
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:
59870
diff
changeset
|
1474 |
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:
60017
diff
changeset
|
1475 |
fixes x::real and y::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:
60017
diff
changeset
|
1476 |
shows "0 < x \<Longrightarrow> of_real x powr (of_real y::complex) = of_real (x powr y)" |
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:
60017
diff
changeset
|
1477 |
by (simp add: powr_def) (metis exp_of_real of_real_mult 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:
59870
diff
changeset
|
1478 |
|
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:
59870
diff
changeset
|
1479 |
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:
60017
diff
changeset
|
1480 |
"\<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:
60017
diff
changeset
|
1481 |
\<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:
60017
diff
changeset
|
1482 |
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:
59870
diff
changeset
|
1483 |
|
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:
59870
diff
changeset
|
1484 |
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:
59870
diff
changeset
|
1485 |
"\<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:
59870
diff
changeset
|
1486 |
\<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:
60017
diff
changeset
|
1487 |
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:
59870
diff
changeset
|
1488 |
|
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:
59870
diff
changeset
|
1489 |
lemma has_field_derivative_powr: |
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:
59870
diff
changeset
|
1490 |
"(Im z = 0 \<Longrightarrow> 0 < Re 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:
59870
diff
changeset
|
1491 |
\<Longrightarrow> ((\<lambda>z. z powr s) has_field_derivative (s * z powr (s - 1))) (at 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:
59870
diff
changeset
|
1492 |
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:
60017
diff
changeset
|
1493 |
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:
59870
diff
changeset
|
1494 |
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:
60017
diff
changeset
|
1495 |
apply (auto simp: dist_complex_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:
59870
diff
changeset
|
1496 |
apply (intro derivative_eq_intros | simp add: 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:
59870
diff
changeset
|
1497 |
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:
59870
diff
changeset
|
1498 |
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:
59870
diff
changeset
|
1499 |
|
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:
59870
diff
changeset
|
1500 |
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:
59870
diff
changeset
|
1501 |
"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:
60017
diff
changeset
|
1502 |
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:
59870
diff
changeset
|
1503 |
apply (intro derivative_eq_intros | simp add: 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:
59870
diff
changeset
|
1504 |
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:
59870
diff
changeset
|
1505 |
|
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:
59870
diff
changeset
|
1506 |
lemma complex_differentiable_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:
59870
diff
changeset
|
1507 |
"w \<noteq> 0 \<Longrightarrow> (\<lambda>z. w powr z) complex_differentiable (at 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:
59870
diff
changeset
|
1508 |
using complex_differentiable_def has_field_derivative_powr_right 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:
59870
diff
changeset
|
1509 |
|
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:
59870
diff
changeset
|
1510 |
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:
59870
diff
changeset
|
1511 |
"f holomorphic_on s \<Longrightarrow> w \<noteq> 0 \<Longrightarrow> (\<lambda>z. w powr (f z)) holomorphic_on s" |
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:
59870
diff
changeset
|
1512 |
unfolding holomorphic_on_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:
59870
diff
changeset
|
1513 |
using DERIV_chain' complex_differentiable_def has_field_derivative_powr_right 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:
59870
diff
changeset
|
1514 |
|
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:
59870
diff
changeset
|
1515 |
lemma norm_powr_real_powr: |
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:
59870
diff
changeset
|
1516 |
"w \<in> \<real> \<Longrightarrow> 0 < Re w \<Longrightarrow> norm(w powr z) = Re w powr Re 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:
60017
diff
changeset
|
1517 |
by (auto simp add: norm_powr_real powr_def Im_Ln_eq_0 complex_is_Real_iff in_Reals_norm) |
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:
59870
diff
changeset
|
1518 |
|
60150
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1519 |
|
60420 | 1520 |
subsection\<open>Some Limits involving Logarithms\<close> |
60150
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1521 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1522 |
lemma lim_Ln_over_power: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1523 |
fixes s::complex |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1524 |
assumes "0 < Re s" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1525 |
shows "((\<lambda>n. Ln n / (n powr s)) ---> 0) sequentially" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1526 |
proof (simp add: lim_sequentially dist_norm, clarify) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1527 |
fix e::real |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1528 |
assume e: "0 < e" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1529 |
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:
60141
diff
changeset
|
1530 |
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:
60141
diff
changeset
|
1531 |
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:
60141
diff
changeset
|
1532 |
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:
60141
diff
changeset
|
1533 |
next |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1534 |
fix x::real |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1535 |
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:
60141
diff
changeset
|
1536 |
then have "x>0" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1537 |
using e assms |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1538 |
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:
60141
diff
changeset
|
1539 |
zero_less_numeral) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1540 |
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:
60141
diff
changeset
|
1541 |
using e assms x |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1542 |
apply (auto simp: field_simps) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1543 |
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:
60141
diff
changeset
|
1544 |
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:
60141
diff
changeset
|
1545 |
done |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1546 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1547 |
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:
60141
diff
changeset
|
1548 |
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:
60141
diff
changeset
|
1549 |
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:
60141
diff
changeset
|
1550 |
using assms |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1551 |
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:
60141
diff
changeset
|
1552 |
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:
60141
diff
changeset
|
1553 |
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:
60141
diff
changeset
|
1554 |
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:
60141
diff
changeset
|
1555 |
apply (auto simp: norm_divide norm_powr_real divide_simps) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1556 |
apply (rule_tac x="nat (ceiling (exp xo))" in exI) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1557 |
apply clarify |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1558 |
apply (drule_tac x="ln n" in spec) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1559 |
apply (auto simp: real_of_nat_def exp_less_mono nat_ceiling_le_eq not_le) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1560 |
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:
60141
diff
changeset
|
1561 |
done |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1562 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1563 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1564 |
lemma lim_Ln_over_n: "((\<lambda>n. Ln(of_nat n) / of_nat n) ---> 0) sequentially" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1565 |
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:
60141
diff
changeset
|
1566 |
by simp |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1567 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1568 |
lemma Ln_Reals_eq: "x \<in> Reals \<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:
59870
diff
changeset
|
1569 |
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:
59870
diff
changeset
|
1570 |
|
60150
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1571 |
lemma powr_Reals_eq: "x \<in> Reals \<Longrightarrow> Re x > 0 \<Longrightarrow> x powr complex_of_real y = of_real (x powr y)" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1572 |
by (simp add: powr_of_real) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1573 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1574 |
lemma lim_ln_over_power: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1575 |
fixes s :: real |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1576 |
assumes "0 < s" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1577 |
shows "((\<lambda>n. ln n / (n powr s)) ---> 0) sequentially" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1578 |
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:
60141
diff
changeset
|
1579 |
apply (subst filterlim_sequentially_Suc [symmetric]) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1580 |
apply (simp add: lim_sequentially dist_norm |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1581 |
Ln_Reals_eq norm_powr_real_powr norm_divide real_of_nat_def) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1582 |
done |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1583 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1584 |
lemma lim_ln_over_n: "((\<lambda>n. ln(real_of_nat n) / of_nat n) ---> 0) sequentially" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1585 |
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:
60141
diff
changeset
|
1586 |
apply (subst filterlim_sequentially_Suc [symmetric]) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1587 |
apply (simp add: lim_sequentially dist_norm real_of_nat_def) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1588 |
done |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1589 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1590 |
lemma lim_1_over_complex_power: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1591 |
assumes "0 < Re s" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1592 |
shows "((\<lambda>n. 1 / (of_nat n powr s)) ---> 0) sequentially" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1593 |
proof - |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1594 |
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:
60141
diff
changeset
|
1595 |
using ln3_gt_1 |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1596 |
by (force intro: order_trans [of _ "ln 3"] ln3_gt_1) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1597 |
moreover have "(\<lambda>n. cmod (Ln (of_nat n) / of_nat n powr s)) ----> 0" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1598 |
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:
60141
diff
changeset
|
1599 |
by (metis tendsto_norm_zero_iff) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1600 |
ultimately show ?thesis |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1601 |
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:
60141
diff
changeset
|
1602 |
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:
60141
diff
changeset
|
1603 |
done |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1604 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1605 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1606 |
lemma lim_1_over_real_power: |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1607 |
fixes s :: real |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1608 |
assumes "0 < s" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1609 |
shows "((\<lambda>n. 1 / (of_nat n powr s)) ---> 0) sequentially" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1610 |
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:
60141
diff
changeset
|
1611 |
apply (subst filterlim_sequentially_Suc [symmetric]) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1612 |
apply (simp add: lim_sequentially dist_norm) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1613 |
apply (simp add: Ln_Reals_eq norm_powr_real_powr norm_divide real_of_nat_def) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1614 |
done |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1615 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1616 |
lemma lim_1_over_Ln: "((\<lambda>n. 1 / Ln(of_nat n)) ---> 0) sequentially" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1617 |
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:
60141
diff
changeset
|
1618 |
fix r::real |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1619 |
assume "0 < r" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1620 |
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:
60141
diff
changeset
|
1621 |
by simp |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1622 |
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:
60141
diff
changeset
|
1623 |
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:
60141
diff
changeset
|
1624 |
by auto |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1625 |
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:
60141
diff
changeset
|
1626 |
by (simp add: divide_simps) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1627 |
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:
60141
diff
changeset
|
1628 |
by (metis exp_gt_zero less_trans ln_exp ln_less_cancel_iff) |
60420 | 1629 |
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:
60141
diff
changeset
|
1630 |
by (simp add: field_simps) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1631 |
moreover have "n > 0" using n |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1632 |
using neq0_conv by fastforce |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1633 |
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 | 1634 |
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:
60141
diff
changeset
|
1635 |
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:
60141
diff
changeset
|
1636 |
apply (auto simp: divide_simps) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1637 |
apply (erule less_le_trans, auto) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1638 |
done |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1639 |
qed |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1640 |
|
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1641 |
lemma lim_1_over_ln: "((\<lambda>n. 1 / ln(real_of_nat n)) ---> 0) sequentially" |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1642 |
using lim_1_over_Ln [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:
60141
diff
changeset
|
1643 |
apply (subst filterlim_sequentially_Suc [symmetric]) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1644 |
apply (simp add: lim_sequentially dist_norm) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1645 |
apply (simp add: Ln_Reals_eq norm_powr_real_powr norm_divide real_of_nat_def) |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1646 |
done |
bd773c47ad0b
New material about complex transcendental functions (especially Ln, Arg) and polynomials
paulson <lp15@cam.ac.uk>
parents:
60141
diff
changeset
|
1647 |
|
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:
59870
diff
changeset
|
1648 |
|
60420 | 1649 |
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:
59746
diff
changeset
|
1650 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1651 |
lemma csqrt_exp_Ln: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1652 |
assumes "z \<noteq> 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1653 |
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:
59746
diff
changeset
|
1654 |
proof - |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1655 |
have "(exp (Ln z / 2))\<^sup>2 = (exp (Ln z))" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1656 |
by (metis exp_double nonzero_mult_divide_cancel_left times_divide_eq_right zero_neq_numeral) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1657 |
also have "... = z" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1658 |
using assms exp_Ln by blast |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1659 |
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:
59746
diff
changeset
|
1660 |
by simp |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1661 |
also have "... = exp (Ln z / 2)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1662 |
apply (subst csqrt_square) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1663 |
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:
59746
diff
changeset
|
1664 |
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:
59746
diff
changeset
|
1665 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1666 |
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:
59746
diff
changeset
|
1667 |
by simp |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1668 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1669 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1670 |
lemma csqrt_inverse: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1671 |
assumes "Im(z) = 0 \<Longrightarrow> 0 < Re z" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1672 |
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:
59746
diff
changeset
|
1673 |
proof (cases "z=0", simp) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1674 |
assume "z \<noteq> 0 " |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1675 |
then show ?thesis |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1676 |
using assms |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1677 |
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:
59746
diff
changeset
|
1678 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1679 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1680 |
lemma cnj_csqrt: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1681 |
assumes "Im z = 0 \<Longrightarrow> 0 \<le> Re(z)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1682 |
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:
59746
diff
changeset
|
1683 |
proof (cases "z=0", simp) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1684 |
assume z: "z \<noteq> 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1685 |
then have "Im z = 0 \<Longrightarrow> 0 < Re(z)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1686 |
using assms cnj.code complex_cnj_zero_iff by fastforce |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1687 |
then show ?thesis |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1688 |
using z by (simp add: csqrt_exp_Ln cnj_Ln exp_cnj) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1689 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1690 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1691 |
lemma has_field_derivative_csqrt: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1692 |
assumes "Im z = 0 \<Longrightarrow> 0 < Re(z)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1693 |
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:
59746
diff
changeset
|
1694 |
proof - |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1695 |
have z: "z \<noteq> 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1696 |
using assms by auto |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1697 |
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:
59746
diff
changeset
|
1698 |
by (simp add: divide_simps) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1699 |
show ?thesis |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1700 |
apply (rule DERIV_transform_at [where f = "\<lambda>z. exp(Ln(z) / 2)" and d = "norm z"]) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1701 |
apply (intro derivative_eq_intros | simp add: assms)+ |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1702 |
apply (rule *) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1703 |
using z |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1704 |
apply (auto simp: field_simps csqrt_exp_Ln [symmetric]) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1705 |
apply (metis power2_csqrt power2_eq_square) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1706 |
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:
59746
diff
changeset
|
1707 |
done |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1708 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1709 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1710 |
lemma complex_differentiable_at_csqrt: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1711 |
"(Im z = 0 \<Longrightarrow> 0 < Re(z)) \<Longrightarrow> csqrt complex_differentiable at z" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1712 |
using complex_differentiable_def has_field_derivative_csqrt by blast |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1713 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1714 |
lemma complex_differentiable_within_csqrt: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1715 |
"(Im z = 0 \<Longrightarrow> 0 < Re(z)) \<Longrightarrow> csqrt complex_differentiable (at z within s)" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1716 |
using complex_differentiable_at_csqrt complex_differentiable_within_subset by blast |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1717 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1718 |
lemma continuous_at_csqrt: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1719 |
"(Im z = 0 \<Longrightarrow> 0 < Re(z)) \<Longrightarrow> continuous (at z) csqrt" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1720 |
by (simp add: complex_differentiable_within_csqrt complex_differentiable_imp_continuous_at) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1721 |
|
59862 | 1722 |
corollary isCont_csqrt' [simp]: |
1723 |
"\<lbrakk>isCont f z; Im(f z) = 0 \<Longrightarrow> 0 < Re(f z)\<rbrakk> \<Longrightarrow> isCont (\<lambda>x. csqrt (f x)) z" |
|
1724 |
by (blast intro: isCont_o2 [OF _ continuous_at_csqrt]) |
|
1725 |
||
59751
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1726 |
lemma continuous_within_csqrt: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1727 |
"(Im z = 0 \<Longrightarrow> 0 < Re(z)) \<Longrightarrow> continuous (at z within s) csqrt" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1728 |
by (simp add: complex_differentiable_imp_continuous_at complex_differentiable_within_csqrt) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1729 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1730 |
lemma continuous_on_csqrt [continuous_intros]: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1731 |
"(\<And>z. z \<in> s \<and> Im z = 0 \<Longrightarrow> 0 < Re(z)) \<Longrightarrow> continuous_on s csqrt" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1732 |
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:
59746
diff
changeset
|
1733 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1734 |
lemma holomorphic_on_csqrt: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1735 |
"(\<And>z. z \<in> s \<and> Im z = 0 \<Longrightarrow> 0 < Re(z)) \<Longrightarrow> csqrt holomorphic_on s" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1736 |
by (simp add: complex_differentiable_within_csqrt holomorphic_on_def) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1737 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1738 |
lemma continuous_within_closed_nontrivial: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1739 |
"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:
59746
diff
changeset
|
1740 |
using open_Compl |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1741 |
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:
59746
diff
changeset
|
1742 |
|
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1743 |
lemma continuous_within_csqrt_posreal: |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1744 |
"continuous (at z within (\<real> \<inter> {w. 0 \<le> Re(w)})) csqrt" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1745 |
proof (cases "Im z = 0 --> 0 < Re(z)") |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1746 |
case True then show ?thesis |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1747 |
by (blast intro: continuous_within_csqrt) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1748 |
next |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1749 |
case False |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1750 |
then have "Im z = 0" "Re z < 0 \<or> z = 0" |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1751 |
using False cnj.code complex_cnj_zero_iff by auto force |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1752 |
then show ?thesis |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1753 |
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:
59746
diff
changeset
|
1754 |
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:
59746
diff
changeset
|
1755 |
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:
59746
diff
changeset
|
1756 |
apply (auto simp: Reals_def) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1757 |
by (metis linear not_less real_sqrt_less_iff real_sqrt_pow2_iff real_sqrt_power) |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1758 |
qed |
916c0f6c83e3
New material for complex sin, cos, tan, Ln, also some reorganisation
paulson <lp15@cam.ac.uk>
parents:
59746
diff
changeset
|
1759 |
|
60420 | 1760 |
subsection\<open>Complex arctangent\<close> |
1761 |
||
1762 |
text\<open>branch cut gives standard bounds in real case.\<close> |
|
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1763 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1764 |
definition Arctan :: "complex \<Rightarrow> complex" where |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1765 |
"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:
59862
diff
changeset
|
1766 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1767 |
lemma Arctan_0 [simp]: "Arctan 0 = 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1768 |
by (simp add: Arctan_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1769 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1770 |
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:
59862
diff
changeset
|
1771 |
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:
59862
diff
changeset
|
1772 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1773 |
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:
59862
diff
changeset
|
1774 |
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:
59862
diff
changeset
|
1775 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1776 |
lemma tan_Arctan: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1777 |
assumes "z\<^sup>2 \<noteq> -1" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1778 |
shows [simp]:"tan(Arctan z) = z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1779 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1780 |
have "1 + \<i>*z \<noteq> 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1781 |
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:
59862
diff
changeset
|
1782 |
moreover |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1783 |
have "1 - \<i>*z \<noteq> 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1784 |
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:
59862
diff
changeset
|
1785 |
ultimately |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1786 |
show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1787 |
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:
59862
diff
changeset
|
1788 |
divide_simps power2_eq_square [symmetric]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1789 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1790 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1791 |
lemma Arctan_tan [simp]: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1792 |
assumes "\<bar>Re z\<bar> < pi/2" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1793 |
shows "Arctan(tan z) = z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1794 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1795 |
have ge_pi2: "\<And>n::int. abs (of_int (2*n + 1) * pi/2) \<ge> pi/2" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1796 |
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:
59862
diff
changeset
|
1797 |
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:
59862
diff
changeset
|
1798 |
by (metis distrib_right exp_add mult_2) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1799 |
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:
59862
diff
changeset
|
1800 |
using cis_conv_exp cis_pi by auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1801 |
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:
59862
diff
changeset
|
1802 |
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:
59862
diff
changeset
|
1803 |
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:
59862
diff
changeset
|
1804 |
by (simp add: exp_eq_1) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1805 |
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:
59862
diff
changeset
|
1806 |
by (simp add: algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1807 |
also have "... \<longleftrightarrow> False" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1808 |
using assms ge_pi2 |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1809 |
apply (auto simp: algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1810 |
by (metis abs_mult_pos not_less not_real_of_nat_less_zero real_of_nat_numeral) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1811 |
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:
59862
diff
changeset
|
1812 |
by (auto simp: add.commute minus_unique) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1813 |
show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1814 |
using assms * |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1815 |
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:
59862
diff
changeset
|
1816 |
ii_times_eq_iff power2_eq_square [symmetric]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1817 |
apply (rule Ln_unique) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1818 |
apply (auto simp: divide_simps exp_minus) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1819 |
apply (simp add: algebra_simps exp_double [symmetric]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1820 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1821 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1822 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1823 |
lemma |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1824 |
assumes "Re z = 0 \<Longrightarrow> abs(Im z) < 1" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1825 |
shows Re_Arctan_bounds: "abs(Re(Arctan z)) < pi/2" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1826 |
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:
59862
diff
changeset
|
1827 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1828 |
have nz0: "1 + \<i>*z \<noteq> 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1829 |
using assms |
60141
833adf7db7d8
New material, mostly about limits. Consolidation.
paulson <lp15@cam.ac.uk>
parents:
60020
diff
changeset
|
1830 |
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:
59862
diff
changeset
|
1831 |
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:
59862
diff
changeset
|
1832 |
have "z \<noteq> -\<i>" using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1833 |
by auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1834 |
then have zz: "1 + z * z \<noteq> 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1835 |
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:
59862
diff
changeset
|
1836 |
have nz1: "1 - \<i>*z \<noteq> 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1837 |
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:
59862
diff
changeset
|
1838 |
have nz2: "inverse (1 + \<i>*z) \<noteq> 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1839 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1840 |
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:
59862
diff
changeset
|
1841 |
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:
59862
diff
changeset
|
1842 |
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:
59862
diff
changeset
|
1843 |
using nz1 nz2 by auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1844 |
have *: "Im ((1 - \<i>*z) / (1 + \<i>*z)) = 0 \<Longrightarrow> 0 < Re ((1 - \<i>*z) / (1 + \<i>*z))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1845 |
apply (simp add: divide_complex_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1846 |
apply (simp add: divide_simps split: split_if_asm) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1847 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1848 |
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:
59862
diff
changeset
|
1849 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1850 |
show "abs(Re(Arctan z)) < pi/2" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1851 |
unfolding Arctan_def divide_complex_def |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1852 |
using mpi_less_Im_Ln [OF nzi] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1853 |
by (auto simp: abs_if intro: Im_Ln_less_pi * [unfolded divide_complex_def]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1854 |
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:
59862
diff
changeset
|
1855 |
unfolding Arctan_def scaleR_conv_of_real |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1856 |
apply (rule DERIV_cong) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1857 |
apply (intro derivative_eq_intros | simp add: nz0 *)+ |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1858 |
using nz0 nz1 zz |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1859 |
apply (simp add: divide_simps power2_eq_square) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1860 |
apply (auto simp: algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1861 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1862 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1863 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1864 |
lemma complex_differentiable_at_Arctan: "(Re z = 0 \<Longrightarrow> abs(Im z) < 1) \<Longrightarrow> Arctan complex_differentiable at z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1865 |
using has_field_derivative_Arctan |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1866 |
by (auto simp: complex_differentiable_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1867 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1868 |
lemma complex_differentiable_within_Arctan: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1869 |
"(Re z = 0 \<Longrightarrow> abs(Im z) < 1) \<Longrightarrow> Arctan complex_differentiable (at z within s)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1870 |
using complex_differentiable_at_Arctan complex_differentiable_at_within by blast |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1871 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1872 |
declare has_field_derivative_Arctan [derivative_intros] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1873 |
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:
59862
diff
changeset
|
1874 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1875 |
lemma continuous_at_Arctan: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1876 |
"(Re z = 0 \<Longrightarrow> abs(Im z) < 1) \<Longrightarrow> continuous (at z) Arctan" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1877 |
by (simp add: complex_differentiable_imp_continuous_at complex_differentiable_within_Arctan) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1878 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1879 |
lemma continuous_within_Arctan: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1880 |
"(Re z = 0 \<Longrightarrow> abs(Im z) < 1) \<Longrightarrow> continuous (at z within s) Arctan" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1881 |
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:
59862
diff
changeset
|
1882 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1883 |
lemma continuous_on_Arctan [continuous_intros]: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1884 |
"(\<And>z. z \<in> s \<Longrightarrow> Re z = 0 \<Longrightarrow> abs \<bar>Im z\<bar> < 1) \<Longrightarrow> continuous_on s Arctan" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1885 |
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:
59862
diff
changeset
|
1886 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1887 |
lemma holomorphic_on_Arctan: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1888 |
"(\<And>z. z \<in> s \<Longrightarrow> Re z = 0 \<Longrightarrow> abs \<bar>Im z\<bar> < 1) \<Longrightarrow> Arctan holomorphic_on s" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1889 |
by (simp add: complex_differentiable_within_Arctan holomorphic_on_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1890 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1891 |
|
60420 | 1892 |
subsection \<open>Real arctangent\<close> |
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1893 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1894 |
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:
59862
diff
changeset
|
1895 |
by simp |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1896 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1897 |
lemma norm_exp_imaginary: "norm(exp z) = 1 \<Longrightarrow> Re z = 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1898 |
by (simp add: complex_norm_eq_1_exp) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1899 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1900 |
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:
59862
diff
changeset
|
1901 |
unfolding Arctan_def divide_complex_def |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1902 |
apply (simp add: complex_eq_iff) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1903 |
apply (rule norm_exp_imaginary) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1904 |
apply (subst exp_Ln, auto) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1905 |
apply (simp_all add: cmod_def complex_eq_iff) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1906 |
apply (auto simp: divide_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1907 |
apply (metis power_one realpow_two_sum_zero_iff zero_neq_one, algebra) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1908 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1909 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1910 |
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:
59862
diff
changeset
|
1911 |
proof (rule arctan_unique) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1912 |
show "- (pi / 2) < Re (Arctan (complex_of_real x))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1913 |
apply (simp add: Arctan_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1914 |
apply (rule Im_Ln_less_pi) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1915 |
apply (auto simp: Im_complex_div_lemma) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1916 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1917 |
next |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1918 |
have *: " (1 - \<i>*x) / (1 + \<i>*x) \<noteq> 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1919 |
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:
59862
diff
changeset
|
1920 |
show "Re (Arctan (complex_of_real x)) < pi / 2" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1921 |
using mpi_less_Im_Ln [OF *] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1922 |
by (simp add: Arctan_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1923 |
next |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1924 |
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:
59862
diff
changeset
|
1925 |
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:
59862
diff
changeset
|
1926 |
apply (simp add: field_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1927 |
by (simp add: power2_eq_square) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1928 |
also have "... = x" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1929 |
apply (subst tan_Arctan, auto) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1930 |
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:
59862
diff
changeset
|
1931 |
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:
59862
diff
changeset
|
1932 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1933 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1934 |
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:
59862
diff
changeset
|
1935 |
unfolding arctan_eq_Re_Arctan divide_complex_def |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1936 |
by (simp add: complex_eq_iff) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1937 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1938 |
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:
59862
diff
changeset
|
1939 |
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:
59862
diff
changeset
|
1940 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1941 |
declare arctan_one [simp] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1942 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1943 |
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:
59862
diff
changeset
|
1944 |
by (metis arctan_less_iff arctan_one) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1945 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1946 |
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:
59862
diff
changeset
|
1947 |
by (metis arctan_less_iff arctan_minus arctan_one) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1948 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1949 |
lemma arctan_less_pi4: "abs x < 1 \<Longrightarrow> abs(arctan x) < pi/4" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1950 |
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:
59862
diff
changeset
|
1951 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1952 |
lemma arctan_le_pi4: "abs x \<le> 1 \<Longrightarrow> abs(arctan x) \<le> pi/4" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1953 |
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:
59862
diff
changeset
|
1954 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1955 |
lemma abs_arctan: "abs(arctan x) = arctan(abs x)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1956 |
by (simp add: abs_if arctan_minus) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1957 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1958 |
lemma arctan_add_raw: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1959 |
assumes "abs(arctan x + arctan y) < pi/2" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1960 |
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:
59862
diff
changeset
|
1961 |
proof (rule arctan_unique [symmetric]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1962 |
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:
59862
diff
changeset
|
1963 |
using assms by linarith+ |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1964 |
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:
59862
diff
changeset
|
1965 |
using cos_gt_zero_pi [OF 12] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1966 |
by (simp add: arctan tan_add) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1967 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1968 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1969 |
lemma arctan_inverse: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1970 |
assumes "0 < x" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1971 |
shows "arctan(inverse x) = pi/2 - arctan x" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1972 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1973 |
have "arctan(inverse x) = arctan(inverse(tan(arctan x)))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1974 |
by (simp add: arctan) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1975 |
also have "... = arctan (tan (pi / 2 - arctan x))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1976 |
by (simp add: tan_cot) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1977 |
also have "... = pi/2 - arctan x" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1978 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1979 |
have "0 < pi - arctan x" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1980 |
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:
59862
diff
changeset
|
1981 |
with assms show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1982 |
by (simp add: Transcendental.arctan_tan) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1983 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1984 |
finally show ?thesis . |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1985 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1986 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1987 |
lemma arctan_add_small: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1988 |
assumes "abs(x * y) < 1" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1989 |
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:
59862
diff
changeset
|
1990 |
proof (cases "x = 0 \<or> y = 0") |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1991 |
case True then show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1992 |
by auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1993 |
next |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1994 |
case False |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1995 |
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:
59862
diff
changeset
|
1996 |
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:
59862
diff
changeset
|
1997 |
apply (simp add: divide_simps abs_mult) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1998 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
1999 |
show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2000 |
apply (rule arctan_add_raw) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2001 |
using * by linarith |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2002 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2003 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2004 |
lemma abs_arctan_le: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2005 |
fixes x::real shows "abs(arctan x) \<le> abs x" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2006 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2007 |
{ fix w::complex and z::complex |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2008 |
assume *: "w \<in> \<real>" "z \<in> \<real>" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2009 |
have "cmod (Arctan w - Arctan z) \<le> 1 * cmod (w-z)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2010 |
apply (rule complex_differentiable_bound [OF convex_Reals, of Arctan _ 1]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2011 |
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:
59862
diff
changeset
|
2012 |
apply (force simp add: Reals_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2013 |
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:
59862
diff
changeset
|
2014 |
using * by auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2015 |
} |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2016 |
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:
59862
diff
changeset
|
2017 |
using Reals_0 Reals_of_real by blast |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2018 |
then show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2019 |
by (simp add: Arctan_of_real) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2020 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2021 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2022 |
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:
59862
diff
changeset
|
2023 |
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:
59862
diff
changeset
|
2024 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2025 |
lemma abs_tan_ge: "abs x < pi/2 \<Longrightarrow> abs x \<le> abs(tan x)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2026 |
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:
59862
diff
changeset
|
2027 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2028 |
|
60420 | 2029 |
subsection\<open>Inverse Sine\<close> |
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2030 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2031 |
definition Arcsin :: "complex \<Rightarrow> complex" where |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2032 |
"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:
59862
diff
changeset
|
2033 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2034 |
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:
59862
diff
changeset
|
2035 |
using power2_csqrt [of "1 - z\<^sup>2"] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2036 |
apply auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2037 |
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:
59862
diff
changeset
|
2038 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2039 |
lemma Arcsin_range_lemma: "abs (Re z) < 1 \<Longrightarrow> 0 < Re(\<i> * z + csqrt(1 - z\<^sup>2))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2040 |
using Complex.cmod_power2 [of z, symmetric] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2041 |
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:
59862
diff
changeset
|
2042 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2043 |
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:
59862
diff
changeset
|
2044 |
by (simp add: Arcsin_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2045 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2046 |
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:
59862
diff
changeset
|
2047 |
by (simp add: Arcsin_def Arcsin_body_lemma) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2048 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2049 |
lemma isCont_Arcsin: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2050 |
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:
59862
diff
changeset
|
2051 |
shows "isCont Arcsin z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2052 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2053 |
have rez: "Im (1 - z\<^sup>2) = 0 \<Longrightarrow> 0 < Re (1 - z\<^sup>2)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2054 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2055 |
by (auto simp: Re_power2 Im_power2 abs_square_less_1 add_pos_nonneg algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2056 |
have cmz: "(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:
59862
diff
changeset
|
2057 |
by (blast intro: assms cmod_square_less_1_plus) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2058 |
show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2059 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2060 |
apply (simp add: Arcsin_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2061 |
apply (rule isCont_Ln' isCont_csqrt' continuous_intros)+ |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2062 |
apply (erule rez) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2063 |
apply (auto simp: Re_power2 Im_power2 abs_square_less_1 [symmetric] real_less_rsqrt algebra_simps split: split_if_asm) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2064 |
apply (simp add: norm_complex_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2065 |
using cmod_power2 [of z, symmetric] cmz |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2066 |
apply (simp add: real_less_rsqrt) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2067 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2068 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2069 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2070 |
lemma isCont_Arcsin' [simp]: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2071 |
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:
59862
diff
changeset
|
2072 |
by (blast intro: isCont_o2 [OF _ isCont_Arcsin]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2073 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2074 |
lemma sin_Arcsin [simp]: "sin(Arcsin z) = z" |
60141
833adf7db7d8
New material, mostly about limits. Consolidation.
paulson <lp15@cam.ac.uk>
parents:
60020
diff
changeset
|
2075 |
proof - |
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2076 |
have "\<i>*z*2 + csqrt (1 - z\<^sup>2)*2 = 0 \<longleftrightarrow> (\<i>*z)*2 + csqrt (1 - z\<^sup>2)*2 = 0" |
60420 | 2077 |
by (simp add: algebra_simps) --\<open>Cancelling a factor of 2\<close> |
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2078 |
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:
59862
diff
changeset
|
2079 |
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:
59862
diff
changeset
|
2080 |
ultimately show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2081 |
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:
59862
diff
changeset
|
2082 |
apply (simp add: algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2083 |
apply (simp add: power2_eq_square [symmetric] algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2084 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2085 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2086 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2087 |
lemma Re_eq_pihalf_lemma: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2088 |
"\<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:
59862
diff
changeset
|
2089 |
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:
59862
diff
changeset
|
2090 |
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:
59862
diff
changeset
|
2091 |
by (metis cos_minus cos_pi_half) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2092 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2093 |
lemma Re_less_pihalf_lemma: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2094 |
assumes "\<bar>Re z\<bar> < pi / 2" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2095 |
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:
59862
diff
changeset
|
2096 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2097 |
have "0 < cos (Re z)" using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2098 |
using cos_gt_zero_pi by auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2099 |
then show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2100 |
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:
59862
diff
changeset
|
2101 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2102 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2103 |
lemma Arcsin_sin: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2104 |
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:
59862
diff
changeset
|
2105 |
shows "Arcsin(sin z) = z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2106 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2107 |
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))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2108 |
by (simp add: sin_exp_eq Arcsin_def exp_minus) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2109 |
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:
59862
diff
changeset
|
2110 |
by (simp add: field_simps power2_eq_square) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2111 |
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:
59862
diff
changeset
|
2112 |
apply (subst csqrt_square) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2113 |
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:
59862
diff
changeset
|
2114 |
apply auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2115 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2116 |
also have "... = - (\<i> * Ln (exp (\<i>*z)))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2117 |
by (simp add: field_simps power2_eq_square) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2118 |
also have "... = z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2119 |
apply (subst Complex_Transcendental.Ln_exp) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2120 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2121 |
apply (auto simp: abs_if simp del: eq_divide_eq_numeral1 split: split_if_asm) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2122 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2123 |
finally show ?thesis . |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2124 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2125 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2126 |
lemma Arcsin_unique: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2127 |
"\<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:
59862
diff
changeset
|
2128 |
by (metis Arcsin_sin) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2129 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2130 |
lemma Arcsin_0 [simp]: "Arcsin 0 = 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2131 |
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:
59862
diff
changeset
|
2132 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2133 |
lemma Arcsin_1 [simp]: "Arcsin 1 = pi/2" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2134 |
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:
59862
diff
changeset
|
2135 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2136 |
lemma Arcsin_minus_1 [simp]: "Arcsin(-1) = - (pi/2)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2137 |
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:
59862
diff
changeset
|
2138 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2139 |
lemma has_field_derivative_Arcsin: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2140 |
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:
59862
diff
changeset
|
2141 |
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:
59862
diff
changeset
|
2142 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2143 |
have "(sin (Arcsin z))\<^sup>2 \<noteq> 1" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2144 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2145 |
apply atomize |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2146 |
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:
59862
diff
changeset
|
2147 |
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:
59862
diff
changeset
|
2148 |
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:
59862
diff
changeset
|
2149 |
then have "cos (Arcsin z) \<noteq> 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2150 |
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:
59862
diff
changeset
|
2151 |
then show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2152 |
apply (rule has_complex_derivative_inverse_basic [OF DERIV_sin]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2153 |
apply (auto intro: isCont_Arcsin open_ball [of z 1] assms) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2154 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2155 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2156 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2157 |
declare has_field_derivative_Arcsin [derivative_intros] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2158 |
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:
59862
diff
changeset
|
2159 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2160 |
lemma complex_differentiable_at_Arcsin: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2161 |
"(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arcsin complex_differentiable at z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2162 |
using complex_differentiable_def has_field_derivative_Arcsin by blast |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2163 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2164 |
lemma complex_differentiable_within_Arcsin: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2165 |
"(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arcsin complex_differentiable (at z within s)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2166 |
using complex_differentiable_at_Arcsin complex_differentiable_within_subset by blast |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2167 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2168 |
lemma continuous_within_Arcsin: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2169 |
"(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:
59862
diff
changeset
|
2170 |
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:
59862
diff
changeset
|
2171 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2172 |
lemma continuous_on_Arcsin [continuous_intros]: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2173 |
"(\<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:
59862
diff
changeset
|
2174 |
by (simp add: continuous_at_imp_continuous_on) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2175 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2176 |
lemma holomorphic_on_Arcsin: "(\<And>z. z \<in> s \<Longrightarrow> Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arcsin holomorphic_on s" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2177 |
by (simp add: complex_differentiable_within_Arcsin holomorphic_on_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2178 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2179 |
|
60420 | 2180 |
subsection\<open>Inverse Cosine\<close> |
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2181 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2182 |
definition Arccos :: "complex \<Rightarrow> complex" where |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2183 |
"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:
59862
diff
changeset
|
2184 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2185 |
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:
59862
diff
changeset
|
2186 |
using Arcsin_range_lemma [of "-z"] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2187 |
by simp |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2188 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2189 |
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:
59862
diff
changeset
|
2190 |
using Arcsin_body_lemma [of z] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2191 |
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:
59862
diff
changeset
|
2192 |
power2_csqrt power2_eq_square zero_neq_one) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2193 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2194 |
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:
59862
diff
changeset
|
2195 |
by (simp add: Arccos_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2196 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2197 |
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:
59862
diff
changeset
|
2198 |
by (simp add: Arccos_def Arccos_body_lemma) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2199 |
|
60420 | 2200 |
text\<open>A very tricky argument to find!\<close> |
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2201 |
lemma abs_Re_less_1_preserve: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2202 |
assumes "(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1)" "Im (z + \<i> * csqrt (1 - z\<^sup>2)) = 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2203 |
shows "0 < Re (z + \<i> * csqrt (1 - z\<^sup>2))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2204 |
proof (cases "Im z = 0") |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2205 |
case True |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2206 |
then show ?thesis |
60141
833adf7db7d8
New material, mostly about limits. Consolidation.
paulson <lp15@cam.ac.uk>
parents:
60020
diff
changeset
|
2207 |
using assms |
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2208 |
by (fastforce simp add: cmod_def Re_power2 Im_power2 algebra_simps abs_square_less_1 [symmetric]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2209 |
next |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2210 |
case False |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2211 |
have Imz: "Im z = - sqrt ((1 + ((Im z)\<^sup>2 + cmod (1 - z\<^sup>2)) - (Re z)\<^sup>2) / 2)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2212 |
using assms abs_Re_le_cmod [of "1-z\<^sup>2"] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2213 |
by (simp add: Re_power2 algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2214 |
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:
59862
diff
changeset
|
2215 |
proof (clarsimp simp add: cmod_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2216 |
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:
59862
diff
changeset
|
2217 |
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:
59862
diff
changeset
|
2218 |
by simp |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2219 |
then show False using False |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2220 |
by (simp add: power2_eq_square algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2221 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2222 |
moreover have "(Im z)\<^sup>2 = ((1 + ((Im z)\<^sup>2 + cmod (1 - z\<^sup>2)) - (Re z)\<^sup>2) / 2)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2223 |
apply (subst Imz, simp) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2224 |
apply (subst real_sqrt_pow2) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2225 |
using abs_Re_le_cmod [of "1-z\<^sup>2"] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2226 |
apply (auto simp: Re_power2 field_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2227 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2228 |
ultimately show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2229 |
by (simp add: Re_power2 Im_power2 cmod_power2) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2230 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2231 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2232 |
lemma isCont_Arccos: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2233 |
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:
59862
diff
changeset
|
2234 |
shows "isCont Arccos z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2235 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2236 |
have rez: "Im (1 - z\<^sup>2) = 0 \<Longrightarrow> 0 < Re (1 - z\<^sup>2)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2237 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2238 |
by (auto simp: Re_power2 Im_power2 abs_square_less_1 add_pos_nonneg algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2239 |
show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2240 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2241 |
apply (simp add: Arccos_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2242 |
apply (rule isCont_Ln' isCont_csqrt' continuous_intros)+ |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2243 |
apply (erule rez) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2244 |
apply (blast intro: abs_Re_less_1_preserve) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2245 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2246 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2247 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2248 |
lemma isCont_Arccos' [simp]: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2249 |
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:
59862
diff
changeset
|
2250 |
by (blast intro: isCont_o2 [OF _ isCont_Arccos]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2251 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2252 |
lemma cos_Arccos [simp]: "cos(Arccos z) = z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2253 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2254 |
have "z*2 + \<i> * (2 * csqrt (1 - z\<^sup>2)) = 0 \<longleftrightarrow> z*2 + \<i> * csqrt (1 - z\<^sup>2)*2 = 0" |
60420 | 2255 |
by (simp add: algebra_simps) --\<open>Cancelling a factor of 2\<close> |
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2256 |
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:
59862
diff
changeset
|
2257 |
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:
59862
diff
changeset
|
2258 |
ultimately show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2259 |
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:
59862
diff
changeset
|
2260 |
apply (simp add: power2_eq_square [symmetric]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2261 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2262 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2263 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2264 |
lemma Arccos_cos: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2265 |
assumes "0 < Re z & Re z < pi \<or> |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2266 |
Re z = 0 & 0 \<le> Im z \<or> |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2267 |
Re z = pi & Im z \<le> 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2268 |
shows "Arccos(cos z) = z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2269 |
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:
59870
diff
changeset
|
2270 |
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:
59862
diff
changeset
|
2271 |
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:
59870
diff
changeset
|
2272 |
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:
59862
diff
changeset
|
2273 |
by (simp add: field_simps power2_eq_square) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2274 |
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:
59870
diff
changeset
|
2275 |
\<i> * csqrt (((\<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:
59862
diff
changeset
|
2276 |
by (simp add: cos_exp_eq Arccos_def exp_minus) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2277 |
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:
59870
diff
changeset
|
2278 |
\<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:
59862
diff
changeset
|
2279 |
apply (subst csqrt_square) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2280 |
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:
59862
diff
changeset
|
2281 |
apply (auto simp: * Re_sin Im_sin) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2282 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2283 |
also have "... = - (\<i> * Ln (exp (\<i>*z)))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2284 |
by (simp add: field_simps power2_eq_square) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2285 |
also have "... = z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2286 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2287 |
apply (subst Complex_Transcendental.Ln_exp, auto) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2288 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2289 |
finally show ?thesis . |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2290 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2291 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2292 |
lemma Arccos_unique: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2293 |
"\<lbrakk>cos z = w; |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2294 |
0 < Re z \<and> Re z < pi \<or> |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2295 |
Re z = 0 \<and> 0 \<le> Im z \<or> |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2296 |
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:
59862
diff
changeset
|
2297 |
using Arccos_cos by blast |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2298 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2299 |
lemma Arccos_0 [simp]: "Arccos 0 = pi/2" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2300 |
by (rule Arccos_unique) (auto simp: of_real_numeral) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2301 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2302 |
lemma Arccos_1 [simp]: "Arccos 1 = 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2303 |
by (rule Arccos_unique) auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2304 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2305 |
lemma Arccos_minus1: "Arccos(-1) = pi" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2306 |
by (rule Arccos_unique) auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2307 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2308 |
lemma has_field_derivative_Arccos: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2309 |
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:
59862
diff
changeset
|
2310 |
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:
59862
diff
changeset
|
2311 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2312 |
have "(cos (Arccos z))\<^sup>2 \<noteq> 1" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2313 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2314 |
apply atomize |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2315 |
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:
59862
diff
changeset
|
2316 |
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:
59862
diff
changeset
|
2317 |
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:
59862
diff
changeset
|
2318 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2319 |
then have "- sin (Arccos z) \<noteq> 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2320 |
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:
59862
diff
changeset
|
2321 |
then have "(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:
59862
diff
changeset
|
2322 |
apply (rule has_complex_derivative_inverse_basic [OF DERIV_cos]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2323 |
apply (auto intro: isCont_Arccos open_ball [of z 1] assms) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2324 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2325 |
then show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2326 |
by simp |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2327 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2328 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2329 |
declare has_field_derivative_Arcsin [derivative_intros] |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2330 |
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:
59862
diff
changeset
|
2331 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2332 |
lemma complex_differentiable_at_Arccos: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2333 |
"(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arccos complex_differentiable at z" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2334 |
using complex_differentiable_def has_field_derivative_Arccos by blast |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2335 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2336 |
lemma complex_differentiable_within_Arccos: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2337 |
"(Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arccos complex_differentiable (at z within s)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2338 |
using complex_differentiable_at_Arccos complex_differentiable_within_subset by blast |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2339 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2340 |
lemma continuous_within_Arccos: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2341 |
"(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:
59862
diff
changeset
|
2342 |
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:
59862
diff
changeset
|
2343 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2344 |
lemma continuous_on_Arccos [continuous_intros]: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2345 |
"(\<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:
59862
diff
changeset
|
2346 |
by (simp add: continuous_at_imp_continuous_on) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2347 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2348 |
lemma holomorphic_on_Arccos: "(\<And>z. z \<in> s \<Longrightarrow> Im z = 0 \<Longrightarrow> \<bar>Re z\<bar> < 1) \<Longrightarrow> Arccos holomorphic_on s" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2349 |
by (simp add: complex_differentiable_within_Arccos holomorphic_on_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2350 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2351 |
|
60420 | 2352 |
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:
59862
diff
changeset
|
2353 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2354 |
lemma Arcsin_bounds: "\<bar>Re z\<bar> < 1 \<Longrightarrow> abs(Re(Arcsin z)) < pi/2" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2355 |
unfolding Re_Arcsin |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2356 |
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:
59862
diff
changeset
|
2357 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2358 |
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:
59862
diff
changeset
|
2359 |
unfolding Re_Arccos |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2360 |
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:
59862
diff
changeset
|
2361 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2362 |
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:
59862
diff
changeset
|
2363 |
unfolding Re_Arccos |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2364 |
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:
59862
diff
changeset
|
2365 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2366 |
lemma Re_Arccos_bound: "abs(Re(Arccos z)) \<le> pi" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2367 |
using Re_Arccos_bounds abs_le_interval_iff less_eq_real_def by blast |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2368 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2369 |
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:
59862
diff
changeset
|
2370 |
unfolding Re_Arcsin |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2371 |
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:
59862
diff
changeset
|
2372 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2373 |
lemma Re_Arcsin_bound: "abs(Re(Arcsin z)) \<le> pi" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2374 |
using Re_Arcsin_bounds abs_le_interval_iff less_eq_real_def by blast |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2375 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2376 |
|
60420 | 2377 |
subsection\<open>Interrelations between Arcsin and Arccos\<close> |
59870
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2378 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2379 |
lemma cos_Arcsin_nonzero: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2380 |
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:
59862
diff
changeset
|
2381 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2382 |
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:
59862
diff
changeset
|
2383 |
by (simp add: power_mult_distrib algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2384 |
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:
59862
diff
changeset
|
2385 |
proof |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2386 |
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:
59862
diff
changeset
|
2387 |
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:
59862
diff
changeset
|
2388 |
by simp |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2389 |
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:
59862
diff
changeset
|
2390 |
using eq power2_eq_square by auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2391 |
then show False |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2392 |
using assms by simp |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2393 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2394 |
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:
59862
diff
changeset
|
2395 |
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:
59862
diff
changeset
|
2396 |
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:
59862
diff
changeset
|
2397 |
by (metis mult_cancel_left zero_neq_numeral) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2398 |
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:
59862
diff
changeset
|
2399 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2400 |
apply (auto simp: power2_sum) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2401 |
apply (simp add: power2_eq_square algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2402 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2403 |
then show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2404 |
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:
59862
diff
changeset
|
2405 |
apply (simp add: divide_simps Arcsin_body_lemma) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2406 |
apply (metis add.commute minus_unique power2_eq_square) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2407 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2408 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2409 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2410 |
lemma sin_Arccos_nonzero: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2411 |
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:
59862
diff
changeset
|
2412 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2413 |
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:
59862
diff
changeset
|
2414 |
by (simp add: power_mult_distrib algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2415 |
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:
59862
diff
changeset
|
2416 |
proof |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2417 |
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:
59862
diff
changeset
|
2418 |
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:
59862
diff
changeset
|
2419 |
by simp |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2420 |
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:
59862
diff
changeset
|
2421 |
using eq power2_eq_square by auto |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2422 |
then have "-(z\<^sup>2) = (1 - z\<^sup>2)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2423 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2424 |
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:
59862
diff
changeset
|
2425 |
then show False |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2426 |
using assms by simp |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2427 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2428 |
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:
59862
diff
changeset
|
2429 |
by (simp add: algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2430 |
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:
59862
diff
changeset
|
2431 |
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:
59862
diff
changeset
|
2432 |
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:
59862
diff
changeset
|
2433 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2434 |
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:
59862
diff
changeset
|
2435 |
apply (simp add: power2_eq_square algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2436 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2437 |
then show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2438 |
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:
59862
diff
changeset
|
2439 |
apply (simp add: divide_simps Arccos_body_lemma) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2440 |
apply (simp add: power2_eq_square) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2441 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2442 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2443 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2444 |
lemma cos_sin_csqrt: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2445 |
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:
59862
diff
changeset
|
2446 |
shows "cos z = csqrt(1 - (sin z)\<^sup>2)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2447 |
apply (rule csqrt_unique [THEN sym]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2448 |
apply (simp add: cos_squared_eq) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2449 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2450 |
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:
59862
diff
changeset
|
2451 |
apply (auto simp: algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2452 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2453 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2454 |
lemma sin_cos_csqrt: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2455 |
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:
59862
diff
changeset
|
2456 |
shows "sin z = csqrt(1 - (cos z)\<^sup>2)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2457 |
apply (rule csqrt_unique [THEN sym]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2458 |
apply (simp add: sin_squared_eq) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2459 |
using assms |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2460 |
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:
59862
diff
changeset
|
2461 |
apply (auto simp: algebra_simps) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2462 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2463 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2464 |
lemma Arcsin_Arccos_csqrt_pos: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2465 |
"(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:
59862
diff
changeset
|
2466 |
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:
59862
diff
changeset
|
2467 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2468 |
lemma Arccos_Arcsin_csqrt_pos: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2469 |
"(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:
59862
diff
changeset
|
2470 |
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:
59862
diff
changeset
|
2471 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2472 |
lemma sin_Arccos: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2473 |
"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:
59862
diff
changeset
|
2474 |
by (simp add: Arccos_Arcsin_csqrt_pos) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2475 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2476 |
lemma cos_Arcsin: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2477 |
"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:
59862
diff
changeset
|
2478 |
by (simp add: Arcsin_Arccos_csqrt_pos) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2479 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2480 |
|
60420 | 2481 |
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:
59862
diff
changeset
|
2482 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2483 |
lemma Im_Arcsin_of_real: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2484 |
assumes "abs x \<le> 1" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2485 |
shows "Im (Arcsin (of_real x)) = 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2486 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2487 |
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:
59862
diff
changeset
|
2488 |
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:
59862
diff
changeset
|
2489 |
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:
59862
diff
changeset
|
2490 |
using assms abs_square_le_1 |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2491 |
by (force simp add: Complex.cmod_power2) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2492 |
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:
59862
diff
changeset
|
2493 |
by (simp add: norm_complex_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2494 |
then show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2495 |
by (simp add: Im_Arcsin exp_minus) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2496 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2497 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2498 |
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:
59862
diff
changeset
|
2499 |
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:
59862
diff
changeset
|
2500 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2501 |
lemma arcsin_eq_Re_Arcsin: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2502 |
assumes "abs x \<le> 1" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2503 |
shows "arcsin x = Re (Arcsin (of_real x))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2504 |
unfolding arcsin_def |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2505 |
proof (rule the_equality, safe) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2506 |
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:
59862
diff
changeset
|
2507 |
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:
59862
diff
changeset
|
2508 |
by (auto simp: Complex.in_Reals_norm Re_Arcsin) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2509 |
next |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2510 |
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:
59862
diff
changeset
|
2511 |
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:
59862
diff
changeset
|
2512 |
by (auto simp: Complex.in_Reals_norm Re_Arcsin) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2513 |
next |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2514 |
show "sin (Re (Arcsin (complex_of_real x))) = x" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2515 |
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:
59862
diff
changeset
|
2516 |
by (simp add: Im_Arcsin_of_real assms) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2517 |
next |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2518 |
fix x' |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2519 |
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:
59862
diff
changeset
|
2520 |
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:
59862
diff
changeset
|
2521 |
apply (simp add: sin_of_real [symmetric]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2522 |
apply (subst Arcsin_sin) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2523 |
apply (auto simp: ) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2524 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2525 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2526 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2527 |
lemma of_real_arcsin: "abs x \<le> 1 \<Longrightarrow> of_real(arcsin x) = Arcsin(of_real x)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2528 |
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:
59862
diff
changeset
|
2529 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2530 |
|
60420 | 2531 |
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:
59862
diff
changeset
|
2532 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2533 |
lemma Im_Arccos_of_real: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2534 |
assumes "abs x \<le> 1" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2535 |
shows "Im (Arccos (of_real x)) = 0" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2536 |
proof - |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2537 |
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:
59862
diff
changeset
|
2538 |
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:
59862
diff
changeset
|
2539 |
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:
59862
diff
changeset
|
2540 |
using assms abs_square_le_1 |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2541 |
by (force simp add: Complex.cmod_power2) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2542 |
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:
59862
diff
changeset
|
2543 |
by (simp add: norm_complex_def) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2544 |
then show ?thesis |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2545 |
by (simp add: Im_Arccos exp_minus) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2546 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2547 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2548 |
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:
59862
diff
changeset
|
2549 |
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:
59862
diff
changeset
|
2550 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2551 |
lemma arccos_eq_Re_Arccos: |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2552 |
assumes "abs x \<le> 1" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2553 |
shows "arccos x = Re (Arccos (of_real x))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2554 |
unfolding arccos_def |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2555 |
proof (rule the_equality, safe) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2556 |
show "0 \<le> Re (Arccos (complex_of_real x))" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2557 |
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:
59862
diff
changeset
|
2558 |
by (auto simp: Complex.in_Reals_norm Re_Arccos) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2559 |
next |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2560 |
show "Re (Arccos (complex_of_real x)) \<le> pi" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2561 |
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:
59862
diff
changeset
|
2562 |
by (auto simp: Complex.in_Reals_norm Re_Arccos) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2563 |
next |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2564 |
show "cos (Re (Arccos (complex_of_real x))) = x" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2565 |
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:
59862
diff
changeset
|
2566 |
by (simp add: Im_Arccos_of_real assms) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2567 |
next |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2568 |
fix x' |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2569 |
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:
59862
diff
changeset
|
2570 |
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:
59862
diff
changeset
|
2571 |
apply (simp add: cos_of_real [symmetric]) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2572 |
apply (subst Arccos_cos) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2573 |
apply (auto simp: ) |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2574 |
done |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2575 |
qed |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2576 |
|
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2577 |
lemma of_real_arccos: "abs x \<le> 1 \<Longrightarrow> of_real(arccos x) = Arccos(of_real x)" |
68d6b6aa4450
HOL Light Libraries for complex Arctan, Arcsin, Arccos
paulson <lp15@cam.ac.uk>
parents:
59862
diff
changeset
|
2578 |
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:
59746
diff
changeset
|
2579 |
|
60420 | 2580 |
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:
59870
diff
changeset
|
2581 |
|
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:
59870
diff
changeset
|
2582 |
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:
59870
diff
changeset
|
2583 |
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:
59870
diff
changeset
|
2584 |
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:
59870
diff
changeset
|
2585 |
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:
59870
diff
changeset
|
2586 |
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:
59870
diff
changeset
|
2587 |
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:
59870
diff
changeset
|
2588 |
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:
59870
diff
changeset
|
2589 |
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:
59870
diff
changeset
|
2590 |
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:
59870
diff
changeset
|
2591 |
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:
59870
diff
changeset
|
2592 |
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:
59870
diff
changeset
|
2593 |
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:
59870
diff
changeset
|
2594 |
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:
59870
diff
changeset
|
2595 |
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:
59870
diff
changeset
|
2596 |
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:
59870
diff
changeset
|
2597 |
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:
59870
diff
changeset
|
2598 |
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:
59870
diff
changeset
|
2599 |
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:
59870
diff
changeset
|
2600 |
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:
59870
diff
changeset
|
2601 |
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:
59870
diff
changeset
|
2602 |
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:
59870
diff
changeset
|
2603 |
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:
59870
diff
changeset
|
2604 |
|
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:
59870
diff
changeset
|
2605 |
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:
59870
diff
changeset
|
2606 |
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:
59870
diff
changeset
|
2607 |
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:
59870
diff
changeset
|
2608 |
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:
59870
diff
changeset
|
2609 |
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:
59870
diff
changeset
|
2610 |
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:
59870
diff
changeset
|
2611 |
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:
59870
diff
changeset
|
2612 |
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:
59870
diff
changeset
|
2613 |
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:
59870
diff
changeset
|
2614 |
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:
59870
diff
changeset
|
2615 |
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:
59870
diff
changeset
|
2616 |
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:
59870
diff
changeset
|
2617 |
|
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:
59870
diff
changeset
|
2618 |
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:
59870
diff
changeset
|
2619 |
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:
59870
diff
changeset
|
2620 |
|
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:
59870
diff
changeset
|
2621 |
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:
59870
diff
changeset
|
2622 |
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:
59870
diff
changeset
|
2623 |
|
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:
59870
diff
changeset
|
2624 |
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:
59870
diff
changeset
|
2625 |
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:
59870
diff
changeset
|
2626 |
|
60162 | 2627 |
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:
59870
diff
changeset
|
2628 |
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:
59870
diff
changeset
|
2629 |
|
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:
59870
diff
changeset
|
2630 |
lemma arcsin_arccos_sqrt_pos: "0 \<le> x \<Longrightarrow> x \<le> 1 \<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:
59870
diff
changeset
|
2631 |
apply (simp add: abs_square_le_1 diff_le_iff arcsin_eq_Re_Arcsin 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:
59870
diff
changeset
|
2632 |
apply (subst Arcsin_Arccos_csqrt_pos) |
60162 | 2633 |
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:
59870
diff
changeset
|
2634 |
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:
59870
diff
changeset
|
2635 |
|
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:
59870
diff
changeset
|
2636 |
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:
59870
diff
changeset
|
2637 |
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:
59870
diff
changeset
|
2638 |
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:
59870
diff
changeset
|
2639 |
|
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:
59870
diff
changeset
|
2640 |
lemma arccos_arcsin_sqrt_pos: "0 \<le> x \<Longrightarrow> x \<le> 1 \<Longrightarrow> arccos x = 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:
59870
diff
changeset
|
2641 |
apply (simp add: abs_square_le_1 diff_le_iff arcsin_eq_Re_Arcsin 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:
59870
diff
changeset
|
2642 |
apply (subst Arccos_Arcsin_csqrt_pos) |
60162 | 2643 |
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:
59870
diff
changeset
|
2644 |
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:
59870
diff
changeset
|
2645 |
|
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:
59870
diff
changeset
|
2646 |
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:
59870
diff
changeset
|
2647 |
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:
59870
diff
changeset
|
2648 |
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:
59870
diff
changeset
|
2649 |
|
60420 | 2650 |
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:
59870
diff
changeset
|
2651 |
|
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:
59870
diff
changeset
|
2652 |
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:
59870
diff
changeset
|
2653 |
"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:
59870
diff
changeset
|
2654 |
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:
59870
diff
changeset
|
2655 |
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:
59870
diff
changeset
|
2656 |
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:
59870
diff
changeset
|
2657 |
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:
59870
diff
changeset
|
2658 |
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:
59870
diff
changeset
|
2659 |
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:
59870
diff
changeset
|
2660 |
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:
59870
diff
changeset
|
2661 |
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:
59870
diff
changeset
|
2662 |
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:
59870
diff
changeset
|
2663 |
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:
59870
diff
changeset
|
2664 |
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:
59870
diff
changeset
|
2665 |
|
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:
59870
diff
changeset
|
2666 |
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:
59870
diff
changeset
|
2667 |
"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:
59870
diff
changeset
|
2668 |
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:
59870
diff
changeset
|
2669 |
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:
59870
diff
changeset
|
2670 |
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:
59870
diff
changeset
|
2671 |
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:
59870
diff
changeset
|
2672 |
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:
59870
diff
changeset
|
2673 |
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:
59870
diff
changeset
|
2674 |
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:
59870
diff
changeset
|
2675 |
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:
59870
diff
changeset
|
2676 |
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:
59870
diff
changeset
|
2677 |
|
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:
59870
diff
changeset
|
2678 |
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:
59870
diff
changeset
|
2679 |
"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:
59870
diff
changeset
|
2680 |
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:
59870
diff
changeset
|
2681 |
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:
59870
diff
changeset
|
2682 |
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:
59870
diff
changeset
|
2683 |
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:
59870
diff
changeset
|
2684 |
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:
59870
diff
changeset
|
2685 |
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:
59870
diff
changeset
|
2686 |
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:
59870
diff
changeset
|
2687 |
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:
59870
diff
changeset
|
2688 |
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:
59870
diff
changeset
|
2689 |
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:
59870
diff
changeset
|
2690 |
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:
59870
diff
changeset
|
2691 |
|
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:
59870
diff
changeset
|
2692 |
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:
59870
diff
changeset
|
2693 |
"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:
59870
diff
changeset
|
2694 |
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:
59870
diff
changeset
|
2695 |
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:
59870
diff
changeset
|
2696 |
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:
59870
diff
changeset
|
2697 |
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:
59870
diff
changeset
|
2698 |
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:
59870
diff
changeset
|
2699 |
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:
59870
diff
changeset
|
2700 |
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:
59870
diff
changeset
|
2701 |
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:
59870
diff
changeset
|
2702 |
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:
59870
diff
changeset
|
2703 |
|
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:
59870
diff
changeset
|
2704 |
|
60420 | 2705 |
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:
60017
diff
changeset
|
2706 |
|
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:
60017
diff
changeset
|
2707 |
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:
60017
diff
changeset
|
2708 |
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:
60017
diff
changeset
|
2709 |
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:
60017
diff
changeset
|
2710 |
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:
60017
diff
changeset
|
2711 |
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:
60017
diff
changeset
|
2712 |
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:
60017
diff
changeset
|
2713 |
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:
60017
diff
changeset
|
2714 |
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:
60017
diff
changeset
|
2715 |
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:
60017
diff
changeset
|
2716 |
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:
60017
diff
changeset
|
2717 |
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:
60017
diff
changeset
|
2718 |
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:
60017
diff
changeset
|
2719 |
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:
60017
diff
changeset
|
2720 |
|
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:
60017
diff
changeset
|
2721 |
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:
60017
diff
changeset
|
2722 |
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:
60017
diff
changeset
|
2723 |
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:
60017
diff
changeset
|
2724 |
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:
60017
diff
changeset
|
2725 |
\<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:
60017
diff
changeset
|
2726 |
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:
60017
diff
changeset
|
2727 |
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:
60017
diff
changeset
|
2728 |
\<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:
60017
diff
changeset
|
2729 |
(\<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:
60017
diff
changeset
|
2730 |
(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:
60017
diff
changeset
|
2731 |
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:
60017
diff
changeset
|
2732 |
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:
60017
diff
changeset
|
2733 |
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:
60017
diff
changeset
|
2734 |
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:
60017
diff
changeset
|
2735 |
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:
60017
diff
changeset
|
2736 |
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:
60017
diff
changeset
|
2737 |
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:
60017
diff
changeset
|
2738 |
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:
60017
diff
changeset
|
2739 |
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:
60017
diff
changeset
|
2740 |
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:
60017
diff
changeset
|
2741 |
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:
60017
diff
changeset
|
2742 |
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:
60017
diff
changeset
|
2743 |
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:
60017
diff
changeset
|
2744 |
\<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:
60017
diff
changeset
|
2745 |
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:
60017
diff
changeset
|
2746 |
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:
60017
diff
changeset
|
2747 |
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:
60017
diff
changeset
|
2748 |
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:
60017
diff
changeset
|
2749 |
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:
60017
diff
changeset
|
2750 |
|
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:
60017
diff
changeset
|
2751 |
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:
60017
diff
changeset
|
2752 |
"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:
60017
diff
changeset
|
2753 |
{..<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:
60017
diff
changeset
|
2754 |
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:
60017
diff
changeset
|
2755 |
|
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:
60017
diff
changeset
|
2756 |
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:
60017
diff
changeset
|
2757 |
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:
60017
diff
changeset
|
2758 |
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:
60017
diff
changeset
|
2759 |
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:
60017
diff
changeset
|
2760 |
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:
60017
diff
changeset
|
2761 |
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:
60017
diff
changeset
|
2762 |
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:
60017
diff
changeset
|
2763 |
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:
60017
diff
changeset
|
2764 |
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:
60017
diff
changeset
|
2765 |
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:
60017
diff
changeset
|
2766 |
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:
60017
diff
changeset
|
2767 |
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:
60017
diff
changeset
|
2768 |
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:
60017
diff
changeset
|
2769 |
|
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:
60017
diff
changeset
|
2770 |
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:
60017
diff
changeset
|
2771 |
"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:
60017
diff
changeset
|
2772 |
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:
60017
diff
changeset
|
2773 |
|
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:
60017
diff
changeset
|
2774 |
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:
60017
diff
changeset
|
2775 |
"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:
60017
diff
changeset
|
2776 |
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:
60017
diff
changeset
|
2777 |
|
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:
60017
diff
changeset
|
2778 |
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:
60017
diff
changeset
|
2779 |
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:
60017
diff
changeset
|
2780 |
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:
60017
diff
changeset
|
2781 |
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:
60017
diff
changeset
|
2782 |
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:
60017
diff
changeset
|
2783 |
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:
60017
diff
changeset
|
2784 |
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:
60017
diff
changeset
|
2785 |
|
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:
60017
diff
changeset
|
2786 |
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:
60017
diff
changeset
|
2787 |
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:
60017
diff
changeset
|
2788 |
|
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:
60017
diff
changeset
|
2789 |
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:
60017
diff
changeset
|
2790 |
"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:
60017
diff
changeset
|
2791 |
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:
60017
diff
changeset
|
2792 |
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:
60017
diff
changeset
|
2793 |
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:
60017
diff
changeset
|
2794 |
|
59745
390476a0ef13
new file for complex transcendental functions
paulson <lp15@cam.ac.uk>
parents:
diff
changeset
|
2795 |
end |