author | blanchet |
Tue, 16 Sep 2014 19:23:37 +0200 | |
changeset 58352 | 37745650a3f4 |
parent 58146 | d91c1e50b36e |
child 58709 | efdc6c533bd3 |
permissions | -rw-r--r-- |
41959 | 1 |
(* Title: HOL/Complex.thy |
13957 | 2 |
Author: Jacques D. Fleuriot |
3 |
Copyright: 2001 University of Edinburgh |
|
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14377
diff
changeset
|
4 |
Conversion to Isar and new proofs by Lawrence C Paulson, 2003/4 |
13957 | 5 |
*) |
6 |
||
14377 | 7 |
header {* Complex Numbers: Rectangular and Polar Representations *} |
14373 | 8 |
|
15131 | 9 |
theory Complex |
28952
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents:
28944
diff
changeset
|
10 |
imports Transcendental |
15131 | 11 |
begin |
13957 | 12 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
13 |
text {* |
58146 | 14 |
We use the @{text codatatype} command to define the type of complex numbers. This allows us to use |
15 |
@{text primcorec} to define complex functions by defining their real and imaginary result |
|
16 |
separately. |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
17 |
*} |
14373 | 18 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
19 |
codatatype complex = Complex (Re: real) (Im: real) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
20 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
21 |
lemma complex_surj: "Complex (Re z) (Im z) = z" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
22 |
by (rule complex.collapse) |
13957 | 23 |
|
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
24 |
lemma complex_eqI [intro?]: "\<lbrakk>Re x = Re y; Im x = Im y\<rbrakk> \<Longrightarrow> x = y" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
25 |
by (rule complex.expand) simp |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
26 |
|
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
27 |
lemma complex_eq_iff: "x = y \<longleftrightarrow> Re x = Re y \<and> Im x = Im y" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
28 |
by (auto intro: complex.expand) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
29 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
30 |
subsection {* Addition and Subtraction *} |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
31 |
|
25599 | 32 |
instantiation complex :: ab_group_add |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
33 |
begin |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
34 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
35 |
primcorec zero_complex where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
36 |
"Re 0 = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
37 |
| "Im 0 = 0" |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
38 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
39 |
primcorec plus_complex where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
40 |
"Re (x + y) = Re x + Re y" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
41 |
| "Im (x + y) = Im x + Im y" |
25712 | 42 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
43 |
primcorec uminus_complex where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
44 |
"Re (- x) = - Re x" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
45 |
| "Im (- x) = - Im x" |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
46 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
47 |
primcorec minus_complex where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
48 |
"Re (x - y) = Re x - Re y" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
49 |
| "Im (x - y) = Im x - Im y" |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
50 |
|
25712 | 51 |
instance |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
52 |
by intro_classes (simp_all add: complex_eq_iff) |
25712 | 53 |
|
54 |
end |
|
55 |
||
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
56 |
subsection {* Multiplication and Division *} |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
57 |
|
36409 | 58 |
instantiation complex :: field_inverse_zero |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
59 |
begin |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
60 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
61 |
primcorec one_complex where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
62 |
"Re 1 = 1" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
63 |
| "Im 1 = 0" |
14323 | 64 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
65 |
primcorec times_complex where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
66 |
"Re (x * y) = Re x * Re y - Im x * Im y" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
67 |
| "Im (x * y) = Re x * Im y + Im x * Re y" |
14323 | 68 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
69 |
primcorec inverse_complex where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
70 |
"Re (inverse x) = Re x / ((Re x)\<^sup>2 + (Im x)\<^sup>2)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
71 |
| "Im (inverse x) = - Im x / ((Re x)\<^sup>2 + (Im x)\<^sup>2)" |
14335 | 72 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
73 |
definition "x / (y\<Colon>complex) = x * inverse y" |
14335 | 74 |
|
25712 | 75 |
instance |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
76 |
by intro_classes |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
77 |
(simp_all add: complex_eq_iff divide_complex_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
78 |
distrib_left distrib_right right_diff_distrib left_diff_distrib |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
79 |
power2_eq_square add_divide_distrib [symmetric]) |
14335 | 80 |
|
25712 | 81 |
end |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
82 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
83 |
lemma Re_divide: "Re (x / y) = (Re x * Re y + Im x * Im y) / ((Re y)\<^sup>2 + (Im y)\<^sup>2)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
84 |
unfolding divide_complex_def by (simp add: add_divide_distrib) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
85 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
86 |
lemma Im_divide: "Im (x / y) = (Im x * Re y - Re x * Im y) / ((Re y)\<^sup>2 + (Im y)\<^sup>2)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
87 |
unfolding divide_complex_def times_complex.sel inverse_complex.sel |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
88 |
by (simp_all add: divide_simps) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
89 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
90 |
lemma Re_power2: "Re (x ^ 2) = (Re x)^2 - (Im x)^2" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
91 |
by (simp add: power2_eq_square) |
20556
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents:
20485
diff
changeset
|
92 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
93 |
lemma Im_power2: "Im (x ^ 2) = 2 * Re x * Im x" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
94 |
by (simp add: power2_eq_square) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
95 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
96 |
lemma Re_power_real: "Im x = 0 \<Longrightarrow> Re (x ^ n) = Re x ^ n " |
44724 | 97 |
by (induct n) simp_all |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
98 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
99 |
lemma Im_power_real: "Im x = 0 \<Longrightarrow> Im (x ^ n) = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
100 |
by (induct n) simp_all |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
101 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
102 |
subsection {* Scalar Multiplication *} |
20556
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents:
20485
diff
changeset
|
103 |
|
25712 | 104 |
instantiation complex :: real_field |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
105 |
begin |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
106 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
107 |
primcorec scaleR_complex where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
108 |
"Re (scaleR r x) = r * Re x" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
109 |
| "Im (scaleR r x) = r * Im x" |
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22968
diff
changeset
|
110 |
|
25712 | 111 |
instance |
20556
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents:
20485
diff
changeset
|
112 |
proof |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
113 |
fix a b :: real and x y :: complex |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
114 |
show "scaleR a (x + y) = scaleR a x + scaleR a y" |
49962
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents:
47108
diff
changeset
|
115 |
by (simp add: complex_eq_iff distrib_left) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
116 |
show "scaleR (a + b) x = scaleR a x + scaleR b x" |
49962
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents:
47108
diff
changeset
|
117 |
by (simp add: complex_eq_iff distrib_right) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
118 |
show "scaleR a (scaleR b x) = scaleR (a * b) x" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57259
diff
changeset
|
119 |
by (simp add: complex_eq_iff mult.assoc) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
120 |
show "scaleR 1 x = x" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
121 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
122 |
show "scaleR a x * y = scaleR a (x * y)" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
123 |
by (simp add: complex_eq_iff algebra_simps) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
124 |
show "x * scaleR a y = scaleR a (x * y)" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
125 |
by (simp add: complex_eq_iff algebra_simps) |
20556
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents:
20485
diff
changeset
|
126 |
qed |
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents:
20485
diff
changeset
|
127 |
|
25712 | 128 |
end |
129 |
||
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
130 |
subsection {* Numerals, Arithmetic, and Embedding from Reals *} |
14323 | 131 |
|
44724 | 132 |
abbreviation complex_of_real :: "real \<Rightarrow> complex" |
133 |
where "complex_of_real \<equiv> of_real" |
|
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
134 |
|
56331 | 135 |
declare [[coercion complex_of_real]] |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
136 |
declare [[coercion "of_int :: int \<Rightarrow> complex"]] |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
137 |
declare [[coercion "of_nat :: nat \<Rightarrow> complex"]] |
56331 | 138 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
139 |
lemma complex_Re_of_nat [simp]: "Re (of_nat n) = of_nat n" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
140 |
by (induct n) simp_all |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
141 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
142 |
lemma complex_Im_of_nat [simp]: "Im (of_nat n) = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
143 |
by (induct n) simp_all |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
144 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
145 |
lemma complex_Re_of_int [simp]: "Re (of_int z) = of_int z" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
146 |
by (cases z rule: int_diff_cases) simp |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
147 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
148 |
lemma complex_Im_of_int [simp]: "Im (of_int z) = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
149 |
by (cases z rule: int_diff_cases) simp |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
150 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
151 |
lemma complex_Re_numeral [simp]: "Re (numeral v) = numeral v" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
152 |
using complex_Re_of_int [of "numeral v"] by simp |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
153 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
154 |
lemma complex_Im_numeral [simp]: "Im (numeral v) = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
155 |
using complex_Im_of_int [of "numeral v"] by simp |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
156 |
|
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
157 |
lemma Re_complex_of_real [simp]: "Re (complex_of_real z) = z" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
158 |
by (simp add: of_real_def) |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
159 |
|
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
160 |
lemma Im_complex_of_real [simp]: "Im (complex_of_real z) = 0" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
161 |
by (simp add: of_real_def) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
162 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
163 |
subsection {* The Complex Number $i$ *} |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
164 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
165 |
primcorec "ii" :: complex ("\<i>") where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
166 |
"Re ii = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
167 |
| "Im ii = 1" |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
168 |
|
57259
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
169 |
lemma Complex_eq[simp]: "Complex a b = a + \<i> * b" |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
170 |
by (simp add: complex_eq_iff) |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
171 |
|
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
172 |
lemma complex_eq: "a = Re a + \<i> * Im a" |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
173 |
by (simp add: complex_eq_iff) |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
174 |
|
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
175 |
lemma fun_complex_eq: "f = (\<lambda>x. Re (f x) + \<i> * Im (f x))" |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
176 |
by (simp add: fun_eq_iff complex_eq) |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
177 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
178 |
lemma i_squared [simp]: "ii * ii = -1" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
179 |
by (simp add: complex_eq_iff) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
180 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
181 |
lemma power2_i [simp]: "ii\<^sup>2 = -1" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
182 |
by (simp add: power2_eq_square) |
14377 | 183 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
184 |
lemma inverse_i [simp]: "inverse ii = - ii" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
185 |
by (rule inverse_unique) simp |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
186 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
187 |
lemma divide_i [simp]: "x / ii = - ii * x" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
188 |
by (simp add: divide_complex_def) |
14377 | 189 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
190 |
lemma complex_i_mult_minus [simp]: "ii * (ii * x) = - x" |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57259
diff
changeset
|
191 |
by (simp add: mult.assoc [symmetric]) |
14377 | 192 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
193 |
lemma complex_i_not_zero [simp]: "ii \<noteq> 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
194 |
by (simp add: complex_eq_iff) |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
195 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
196 |
lemma complex_i_not_one [simp]: "ii \<noteq> 1" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
197 |
by (simp add: complex_eq_iff) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
198 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
199 |
lemma complex_i_not_numeral [simp]: "ii \<noteq> numeral w" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
200 |
by (simp add: complex_eq_iff) |
44841 | 201 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
202 |
lemma complex_i_not_neg_numeral [simp]: "ii \<noteq> - numeral w" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
203 |
by (simp add: complex_eq_iff) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
204 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
205 |
lemma complex_split_polar: "\<exists>r a. z = complex_of_real r * (cos a + \<i> * sin a)" |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
206 |
by (simp add: complex_eq_iff polar_Ex) |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
207 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
208 |
subsection {* Vector Norm *} |
14323 | 209 |
|
25712 | 210 |
instantiation complex :: real_normed_field |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
211 |
begin |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
212 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
213 |
definition "norm z = sqrt ((Re z)\<^sup>2 + (Im z)\<^sup>2)" |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
214 |
|
44724 | 215 |
abbreviation cmod :: "complex \<Rightarrow> real" |
216 |
where "cmod \<equiv> norm" |
|
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
217 |
|
31413
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
218 |
definition complex_sgn_def: |
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
219 |
"sgn x = x /\<^sub>R cmod x" |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
220 |
|
31413
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
221 |
definition dist_complex_def: |
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
222 |
"dist x y = cmod (x - y)" |
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
223 |
|
37767 | 224 |
definition open_complex_def: |
31492
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents:
31419
diff
changeset
|
225 |
"open (S :: complex set) \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)" |
31292 | 226 |
|
31413
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
227 |
instance proof |
31492
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents:
31419
diff
changeset
|
228 |
fix r :: real and x y :: complex and S :: "complex set" |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
229 |
show "(norm x = 0) = (x = 0)" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
230 |
by (simp add: norm_complex_def complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
231 |
show "norm (x + y) \<le> norm x + norm y" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
232 |
by (simp add: norm_complex_def complex_eq_iff real_sqrt_sum_squares_triangle_ineq) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
233 |
show "norm (scaleR r x) = \<bar>r\<bar> * norm x" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
234 |
by (simp add: norm_complex_def complex_eq_iff power_mult_distrib distrib_left [symmetric] real_sqrt_mult) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
235 |
show "norm (x * y) = norm x * norm y" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
236 |
by (simp add: norm_complex_def complex_eq_iff real_sqrt_mult [symmetric] power2_eq_square algebra_simps) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
237 |
qed (rule complex_sgn_def dist_complex_def open_complex_def)+ |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
238 |
|
25712 | 239 |
end |
240 |
||
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
241 |
lemma norm_ii [simp]: "norm ii = 1" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
242 |
by (simp add: norm_complex_def) |
14323 | 243 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
244 |
lemma cmod_unit_one: "cmod (cos a + \<i> * sin a) = 1" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
245 |
by (simp add: norm_complex_def) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
246 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
247 |
lemma cmod_complex_polar: "cmod (r * (cos a + \<i> * sin a)) = \<bar>r\<bar>" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
248 |
by (simp add: norm_mult cmod_unit_one) |
22861
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
249 |
|
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
250 |
lemma complex_Re_le_cmod: "Re x \<le> cmod x" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
251 |
unfolding norm_complex_def |
44724 | 252 |
by (rule real_sqrt_sum_squares_ge1) |
22861
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
253 |
|
44761 | 254 |
lemma complex_mod_minus_le_complex_mod: "- cmod x \<le> cmod x" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
255 |
by (rule order_trans [OF _ norm_ge_zero]) simp |
22861
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
256 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
257 |
lemma complex_mod_triangle_ineq2: "cmod (b + a) - cmod b \<le> cmod a" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
258 |
by (rule ord_le_eq_trans [OF norm_triangle_ineq2]) simp |
14323 | 259 |
|
26117 | 260 |
lemma abs_Re_le_cmod: "\<bar>Re x\<bar> \<le> cmod x" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
261 |
by (simp add: norm_complex_def) |
26117 | 262 |
|
263 |
lemma abs_Im_le_cmod: "\<bar>Im x\<bar> \<le> cmod x" |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
264 |
by (simp add: norm_complex_def) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
265 |
|
57259
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
266 |
lemma cmod_le: "cmod z \<le> \<bar>Re z\<bar> + \<bar>Im z\<bar>" |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
267 |
apply (subst complex_eq) |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
268 |
apply (rule order_trans) |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
269 |
apply (rule norm_triangle_ineq) |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
270 |
apply (simp add: norm_mult) |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
271 |
done |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
272 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
273 |
lemma cmod_eq_Re: "Im z = 0 \<Longrightarrow> cmod z = \<bar>Re z\<bar>" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
274 |
by (simp add: norm_complex_def) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
275 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
276 |
lemma cmod_eq_Im: "Re z = 0 \<Longrightarrow> cmod z = \<bar>Im z\<bar>" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
277 |
by (simp add: norm_complex_def) |
44724 | 278 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
279 |
lemma cmod_power2: "cmod z ^ 2 = (Re z)^2 + (Im z)^2" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
280 |
by (simp add: norm_complex_def) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
281 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
282 |
lemma cmod_plus_Re_le_0_iff: "cmod z + Re z \<le> 0 \<longleftrightarrow> Re z = - cmod z" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
283 |
using abs_Re_le_cmod[of z] by auto |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
284 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
285 |
lemma Im_eq_0: "\<bar>Re z\<bar> = cmod z \<Longrightarrow> Im z = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
286 |
by (subst (asm) power_eq_iff_eq_base[symmetric, where n=2]) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
287 |
(auto simp add: norm_complex_def) |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
288 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
289 |
lemma abs_sqrt_wlog: |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
290 |
fixes x::"'a::linordered_idom" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
291 |
assumes "\<And>x::'a. x \<ge> 0 \<Longrightarrow> P x (x\<^sup>2)" shows "P \<bar>x\<bar> (x\<^sup>2)" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
292 |
by (metis abs_ge_zero assms power2_abs) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
293 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
294 |
lemma complex_abs_le_norm: "\<bar>Re z\<bar> + \<bar>Im z\<bar> \<le> sqrt 2 * norm z" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
295 |
unfolding norm_complex_def |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
296 |
apply (rule abs_sqrt_wlog [where x="Re z"]) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
297 |
apply (rule abs_sqrt_wlog [where x="Im z"]) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
298 |
apply (rule power2_le_imp_le) |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57259
diff
changeset
|
299 |
apply (simp_all add: power2_sum add.commute sum_squares_bound real_sqrt_mult [symmetric]) |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
300 |
done |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
301 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
302 |
|
44843 | 303 |
text {* Properties of complex signum. *} |
304 |
||
305 |
lemma sgn_eq: "sgn z = z / complex_of_real (cmod z)" |
|
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57259
diff
changeset
|
306 |
by (simp add: sgn_div_norm divide_inverse scaleR_conv_of_real mult.commute) |
44843 | 307 |
|
308 |
lemma Re_sgn [simp]: "Re(sgn z) = Re(z)/cmod z" |
|
309 |
by (simp add: complex_sgn_def divide_inverse) |
|
310 |
||
311 |
lemma Im_sgn [simp]: "Im(sgn z) = Im(z)/cmod z" |
|
312 |
by (simp add: complex_sgn_def divide_inverse) |
|
313 |
||
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
314 |
|
23123 | 315 |
subsection {* Completeness of the Complexes *} |
316 |
||
44290
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
317 |
lemma bounded_linear_Re: "bounded_linear Re" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
318 |
by (rule bounded_linear_intro [where K=1], simp_all add: norm_complex_def) |
44290
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
319 |
|
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
320 |
lemma bounded_linear_Im: "bounded_linear Im" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
321 |
by (rule bounded_linear_intro [where K=1], simp_all add: norm_complex_def) |
23123 | 322 |
|
44290
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
323 |
lemmas Cauchy_Re = bounded_linear.Cauchy [OF bounded_linear_Re] |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
324 |
lemmas Cauchy_Im = bounded_linear.Cauchy [OF bounded_linear_Im] |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
325 |
lemmas tendsto_Re [tendsto_intros] = bounded_linear.tendsto [OF bounded_linear_Re] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
326 |
lemmas tendsto_Im [tendsto_intros] = bounded_linear.tendsto [OF bounded_linear_Im] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
327 |
lemmas isCont_Re [simp] = bounded_linear.isCont [OF bounded_linear_Re] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
328 |
lemmas isCont_Im [simp] = bounded_linear.isCont [OF bounded_linear_Im] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
329 |
lemmas continuous_Re [simp] = bounded_linear.continuous [OF bounded_linear_Re] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
330 |
lemmas continuous_Im [simp] = bounded_linear.continuous [OF bounded_linear_Im] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
331 |
lemmas continuous_on_Re [continuous_intros] = bounded_linear.continuous_on[OF bounded_linear_Re] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
332 |
lemmas continuous_on_Im [continuous_intros] = bounded_linear.continuous_on[OF bounded_linear_Im] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
333 |
lemmas has_derivative_Re [derivative_intros] = bounded_linear.has_derivative[OF bounded_linear_Re] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
334 |
lemmas has_derivative_Im [derivative_intros] = bounded_linear.has_derivative[OF bounded_linear_Im] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
335 |
lemmas sums_Re = bounded_linear.sums [OF bounded_linear_Re] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
336 |
lemmas sums_Im = bounded_linear.sums [OF bounded_linear_Im] |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
337 |
|
36825 | 338 |
lemma tendsto_Complex [tendsto_intros]: |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
339 |
"(f ---> a) F \<Longrightarrow> (g ---> b) F \<Longrightarrow> ((\<lambda>x. Complex (f x) (g x)) ---> Complex a b) F" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
340 |
by (auto intro!: tendsto_intros) |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
341 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
342 |
lemma tendsto_complex_iff: |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
343 |
"(f ---> x) F \<longleftrightarrow> (((\<lambda>x. Re (f x)) ---> Re x) F \<and> ((\<lambda>x. Im (f x)) ---> Im x) F)" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
344 |
proof safe |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
345 |
assume "((\<lambda>x. Re (f x)) ---> Re x) F" "((\<lambda>x. Im (f x)) ---> Im x) F" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
346 |
from tendsto_Complex[OF this] show "(f ---> x) F" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
347 |
unfolding complex.collapse . |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
348 |
qed (auto intro: tendsto_intros) |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
349 |
|
57259
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
350 |
lemma continuous_complex_iff: "continuous F f \<longleftrightarrow> |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
351 |
continuous F (\<lambda>x. Re (f x)) \<and> continuous F (\<lambda>x. Im (f x))" |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
352 |
unfolding continuous_def tendsto_complex_iff .. |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
353 |
|
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
354 |
lemma has_vector_derivative_complex_iff: "(f has_vector_derivative x) F \<longleftrightarrow> |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
355 |
((\<lambda>x. Re (f x)) has_field_derivative (Re x)) F \<and> |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
356 |
((\<lambda>x. Im (f x)) has_field_derivative (Im x)) F" |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
357 |
unfolding has_vector_derivative_def has_field_derivative_def has_derivative_def tendsto_complex_iff |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
358 |
by (simp add: field_simps bounded_linear_scaleR_left bounded_linear_mult_right) |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
359 |
|
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
360 |
lemma has_field_derivative_Re[derivative_intros]: |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
361 |
"(f has_vector_derivative D) F \<Longrightarrow> ((\<lambda>x. Re (f x)) has_field_derivative (Re D)) F" |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
362 |
unfolding has_vector_derivative_complex_iff by safe |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
363 |
|
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
364 |
lemma has_field_derivative_Im[derivative_intros]: |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
365 |
"(f has_vector_derivative D) F \<Longrightarrow> ((\<lambda>x. Im (f x)) has_field_derivative (Im D)) F" |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
366 |
unfolding has_vector_derivative_complex_iff by safe |
3a448982a74a
add more derivative and continuity rules for complex-values functions
hoelzl
parents:
56889
diff
changeset
|
367 |
|
23123 | 368 |
instance complex :: banach |
369 |
proof |
|
370 |
fix X :: "nat \<Rightarrow> complex" |
|
371 |
assume X: "Cauchy X" |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
372 |
then have "(\<lambda>n. Complex (Re (X n)) (Im (X n))) ----> Complex (lim (\<lambda>n. Re (X n))) (lim (\<lambda>n. Im (X n)))" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
373 |
by (intro tendsto_Complex convergent_LIMSEQ_iff[THEN iffD1] Cauchy_convergent_iff[THEN iffD1] Cauchy_Re Cauchy_Im) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
374 |
then show "convergent X" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
375 |
unfolding complex.collapse by (rule convergentI) |
23123 | 376 |
qed |
377 |
||
56238
5d147e1e18d1
a few new lemmas and generalisations of old ones
paulson <lp15@cam.ac.uk>
parents:
56217
diff
changeset
|
378 |
declare |
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
379 |
DERIV_power[where 'a=complex, unfolded of_nat_def[symmetric], derivative_intros] |
56238
5d147e1e18d1
a few new lemmas and generalisations of old ones
paulson <lp15@cam.ac.uk>
parents:
56217
diff
changeset
|
380 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
381 |
subsection {* Complex Conjugation *} |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
382 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
383 |
primcorec cnj :: "complex \<Rightarrow> complex" where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
384 |
"Re (cnj z) = Re z" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
385 |
| "Im (cnj z) = - Im z" |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
386 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
387 |
lemma complex_cnj_cancel_iff [simp]: "(cnj x = cnj y) = (x = y)" |
44724 | 388 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
389 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
390 |
lemma complex_cnj_cnj [simp]: "cnj (cnj z) = z" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
391 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
392 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
393 |
lemma complex_cnj_zero [simp]: "cnj 0 = 0" |
44724 | 394 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
395 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
396 |
lemma complex_cnj_zero_iff [iff]: "(cnj z = 0) = (z = 0)" |
44724 | 397 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
398 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
399 |
lemma complex_cnj_add [simp]: "cnj (x + y) = cnj x + cnj y" |
44724 | 400 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
401 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
402 |
lemma cnj_setsum [simp]: "cnj (setsum f s) = (\<Sum>x\<in>s. cnj (f x))" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
403 |
by (induct s rule: infinite_finite_induct) auto |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
404 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
405 |
lemma complex_cnj_diff [simp]: "cnj (x - y) = cnj x - cnj y" |
44724 | 406 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
407 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
408 |
lemma complex_cnj_minus [simp]: "cnj (- x) = - cnj x" |
44724 | 409 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
410 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
411 |
lemma complex_cnj_one [simp]: "cnj 1 = 1" |
44724 | 412 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
413 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
414 |
lemma complex_cnj_mult [simp]: "cnj (x * y) = cnj x * cnj y" |
44724 | 415 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
416 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
417 |
lemma cnj_setprod [simp]: "cnj (setprod f s) = (\<Prod>x\<in>s. cnj (f x))" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
418 |
by (induct s rule: infinite_finite_induct) auto |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
419 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
420 |
lemma complex_cnj_inverse [simp]: "cnj (inverse x) = inverse (cnj x)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
421 |
by (simp add: complex_eq_iff) |
14323 | 422 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
423 |
lemma complex_cnj_divide [simp]: "cnj (x / y) = cnj x / cnj y" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
424 |
by (simp add: divide_complex_def) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
425 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
426 |
lemma complex_cnj_power [simp]: "cnj (x ^ n) = cnj x ^ n" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
427 |
by (induct n) simp_all |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
428 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
429 |
lemma complex_cnj_of_nat [simp]: "cnj (of_nat n) = of_nat n" |
44724 | 430 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
431 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
432 |
lemma complex_cnj_of_int [simp]: "cnj (of_int z) = of_int z" |
44724 | 433 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
434 |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
44902
diff
changeset
|
435 |
lemma complex_cnj_numeral [simp]: "cnj (numeral w) = numeral w" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
44902
diff
changeset
|
436 |
by (simp add: complex_eq_iff) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
44902
diff
changeset
|
437 |
|
54489
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents:
54230
diff
changeset
|
438 |
lemma complex_cnj_neg_numeral [simp]: "cnj (- numeral w) = - numeral w" |
44724 | 439 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
440 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
441 |
lemma complex_cnj_scaleR [simp]: "cnj (scaleR r x) = scaleR r (cnj x)" |
44724 | 442 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
443 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
444 |
lemma complex_mod_cnj [simp]: "cmod (cnj z) = cmod z" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
445 |
by (simp add: norm_complex_def) |
14323 | 446 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
447 |
lemma complex_cnj_complex_of_real [simp]: "cnj (of_real x) = of_real x" |
44724 | 448 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
449 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
450 |
lemma complex_cnj_i [simp]: "cnj ii = - ii" |
44724 | 451 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
452 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
453 |
lemma complex_add_cnj: "z + cnj z = complex_of_real (2 * Re z)" |
44724 | 454 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
455 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
456 |
lemma complex_diff_cnj: "z - cnj z = complex_of_real (2 * Im z) * ii" |
44724 | 457 |
by (simp add: complex_eq_iff) |
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
458 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
51002
diff
changeset
|
459 |
lemma complex_mult_cnj: "z * cnj z = complex_of_real ((Re z)\<^sup>2 + (Im z)\<^sup>2)" |
44724 | 460 |
by (simp add: complex_eq_iff power2_eq_square) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
461 |
|
53015
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents:
51002
diff
changeset
|
462 |
lemma complex_mod_mult_cnj: "cmod (z * cnj z) = (cmod z)\<^sup>2" |
44724 | 463 |
by (simp add: norm_mult power2_eq_square) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
464 |
|
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
465 |
lemma complex_mod_sqrt_Re_mult_cnj: "cmod z = sqrt (Re (z * cnj z))" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
466 |
by (simp add: norm_complex_def power2_eq_square) |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
467 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
468 |
lemma complex_In_mult_cnj_zero [simp]: "Im (z * cnj z) = 0" |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
469 |
by simp |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
470 |
|
44290
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
471 |
lemma bounded_linear_cnj: "bounded_linear cnj" |
44127 | 472 |
using complex_cnj_add complex_cnj_scaleR |
473 |
by (rule bounded_linear_intro [where K=1], simp) |
|
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
474 |
|
56381
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
475 |
lemmas tendsto_cnj [tendsto_intros] = bounded_linear.tendsto [OF bounded_linear_cnj] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
476 |
lemmas isCont_cnj [simp] = bounded_linear.isCont [OF bounded_linear_cnj] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
477 |
lemmas continuous_cnj [simp, continuous_intros] = bounded_linear.continuous [OF bounded_linear_cnj] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
478 |
lemmas continuous_on_cnj [simp, continuous_intros] = bounded_linear.continuous_on [OF bounded_linear_cnj] |
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents:
56369
diff
changeset
|
479 |
lemmas has_derivative_cnj [simp, derivative_intros] = bounded_linear.has_derivative [OF bounded_linear_cnj] |
44290
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
480 |
|
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
481 |
lemma lim_cnj: "((\<lambda>x. cnj(f x)) ---> cnj l) F \<longleftrightarrow> (f ---> l) F" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
482 |
by (simp add: tendsto_iff dist_complex_def complex_cnj_diff [symmetric] del: complex_cnj_diff) |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
483 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
484 |
lemma sums_cnj: "((\<lambda>x. cnj(f x)) sums cnj l) \<longleftrightarrow> (f sums l)" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
485 |
by (simp add: sums_def lim_cnj cnj_setsum [symmetric] del: cnj_setsum) |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
486 |
|
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
487 |
|
55734 | 488 |
subsection{*Basic Lemmas*} |
489 |
||
490 |
lemma complex_eq_0: "z=0 \<longleftrightarrow> (Re z)\<^sup>2 + (Im z)\<^sup>2 = 0" |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
491 |
by (metis zero_complex.sel complex_eqI sum_power2_eq_zero_iff) |
55734 | 492 |
|
493 |
lemma complex_neq_0: "z\<noteq>0 \<longleftrightarrow> (Re z)\<^sup>2 + (Im z)\<^sup>2 > 0" |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
494 |
by (metis complex_eq_0 less_numeral_extra(3) sum_power2_gt_zero_iff) |
55734 | 495 |
|
496 |
lemma complex_norm_square: "of_real ((norm z)\<^sup>2) = z * cnj z" |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
497 |
by (cases z) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
498 |
(auto simp: complex_eq_iff norm_complex_def power2_eq_square[symmetric] of_real_power[symmetric] |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
499 |
simp del: of_real_power) |
55734 | 500 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
501 |
lemma re_complex_div_eq_0: "Re (a / b) = 0 \<longleftrightarrow> Re (a * cnj b) = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
502 |
by (auto simp add: Re_divide) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
503 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
504 |
lemma im_complex_div_eq_0: "Im (a / b) = 0 \<longleftrightarrow> Im (a * cnj b) = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
505 |
by (auto simp add: Im_divide) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
506 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
507 |
lemma complex_div_gt_0: |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
508 |
"(Re (a / b) > 0 \<longleftrightarrow> Re (a * cnj b) > 0) \<and> (Im (a / b) > 0 \<longleftrightarrow> Im (a * cnj b) > 0)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
509 |
proof cases |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
510 |
assume "b = 0" then show ?thesis by auto |
55734 | 511 |
next |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
512 |
assume "b \<noteq> 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
513 |
then have "0 < (Re b)\<^sup>2 + (Im b)\<^sup>2" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
514 |
by (simp add: complex_eq_iff sum_power2_gt_zero_iff) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
515 |
then show ?thesis |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
516 |
by (simp add: Re_divide Im_divide zero_less_divide_iff) |
55734 | 517 |
qed |
518 |
||
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
519 |
lemma re_complex_div_gt_0: "Re (a / b) > 0 \<longleftrightarrow> Re (a * cnj b) > 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
520 |
and im_complex_div_gt_0: "Im (a / b) > 0 \<longleftrightarrow> Im (a * cnj b) > 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
521 |
using complex_div_gt_0 by auto |
55734 | 522 |
|
523 |
lemma re_complex_div_ge_0: "Re(a / b) \<ge> 0 \<longleftrightarrow> Re(a * cnj b) \<ge> 0" |
|
524 |
by (metis le_less re_complex_div_eq_0 re_complex_div_gt_0) |
|
525 |
||
526 |
lemma im_complex_div_ge_0: "Im(a / b) \<ge> 0 \<longleftrightarrow> Im(a * cnj b) \<ge> 0" |
|
527 |
by (metis im_complex_div_eq_0 im_complex_div_gt_0 le_less) |
|
528 |
||
529 |
lemma re_complex_div_lt_0: "Re(a / b) < 0 \<longleftrightarrow> Re(a * cnj b) < 0" |
|
55759
fe3d8f585c20
replaced smt-based proof with metis proof that requires no external tool
boehmes
parents:
55734
diff
changeset
|
530 |
by (metis less_asym neq_iff re_complex_div_eq_0 re_complex_div_gt_0) |
55734 | 531 |
|
532 |
lemma im_complex_div_lt_0: "Im(a / b) < 0 \<longleftrightarrow> Im(a * cnj b) < 0" |
|
533 |
by (metis im_complex_div_eq_0 im_complex_div_gt_0 less_asym neq_iff) |
|
534 |
||
535 |
lemma re_complex_div_le_0: "Re(a / b) \<le> 0 \<longleftrightarrow> Re(a * cnj b) \<le> 0" |
|
536 |
by (metis not_le re_complex_div_gt_0) |
|
537 |
||
538 |
lemma im_complex_div_le_0: "Im(a / b) \<le> 0 \<longleftrightarrow> Im(a * cnj b) \<le> 0" |
|
539 |
by (metis im_complex_div_gt_0 not_le) |
|
540 |
||
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
541 |
lemma Re_setsum[simp]: "Re (setsum f s) = (\<Sum>x\<in>s. Re (f x))" |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
542 |
by (induct s rule: infinite_finite_induct) auto |
55734 | 543 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
544 |
lemma Im_setsum[simp]: "Im (setsum f s) = (\<Sum>x\<in>s. Im(f x))" |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
545 |
by (induct s rule: infinite_finite_induct) auto |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
546 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
547 |
lemma sums_complex_iff: "f sums x \<longleftrightarrow> ((\<lambda>x. Re (f x)) sums Re x) \<and> ((\<lambda>x. Im (f x)) sums Im x)" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
548 |
unfolding sums_def tendsto_complex_iff Im_setsum Re_setsum .. |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
549 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
550 |
lemma summable_complex_iff: "summable f \<longleftrightarrow> summable (\<lambda>x. Re (f x)) \<and> summable (\<lambda>x. Im (f x))" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
551 |
unfolding summable_def sums_complex_iff[abs_def] by (metis complex.sel) |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
552 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
553 |
lemma summable_complex_of_real [simp]: "summable (\<lambda>n. complex_of_real (f n)) \<longleftrightarrow> summable f" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
554 |
unfolding summable_complex_iff by simp |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
555 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
556 |
lemma summable_Re: "summable f \<Longrightarrow> summable (\<lambda>x. Re (f x))" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
557 |
unfolding summable_complex_iff by blast |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
558 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
559 |
lemma summable_Im: "summable f \<Longrightarrow> summable (\<lambda>x. Im (f x))" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
560 |
unfolding summable_complex_iff by blast |
56217
dc429a5b13c4
Some rationalisation of basic lemmas
paulson <lp15@cam.ac.uk>
parents:
55759
diff
changeset
|
561 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
562 |
lemma complex_is_Real_iff: "z \<in> \<real> \<longleftrightarrow> Im z = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
563 |
by (auto simp: Reals_def complex_eq_iff) |
55734 | 564 |
|
565 |
lemma Reals_cnj_iff: "z \<in> \<real> \<longleftrightarrow> cnj z = z" |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
566 |
by (auto simp: complex_is_Real_iff complex_eq_iff) |
55734 | 567 |
|
568 |
lemma in_Reals_norm: "z \<in> \<real> \<Longrightarrow> norm(z) = abs(Re z)" |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
569 |
by (simp add: complex_is_Real_iff norm_complex_def) |
56369
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
570 |
|
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
571 |
lemma series_comparison_complex: |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
572 |
fixes f:: "nat \<Rightarrow> 'a::banach" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
573 |
assumes sg: "summable g" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
574 |
and "\<And>n. g n \<in> \<real>" "\<And>n. Re (g n) \<ge> 0" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
575 |
and fg: "\<And>n. n \<ge> N \<Longrightarrow> norm(f n) \<le> norm(g n)" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
576 |
shows "summable f" |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
577 |
proof - |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
578 |
have g: "\<And>n. cmod (g n) = Re (g n)" using assms |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
579 |
by (metis abs_of_nonneg in_Reals_norm) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
580 |
show ?thesis |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
581 |
apply (rule summable_comparison_test' [where g = "\<lambda>n. norm (g n)" and N=N]) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
582 |
using sg |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
583 |
apply (auto simp: summable_def) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
584 |
apply (rule_tac x="Re s" in exI) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
585 |
apply (auto simp: g sums_Re) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
586 |
apply (metis fg g) |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
587 |
done |
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents:
56331
diff
changeset
|
588 |
qed |
55734 | 589 |
|
14323 | 590 |
subsection{*Finally! Polar Form for Complex Numbers*} |
591 |
||
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
592 |
subsubsection {* $\cos \theta + i \sin \theta$ *} |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
593 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
594 |
primcorec cis :: "real \<Rightarrow> complex" where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
595 |
"Re (cis a) = cos a" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
596 |
| "Im (cis a) = sin a" |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
597 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
598 |
lemma cis_zero [simp]: "cis 0 = 1" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
599 |
by (simp add: complex_eq_iff) |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
600 |
|
44828 | 601 |
lemma norm_cis [simp]: "norm (cis a) = 1" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
602 |
by (simp add: norm_complex_def) |
44828 | 603 |
|
604 |
lemma sgn_cis [simp]: "sgn (cis a) = cis a" |
|
605 |
by (simp add: sgn_div_norm) |
|
606 |
||
607 |
lemma cis_neq_zero [simp]: "cis a \<noteq> 0" |
|
608 |
by (metis norm_cis norm_zero zero_neq_one) |
|
609 |
||
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
610 |
lemma cis_mult: "cis a * cis b = cis (a + b)" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
611 |
by (simp add: complex_eq_iff cos_add sin_add) |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
612 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
613 |
lemma DeMoivre: "(cis a) ^ n = cis (real n * a)" |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
614 |
by (induct n, simp_all add: real_of_nat_Suc algebra_simps cis_mult) |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
615 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
616 |
lemma cis_inverse [simp]: "inverse(cis a) = cis (-a)" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
617 |
by (simp add: complex_eq_iff) |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
618 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
619 |
lemma cis_divide: "cis a / cis b = cis (a - b)" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
620 |
by (simp add: divide_complex_def cis_mult) |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
621 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
622 |
lemma cos_n_Re_cis_pow_n: "cos (real n * a) = Re(cis a ^ n)" |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
623 |
by (auto simp add: DeMoivre) |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
624 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
625 |
lemma sin_n_Im_cis_pow_n: "sin (real n * a) = Im(cis a ^ n)" |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
626 |
by (auto simp add: DeMoivre) |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
627 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
628 |
lemma cis_pi: "cis pi = -1" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
629 |
by (simp add: complex_eq_iff) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
630 |
|
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
631 |
subsubsection {* $r(\cos \theta + i \sin \theta)$ *} |
44715 | 632 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
633 |
definition rcis :: "real \<Rightarrow> real \<Rightarrow> complex" where |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
634 |
"rcis r a = complex_of_real r * cis a" |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
635 |
|
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
636 |
lemma Re_rcis [simp]: "Re(rcis r a) = r * cos a" |
44828 | 637 |
by (simp add: rcis_def) |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
638 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
639 |
lemma Im_rcis [simp]: "Im(rcis r a) = r * sin a" |
44828 | 640 |
by (simp add: rcis_def) |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
641 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
642 |
lemma rcis_Ex: "\<exists>r a. z = rcis r a" |
44828 | 643 |
by (simp add: complex_eq_iff polar_Ex) |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
644 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
645 |
lemma complex_mod_rcis [simp]: "cmod(rcis r a) = abs r" |
44828 | 646 |
by (simp add: rcis_def norm_mult) |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
647 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
648 |
lemma cis_rcis_eq: "cis a = rcis 1 a" |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
649 |
by (simp add: rcis_def) |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
650 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
651 |
lemma rcis_mult: "rcis r1 a * rcis r2 b = rcis (r1*r2) (a + b)" |
44828 | 652 |
by (simp add: rcis_def cis_mult) |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
653 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
654 |
lemma rcis_zero_mod [simp]: "rcis 0 a = 0" |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
655 |
by (simp add: rcis_def) |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
656 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
657 |
lemma rcis_zero_arg [simp]: "rcis r 0 = complex_of_real r" |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
658 |
by (simp add: rcis_def) |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
659 |
|
44828 | 660 |
lemma rcis_eq_zero_iff [simp]: "rcis r a = 0 \<longleftrightarrow> r = 0" |
661 |
by (simp add: rcis_def) |
|
662 |
||
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
663 |
lemma DeMoivre2: "(rcis r a) ^ n = rcis (r ^ n) (real n * a)" |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
664 |
by (simp add: rcis_def power_mult_distrib DeMoivre) |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
665 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
666 |
lemma rcis_inverse: "inverse(rcis r a) = rcis (1/r) (-a)" |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
667 |
by (simp add: divide_inverse rcis_def) |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
668 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
669 |
lemma rcis_divide: "rcis r1 a / rcis r2 b = rcis (r1/r2) (a - b)" |
44828 | 670 |
by (simp add: rcis_def cis_divide [symmetric]) |
44827
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
671 |
|
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
672 |
subsubsection {* Complex exponential *} |
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
huffman
parents:
44825
diff
changeset
|
673 |
|
44291
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
674 |
abbreviation expi :: "complex \<Rightarrow> complex" |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
675 |
where "expi \<equiv> exp" |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
676 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
677 |
lemma cis_conv_exp: "cis b = exp (\<i> * b)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
678 |
proof - |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
679 |
{ fix n :: nat |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
680 |
have "\<i> ^ n = fact n *\<^sub>R (cos_coeff n + \<i> * sin_coeff n)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
681 |
by (induct n) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
682 |
(simp_all add: sin_coeff_Suc cos_coeff_Suc complex_eq_iff Re_divide Im_divide field_simps |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
683 |
power2_eq_square real_of_nat_Suc add_nonneg_eq_0_iff |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
684 |
real_of_nat_def[symmetric]) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
685 |
then have "(\<i> * complex_of_real b) ^ n /\<^sub>R fact n = |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
686 |
of_real (cos_coeff n * b^n) + \<i> * of_real (sin_coeff n * b^n)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
687 |
by (simp add: field_simps) } |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
688 |
then show ?thesis |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
689 |
by (auto simp add: cis.ctr exp_def simp del: of_real_mult |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
690 |
intro!: sums_unique sums_add sums_mult sums_of_real sin_converges cos_converges) |
44291
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
691 |
qed |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
692 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
693 |
lemma expi_def: "expi z = exp (Re z) * cis (Im z)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
694 |
unfolding cis_conv_exp exp_of_real [symmetric] mult_exp_exp by (cases z) simp |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
695 |
|
44828 | 696 |
lemma Re_exp: "Re (exp z) = exp (Re z) * cos (Im z)" |
697 |
unfolding expi_def by simp |
|
698 |
||
699 |
lemma Im_exp: "Im (exp z) = exp (Re z) * sin (Im z)" |
|
700 |
unfolding expi_def by simp |
|
701 |
||
14374 | 702 |
lemma complex_expi_Ex: "\<exists>a r. z = complex_of_real r * expi a" |
14373 | 703 |
apply (insert rcis_Ex [of z]) |
57512
cc97b347b301
reduced name variants for assoc and commute on plus and mult
haftmann
parents:
57259
diff
changeset
|
704 |
apply (auto simp add: expi_def rcis_def mult.assoc [symmetric]) |
14334 | 705 |
apply (rule_tac x = "ii * complex_of_real a" in exI, auto) |
14323 | 706 |
done |
707 |
||
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14377
diff
changeset
|
708 |
lemma expi_two_pi_i [simp]: "expi((2::complex) * complex_of_real pi * ii) = 1" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
709 |
by (simp add: expi_def complex_eq_iff) |
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14377
diff
changeset
|
710 |
|
44844
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
711 |
subsubsection {* Complex argument *} |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
712 |
|
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
713 |
definition arg :: "complex \<Rightarrow> real" where |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
714 |
"arg z = (if z = 0 then 0 else (SOME a. sgn z = cis a \<and> -pi < a \<and> a \<le> pi))" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
715 |
|
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
716 |
lemma arg_zero: "arg 0 = 0" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
717 |
by (simp add: arg_def) |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
718 |
|
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
719 |
lemma arg_unique: |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
720 |
assumes "sgn z = cis x" and "-pi < x" and "x \<le> pi" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
721 |
shows "arg z = x" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
722 |
proof - |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
723 |
from assms have "z \<noteq> 0" by auto |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
724 |
have "(SOME a. sgn z = cis a \<and> -pi < a \<and> a \<le> pi) = x" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
725 |
proof |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
726 |
fix a def d \<equiv> "a - x" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
727 |
assume a: "sgn z = cis a \<and> - pi < a \<and> a \<le> pi" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
728 |
from a assms have "- (2*pi) < d \<and> d < 2*pi" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
729 |
unfolding d_def by simp |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
730 |
moreover from a assms have "cos a = cos x" and "sin a = sin x" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
731 |
by (simp_all add: complex_eq_iff) |
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53015
diff
changeset
|
732 |
hence cos: "cos d = 1" unfolding d_def cos_diff by simp |
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53015
diff
changeset
|
733 |
moreover from cos have "sin d = 0" by (rule cos_one_sin_zero) |
44844
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
734 |
ultimately have "d = 0" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
735 |
unfolding sin_zero_iff even_mult_two_ex |
53374
a14d2a854c02
tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents:
53015
diff
changeset
|
736 |
by (auto simp add: numeral_2_eq_2 less_Suc_eq) |
44844
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
737 |
thus "a = x" unfolding d_def by simp |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
738 |
qed (simp add: assms del: Re_sgn Im_sgn) |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
739 |
with `z \<noteq> 0` show "arg z = x" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
740 |
unfolding arg_def by simp |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
741 |
qed |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
742 |
|
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
743 |
lemma arg_correct: |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
744 |
assumes "z \<noteq> 0" shows "sgn z = cis (arg z) \<and> -pi < arg z \<and> arg z \<le> pi" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
745 |
proof (simp add: arg_def assms, rule someI_ex) |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
746 |
obtain r a where z: "z = rcis r a" using rcis_Ex by fast |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
747 |
with assms have "r \<noteq> 0" by auto |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
748 |
def b \<equiv> "if 0 < r then a else a + pi" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
749 |
have b: "sgn z = cis b" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
750 |
unfolding z b_def rcis_def using `r \<noteq> 0` |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
751 |
by (simp add: of_real_def sgn_scaleR sgn_if complex_eq_iff) |
44844
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
752 |
have cis_2pi_nat: "\<And>n. cis (2 * pi * real_of_nat n) = 1" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
753 |
by (induct_tac n) (simp_all add: distrib_left cis_mult [symmetric] complex_eq_iff) |
44844
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
754 |
have cis_2pi_int: "\<And>x. cis (2 * pi * real_of_int x) = 1" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
755 |
by (case_tac x rule: int_diff_cases) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
756 |
(simp add: right_diff_distrib cis_divide [symmetric] cis_2pi_nat) |
44844
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
757 |
def c \<equiv> "b - 2*pi * of_int \<lceil>(b - pi) / (2*pi)\<rceil>" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
758 |
have "sgn z = cis c" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
759 |
unfolding b c_def |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
760 |
by (simp add: cis_divide [symmetric] cis_2pi_int) |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
761 |
moreover have "- pi < c \<and> c \<le> pi" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
762 |
using ceiling_correct [of "(b - pi) / (2*pi)"] |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
763 |
by (simp add: c_def less_divide_eq divide_le_eq algebra_simps) |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
764 |
ultimately show "\<exists>a. sgn z = cis a \<and> -pi < a \<and> a \<le> pi" by fast |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
765 |
qed |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
766 |
|
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
767 |
lemma arg_bounded: "- pi < arg z \<and> arg z \<le> pi" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
768 |
by (cases "z = 0") (simp_all add: arg_zero arg_correct) |
44844
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
769 |
|
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
770 |
lemma cis_arg: "z \<noteq> 0 \<Longrightarrow> cis (arg z) = sgn z" |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
771 |
by (simp add: arg_correct) |
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
772 |
|
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
773 |
lemma rcis_cmod_arg: "rcis (cmod z) (arg z) = z" |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
774 |
by (cases "z = 0") (simp_all add: rcis_def cis_arg sgn_div_norm of_real_def) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
775 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
776 |
lemma cos_arg_i_mult_zero [simp]: "y \<noteq> 0 \<Longrightarrow> Re y = 0 \<Longrightarrow> cos (arg y) = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
777 |
using cis_arg [of y] by (simp add: complex_eq_iff) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
778 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
779 |
subsection {* Square root of complex numbers *} |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
780 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
781 |
primcorec csqrt :: "complex \<Rightarrow> complex" where |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
782 |
"Re (csqrt z) = sqrt ((cmod z + Re z) / 2)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
783 |
| "Im (csqrt z) = (if Im z = 0 then 1 else sgn (Im z)) * sqrt ((cmod z - Re z) / 2)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
784 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
785 |
lemma csqrt_of_real_nonneg [simp]: "Im x = 0 \<Longrightarrow> Re x \<ge> 0 \<Longrightarrow> csqrt x = sqrt (Re x)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
786 |
by (simp add: complex_eq_iff norm_complex_def) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
787 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
788 |
lemma csqrt_of_real_nonpos [simp]: "Im x = 0 \<Longrightarrow> Re x \<le> 0 \<Longrightarrow> csqrt x = \<i> * sqrt \<bar>Re x\<bar>" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
789 |
by (simp add: complex_eq_iff norm_complex_def) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
790 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
791 |
lemma csqrt_0 [simp]: "csqrt 0 = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
792 |
by simp |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
793 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
794 |
lemma csqrt_1 [simp]: "csqrt 1 = 1" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
795 |
by simp |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
796 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
797 |
lemma csqrt_ii [simp]: "csqrt \<i> = (1 + \<i>) / sqrt 2" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
798 |
by (simp add: complex_eq_iff Re_divide Im_divide real_sqrt_divide real_div_sqrt) |
44844
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
799 |
|
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
800 |
lemma power2_csqrt[algebra]: "(csqrt z)\<^sup>2 = z" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
801 |
proof cases |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
802 |
assume "Im z = 0" then show ?thesis |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
803 |
using real_sqrt_pow2[of "Re z"] real_sqrt_pow2[of "- Re z"] |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
804 |
by (cases "0::real" "Re z" rule: linorder_cases) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
805 |
(simp_all add: complex_eq_iff Re_power2 Im_power2 power2_eq_square cmod_eq_Re) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
806 |
next |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
807 |
assume "Im z \<noteq> 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
808 |
moreover |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
809 |
have "cmod z * cmod z - Re z * Re z = Im z * Im z" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
810 |
by (simp add: norm_complex_def power2_eq_square) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
811 |
moreover |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
812 |
have "\<bar>Re z\<bar> \<le> cmod z" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
813 |
by (simp add: norm_complex_def) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
814 |
ultimately show ?thesis |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
815 |
by (simp add: Re_power2 Im_power2 complex_eq_iff real_sgn_eq |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
816 |
field_simps real_sqrt_mult[symmetric] real_sqrt_divide) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
817 |
qed |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
818 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
819 |
lemma csqrt_eq_0 [simp]: "csqrt z = 0 \<longleftrightarrow> z = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
820 |
by auto (metis power2_csqrt power_eq_0_iff) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
821 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
822 |
lemma csqrt_eq_1 [simp]: "csqrt z = 1 \<longleftrightarrow> z = 1" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
823 |
by auto (metis power2_csqrt power2_eq_1_iff) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
824 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
825 |
lemma csqrt_principal: "0 < Re (csqrt z) \<or> Re (csqrt z) = 0 \<and> 0 \<le> Im (csqrt z)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
826 |
by (auto simp add: not_less cmod_plus_Re_le_0_iff Im_eq_0) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
827 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
828 |
lemma Re_csqrt: "0 \<le> Re (csqrt z)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
829 |
by (metis csqrt_principal le_less) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
830 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
831 |
lemma csqrt_square: |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
832 |
assumes "0 < Re b \<or> (Re b = 0 \<and> 0 \<le> Im b)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
833 |
shows "csqrt (b^2) = b" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
834 |
proof - |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
835 |
have "csqrt (b^2) = b \<or> csqrt (b^2) = - b" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
836 |
unfolding power2_eq_iff[symmetric] by (simp add: power2_csqrt) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
837 |
moreover have "csqrt (b^2) \<noteq> -b \<or> b = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
838 |
using csqrt_principal[of "b ^ 2"] assms by (intro disjCI notI) (auto simp: complex_eq_iff) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
839 |
ultimately show ?thesis |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
840 |
by auto |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
841 |
qed |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
842 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
843 |
lemma csqrt_minus [simp]: |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
844 |
assumes "Im x < 0 \<or> (Im x = 0 \<and> 0 \<le> Re x)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
845 |
shows "csqrt (- x) = \<i> * csqrt x" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
846 |
proof - |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
847 |
have "csqrt ((\<i> * csqrt x)^2) = \<i> * csqrt x" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
848 |
proof (rule csqrt_square) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
849 |
have "Im (csqrt x) \<le> 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
850 |
using assms by (auto simp add: cmod_eq_Re mult_le_0_iff field_simps complex_Re_le_cmod) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
851 |
then show "0 < Re (\<i> * csqrt x) \<or> Re (\<i> * csqrt x) = 0 \<and> 0 \<le> Im (\<i> * csqrt x)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
852 |
by (auto simp add: Re_csqrt simp del: csqrt.simps) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
853 |
qed |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
854 |
also have "(\<i> * csqrt x)^2 = - x" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
855 |
by (simp add: power2_csqrt power_mult_distrib) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
856 |
finally show ?thesis . |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
857 |
qed |
44844
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
huffman
parents:
44843
diff
changeset
|
858 |
|
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
859 |
text {* Legacy theorem names *} |
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
860 |
|
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
861 |
lemmas expand_complex_eq = complex_eq_iff |
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
862 |
lemmas complex_Re_Im_cancel_iff = complex_eq_iff |
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
863 |
lemmas complex_equality = complex_eqI |
56889
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
864 |
lemmas cmod_def = norm_complex_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
865 |
lemmas complex_norm_def = norm_complex_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
866 |
lemmas complex_divide_def = divide_complex_def |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
867 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
868 |
lemma legacy_Complex_simps: |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
869 |
shows Complex_eq_0: "Complex a b = 0 \<longleftrightarrow> a = 0 \<and> b = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
870 |
and complex_add: "Complex a b + Complex c d = Complex (a + c) (b + d)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
871 |
and complex_minus: "- (Complex a b) = Complex (- a) (- b)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
872 |
and complex_diff: "Complex a b - Complex c d = Complex (a - c) (b - d)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
873 |
and Complex_eq_1: "Complex a b = 1 \<longleftrightarrow> a = 1 \<and> b = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
874 |
and Complex_eq_neg_1: "Complex a b = - 1 \<longleftrightarrow> a = - 1 \<and> b = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
875 |
and complex_mult: "Complex a b * Complex c d = Complex (a * c - b * d) (a * d + b * c)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
876 |
and complex_inverse: "inverse (Complex a b) = Complex (a / (a\<^sup>2 + b\<^sup>2)) (- b / (a\<^sup>2 + b\<^sup>2))" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
877 |
and Complex_eq_numeral: "Complex a b = numeral w \<longleftrightarrow> a = numeral w \<and> b = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
878 |
and Complex_eq_neg_numeral: "Complex a b = - numeral w \<longleftrightarrow> a = - numeral w \<and> b = 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
879 |
and complex_scaleR: "scaleR r (Complex a b) = Complex (r * a) (r * b)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
880 |
and Complex_eq_i: "(Complex x y = ii) = (x = 0 \<and> y = 1)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
881 |
and i_mult_Complex: "ii * Complex a b = Complex (- b) a" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
882 |
and Complex_mult_i: "Complex a b * ii = Complex (- b) a" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
883 |
and i_complex_of_real: "ii * complex_of_real r = Complex 0 r" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
884 |
and complex_of_real_i: "complex_of_real r * ii = Complex 0 r" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
885 |
and Complex_add_complex_of_real: "Complex x y + complex_of_real r = Complex (x+r) y" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
886 |
and complex_of_real_add_Complex: "complex_of_real r + Complex x y = Complex (r+x) y" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
887 |
and Complex_mult_complex_of_real: "Complex x y * complex_of_real r = Complex (x*r) (y*r)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
888 |
and complex_of_real_mult_Complex: "complex_of_real r * Complex x y = Complex (r*x) (r*y)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
889 |
and complex_eq_cancel_iff2: "(Complex x y = complex_of_real xa) = (x = xa & y = 0)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
890 |
and complex_cn: "cnj (Complex a b) = Complex a (- b)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
891 |
and Complex_setsum': "setsum (%x. Complex (f x) 0) s = Complex (setsum f s) 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
892 |
and Complex_setsum: "Complex (setsum f s) 0 = setsum (%x. Complex (f x) 0) s" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
893 |
and complex_of_real_def: "complex_of_real r = Complex r 0" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
894 |
and complex_norm: "cmod (Complex x y) = sqrt (x\<^sup>2 + y\<^sup>2)" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
895 |
by (simp_all add: norm_complex_def field_simps complex_eq_iff Re_divide Im_divide del: Complex_eq) |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
896 |
|
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
897 |
lemma Complex_in_Reals: "Complex x 0 \<in> \<real>" |
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents:
56541
diff
changeset
|
898 |
by (metis Reals_of_real complex_of_real_def) |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
899 |
|
13957 | 900 |
end |