author | krauss |
Sun, 21 Aug 2011 22:13:04 +0200 | |
changeset 44374 | 0b217404522a |
parent 44319 | 806e0390de53 |
child 44711 | cd8dbfc272df |
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 |
|
14373 | 13 |
datatype complex = Complex real real |
13957 | 14 |
|
25712 | 15 |
primrec |
16 |
Re :: "complex \<Rightarrow> real" |
|
17 |
where |
|
18 |
Re: "Re (Complex x y) = x" |
|
14373 | 19 |
|
25712 | 20 |
primrec |
21 |
Im :: "complex \<Rightarrow> real" |
|
22 |
where |
|
23 |
Im: "Im (Complex x y) = y" |
|
14373 | 24 |
|
25 |
lemma complex_surj [simp]: "Complex (Re z) (Im z) = z" |
|
26 |
by (induct z) simp |
|
13957 | 27 |
|
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
28 |
lemma complex_eqI [intro?]: "\<lbrakk>Re x = Re y; Im x = Im y\<rbrakk> \<Longrightarrow> x = y" |
25712 | 29 |
by (induct x, induct y) simp |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
30 |
|
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
31 |
lemma complex_eq_iff: "x = y \<longleftrightarrow> Re x = Re y \<and> Im x = Im y" |
25712 | 32 |
by (induct x, induct y) simp |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
33 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
34 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
35 |
subsection {* Addition and Subtraction *} |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
36 |
|
25599 | 37 |
instantiation complex :: ab_group_add |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
38 |
begin |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
39 |
|
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
40 |
definition |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
41 |
complex_zero_def: "0 = Complex 0 0" |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
42 |
|
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
43 |
definition |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
44 |
complex_add_def: "x + y = Complex (Re x + Re y) (Im x + Im y)" |
23124 | 45 |
|
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
46 |
definition |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
47 |
complex_minus_def: "- x = Complex (- Re x) (- Im x)" |
14323 | 48 |
|
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
49 |
definition |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
50 |
complex_diff_def: "x - (y\<Colon>complex) = x + - y" |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
51 |
|
25599 | 52 |
lemma Complex_eq_0 [simp]: "Complex a b = 0 \<longleftrightarrow> a = 0 \<and> b = 0" |
53 |
by (simp add: complex_zero_def) |
|
14323 | 54 |
|
14374 | 55 |
lemma complex_Re_zero [simp]: "Re 0 = 0" |
25599 | 56 |
by (simp add: complex_zero_def) |
14374 | 57 |
|
58 |
lemma complex_Im_zero [simp]: "Im 0 = 0" |
|
25599 | 59 |
by (simp add: complex_zero_def) |
60 |
||
25712 | 61 |
lemma complex_add [simp]: |
62 |
"Complex a b + Complex c d = Complex (a + c) (b + d)" |
|
63 |
by (simp add: complex_add_def) |
|
64 |
||
25599 | 65 |
lemma complex_Re_add [simp]: "Re (x + y) = Re x + Re y" |
66 |
by (simp add: complex_add_def) |
|
67 |
||
68 |
lemma complex_Im_add [simp]: "Im (x + y) = Im x + Im y" |
|
69 |
by (simp add: complex_add_def) |
|
14323 | 70 |
|
25712 | 71 |
lemma complex_minus [simp]: |
72 |
"- (Complex a b) = Complex (- a) (- b)" |
|
25599 | 73 |
by (simp add: complex_minus_def) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
74 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
75 |
lemma complex_Re_minus [simp]: "Re (- x) = - Re x" |
25599 | 76 |
by (simp add: complex_minus_def) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
77 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
78 |
lemma complex_Im_minus [simp]: "Im (- x) = - Im x" |
25599 | 79 |
by (simp add: complex_minus_def) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
80 |
|
23275 | 81 |
lemma complex_diff [simp]: |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
82 |
"Complex a b - Complex c d = Complex (a - c) (b - d)" |
25599 | 83 |
by (simp add: complex_diff_def) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
84 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
85 |
lemma complex_Re_diff [simp]: "Re (x - y) = Re x - Re y" |
25599 | 86 |
by (simp add: complex_diff_def) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
87 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
88 |
lemma complex_Im_diff [simp]: "Im (x - y) = Im x - Im y" |
25599 | 89 |
by (simp add: complex_diff_def) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
90 |
|
25712 | 91 |
instance |
92 |
by intro_classes (simp_all add: complex_add_def complex_diff_def) |
|
93 |
||
94 |
end |
|
95 |
||
96 |
||
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
97 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
98 |
subsection {* Multiplication and Division *} |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
99 |
|
36409 | 100 |
instantiation complex :: field_inverse_zero |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
101 |
begin |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
102 |
|
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
103 |
definition |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
104 |
complex_one_def: "1 = Complex 1 0" |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
105 |
|
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
106 |
definition |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
107 |
complex_mult_def: "x * y = |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
108 |
Complex (Re x * Re y - Im x * Im y) (Re x * Im y + Im x * Re y)" |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
109 |
|
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
110 |
definition |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
111 |
complex_inverse_def: "inverse x = |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
112 |
Complex (Re x / ((Re x)\<twosuperior> + (Im x)\<twosuperior>)) (- Im x / ((Re x)\<twosuperior> + (Im x)\<twosuperior>))" |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
113 |
|
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
114 |
definition |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
115 |
complex_divide_def: "x / (y\<Colon>complex) = x * inverse y" |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
116 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
117 |
lemma Complex_eq_1 [simp]: "(Complex a b = 1) = (a = 1 \<and> b = 0)" |
25712 | 118 |
by (simp add: complex_one_def) |
22861
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
119 |
|
14374 | 120 |
lemma complex_Re_one [simp]: "Re 1 = 1" |
25712 | 121 |
by (simp add: complex_one_def) |
14323 | 122 |
|
14374 | 123 |
lemma complex_Im_one [simp]: "Im 1 = 0" |
25712 | 124 |
by (simp add: complex_one_def) |
14323 | 125 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
126 |
lemma complex_mult [simp]: |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
127 |
"Complex a b * Complex c d = Complex (a * c - b * d) (a * d + b * c)" |
25712 | 128 |
by (simp add: complex_mult_def) |
14323 | 129 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
130 |
lemma complex_Re_mult [simp]: "Re (x * y) = Re x * Re y - Im x * Im y" |
25712 | 131 |
by (simp add: complex_mult_def) |
14323 | 132 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
133 |
lemma complex_Im_mult [simp]: "Im (x * y) = Re x * Im y + Im x * Re y" |
25712 | 134 |
by (simp add: complex_mult_def) |
14323 | 135 |
|
14377 | 136 |
lemma complex_inverse [simp]: |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
137 |
"inverse (Complex a b) = Complex (a / (a\<twosuperior> + b\<twosuperior>)) (- b / (a\<twosuperior> + b\<twosuperior>))" |
25712 | 138 |
by (simp add: complex_inverse_def) |
14335 | 139 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
140 |
lemma complex_Re_inverse: |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
141 |
"Re (inverse x) = Re x / ((Re x)\<twosuperior> + (Im x)\<twosuperior>)" |
25712 | 142 |
by (simp add: complex_inverse_def) |
14323 | 143 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
144 |
lemma complex_Im_inverse: |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
145 |
"Im (inverse x) = - Im x / ((Re x)\<twosuperior> + (Im x)\<twosuperior>)" |
25712 | 146 |
by (simp add: complex_inverse_def) |
14335 | 147 |
|
25712 | 148 |
instance |
149 |
by intro_classes (simp_all add: complex_mult_def |
|
150 |
right_distrib left_distrib right_diff_distrib left_diff_distrib |
|
151 |
complex_inverse_def complex_divide_def |
|
152 |
power2_eq_square add_divide_distrib [symmetric] |
|
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
153 |
complex_eq_iff) |
14335 | 154 |
|
25712 | 155 |
end |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
156 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
157 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
158 |
subsection {* Numerals and Arithmetic *} |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
159 |
|
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
160 |
instantiation complex :: number_ring |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
161 |
begin |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
162 |
|
25712 | 163 |
definition number_of_complex where |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
164 |
complex_number_of_def: "number_of w = (of_int w \<Colon> complex)" |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
165 |
|
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
166 |
instance |
25712 | 167 |
by intro_classes (simp only: complex_number_of_def) |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
168 |
|
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
169 |
end |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
170 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
171 |
lemma complex_Re_of_nat [simp]: "Re (of_nat n) = of_nat n" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
172 |
by (induct n) simp_all |
20556
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents:
20485
diff
changeset
|
173 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
174 |
lemma complex_Im_of_nat [simp]: "Im (of_nat n) = 0" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
175 |
by (induct n) simp_all |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
176 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
177 |
lemma complex_Re_of_int [simp]: "Re (of_int z) = of_int z" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
178 |
by (cases z rule: int_diff_cases) simp |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
179 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
180 |
lemma complex_Im_of_int [simp]: "Im (of_int z) = 0" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
181 |
by (cases z rule: int_diff_cases) simp |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
182 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
183 |
lemma complex_Re_number_of [simp]: "Re (number_of v) = number_of v" |
25502 | 184 |
unfolding number_of_eq by (rule complex_Re_of_int) |
20556
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents:
20485
diff
changeset
|
185 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
186 |
lemma complex_Im_number_of [simp]: "Im (number_of v) = 0" |
25502 | 187 |
unfolding number_of_eq by (rule complex_Im_of_int) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
188 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
189 |
lemma Complex_eq_number_of [simp]: |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
190 |
"(Complex a b = number_of w) = (a = number_of w \<and> b = 0)" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
191 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
192 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
193 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
194 |
subsection {* Scalar Multiplication *} |
20556
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents:
20485
diff
changeset
|
195 |
|
25712 | 196 |
instantiation complex :: real_field |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
197 |
begin |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
198 |
|
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
199 |
definition |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
200 |
complex_scaleR_def: "scaleR r x = Complex (r * Re x) (r * Im x)" |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
201 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
202 |
lemma complex_scaleR [simp]: |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
203 |
"scaleR r (Complex a b) = Complex (r * a) (r * b)" |
25712 | 204 |
unfolding complex_scaleR_def by simp |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
205 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
206 |
lemma complex_Re_scaleR [simp]: "Re (scaleR r x) = r * Re x" |
25712 | 207 |
unfolding complex_scaleR_def by simp |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
208 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
209 |
lemma complex_Im_scaleR [simp]: "Im (scaleR r x) = r * Im x" |
25712 | 210 |
unfolding complex_scaleR_def by simp |
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22968
diff
changeset
|
211 |
|
25712 | 212 |
instance |
20556
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents:
20485
diff
changeset
|
213 |
proof |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
214 |
fix a b :: real and x y :: complex |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
215 |
show "scaleR a (x + y) = scaleR a x + scaleR a y" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
216 |
by (simp add: complex_eq_iff right_distrib) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
217 |
show "scaleR (a + b) x = scaleR a x + scaleR b x" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
218 |
by (simp add: complex_eq_iff left_distrib) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
219 |
show "scaleR a (scaleR b x) = scaleR (a * b) x" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
220 |
by (simp add: complex_eq_iff mult_assoc) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
221 |
show "scaleR 1 x = x" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
222 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
223 |
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
|
224 |
by (simp add: complex_eq_iff algebra_simps) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
225 |
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
|
226 |
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
|
227 |
qed |
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents:
20485
diff
changeset
|
228 |
|
25712 | 229 |
end |
230 |
||
20556
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents:
20485
diff
changeset
|
231 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
232 |
subsection{* Properties of Embedding from Reals *} |
14323 | 233 |
|
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
234 |
abbreviation |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
235 |
complex_of_real :: "real \<Rightarrow> complex" where |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
236 |
"complex_of_real \<equiv> of_real" |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
237 |
|
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
238 |
lemma complex_of_real_def: "complex_of_real r = Complex r 0" |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
239 |
by (simp add: of_real_def complex_scaleR_def) |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
240 |
|
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
241 |
lemma Re_complex_of_real [simp]: "Re (complex_of_real z) = z" |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
242 |
by (simp add: complex_of_real_def) |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
243 |
|
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
244 |
lemma Im_complex_of_real [simp]: "Im (complex_of_real z) = 0" |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
245 |
by (simp add: complex_of_real_def) |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
246 |
|
14377 | 247 |
lemma Complex_add_complex_of_real [simp]: |
248 |
"Complex x y + complex_of_real r = Complex (x+r) y" |
|
249 |
by (simp add: complex_of_real_def) |
|
250 |
||
251 |
lemma complex_of_real_add_Complex [simp]: |
|
252 |
"complex_of_real r + Complex x y = Complex (r+x) y" |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
253 |
by (simp add: complex_of_real_def) |
14377 | 254 |
|
255 |
lemma Complex_mult_complex_of_real: |
|
256 |
"Complex x y * complex_of_real r = Complex (x*r) (y*r)" |
|
257 |
by (simp add: complex_of_real_def) |
|
258 |
||
259 |
lemma complex_of_real_mult_Complex: |
|
260 |
"complex_of_real r * Complex x y = Complex (r*x) (r*y)" |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
261 |
by (simp add: complex_of_real_def) |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
262 |
|
14377 | 263 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
264 |
subsection {* Vector Norm *} |
14323 | 265 |
|
25712 | 266 |
instantiation complex :: real_normed_field |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
267 |
begin |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
268 |
|
31413
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
269 |
definition complex_norm_def: |
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
270 |
"norm z = sqrt ((Re z)\<twosuperior> + (Im z)\<twosuperior>)" |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
271 |
|
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
272 |
abbreviation |
22861
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
273 |
cmod :: "complex \<Rightarrow> real" where |
25712 | 274 |
"cmod \<equiv> norm" |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
275 |
|
31413
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
276 |
definition complex_sgn_def: |
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
277 |
"sgn x = x /\<^sub>R cmod x" |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25502
diff
changeset
|
278 |
|
31413
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
279 |
definition dist_complex_def: |
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
280 |
"dist x y = cmod (x - y)" |
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
281 |
|
37767 | 282 |
definition open_complex_def: |
31492
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents:
31419
diff
changeset
|
283 |
"open (S :: complex set) \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)" |
31292 | 284 |
|
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
285 |
lemmas cmod_def = complex_norm_def |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
286 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
287 |
lemma complex_norm [simp]: "cmod (Complex x y) = sqrt (x\<twosuperior> + y\<twosuperior>)" |
25712 | 288 |
by (simp add: complex_norm_def) |
22852 | 289 |
|
31413
729d90a531e4
introduce class topological_space as a superclass of metric_space
huffman
parents:
31292
diff
changeset
|
290 |
instance proof |
31492
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents:
31419
diff
changeset
|
291 |
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
|
292 |
show "0 \<le> norm x" |
22861
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
293 |
by (induct x) simp |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
294 |
show "(norm x = 0) = (x = 0)" |
22861
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
295 |
by (induct x) simp |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
296 |
show "norm (x + y) \<le> norm x + norm y" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
297 |
by (induct x, induct y) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
298 |
(simp add: real_sqrt_sum_squares_triangle_ineq) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
299 |
show "norm (scaleR r x) = \<bar>r\<bar> * norm x" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
300 |
by (induct x) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
301 |
(simp add: power_mult_distrib right_distrib [symmetric] real_sqrt_mult) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
302 |
show "norm (x * y) = norm x * norm y" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
303 |
by (induct x, induct y) |
29667 | 304 |
(simp add: real_sqrt_mult [symmetric] power2_eq_square algebra_simps) |
31292 | 305 |
show "sgn x = x /\<^sub>R cmod x" |
306 |
by (rule complex_sgn_def) |
|
307 |
show "dist x y = cmod (x - y)" |
|
308 |
by (rule dist_complex_def) |
|
31492
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents:
31419
diff
changeset
|
309 |
show "open S \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)" |
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents:
31419
diff
changeset
|
310 |
by (rule open_complex_def) |
24520 | 311 |
qed |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
312 |
|
25712 | 313 |
end |
314 |
||
22861
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
315 |
lemma cmod_unit_one [simp]: "cmod (Complex (cos a) (sin a)) = 1" |
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
316 |
by simp |
14323 | 317 |
|
22861
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
318 |
lemma cmod_complex_polar [simp]: |
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
319 |
"cmod (complex_of_real r * Complex (cos a) (sin a)) = abs r" |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
320 |
by (simp add: norm_mult) |
22861
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
321 |
|
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
322 |
lemma complex_Re_le_cmod: "Re x \<le> cmod x" |
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
323 |
unfolding complex_norm_def |
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
324 |
by (rule real_sqrt_sum_squares_ge1) |
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
325 |
|
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
326 |
lemma complex_mod_minus_le_complex_mod [simp]: "- cmod x \<le> cmod x" |
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
327 |
by (rule order_trans [OF _ norm_ge_zero], simp) |
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
328 |
|
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
329 |
lemma complex_mod_triangle_ineq2 [simp]: "cmod(b + a) - cmod b \<le> cmod a" |
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
330 |
by (rule ord_le_eq_trans [OF norm_triangle_ineq2], simp) |
14323 | 331 |
|
22861
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
huffman
parents:
22852
diff
changeset
|
332 |
lemmas real_sum_squared_expand = power2_sum [where 'a=real] |
14323 | 333 |
|
26117 | 334 |
lemma abs_Re_le_cmod: "\<bar>Re x\<bar> \<le> cmod x" |
335 |
by (cases x) simp |
|
336 |
||
337 |
lemma abs_Im_le_cmod: "\<bar>Im x\<bar> \<le> cmod x" |
|
338 |
by (cases x) simp |
|
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
339 |
|
23123 | 340 |
subsection {* Completeness of the Complexes *} |
341 |
||
44290
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
342 |
lemma bounded_linear_Re: "bounded_linear Re" |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
343 |
by (rule bounded_linear_intro [where K=1], simp_all add: complex_norm_def) |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
344 |
|
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
345 |
lemma bounded_linear_Im: "bounded_linear Im" |
44127 | 346 |
by (rule bounded_linear_intro [where K=1], simp_all add: complex_norm_def) |
23123 | 347 |
|
44290
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
348 |
lemmas tendsto_Re [tendsto_intros] = |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
349 |
bounded_linear.tendsto [OF bounded_linear_Re] |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
350 |
|
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
351 |
lemmas tendsto_Im [tendsto_intros] = |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
352 |
bounded_linear.tendsto [OF bounded_linear_Im] |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
353 |
|
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
354 |
lemmas isCont_Re [simp] = bounded_linear.isCont [OF bounded_linear_Re] |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
355 |
lemmas isCont_Im [simp] = bounded_linear.isCont [OF bounded_linear_Im] |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
356 |
lemmas Cauchy_Re = bounded_linear.Cauchy [OF bounded_linear_Re] |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
357 |
lemmas Cauchy_Im = bounded_linear.Cauchy [OF bounded_linear_Im] |
23123 | 358 |
|
36825 | 359 |
lemma tendsto_Complex [tendsto_intros]: |
360 |
assumes "(f ---> a) net" and "(g ---> b) net" |
|
361 |
shows "((\<lambda>x. Complex (f x) (g x)) ---> Complex a b) net" |
|
362 |
proof (rule tendstoI) |
|
363 |
fix r :: real assume "0 < r" |
|
364 |
hence "0 < r / sqrt 2" by (simp add: divide_pos_pos) |
|
365 |
have "eventually (\<lambda>x. dist (f x) a < r / sqrt 2) net" |
|
366 |
using `(f ---> a) net` and `0 < r / sqrt 2` by (rule tendstoD) |
|
367 |
moreover |
|
368 |
have "eventually (\<lambda>x. dist (g x) b < r / sqrt 2) net" |
|
369 |
using `(g ---> b) net` and `0 < r / sqrt 2` by (rule tendstoD) |
|
370 |
ultimately |
|
371 |
show "eventually (\<lambda>x. dist (Complex (f x) (g x)) (Complex a b) < r) net" |
|
372 |
by (rule eventually_elim2) |
|
373 |
(simp add: dist_norm real_sqrt_sum_squares_less) |
|
374 |
qed |
|
375 |
||
23123 | 376 |
lemma LIMSEQ_Complex: |
377 |
"\<lbrakk>X ----> a; Y ----> b\<rbrakk> \<Longrightarrow> (\<lambda>n. Complex (X n) (Y n)) ----> Complex a b" |
|
36825 | 378 |
by (rule tendsto_Complex) |
23123 | 379 |
|
380 |
instance complex :: banach |
|
381 |
proof |
|
382 |
fix X :: "nat \<Rightarrow> complex" |
|
383 |
assume X: "Cauchy X" |
|
44290
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
384 |
from Cauchy_Re [OF X] have 1: "(\<lambda>n. Re (X n)) ----> lim (\<lambda>n. Re (X n))" |
23123 | 385 |
by (simp add: Cauchy_convergent_iff convergent_LIMSEQ_iff) |
44290
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
386 |
from Cauchy_Im [OF X] have 2: "(\<lambda>n. Im (X n)) ----> lim (\<lambda>n. Im (X n))" |
23123 | 387 |
by (simp add: Cauchy_convergent_iff convergent_LIMSEQ_iff) |
388 |
have "X ----> Complex (lim (\<lambda>n. Re (X n))) (lim (\<lambda>n. Im (X n)))" |
|
389 |
using LIMSEQ_Complex [OF 1 2] by simp |
|
390 |
thus "convergent X" |
|
391 |
by (rule convergentI) |
|
392 |
qed |
|
393 |
||
394 |
||
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
395 |
subsection {* The Complex Number @{term "\<i>"} *} |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
396 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
397 |
definition |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
398 |
"ii" :: complex ("\<i>") where |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
399 |
i_def: "ii \<equiv> Complex 0 1" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
400 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
401 |
lemma complex_Re_i [simp]: "Re ii = 0" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
402 |
by (simp add: i_def) |
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
403 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
404 |
lemma complex_Im_i [simp]: "Im ii = 1" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
405 |
by (simp add: i_def) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
406 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
407 |
lemma Complex_eq_i [simp]: "(Complex x y = ii) = (x = 0 \<and> y = 1)" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
408 |
by (simp add: i_def) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
409 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
410 |
lemma complex_i_not_zero [simp]: "ii \<noteq> 0" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
411 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
412 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
413 |
lemma complex_i_not_one [simp]: "ii \<noteq> 1" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
414 |
by (simp add: complex_eq_iff) |
23124 | 415 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
416 |
lemma complex_i_not_number_of [simp]: "ii \<noteq> number_of w" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
417 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
418 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
419 |
lemma i_mult_Complex [simp]: "ii * Complex a b = Complex (- b) a" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
420 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
421 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
422 |
lemma Complex_mult_i [simp]: "Complex a b * ii = Complex (- b) a" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
423 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
424 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
425 |
lemma i_complex_of_real [simp]: "ii * complex_of_real r = Complex 0 r" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
426 |
by (simp add: i_def complex_of_real_def) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
427 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
428 |
lemma complex_of_real_i [simp]: "complex_of_real r * ii = Complex 0 r" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
429 |
by (simp add: i_def complex_of_real_def) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
430 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
431 |
lemma i_squared [simp]: "ii * ii = -1" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
432 |
by (simp add: i_def) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
433 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
434 |
lemma power2_i [simp]: "ii\<twosuperior> = -1" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
435 |
by (simp add: power2_eq_square) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
436 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
437 |
lemma inverse_i [simp]: "inverse ii = - ii" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
438 |
by (rule inverse_unique, simp) |
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
439 |
|
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
440 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
441 |
subsection {* Complex Conjugation *} |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
442 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
443 |
definition |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
444 |
cnj :: "complex \<Rightarrow> complex" where |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
445 |
"cnj z = Complex (Re z) (- Im z)" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
446 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
447 |
lemma complex_cnj [simp]: "cnj (Complex a b) = Complex a (- b)" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
448 |
by (simp add: cnj_def) |
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_Re_cnj [simp]: "Re (cnj x) = Re x" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
451 |
by (simp add: cnj_def) |
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_Im_cnj [simp]: "Im (cnj x) = - Im x" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
454 |
by (simp add: cnj_def) |
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_cnj_cancel_iff [simp]: "(cnj x = cnj y) = (x = y)" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
457 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
458 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
459 |
lemma complex_cnj_cnj [simp]: "cnj (cnj z) = z" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
460 |
by (simp add: cnj_def) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
461 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
462 |
lemma complex_cnj_zero [simp]: "cnj 0 = 0" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
463 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
464 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
465 |
lemma complex_cnj_zero_iff [iff]: "(cnj z = 0) = (z = 0)" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
466 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
467 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
468 |
lemma complex_cnj_add: "cnj (x + y) = cnj x + cnj y" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
469 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
470 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
471 |
lemma complex_cnj_diff: "cnj (x - y) = cnj x - cnj y" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
472 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
473 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
474 |
lemma complex_cnj_minus: "cnj (- x) = - cnj x" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
475 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
476 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
477 |
lemma complex_cnj_one [simp]: "cnj 1 = 1" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
478 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
479 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
480 |
lemma complex_cnj_mult: "cnj (x * y) = cnj x * cnj y" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
481 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
482 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
483 |
lemma complex_cnj_inverse: "cnj (inverse x) = inverse (cnj x)" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
484 |
by (simp add: complex_inverse_def) |
14323 | 485 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
486 |
lemma complex_cnj_divide: "cnj (x / y) = cnj x / cnj y" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
487 |
by (simp add: complex_divide_def complex_cnj_mult complex_cnj_inverse) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
488 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
489 |
lemma complex_cnj_power: "cnj (x ^ n) = cnj x ^ n" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
490 |
by (induct n, simp_all add: complex_cnj_mult) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
491 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
492 |
lemma complex_cnj_of_nat [simp]: "cnj (of_nat n) = of_nat n" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
493 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
494 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
495 |
lemma complex_cnj_of_int [simp]: "cnj (of_int z) = of_int z" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
496 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
497 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
498 |
lemma complex_cnj_number_of [simp]: "cnj (number_of w) = number_of w" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
499 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
500 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
501 |
lemma complex_cnj_scaleR: "cnj (scaleR r x) = scaleR r (cnj x)" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
502 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
503 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
504 |
lemma complex_mod_cnj [simp]: "cmod (cnj z) = cmod z" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
505 |
by (simp add: complex_norm_def) |
14323 | 506 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
507 |
lemma complex_cnj_complex_of_real [simp]: "cnj (of_real x) = of_real x" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
508 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
509 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
510 |
lemma complex_cnj_i [simp]: "cnj ii = - ii" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
511 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
512 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
513 |
lemma complex_add_cnj: "z + cnj z = complex_of_real (2 * Re z)" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
514 |
by (simp add: complex_eq_iff) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
515 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
516 |
lemma complex_diff_cnj: "z - cnj z = complex_of_real (2 * Im z) * ii" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
517 |
by (simp add: complex_eq_iff) |
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
518 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
519 |
lemma complex_mult_cnj: "z * cnj z = complex_of_real ((Re z)\<twosuperior> + (Im z)\<twosuperior>)" |
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
520 |
by (simp add: complex_eq_iff power2_eq_square) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
521 |
|
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
522 |
lemma complex_mod_mult_cnj: "cmod (z * cnj z) = (cmod z)\<twosuperior>" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
523 |
by (simp add: norm_mult power2_eq_square) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
524 |
|
44290
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
525 |
lemma bounded_linear_cnj: "bounded_linear cnj" |
44127 | 526 |
using complex_cnj_add complex_cnj_scaleR |
527 |
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
|
528 |
|
44290
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
529 |
lemmas tendsto_cnj [tendsto_intros] = |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
530 |
bounded_linear.tendsto [OF bounded_linear_cnj] |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
531 |
|
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
532 |
lemmas isCont_cnj [simp] = |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
533 |
bounded_linear.isCont [OF bounded_linear_cnj] |
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents:
44127
diff
changeset
|
534 |
|
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
535 |
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22968
diff
changeset
|
536 |
subsection{*The Functions @{term sgn} and @{term arg}*} |
14323 | 537 |
|
22972
3e96b98d37c6
generalized sgn function to work on any real normed vector space
huffman
parents:
22968
diff
changeset
|
538 |
text {*------------ Argand -------------*} |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
539 |
|
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20763
diff
changeset
|
540 |
definition |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20763
diff
changeset
|
541 |
arg :: "complex => real" where |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
542 |
"arg z = (SOME a. Re(sgn z) = cos a & Im(sgn z) = sin a & -pi < a & a \<le> pi)" |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
543 |
|
14374 | 544 |
lemma sgn_eq: "sgn z = z / complex_of_real (cmod z)" |
24506 | 545 |
by (simp add: complex_sgn_def divide_inverse scaleR_conv_of_real mult_commute) |
14323 | 546 |
|
547 |
lemma i_mult_eq: "ii * ii = complex_of_real (-1)" |
|
20725
72e20198f834
instance complex :: real_normed_field; cleaned up
huffman
parents:
20560
diff
changeset
|
548 |
by (simp add: i_def complex_of_real_def) |
14323 | 549 |
|
14374 | 550 |
lemma i_mult_eq2 [simp]: "ii * ii = -(1::complex)" |
20725
72e20198f834
instance complex :: real_normed_field; cleaned up
huffman
parents:
20560
diff
changeset
|
551 |
by (simp add: i_def complex_one_def) |
14323 | 552 |
|
14374 | 553 |
lemma complex_eq_cancel_iff2 [simp]: |
14377 | 554 |
"(Complex x y = complex_of_real xa) = (x = xa & y = 0)" |
555 |
by (simp add: complex_of_real_def) |
|
14323 | 556 |
|
14374 | 557 |
lemma Re_sgn [simp]: "Re(sgn z) = Re(z)/cmod z" |
24506 | 558 |
by (simp add: complex_sgn_def divide_inverse) |
14323 | 559 |
|
14374 | 560 |
lemma Im_sgn [simp]: "Im(sgn z) = Im(z)/cmod z" |
24506 | 561 |
by (simp add: complex_sgn_def divide_inverse) |
14323 | 562 |
|
563 |
lemma complex_inverse_complex_split: |
|
564 |
"inverse(complex_of_real x + ii * complex_of_real y) = |
|
565 |
complex_of_real(x/(x ^ 2 + y ^ 2)) - |
|
566 |
ii * complex_of_real(y/(x ^ 2 + y ^ 2))" |
|
20725
72e20198f834
instance complex :: real_normed_field; cleaned up
huffman
parents:
20560
diff
changeset
|
567 |
by (simp add: complex_of_real_def i_def diff_minus divide_inverse) |
14323 | 568 |
|
569 |
(*----------------------------------------------------------------------------*) |
|
570 |
(* Many of the theorems below need to be moved elsewhere e.g. Transc. Also *) |
|
571 |
(* many of the theorems are not used - so should they be kept? *) |
|
572 |
(*----------------------------------------------------------------------------*) |
|
573 |
||
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
574 |
lemma cos_arg_i_mult_zero_pos: |
14377 | 575 |
"0 < y ==> cos (arg(Complex 0 y)) = 0" |
14373 | 576 |
apply (simp add: arg_def abs_if) |
14334 | 577 |
apply (rule_tac a = "pi/2" in someI2, auto) |
578 |
apply (rule order_less_trans [of _ 0], auto) |
|
14323 | 579 |
done |
580 |
||
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
581 |
lemma cos_arg_i_mult_zero_neg: |
14377 | 582 |
"y < 0 ==> cos (arg(Complex 0 y)) = 0" |
14373 | 583 |
apply (simp add: arg_def abs_if) |
14334 | 584 |
apply (rule_tac a = "- pi/2" in someI2, auto) |
585 |
apply (rule order_trans [of _ 0], auto) |
|
14323 | 586 |
done |
587 |
||
14374 | 588 |
lemma cos_arg_i_mult_zero [simp]: |
14377 | 589 |
"y \<noteq> 0 ==> cos (arg(Complex 0 y)) = 0" |
590 |
by (auto simp add: linorder_neq_iff cos_arg_i_mult_zero_pos cos_arg_i_mult_zero_neg) |
|
14323 | 591 |
|
592 |
||
593 |
subsection{*Finally! Polar Form for Complex Numbers*} |
|
594 |
||
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
595 |
definition |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
596 |
|
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
597 |
(* abbreviation for (cos a + i sin a) *) |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20763
diff
changeset
|
598 |
cis :: "real => complex" where |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
599 |
"cis a = Complex (cos a) (sin a)" |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
600 |
|
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20763
diff
changeset
|
601 |
definition |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
602 |
(* abbreviation for r*(cos a + i sin a) *) |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
20763
diff
changeset
|
603 |
rcis :: "[real, real] => complex" where |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
604 |
"rcis r a = complex_of_real r * cis a" |
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
605 |
|
44291
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
606 |
abbreviation expi :: "complex \<Rightarrow> complex" |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
607 |
where "expi \<equiv> exp" |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
608 |
|
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
609 |
lemma expi_imaginary: "expi (Complex 0 b) = cis b" |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
610 |
proof (rule complex_eqI) |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
611 |
{ fix n have "Complex 0 b ^ n = |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
612 |
real (fact n) *\<^sub>R Complex (cos_coeff n * b ^ n) (sin_coeff n * b ^ n)" |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
613 |
apply (induct n) |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
614 |
apply (simp add: cos_coeff_def sin_coeff_def) |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
615 |
apply (simp add: sin_coeff_Suc cos_coeff_Suc del: mult_Suc) |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
616 |
done } note * = this |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
617 |
show "Re (exp (Complex 0 b)) = Re (cis b)" |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
618 |
unfolding exp_def cis_def cos_def |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
619 |
by (subst bounded_linear.suminf[OF bounded_linear_Re summable_exp_generic], |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
620 |
simp add: * mult_assoc [symmetric]) |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
621 |
show "Im (exp (Complex 0 b)) = Im (cis b)" |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
622 |
unfolding exp_def cis_def sin_def |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
623 |
by (subst bounded_linear.suminf[OF bounded_linear_Im summable_exp_generic], |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
624 |
simp add: * mult_assoc [symmetric]) |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
625 |
qed |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
626 |
|
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
627 |
lemma expi_def: "expi z = complex_of_real (exp (Re z)) * cis (Im z)" |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
628 |
proof - |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
629 |
have "expi z = expi (complex_of_real (Re z) + Complex 0 (Im z))" |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
630 |
by simp |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
631 |
thus ?thesis |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
632 |
unfolding exp_add exp_of_real expi_imaginary . |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
633 |
qed |
20557
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
huffman
parents:
20556
diff
changeset
|
634 |
|
14374 | 635 |
lemma complex_split_polar: |
14377 | 636 |
"\<exists>r a. z = complex_of_real r * (Complex (cos a) (sin a))" |
20725
72e20198f834
instance complex :: real_normed_field; cleaned up
huffman
parents:
20560
diff
changeset
|
637 |
apply (induct z) |
14377 | 638 |
apply (auto simp add: polar_Ex complex_of_real_mult_Complex) |
14323 | 639 |
done |
640 |
||
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
641 |
lemma rcis_Ex: "\<exists>r a. z = rcis r a" |
20725
72e20198f834
instance complex :: real_normed_field; cleaned up
huffman
parents:
20560
diff
changeset
|
642 |
apply (induct z) |
14377 | 643 |
apply (simp add: rcis_def cis_def polar_Ex complex_of_real_mult_Complex) |
14323 | 644 |
done |
645 |
||
14374 | 646 |
lemma Re_rcis [simp]: "Re(rcis r a) = r * cos a" |
14373 | 647 |
by (simp add: rcis_def cis_def) |
14323 | 648 |
|
14348
744c868ee0b7
Defining the type class "ringpower" and deleting superseded theorems for
paulson
parents:
14341
diff
changeset
|
649 |
lemma Im_rcis [simp]: "Im(rcis r a) = r * sin a" |
14373 | 650 |
by (simp add: rcis_def cis_def) |
14323 | 651 |
|
14377 | 652 |
lemma sin_cos_squared_add2_mult: "(r * cos a)\<twosuperior> + (r * sin a)\<twosuperior> = r\<twosuperior>" |
653 |
proof - |
|
654 |
have "(r * cos a)\<twosuperior> + (r * sin a)\<twosuperior> = r\<twosuperior> * ((cos a)\<twosuperior> + (sin a)\<twosuperior>)" |
|
20725
72e20198f834
instance complex :: real_normed_field; cleaned up
huffman
parents:
20560
diff
changeset
|
655 |
by (simp only: power_mult_distrib right_distrib) |
14377 | 656 |
thus ?thesis by simp |
657 |
qed |
|
14323 | 658 |
|
14374 | 659 |
lemma complex_mod_rcis [simp]: "cmod(rcis r a) = abs r" |
14377 | 660 |
by (simp add: rcis_def cis_def sin_cos_squared_add2_mult) |
14323 | 661 |
|
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
662 |
lemma complex_mod_sqrt_Re_mult_cnj: "cmod z = sqrt (Re (z * cnj z))" |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
663 |
by (simp add: cmod_def power2_eq_square) |
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
664 |
|
14374 | 665 |
lemma complex_In_mult_cnj_zero [simp]: "Im (z * cnj z) = 0" |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
666 |
by simp |
14323 | 667 |
|
668 |
||
669 |
(*---------------------------------------------------------------------------*) |
|
670 |
(* (r1 * cis a) * (r2 * cis b) = r1 * r2 * cis (a + b) *) |
|
671 |
(*---------------------------------------------------------------------------*) |
|
672 |
||
673 |
lemma cis_rcis_eq: "cis a = rcis 1 a" |
|
14373 | 674 |
by (simp add: rcis_def) |
14323 | 675 |
|
14374 | 676 |
lemma rcis_mult: "rcis r1 a * rcis r2 b = rcis (r1*r2) (a + b)" |
15013 | 677 |
by (simp add: rcis_def cis_def cos_add sin_add right_distrib right_diff_distrib |
678 |
complex_of_real_def) |
|
14323 | 679 |
|
680 |
lemma cis_mult: "cis a * cis b = cis (a + b)" |
|
14373 | 681 |
by (simp add: cis_rcis_eq rcis_mult) |
14323 | 682 |
|
14374 | 683 |
lemma cis_zero [simp]: "cis 0 = 1" |
14377 | 684 |
by (simp add: cis_def complex_one_def) |
14323 | 685 |
|
14374 | 686 |
lemma rcis_zero_mod [simp]: "rcis 0 a = 0" |
14373 | 687 |
by (simp add: rcis_def) |
14323 | 688 |
|
14374 | 689 |
lemma rcis_zero_arg [simp]: "rcis r 0 = complex_of_real r" |
14373 | 690 |
by (simp add: rcis_def) |
14323 | 691 |
|
692 |
lemma complex_of_real_minus_one: |
|
693 |
"complex_of_real (-(1::real)) = -(1::complex)" |
|
20725
72e20198f834
instance complex :: real_normed_field; cleaned up
huffman
parents:
20560
diff
changeset
|
694 |
by (simp add: complex_of_real_def complex_one_def) |
14323 | 695 |
|
14374 | 696 |
lemma complex_i_mult_minus [simp]: "ii * (ii * x) = - x" |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
697 |
by (simp add: mult_assoc [symmetric]) |
14323 | 698 |
|
699 |
||
700 |
lemma cis_real_of_nat_Suc_mult: |
|
701 |
"cis (real (Suc n) * a) = cis a * cis (real n * a)" |
|
14377 | 702 |
by (simp add: cis_def real_of_nat_Suc left_distrib cos_add sin_add right_distrib) |
14323 | 703 |
|
704 |
lemma DeMoivre: "(cis a) ^ n = cis (real n * a)" |
|
705 |
apply (induct_tac "n") |
|
706 |
apply (auto simp add: cis_real_of_nat_Suc_mult) |
|
707 |
done |
|
708 |
||
14374 | 709 |
lemma DeMoivre2: "(rcis r a) ^ n = rcis (r ^ n) (real n * a)" |
22890 | 710 |
by (simp add: rcis_def power_mult_distrib DeMoivre) |
14323 | 711 |
|
14374 | 712 |
lemma cis_inverse [simp]: "inverse(cis a) = cis (-a)" |
20725
72e20198f834
instance complex :: real_normed_field; cleaned up
huffman
parents:
20560
diff
changeset
|
713 |
by (simp add: cis_def complex_inverse_complex_split diff_minus) |
14323 | 714 |
|
715 |
lemma rcis_inverse: "inverse(rcis r a) = rcis (1/r) (-a)" |
|
22884 | 716 |
by (simp add: divide_inverse rcis_def) |
14323 | 717 |
|
718 |
lemma cis_divide: "cis a / cis b = cis (a - b)" |
|
37887 | 719 |
by (simp add: complex_divide_def cis_mult diff_minus) |
14323 | 720 |
|
14354
988aa4648597
types complex and hcomplex are now instances of class ringpower:
paulson
parents:
14353
diff
changeset
|
721 |
lemma rcis_divide: "rcis r1 a / rcis r2 b = rcis (r1/r2) (a - b)" |
14373 | 722 |
apply (simp add: complex_divide_def) |
723 |
apply (case_tac "r2=0", simp) |
|
37887 | 724 |
apply (simp add: rcis_inverse rcis_mult diff_minus) |
14323 | 725 |
done |
726 |
||
14374 | 727 |
lemma Re_cis [simp]: "Re(cis a) = cos a" |
14373 | 728 |
by (simp add: cis_def) |
14323 | 729 |
|
14374 | 730 |
lemma Im_cis [simp]: "Im(cis a) = sin a" |
14373 | 731 |
by (simp add: cis_def) |
14323 | 732 |
|
733 |
lemma cos_n_Re_cis_pow_n: "cos (real n * a) = Re(cis a ^ n)" |
|
14334 | 734 |
by (auto simp add: DeMoivre) |
14323 | 735 |
|
736 |
lemma sin_n_Im_cis_pow_n: "sin (real n * a) = Im(cis a ^ n)" |
|
14334 | 737 |
by (auto simp add: DeMoivre) |
14323 | 738 |
|
739 |
lemma expi_add: "expi(a + b) = expi(a) * expi(b)" |
|
44291
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
740 |
by (rule exp_add) (* FIXME: redundant *) |
14323 | 741 |
|
44291
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
742 |
lemma expi_zero: "expi (0::complex) = 1" |
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents:
44290
diff
changeset
|
743 |
by (rule exp_zero) (* FIXME: redundant *) |
14323 | 744 |
|
14374 | 745 |
lemma complex_expi_Ex: "\<exists>a r. z = complex_of_real r * expi a" |
14373 | 746 |
apply (insert rcis_Ex [of z]) |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
747 |
apply (auto simp add: expi_def rcis_def mult_assoc [symmetric]) |
14334 | 748 |
apply (rule_tac x = "ii * complex_of_real a" in exI, auto) |
14323 | 749 |
done |
750 |
||
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14377
diff
changeset
|
751 |
lemma expi_two_pi_i [simp]: "expi((2::complex) * complex_of_real pi * ii) = 1" |
23125
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents:
23124
diff
changeset
|
752 |
by (simp add: expi_def cis_def) |
14387
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
paulson
parents:
14377
diff
changeset
|
753 |
|
44065
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
754 |
text {* Legacy theorem names *} |
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
755 |
|
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
756 |
lemmas expand_complex_eq = complex_eq_iff |
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
757 |
lemmas complex_Re_Im_cancel_iff = complex_eq_iff |
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
758 |
lemmas complex_equality = complex_eqI |
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents:
41959
diff
changeset
|
759 |
|
13957 | 760 |
end |