| author | wenzelm | 
| Sun, 01 Oct 2017 20:50:26 +0200 | |
| changeset 66744 | fec1504e5f03 | 
| parent 65583 | 8d53b3bebab4 | 
| child 66793 | deabce3ccf1f | 
| permissions | -rw-r--r-- | 
| 41959 | 1 | (* Title: HOL/Complex.thy | 
| 63569 | 2 | Author: Jacques D. Fleuriot, 2001 University of Edinburgh | 
| 3 | Author: Lawrence C Paulson, 2003/4 | |
| 13957 | 4 | *) | 
| 5 | ||
| 60758 | 6 | section \<open>Complex Numbers: Rectangular and Polar Representations\<close> | 
| 14373 | 7 | |
| 15131 | 8 | theory Complex | 
| 28952 
15a4b2cf8c34
made repository layout more coherent with logical distribution structure; stripped some $Id$s
 haftmann parents: 
28944diff
changeset | 9 | imports Transcendental | 
| 15131 | 10 | begin | 
| 13957 | 11 | |
| 60758 | 12 | text \<open> | 
| 63569 | 13 | We use the \<^theory_text>\<open>codatatype\<close> command to define the type of complex numbers. This | 
| 14 | allows us to use \<^theory_text>\<open>primcorec\<close> to define complex functions by defining their | |
| 15 | real and imaginary result separately. | |
| 60758 | 16 | \<close> | 
| 14373 | 17 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 18 | 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: 
56541diff
changeset | 19 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 20 | 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: 
56541diff
changeset | 21 | by (rule complex.collapse) | 
| 13957 | 22 | |
| 63569 | 23 | lemma complex_eqI [intro?]: "Re x = Re y \<Longrightarrow> Im x = Im y \<Longrightarrow> x = y" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 24 | by (rule complex.expand) simp | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 25 | |
| 44065 
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
 huffman parents: 
41959diff
changeset | 26 | 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: 
56541diff
changeset | 27 | by (auto intro: complex.expand) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 28 | |
| 63569 | 29 | |
| 60758 | 30 | subsection \<open>Addition and Subtraction\<close> | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 31 | |
| 25599 | 32 | instantiation complex :: ab_group_add | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 33 | begin | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 34 | |
| 63569 | 35 | primcorec zero_complex | 
| 36 | where | |
| 37 | "Re 0 = 0" | |
| 38 | | "Im 0 = 0" | |
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 39 | |
| 63569 | 40 | primcorec plus_complex | 
| 41 | where | |
| 42 | "Re (x + y) = Re x + Re y" | |
| 43 | | "Im (x + y) = Im x + Im y" | |
| 25712 | 44 | |
| 63569 | 45 | primcorec uminus_complex | 
| 46 | where | |
| 47 | "Re (- x) = - Re x" | |
| 48 | | "Im (- x) = - Im x" | |
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 49 | |
| 63569 | 50 | primcorec minus_complex | 
| 51 | where | |
| 52 | "Re (x - y) = Re x - Re y" | |
| 53 | | "Im (x - y) = Im x - Im y" | |
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 54 | |
| 25712 | 55 | instance | 
| 63569 | 56 | by standard (simp_all add: complex_eq_iff) | 
| 25712 | 57 | |
| 58 | end | |
| 59 | ||
| 63569 | 60 | |
| 60758 | 61 | subsection \<open>Multiplication and Division\<close> | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 62 | |
| 59867 
58043346ca64
given up separate type classes demanding `inverse 0 = 0`
 haftmann parents: 
59862diff
changeset | 63 | instantiation complex :: field | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 64 | begin | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 65 | |
| 63569 | 66 | primcorec one_complex | 
| 67 | where | |
| 68 | "Re 1 = 1" | |
| 69 | | "Im 1 = 0" | |
| 14323 | 70 | |
| 63569 | 71 | primcorec times_complex | 
| 72 | where | |
| 73 | "Re (x * y) = Re x * Re y - Im x * Im y" | |
| 74 | | "Im (x * y) = Re x * Im y + Im x * Re y" | |
| 14323 | 75 | |
| 63569 | 76 | primcorec inverse_complex | 
| 77 | where | |
| 78 | "Re (inverse x) = Re x / ((Re x)\<^sup>2 + (Im x)\<^sup>2)" | |
| 79 | | "Im (inverse x) = - Im x / ((Re x)\<^sup>2 + (Im x)\<^sup>2)" | |
| 14335 | 80 | |
| 63569 | 81 | definition "x div y = x * inverse y" for x y :: complex | 
| 14335 | 82 | |
| 25712 | 83 | instance | 
| 63569 | 84 | by standard | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 85 | (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: 
56541diff
changeset | 86 | 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: 
56541diff
changeset | 87 | power2_eq_square add_divide_distrib [symmetric]) | 
| 14335 | 88 | |
| 25712 | 89 | end | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 90 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 91 | lemma Re_divide: "Re (x / y) = (Re x * Re y + Im x * Im y) / ((Re y)\<^sup>2 + (Im y)\<^sup>2)" | 
| 63569 | 92 | by (simp add: divide_complex_def add_divide_distrib) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 93 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 94 | 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: 
56541diff
changeset | 95 | unfolding divide_complex_def times_complex.sel inverse_complex.sel | 
| 63569 | 96 | by (simp add: divide_simps) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 97 | |
| 65583 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 98 | lemma Complex_divide: | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 99 | "(x / y) = Complex ((Re x * Re y + Im x * Im y) / ((Re y)\<^sup>2 + (Im y)\<^sup>2)) | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 100 | ((Im x * Re y - Re x * Im y) / ((Re y)\<^sup>2 + (Im y)\<^sup>2))" | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 101 | by (metis Im_divide Re_divide complex_surj) | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 102 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 103 | 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: 
56541diff
changeset | 104 | by (simp add: power2_eq_square) | 
| 20556 
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
 huffman parents: 
20485diff
changeset | 105 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 106 | 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: 
56541diff
changeset | 107 | by (simp add: power2_eq_square) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 108 | |
| 59862 | 109 | lemma Re_power_real [simp]: "Im x = 0 \<Longrightarrow> Re (x ^ n) = Re x ^ n " | 
| 44724 | 110 | by (induct n) simp_all | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 111 | |
| 59862 | 112 | lemma Im_power_real [simp]: "Im x = 0 \<Longrightarrow> Im (x ^ n) = 0" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 113 | by (induct n) simp_all | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 114 | |
| 63569 | 115 | |
| 60758 | 116 | subsection \<open>Scalar Multiplication\<close> | 
| 20556 
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
 huffman parents: 
20485diff
changeset | 117 | |
| 25712 | 118 | instantiation complex :: real_field | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 119 | begin | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 120 | |
| 63569 | 121 | primcorec scaleR_complex | 
| 122 | where | |
| 123 | "Re (scaleR r x) = r * Re x" | |
| 124 | | "Im (scaleR r x) = r * Im x" | |
| 22972 
3e96b98d37c6
generalized sgn function to work on any real normed vector space
 huffman parents: 
22968diff
changeset | 125 | |
| 25712 | 126 | instance | 
| 20556 
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
 huffman parents: 
20485diff
changeset | 127 | proof | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 128 | fix a b :: real and x y :: complex | 
| 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 129 | show "scaleR a (x + y) = scaleR a x + scaleR a y" | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47108diff
changeset | 130 | by (simp add: complex_eq_iff distrib_left) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 131 | show "scaleR (a + b) x = scaleR a x + scaleR b x" | 
| 49962 
a8cc904a6820
Renamed {left,right}_distrib to distrib_{right,left}.
 webertj parents: 
47108diff
changeset | 132 | by (simp add: complex_eq_iff distrib_right) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 133 | 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: 
57259diff
changeset | 134 | by (simp add: complex_eq_iff mult.assoc) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 135 | show "scaleR 1 x = x" | 
| 44065 
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
 huffman parents: 
41959diff
changeset | 136 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 137 | show "scaleR a x * y = scaleR a (x * y)" | 
| 44065 
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
 huffman parents: 
41959diff
changeset | 138 | by (simp add: complex_eq_iff algebra_simps) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 139 | show "x * scaleR a y = scaleR a (x * y)" | 
| 44065 
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
 huffman parents: 
41959diff
changeset | 140 | by (simp add: complex_eq_iff algebra_simps) | 
| 20556 
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
 huffman parents: 
20485diff
changeset | 141 | qed | 
| 
2e8227b81bf1
add instance for real_algebra_1 and real_normed_div_algebra
 huffman parents: 
20485diff
changeset | 142 | |
| 25712 | 143 | end | 
| 144 | ||
| 63569 | 145 | |
| 65579 | 146 | subsection \<open>Numerals, Arithmetic, and Embedding from R\<close> | 
| 14323 | 147 | |
| 44724 | 148 | abbreviation complex_of_real :: "real \<Rightarrow> complex" | 
| 149 | where "complex_of_real \<equiv> of_real" | |
| 20557 
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
 huffman parents: 
20556diff
changeset | 150 | |
| 59000 | 151 | declare [[coercion "of_real :: real \<Rightarrow> complex"]] | 
| 152 | declare [[coercion "of_rat :: rat \<Rightarrow> complex"]] | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 153 | 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: 
56541diff
changeset | 154 | declare [[coercion "of_nat :: nat \<Rightarrow> complex"]] | 
| 56331 | 155 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 156 | 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: 
56541diff
changeset | 157 | by (induct n) simp_all | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 158 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 159 | 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: 
56541diff
changeset | 160 | by (induct n) simp_all | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 161 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 162 | 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: 
56541diff
changeset | 163 | 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: 
56541diff
changeset | 164 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 165 | 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: 
56541diff
changeset | 166 | 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: 
56541diff
changeset | 167 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 168 | 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: 
56541diff
changeset | 169 | 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: 
56541diff
changeset | 170 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 171 | 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: 
56541diff
changeset | 172 | using complex_Im_of_int [of "numeral v"] by simp | 
| 20557 
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
 huffman parents: 
20556diff
changeset | 173 | |
| 
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
 huffman parents: 
20556diff
changeset | 174 | 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: 
56541diff
changeset | 175 | by (simp add: of_real_def) | 
| 20557 
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
 huffman parents: 
20556diff
changeset | 176 | |
| 
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
 huffman parents: 
20556diff
changeset | 177 | 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: 
56541diff
changeset | 178 | by (simp add: of_real_def) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 179 | |
| 59613 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 180 | lemma Re_divide_numeral [simp]: "Re (z / numeral w) = Re z / numeral w" | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 181 | by (simp add: Re_divide sqr_conv_mult) | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 182 | |
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 183 | lemma Im_divide_numeral [simp]: "Im (z / numeral w) = Im z / numeral w" | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 184 | by (simp add: Im_divide sqr_conv_mult) | 
| 61609 
77b453bd616f
Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
 paulson <lp15@cam.ac.uk> parents: 
61552diff
changeset | 185 | |
| 62379 
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
 paulson <lp15@cam.ac.uk> parents: 
62102diff
changeset | 186 | lemma Re_divide_of_nat [simp]: "Re (z / of_nat n) = Re z / of_nat n" | 
| 61552 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 eberlm parents: 
61531diff
changeset | 187 | by (cases n) (simp_all add: Re_divide divide_simps power2_eq_square del: of_nat_Suc) | 
| 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 eberlm parents: 
61531diff
changeset | 188 | |
| 62379 
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
 paulson <lp15@cam.ac.uk> parents: 
62102diff
changeset | 189 | lemma Im_divide_of_nat [simp]: "Im (z / of_nat n) = Im z / of_nat n" | 
| 61552 
980dd46a03fb
Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
 eberlm parents: 
61531diff
changeset | 190 | by (cases n) (simp_all add: Im_divide divide_simps power2_eq_square del: of_nat_Suc) | 
| 59613 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 191 | |
| 63569 | 192 | lemma of_real_Re [simp]: "z \<in> \<real> \<Longrightarrow> of_real (Re z) = z" | 
| 60017 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59867diff
changeset | 193 | by (auto simp: Reals_def) | 
| 
b785d6d06430
Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
 paulson <lp15@cam.ac.uk> parents: 
59867diff
changeset | 194 | |
| 61531 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 195 | lemma complex_Re_fact [simp]: "Re (fact n) = fact n" | 
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 196 | proof - | 
| 63569 | 197 | have "(fact n :: complex) = of_real (fact n)" | 
| 198 | by simp | |
| 199 | also have "Re \<dots> = fact n" | |
| 200 | by (subst Re_complex_of_real) simp_all | |
| 61531 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 201 | finally show ?thesis . | 
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 202 | qed | 
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 203 | |
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 204 | lemma complex_Im_fact [simp]: "Im (fact n) = 0" | 
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 205 | by (subst of_nat_fact [symmetric]) (simp only: complex_Im_of_nat) | 
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 206 | |
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 207 | |
| 60758 | 208 | subsection \<open>The Complex Number $i$\<close> | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 209 | |
| 65064 
a4abec71279a
Renamed ii to imaginary_unit in order to free up ii as a variable name.  Also replaced some legacy def commands
 paulson <lp15@cam.ac.uk> parents: 
64773diff
changeset | 210 | primcorec imaginary_unit :: complex  ("\<i>")
 | 
| 63569 | 211 | where | 
| 212 | "Re \<i> = 0" | |
| 213 | | "Im \<i> = 1" | |
| 20557 
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
 huffman parents: 
20556diff
changeset | 214 | |
| 65274 
db2de50de28e
Removed [simp] status for Complex_eq. Also tidied some proofs
 paulson <lp15@cam.ac.uk> parents: 
65064diff
changeset | 215 | lemma Complex_eq: "Complex a b = a + \<i> * b" | 
| 57259 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 216 | by (simp add: complex_eq_iff) | 
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 217 | |
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 218 | lemma complex_eq: "a = Re a + \<i> * Im a" | 
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 219 | by (simp add: complex_eq_iff) | 
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 220 | |
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 221 | 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: 
56889diff
changeset | 222 | by (simp add: fun_eq_iff complex_eq) | 
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 223 | |
| 63569 | 224 | lemma i_squared [simp]: "\<i> * \<i> = -1" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 225 | by (simp add: complex_eq_iff) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 226 | |
| 63569 | 227 | lemma power2_i [simp]: "\<i>\<^sup>2 = -1" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 228 | by (simp add: power2_eq_square) | 
| 14377 | 229 | |
| 63569 | 230 | lemma inverse_i [simp]: "inverse \<i> = - \<i>" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 231 | by (rule inverse_unique) simp | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 232 | |
| 63569 | 233 | lemma divide_i [simp]: "x / \<i> = - \<i> * x" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 234 | by (simp add: divide_complex_def) | 
| 14377 | 235 | |
| 63569 | 236 | lemma complex_i_mult_minus [simp]: "\<i> * (\<i> * x) = - x" | 
| 57512 
cc97b347b301
reduced name variants for assoc and commute on plus and mult
 haftmann parents: 
57259diff
changeset | 237 | by (simp add: mult.assoc [symmetric]) | 
| 14377 | 238 | |
| 63569 | 239 | lemma complex_i_not_zero [simp]: "\<i> \<noteq> 0" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 240 | by (simp add: complex_eq_iff) | 
| 20557 
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
 huffman parents: 
20556diff
changeset | 241 | |
| 63569 | 242 | lemma complex_i_not_one [simp]: "\<i> \<noteq> 1" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 243 | by (simp add: complex_eq_iff) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 244 | |
| 63569 | 245 | lemma complex_i_not_numeral [simp]: "\<i> \<noteq> numeral w" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 246 | by (simp add: complex_eq_iff) | 
| 44841 | 247 | |
| 63569 | 248 | lemma complex_i_not_neg_numeral [simp]: "\<i> \<noteq> - numeral w" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 249 | by (simp add: complex_eq_iff) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 250 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 251 | 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: 
44825diff
changeset | 252 | by (simp add: complex_eq_iff polar_Ex) | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 253 | |
| 59613 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 254 | lemma i_even_power [simp]: "\<i> ^ (n * 2) = (-1) ^ n" | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 255 | by (metis mult.commute power2_i power_mult) | 
| 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 256 | |
| 65064 
a4abec71279a
Renamed ii to imaginary_unit in order to free up ii as a variable name.  Also replaced some legacy def commands
 paulson <lp15@cam.ac.uk> parents: 
64773diff
changeset | 257 | lemma Re_i_times [simp]: "Re (\<i> * z) = - Im z" | 
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 258 | by simp | 
| 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 259 | |
| 65064 
a4abec71279a
Renamed ii to imaginary_unit in order to free up ii as a variable name.  Also replaced some legacy def commands
 paulson <lp15@cam.ac.uk> parents: 
64773diff
changeset | 260 | lemma Im_i_times [simp]: "Im (\<i> * z) = Re z" | 
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 261 | by simp | 
| 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 262 | |
| 65064 
a4abec71279a
Renamed ii to imaginary_unit in order to free up ii as a variable name.  Also replaced some legacy def commands
 paulson <lp15@cam.ac.uk> parents: 
64773diff
changeset | 263 | lemma i_times_eq_iff: "\<i> * w = z \<longleftrightarrow> w = - (\<i> * z)" | 
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 264 | by auto | 
| 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 265 | |
| 63569 | 266 | lemma divide_numeral_i [simp]: "z / (numeral n * \<i>) = - (\<i> * z) / numeral n" | 
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 267 | by (metis divide_divide_eq_left divide_i mult.commute mult_minus_right) | 
| 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 268 | |
| 65583 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 269 | lemma imaginary_eq_real_iff [simp]: | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 270 | assumes "y \<in> Reals" "x \<in> Reals" | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 271 | shows "\<i> * y = x \<longleftrightarrow> x=0 \<and> y=0" | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 272 | using assms | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 273 | unfolding Reals_def | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 274 | apply clarify | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 275 | apply (rule iffI) | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 276 | apply (metis Im_complex_of_real Im_i_times Re_complex_of_real mult_eq_0_iff of_real_0) | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 277 | by simp | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 278 | |
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 279 | lemma real_eq_imaginary_iff [simp]: | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 280 | assumes "y \<in> Reals" "x \<in> Reals" | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 281 | shows "x = \<i> * y \<longleftrightarrow> x=0 \<and> y=0" | 
| 
8d53b3bebab4
Further new material. The simprule status of some exp and ln identities was reverted.
 paulson <lp15@cam.ac.uk> parents: 
65579diff
changeset | 282 | using assms imaginary_eq_real_iff by fastforce | 
| 63569 | 283 | |
| 60758 | 284 | subsection \<open>Vector Norm\<close> | 
| 14323 | 285 | |
| 25712 | 286 | instantiation complex :: real_normed_field | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 287 | begin | 
| 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 288 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 289 | definition "norm z = sqrt ((Re z)\<^sup>2 + (Im z)\<^sup>2)" | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 290 | |
| 44724 | 291 | abbreviation cmod :: "complex \<Rightarrow> real" | 
| 292 | where "cmod \<equiv> norm" | |
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 293 | |
| 63569 | 294 | definition complex_sgn_def: "sgn x = x /\<^sub>R cmod x" | 
| 25571 
c9e39eafc7a0
instantiation target rather than legacy instance
 haftmann parents: 
25502diff
changeset | 295 | |
| 63569 | 296 | definition dist_complex_def: "dist x y = cmod (x - y)" | 
| 31413 
729d90a531e4
introduce class topological_space as a superclass of metric_space
 huffman parents: 
31292diff
changeset | 297 | |
| 62101 | 298 | definition uniformity_complex_def [code del]: | 
| 299 |   "(uniformity :: (complex \<times> complex) filter) = (INF e:{0 <..}. principal {(x, y). dist x y < e})"
 | |
| 300 | ||
| 301 | definition open_complex_def [code del]: | |
| 302 | "open (U :: complex set) \<longleftrightarrow> (\<forall>x\<in>U. eventually (\<lambda>(x', y). x' = x \<longrightarrow> y \<in> U) uniformity)" | |
| 31292 | 303 | |
| 63569 | 304 | instance | 
| 305 | proof | |
| 31492 
5400beeddb55
replace 'topo' with 'open'; add extra type constraint for 'open'
 huffman parents: 
31419diff
changeset | 306 | fix r :: real and x y :: complex and S :: "complex set" | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 307 | 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: 
56541diff
changeset | 308 | by (simp add: norm_complex_def complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 309 | 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: 
56541diff
changeset | 310 | 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: 
23124diff
changeset | 311 | show "norm (scaleR r x) = \<bar>r\<bar> * norm x" | 
| 63569 | 312 | by (simp add: norm_complex_def complex_eq_iff power_mult_distrib distrib_left [symmetric] | 
| 313 | real_sqrt_mult) | |
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 314 | show "norm (x * y) = norm x * norm y" | 
| 63569 | 315 | by (simp add: norm_complex_def complex_eq_iff real_sqrt_mult [symmetric] | 
| 316 | power2_eq_square algebra_simps) | |
| 62101 | 317 | qed (rule complex_sgn_def dist_complex_def open_complex_def uniformity_complex_def)+ | 
| 20557 
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
 huffman parents: 
20556diff
changeset | 318 | |
| 25712 | 319 | end | 
| 320 | ||
| 63569 | 321 | declare uniformity_Abort[where 'a = complex, code] | 
| 62102 
877463945ce9
fix code generation for uniformity: uniformity is a non-computable pure data.
 hoelzl parents: 
62101diff
changeset | 322 | |
| 63569 | 323 | lemma norm_ii [simp]: "norm \<i> = 1" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 324 | by (simp add: norm_complex_def) | 
| 14323 | 325 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 326 | 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: 
56541diff
changeset | 327 | by (simp add: norm_complex_def) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 328 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 329 | 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: 
56541diff
changeset | 330 | by (simp add: norm_mult cmod_unit_one) | 
| 22861 
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
 huffman parents: 
22852diff
changeset | 331 | |
| 
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
 huffman parents: 
22852diff
changeset | 332 | lemma complex_Re_le_cmod: "Re x \<le> cmod x" | 
| 63569 | 333 | unfolding norm_complex_def by (rule real_sqrt_sum_squares_ge1) | 
| 22861 
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
 huffman parents: 
22852diff
changeset | 334 | |
| 44761 | 335 | 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: 
56541diff
changeset | 336 | by (rule order_trans [OF _ norm_ge_zero]) simp | 
| 22861 
8ec47039614e
clean up complex norm proofs, remove redundant lemmas
 huffman parents: 
22852diff
changeset | 337 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 338 | 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: 
56541diff
changeset | 339 | by (rule ord_le_eq_trans [OF norm_triangle_ineq2]) simp | 
| 14323 | 340 | |
| 26117 | 341 | 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: 
56541diff
changeset | 342 | by (simp add: norm_complex_def) | 
| 26117 | 343 | |
| 344 | 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: 
56541diff
changeset | 345 | by (simp add: norm_complex_def) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 346 | |
| 57259 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 347 | 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: 
56889diff
changeset | 348 | apply (subst complex_eq) | 
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 349 | apply (rule order_trans) | 
| 63569 | 350 | apply (rule norm_triangle_ineq) | 
| 57259 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 351 | apply (simp add: norm_mult) | 
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 352 | done | 
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 353 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 354 | 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: 
56541diff
changeset | 355 | by (simp add: norm_complex_def) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 356 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 357 | 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: 
56541diff
changeset | 358 | by (simp add: norm_complex_def) | 
| 44724 | 359 | |
| 63569 | 360 | lemma cmod_power2: "(cmod z)\<^sup>2 = (Re z)\<^sup>2 + (Im z)\<^sup>2" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 361 | by (simp add: norm_complex_def) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 362 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 363 | 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: 
56541diff
changeset | 364 | 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: 
56541diff
changeset | 365 | |
| 63569 | 366 | lemma cmod_Re_le_iff: "Im x = Im y \<Longrightarrow> cmod x \<le> cmod y \<longleftrightarrow> \<bar>Re x\<bar> \<le> \<bar>Re y\<bar>" | 
| 62379 
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
 paulson <lp15@cam.ac.uk> parents: 
62102diff
changeset | 367 | by (metis add.commute add_le_cancel_left norm_complex_def real_sqrt_abs real_sqrt_le_iff) | 
| 
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
 paulson <lp15@cam.ac.uk> parents: 
62102diff
changeset | 368 | |
| 63569 | 369 | lemma cmod_Im_le_iff: "Re x = Re y \<Longrightarrow> cmod x \<le> cmod y \<longleftrightarrow> \<bar>Im x\<bar> \<le> \<bar>Im y\<bar>" | 
| 62379 
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
 paulson <lp15@cam.ac.uk> parents: 
62102diff
changeset | 370 | by (metis add_le_cancel_left norm_complex_def real_sqrt_abs real_sqrt_le_iff) | 
| 
340738057c8c
An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
 paulson <lp15@cam.ac.uk> parents: 
62102diff
changeset | 371 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 372 | lemma Im_eq_0: "\<bar>Re z\<bar> = cmod z \<Longrightarrow> Im z = 0" | 
| 63569 | 373 | by (subst (asm) power_eq_iff_eq_base[symmetric, where n=2]) (auto simp add: norm_complex_def) | 
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 374 | |
| 63569 | 375 | lemma abs_sqrt_wlog: "(\<And>x. x \<ge> 0 \<Longrightarrow> P x (x\<^sup>2)) \<Longrightarrow> P \<bar>x\<bar> (x\<^sup>2)" | 
| 376 | for x::"'a::linordered_idom" | |
| 377 | by (metis abs_ge_zero power2_abs) | |
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 378 | |
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 379 | 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: 
56541diff
changeset | 380 | unfolding norm_complex_def | 
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 381 | apply (rule abs_sqrt_wlog [where x="Re z"]) | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 382 | apply (rule abs_sqrt_wlog [where x="Im z"]) | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 383 | apply (rule power2_le_imp_le) | 
| 63569 | 384 | 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: 
56331diff
changeset | 385 | done | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 386 | |
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 387 | lemma complex_unit_circle: "z \<noteq> 0 \<Longrightarrow> (Re z / cmod z)\<^sup>2 + (Im z / cmod z)\<^sup>2 = 1" | 
| 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 388 | by (simp add: norm_complex_def divide_simps complex_eq_iff) | 
| 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 389 | |
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 390 | |
| 60758 | 391 | text \<open>Properties of complex signum.\<close> | 
| 44843 | 392 | |
| 393 | 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: 
57259diff
changeset | 394 | by (simp add: sgn_div_norm divide_inverse scaleR_conv_of_real mult.commute) | 
| 44843 | 395 | |
| 396 | lemma Re_sgn [simp]: "Re(sgn z) = Re(z)/cmod z" | |
| 397 | by (simp add: complex_sgn_def divide_inverse) | |
| 398 | ||
| 399 | lemma Im_sgn [simp]: "Im(sgn z) = Im(z)/cmod z" | |
| 400 | by (simp add: complex_sgn_def divide_inverse) | |
| 401 | ||
| 14354 
988aa4648597
types complex and hcomplex are now instances of class ringpower:
 paulson parents: 
14353diff
changeset | 402 | |
| 64290 | 403 | subsection \<open>Absolute value\<close> | 
| 404 | ||
| 405 | instantiation complex :: field_abs_sgn | |
| 406 | begin | |
| 407 | ||
| 408 | definition abs_complex :: "complex \<Rightarrow> complex" | |
| 409 | where "abs_complex = of_real \<circ> norm" | |
| 410 | ||
| 411 | instance | |
| 412 | apply standard | |
| 413 | apply (auto simp add: abs_complex_def complex_sgn_def norm_mult) | |
| 414 | apply (auto simp add: scaleR_conv_of_real field_simps) | |
| 415 | done | |
| 416 | ||
| 417 | end | |
| 418 | ||
| 419 | ||
| 60758 | 420 | subsection \<open>Completeness of the Complexes\<close> | 
| 23123 | 421 | |
| 44290 
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
 huffman parents: 
44127diff
changeset | 422 | lemma bounded_linear_Re: "bounded_linear Re" | 
| 63569 | 423 | 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: 
44127diff
changeset | 424 | |
| 
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
 huffman parents: 
44127diff
changeset | 425 | lemma bounded_linear_Im: "bounded_linear Im" | 
| 63569 | 426 | by (rule bounded_linear_intro [where K=1]) (simp_all add: norm_complex_def) | 
| 23123 | 427 | |
| 44290 
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
 huffman parents: 
44127diff
changeset | 428 | lemmas Cauchy_Re = bounded_linear.Cauchy [OF bounded_linear_Re] | 
| 
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
 huffman parents: 
44127diff
changeset | 429 | lemmas Cauchy_Im = bounded_linear.Cauchy [OF bounded_linear_Im] | 
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56369diff
changeset | 430 | lemmas tendsto_Re [tendsto_intros] = bounded_linear.tendsto [OF bounded_linear_Re] | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56369diff
changeset | 431 | lemmas tendsto_Im [tendsto_intros] = bounded_linear.tendsto [OF bounded_linear_Im] | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56369diff
changeset | 432 | lemmas isCont_Re [simp] = bounded_linear.isCont [OF bounded_linear_Re] | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56369diff
changeset | 433 | lemmas isCont_Im [simp] = bounded_linear.isCont [OF bounded_linear_Im] | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56369diff
changeset | 434 | lemmas continuous_Re [simp] = bounded_linear.continuous [OF bounded_linear_Re] | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56369diff
changeset | 435 | lemmas continuous_Im [simp] = bounded_linear.continuous [OF bounded_linear_Im] | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56369diff
changeset | 436 | 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: 
56369diff
changeset | 437 | 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: 
56369diff
changeset | 438 | 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: 
56369diff
changeset | 439 | 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: 
56369diff
changeset | 440 | lemmas sums_Re = bounded_linear.sums [OF bounded_linear_Re] | 
| 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56369diff
changeset | 441 | 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: 
56331diff
changeset | 442 | |
| 36825 | 443 | lemma tendsto_Complex [tendsto_intros]: | 
| 61973 | 444 | "(f \<longlongrightarrow> a) F \<Longrightarrow> (g \<longlongrightarrow> b) F \<Longrightarrow> ((\<lambda>x. Complex (f x) (g x)) \<longlongrightarrow> Complex a b) F" | 
| 65274 
db2de50de28e
Removed [simp] status for Complex_eq. Also tidied some proofs
 paulson <lp15@cam.ac.uk> parents: 
65064diff
changeset | 445 | unfolding Complex_eq by (auto intro!: tendsto_intros) | 
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 446 | |
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 447 | lemma tendsto_complex_iff: | 
| 61973 | 448 | "(f \<longlongrightarrow> x) F \<longleftrightarrow> (((\<lambda>x. Re (f x)) \<longlongrightarrow> Re x) F \<and> ((\<lambda>x. Im (f x)) \<longlongrightarrow> Im x) F)" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 449 | proof safe | 
| 61973 | 450 | assume "((\<lambda>x. Re (f x)) \<longlongrightarrow> Re x) F" "((\<lambda>x. Im (f x)) \<longlongrightarrow> Im x) F" | 
| 451 | from tendsto_Complex[OF this] show "(f \<longlongrightarrow> x) F" | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 452 | unfolding complex.collapse . | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 453 | qed (auto intro: tendsto_intros) | 
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 454 | |
| 63569 | 455 | lemma continuous_complex_iff: | 
| 456 | "continuous F f \<longleftrightarrow> continuous F (\<lambda>x. Re (f x)) \<and> continuous F (\<lambda>x. Im (f x))" | |
| 457 | by (simp only: continuous_def tendsto_complex_iff) | |
| 57259 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 458 | |
| 64773 
223b2ebdda79
Many new theorems, and more tidying
 paulson <lp15@cam.ac.uk> parents: 
64290diff
changeset | 459 | lemma continuous_on_of_real_o_iff [simp]: | 
| 
223b2ebdda79
Many new theorems, and more tidying
 paulson <lp15@cam.ac.uk> parents: 
64290diff
changeset | 460 | "continuous_on S (\<lambda>x. complex_of_real (g x)) = continuous_on S g" | 
| 
223b2ebdda79
Many new theorems, and more tidying
 paulson <lp15@cam.ac.uk> parents: 
64290diff
changeset | 461 | using continuous_on_Re continuous_on_of_real by fastforce | 
| 
223b2ebdda79
Many new theorems, and more tidying
 paulson <lp15@cam.ac.uk> parents: 
64290diff
changeset | 462 | |
| 
223b2ebdda79
Many new theorems, and more tidying
 paulson <lp15@cam.ac.uk> parents: 
64290diff
changeset | 463 | lemma continuous_on_of_real_id [simp]: | 
| 
223b2ebdda79
Many new theorems, and more tidying
 paulson <lp15@cam.ac.uk> parents: 
64290diff
changeset | 464 | "continuous_on S (of_real :: real \<Rightarrow> 'a::real_normed_algebra_1)" | 
| 
223b2ebdda79
Many new theorems, and more tidying
 paulson <lp15@cam.ac.uk> parents: 
64290diff
changeset | 465 | by (rule continuous_on_of_real [OF continuous_on_id]) | 
| 
223b2ebdda79
Many new theorems, and more tidying
 paulson <lp15@cam.ac.uk> parents: 
64290diff
changeset | 466 | |
| 57259 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 467 | 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: 
56889diff
changeset | 468 | ((\<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: 
56889diff
changeset | 469 | ((\<lambda>x. Im (f x)) has_field_derivative (Im x)) F" | 
| 63569 | 470 | by (simp add: has_vector_derivative_def has_field_derivative_def has_derivative_def | 
| 471 | tendsto_complex_iff field_simps bounded_linear_scaleR_left bounded_linear_mult_right) | |
| 57259 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 472 | |
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 473 | lemma has_field_derivative_Re[derivative_intros]: | 
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 474 | "(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: 
56889diff
changeset | 475 | unfolding has_vector_derivative_complex_iff by safe | 
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 476 | |
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 477 | lemma has_field_derivative_Im[derivative_intros]: | 
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 478 | "(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: 
56889diff
changeset | 479 | unfolding has_vector_derivative_complex_iff by safe | 
| 
3a448982a74a
add more derivative and continuity rules for complex-values functions
 hoelzl parents: 
56889diff
changeset | 480 | |
| 23123 | 481 | instance complex :: banach | 
| 482 | proof | |
| 483 | fix X :: "nat \<Rightarrow> complex" | |
| 484 | assume X: "Cauchy X" | |
| 63569 | 485 | then have "(\<lambda>n. Complex (Re (X n)) (Im (X n))) \<longlonglongrightarrow> | 
| 486 | Complex (lim (\<lambda>n. Re (X n))) (lim (\<lambda>n. Im (X n)))" | |
| 487 | by (intro tendsto_Complex convergent_LIMSEQ_iff[THEN iffD1] | |
| 488 | Cauchy_convergent_iff[THEN iffD1] Cauchy_Re Cauchy_Im) | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 489 | then show "convergent X" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 490 | unfolding complex.collapse by (rule convergentI) | 
| 23123 | 491 | qed | 
| 492 | ||
| 63569 | 493 | declare DERIV_power[where 'a=complex, unfolded of_nat_def[symmetric], derivative_intros] | 
| 494 | ||
| 56238 
5d147e1e18d1
a few new lemmas and generalisations of old ones
 paulson <lp15@cam.ac.uk> parents: 
56217diff
changeset | 495 | |
| 60758 | 496 | subsection \<open>Complex Conjugation\<close> | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 497 | |
| 63569 | 498 | primcorec cnj :: "complex \<Rightarrow> complex" | 
| 499 | where | |
| 500 | "Re (cnj z) = Re z" | |
| 501 | | "Im (cnj z) = - Im z" | |
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 502 | |
| 63569 | 503 | lemma complex_cnj_cancel_iff [simp]: "cnj x = cnj y \<longleftrightarrow> x = y" | 
| 44724 | 504 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 505 | |
| 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 506 | 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: 
56541diff
changeset | 507 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 508 | |
| 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 509 | lemma complex_cnj_zero [simp]: "cnj 0 = 0" | 
| 44724 | 510 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 511 | |
| 63569 | 512 | lemma complex_cnj_zero_iff [iff]: "cnj z = 0 \<longleftrightarrow> z = 0" | 
| 44724 | 513 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 514 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 515 | lemma complex_cnj_add [simp]: "cnj (x + y) = cnj x + cnj y" | 
| 44724 | 516 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 517 | |
| 64267 | 518 | lemma cnj_sum [simp]: "cnj (sum f s) = (\<Sum>x\<in>s. cnj (f x))" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 519 | by (induct s rule: infinite_finite_induct) auto | 
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 520 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 521 | lemma complex_cnj_diff [simp]: "cnj (x - y) = cnj x - cnj y" | 
| 44724 | 522 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 523 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 524 | lemma complex_cnj_minus [simp]: "cnj (- x) = - cnj x" | 
| 44724 | 525 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 526 | |
| 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 527 | lemma complex_cnj_one [simp]: "cnj 1 = 1" | 
| 44724 | 528 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 529 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 530 | lemma complex_cnj_mult [simp]: "cnj (x * y) = cnj x * cnj y" | 
| 44724 | 531 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 532 | |
| 64272 | 533 | lemma cnj_prod [simp]: "cnj (prod f s) = (\<Prod>x\<in>s. cnj (f x))" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 534 | by (induct s rule: infinite_finite_induct) auto | 
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 535 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 536 | 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: 
56541diff
changeset | 537 | by (simp add: complex_eq_iff) | 
| 14323 | 538 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 539 | 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: 
56541diff
changeset | 540 | by (simp add: divide_complex_def) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 541 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 542 | 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: 
56541diff
changeset | 543 | by (induct n) simp_all | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 544 | |
| 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 545 | lemma complex_cnj_of_nat [simp]: "cnj (of_nat n) = of_nat n" | 
| 44724 | 546 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 547 | |
| 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 548 | lemma complex_cnj_of_int [simp]: "cnj (of_int z) = of_int z" | 
| 44724 | 549 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 550 | |
| 47108 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
44902diff
changeset | 551 | lemma complex_cnj_numeral [simp]: "cnj (numeral w) = numeral w" | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
44902diff
changeset | 552 | by (simp add: complex_eq_iff) | 
| 
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
 huffman parents: 
44902diff
changeset | 553 | |
| 54489 
03ff4d1e6784
eliminiated neg_numeral in favour of - (numeral _)
 haftmann parents: 
54230diff
changeset | 554 | lemma complex_cnj_neg_numeral [simp]: "cnj (- numeral w) = - numeral w" | 
| 44724 | 555 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 556 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 557 | lemma complex_cnj_scaleR [simp]: "cnj (scaleR r x) = scaleR r (cnj x)" | 
| 44724 | 558 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 559 | |
| 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 560 | 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: 
56541diff
changeset | 561 | by (simp add: norm_complex_def) | 
| 14323 | 562 | |
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 563 | lemma complex_cnj_complex_of_real [simp]: "cnj (of_real x) = of_real x" | 
| 44724 | 564 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 565 | |
| 63569 | 566 | lemma complex_cnj_i [simp]: "cnj \<i> = - \<i>" | 
| 44724 | 567 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 568 | |
| 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 569 | lemma complex_add_cnj: "z + cnj z = complex_of_real (2 * Re z)" | 
| 44724 | 570 | by (simp add: complex_eq_iff) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 571 | |
| 63569 | 572 | lemma complex_diff_cnj: "z - cnj z = complex_of_real (2 * Im z) * \<i>" | 
| 44724 | 573 | by (simp add: complex_eq_iff) | 
| 14354 
988aa4648597
types complex and hcomplex are now instances of class ringpower:
 paulson parents: 
14353diff
changeset | 574 | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51002diff
changeset | 575 | lemma complex_mult_cnj: "z * cnj z = complex_of_real ((Re z)\<^sup>2 + (Im z)\<^sup>2)" | 
| 44724 | 576 | by (simp add: complex_eq_iff power2_eq_square) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 577 | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51002diff
changeset | 578 | lemma complex_mod_mult_cnj: "cmod (z * cnj z) = (cmod z)\<^sup>2" | 
| 44724 | 579 | by (simp add: norm_mult power2_eq_square) | 
| 23125 
6f7b5b96241f
cleaned up proofs; reorganized sections; removed redundant lemmas
 huffman parents: 
23124diff
changeset | 580 | |
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 581 | 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: 
56541diff
changeset | 582 | by (simp add: norm_complex_def power2_eq_square) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 583 | |
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 584 | lemma complex_In_mult_cnj_zero [simp]: "Im (z * cnj z) = 0" | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 585 | by simp | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 586 | |
| 61531 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 587 | lemma complex_cnj_fact [simp]: "cnj (fact n) = fact n" | 
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 588 | by (subst of_nat_fact [symmetric], subst complex_cnj_of_nat) simp | 
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 589 | |
| 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 590 | lemma complex_cnj_pochhammer [simp]: "cnj (pochhammer z n) = pochhammer (cnj z) n" | 
| 63569 | 591 | by (induct n arbitrary: z) (simp_all add: pochhammer_rec) | 
| 61531 
ab2e862263e7
Rounding function, uniform limits, cotangent, binomial identities
 eberlm parents: 
61104diff
changeset | 592 | |
| 44290 
23a5137162ea
remove more bounded_linear locale interpretations (cf. f0de18b62d63)
 huffman parents: 
44127diff
changeset | 593 | lemma bounded_linear_cnj: "bounded_linear cnj" | 
| 63569 | 594 | using complex_cnj_add complex_cnj_scaleR by (rule bounded_linear_intro [where K=1]) simp | 
| 14354 
988aa4648597
types complex and hcomplex are now instances of class ringpower:
 paulson parents: 
14353diff
changeset | 595 | |
| 56381 
0556204bc230
merged DERIV_intros, has_derivative_intros into derivative_intros
 hoelzl parents: 
56369diff
changeset | 596 | lemmas tendsto_cnj [tendsto_intros] = bounded_linear.tendsto [OF bounded_linear_cnj] | 
| 63569 | 597 | and isCont_cnj [simp] = bounded_linear.isCont [OF bounded_linear_cnj] | 
| 598 | and continuous_cnj [simp, continuous_intros] = bounded_linear.continuous [OF bounded_linear_cnj] | |
| 599 | and continuous_on_cnj [simp, continuous_intros] = bounded_linear.continuous_on [OF bounded_linear_cnj] | |
| 600 | and 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: 
44127diff
changeset | 601 | |
| 61973 | 602 | lemma lim_cnj: "((\<lambda>x. cnj(f x)) \<longlongrightarrow> cnj l) F \<longleftrightarrow> (f \<longlongrightarrow> l) F" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 603 | 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: 
56331diff
changeset | 604 | |
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 605 | lemma sums_cnj: "((\<lambda>x. cnj(f x)) sums cnj l) \<longleftrightarrow> (f sums l)" | 
| 64267 | 606 | by (simp add: sums_def lim_cnj cnj_sum [symmetric] del: cnj_sum) | 
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 607 | |
| 14354 
988aa4648597
types complex and hcomplex are now instances of class ringpower:
 paulson parents: 
14353diff
changeset | 608 | |
| 63569 | 609 | subsection \<open>Basic Lemmas\<close> | 
| 55734 | 610 | |
| 611 | 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: 
56541diff
changeset | 612 | by (metis zero_complex.sel complex_eqI sum_power2_eq_zero_iff) | 
| 55734 | 613 | |
| 614 | 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: 
56541diff
changeset | 615 | by (metis complex_eq_0 less_numeral_extra(3) sum_power2_gt_zero_iff) | 
| 55734 | 616 | |
| 617 | lemma complex_norm_square: "of_real ((norm z)\<^sup>2) = z * cnj z" | |
| 63569 | 618 | by (cases z) | 
| 619 | (auto simp: complex_eq_iff norm_complex_def power2_eq_square[symmetric] of_real_power[symmetric] | |
| 620 | simp del: of_real_power) | |
| 55734 | 621 | |
| 63569 | 622 | lemma complex_div_cnj: "a / b = (a * cnj b) / (norm b)\<^sup>2" | 
| 61104 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 623 | using complex_norm_square by auto | 
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 624 | |
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 625 | lemma Re_complex_div_eq_0: "Re (a / b) = 0 \<longleftrightarrow> Re (a * cnj b) = 0" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 626 | by (auto simp add: Re_divide) | 
| 59613 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 627 | |
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 628 | lemma Im_complex_div_eq_0: "Im (a / b) = 0 \<longleftrightarrow> Im (a * cnj b) = 0" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 629 | by (auto simp add: Im_divide) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 630 | |
| 63569 | 631 | lemma complex_div_gt_0: "(Re (a / b) > 0 \<longleftrightarrow> Re (a * cnj b) > 0) \<and> (Im (a / b) > 0 \<longleftrightarrow> Im (a * cnj b) > 0)" | 
| 632 | proof (cases "b = 0") | |
| 633 | case True | |
| 634 | then show ?thesis by auto | |
| 55734 | 635 | next | 
| 63569 | 636 | case False | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 637 | 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: 
56541diff
changeset | 638 | 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: 
56541diff
changeset | 639 | then show ?thesis | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 640 | by (simp add: Re_divide Im_divide zero_less_divide_iff) | 
| 55734 | 641 | qed | 
| 642 | ||
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 643 | lemma Re_complex_div_gt_0: "Re (a / b) > 0 \<longleftrightarrow> Re (a * cnj b) > 0" | 
| 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 644 | and Im_complex_div_gt_0: "Im (a / b) > 0 \<longleftrightarrow> Im (a * cnj b) > 0" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 645 | using complex_div_gt_0 by auto | 
| 55734 | 646 | |
| 63569 | 647 | lemma Re_complex_div_ge_0: "Re (a / b) \<ge> 0 \<longleftrightarrow> Re (a * cnj b) \<ge> 0" | 
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 648 | by (metis le_less Re_complex_div_eq_0 Re_complex_div_gt_0) | 
| 55734 | 649 | |
| 63569 | 650 | lemma Im_complex_div_ge_0: "Im (a / b) \<ge> 0 \<longleftrightarrow> Im (a * cnj b) \<ge> 0" | 
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 651 | by (metis Im_complex_div_eq_0 Im_complex_div_gt_0 le_less) | 
| 55734 | 652 | |
| 63569 | 653 | lemma Re_complex_div_lt_0: "Re (a / b) < 0 \<longleftrightarrow> Re (a * cnj b) < 0" | 
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 654 | by (metis less_asym neq_iff Re_complex_div_eq_0 Re_complex_div_gt_0) | 
| 55734 | 655 | |
| 63569 | 656 | lemma Im_complex_div_lt_0: "Im (a / b) < 0 \<longleftrightarrow> Im (a * cnj b) < 0" | 
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 657 | by (metis Im_complex_div_eq_0 Im_complex_div_gt_0 less_asym neq_iff) | 
| 55734 | 658 | |
| 63569 | 659 | lemma Re_complex_div_le_0: "Re (a / b) \<le> 0 \<longleftrightarrow> Re (a * cnj b) \<le> 0" | 
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 660 | by (metis not_le Re_complex_div_gt_0) | 
| 55734 | 661 | |
| 63569 | 662 | lemma Im_complex_div_le_0: "Im (a / b) \<le> 0 \<longleftrightarrow> Im (a * cnj b) \<le> 0" | 
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 663 | by (metis Im_complex_div_gt_0 not_le) | 
| 55734 | 664 | |
| 61104 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 665 | lemma Re_divide_of_real [simp]: "Re (z / of_real r) = Re z / r" | 
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 666 | by (simp add: Re_divide power2_eq_square) | 
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 667 | |
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 668 | lemma Im_divide_of_real [simp]: "Im (z / of_real r) = Im z / r" | 
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 669 | by (simp add: Im_divide power2_eq_square) | 
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 670 | |
| 65578 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 paulson <lp15@cam.ac.uk> parents: 
65274diff
changeset | 671 | lemma Re_divide_Reals [simp]: "r \<in> \<real> \<Longrightarrow> Re (z / r) = Re z / Re r" | 
| 61104 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 672 | by (metis Re_divide_of_real of_real_Re) | 
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 673 | |
| 65578 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 paulson <lp15@cam.ac.uk> parents: 
65274diff
changeset | 674 | lemma Im_divide_Reals [simp]: "r \<in> \<real> \<Longrightarrow> Im (z / r) = Im z / Re r" | 
| 61104 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 675 | by (metis Im_divide_of_real of_real_Re) | 
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 676 | |
| 64267 | 677 | lemma Re_sum[simp]: "Re (sum f s) = (\<Sum>x\<in>s. Re (f x))" | 
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 678 | by (induct s rule: infinite_finite_induct) auto | 
| 55734 | 679 | |
| 64267 | 680 | lemma Im_sum[simp]: "Im (sum f s) = (\<Sum>x\<in>s. Im(f x))" | 
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 681 | by (induct s rule: infinite_finite_induct) auto | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 682 | |
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 683 | 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)" | 
| 64267 | 684 | unfolding sums_def tendsto_complex_iff Im_sum Re_sum .. | 
| 59613 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 685 | |
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 686 | 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: 
56541diff
changeset | 687 | 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: 
56331diff
changeset | 688 | |
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 689 | 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: 
56331diff
changeset | 690 | unfolding summable_complex_iff by simp | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 691 | |
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 692 | 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: 
56331diff
changeset | 693 | unfolding summable_complex_iff by blast | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 694 | |
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 695 | 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: 
56331diff
changeset | 696 | unfolding summable_complex_iff by blast | 
| 56217 
dc429a5b13c4
Some rationalisation of basic lemmas
 paulson <lp15@cam.ac.uk> parents: 
55759diff
changeset | 697 | |
| 61104 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 698 | lemma complex_is_Nat_iff: "z \<in> \<nat> \<longleftrightarrow> Im z = 0 \<and> (\<exists>i. Re z = of_nat i)" | 
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 699 | by (auto simp: Nats_def complex_eq_iff) | 
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 700 | |
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 701 | lemma complex_is_Int_iff: "z \<in> \<int> \<longleftrightarrow> Im z = 0 \<and> (\<exists>i. Re z = of_int i)" | 
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 702 | by (auto simp: Ints_def complex_eq_iff) | 
| 
3c2d4636cebc
new lemmas about vector_derivative, complex numbers, paths, etc.
 paulson parents: 
61076diff
changeset | 703 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 704 | 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: 
56541diff
changeset | 705 | by (auto simp: Reals_def complex_eq_iff) | 
| 55734 | 706 | |
| 707 | 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: 
56541diff
changeset | 708 | by (auto simp: complex_is_Real_iff complex_eq_iff) | 
| 55734 | 709 | |
| 61944 | 710 | lemma in_Reals_norm: "z \<in> \<real> \<Longrightarrow> norm z = \<bar>Re z\<bar>" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 711 | 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: 
56331diff
changeset | 712 | |
| 65578 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 paulson <lp15@cam.ac.uk> parents: 
65274diff
changeset | 713 | lemma Re_Reals_divide: "r \<in> \<real> \<Longrightarrow> Re (r / z) = Re r * Re z / (norm z)\<^sup>2" | 
| 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 paulson <lp15@cam.ac.uk> parents: 
65274diff
changeset | 714 | by (simp add: Re_divide complex_is_Real_iff cmod_power2) | 
| 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 paulson <lp15@cam.ac.uk> parents: 
65274diff
changeset | 715 | |
| 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 paulson <lp15@cam.ac.uk> parents: 
65274diff
changeset | 716 | lemma Im_Reals_divide: "r \<in> \<real> \<Longrightarrow> Im (r / z) = -Re r * Im z / (norm z)\<^sup>2" | 
| 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 paulson <lp15@cam.ac.uk> parents: 
65274diff
changeset | 717 | by (simp add: Im_divide complex_is_Real_iff cmod_power2) | 
| 
e4997c181cce
New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
 paulson <lp15@cam.ac.uk> parents: 
65274diff
changeset | 718 | |
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 719 | lemma series_comparison_complex: | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 720 | fixes f:: "nat \<Rightarrow> 'a::banach" | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 721 | assumes sg: "summable g" | 
| 63569 | 722 | and "\<And>n. g n \<in> \<real>" "\<And>n. Re (g n) \<ge> 0" | 
| 723 | and fg: "\<And>n. n \<ge> N \<Longrightarrow> norm(f n) \<le> norm(g n)" | |
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 724 | shows "summable f" | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 725 | proof - | 
| 63569 | 726 | have g: "\<And>n. cmod (g n) = Re (g n)" | 
| 727 | using assms by (metis abs_of_nonneg in_Reals_norm) | |
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 728 | show ?thesis | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 729 | 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: 
56331diff
changeset | 730 | using sg | 
| 63569 | 731 | apply (auto simp: summable_def) | 
| 732 | apply (rule_tac x = "Re s" in exI) | |
| 733 | apply (auto simp: g sums_Re) | |
| 56369 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 734 | apply (metis fg g) | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 735 | done | 
| 
2704ca85be98
moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
 hoelzl parents: 
56331diff
changeset | 736 | qed | 
| 55734 | 737 | |
| 63569 | 738 | |
| 739 | subsection \<open>Polar Form for Complex Numbers\<close> | |
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59741diff
changeset | 740 | |
| 62620 
d21dab28b3f9
New results about paths, segments, etc. The notion of simply_connected.
 paulson <lp15@cam.ac.uk> parents: 
62379diff
changeset | 741 | lemma complex_unimodular_polar: | 
| 63569 | 742 | assumes "norm z = 1" | 
| 743 | obtains t where "0 \<le> t" "t < 2 * pi" "z = Complex (cos t) (sin t)" | |
| 744 | by (metis cmod_power2 one_power2 complex_surj sincos_total_2pi [of "Re z" "Im z"] assms) | |
| 745 | ||
| 14323 | 746 | |
| 60758 | 747 | subsubsection \<open>$\cos \theta + i \sin \theta$\<close> | 
| 20557 
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
 huffman parents: 
20556diff
changeset | 748 | |
| 63569 | 749 | primcorec cis :: "real \<Rightarrow> complex" | 
| 750 | where | |
| 751 | "Re (cis a) = cos a" | |
| 752 | | "Im (cis a) = sin a" | |
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 753 | |
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 754 | 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: 
56541diff
changeset | 755 | by (simp add: complex_eq_iff) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 756 | |
| 44828 | 757 | 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: 
56541diff
changeset | 758 | by (simp add: norm_complex_def) | 
| 44828 | 759 | |
| 760 | lemma sgn_cis [simp]: "sgn (cis a) = cis a" | |
| 761 | by (simp add: sgn_div_norm) | |
| 762 | ||
| 763 | lemma cis_neq_zero [simp]: "cis a \<noteq> 0" | |
| 764 | by (metis norm_cis norm_zero zero_neq_one) | |
| 765 | ||
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 766 | 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: 
56541diff
changeset | 767 | by (simp add: complex_eq_iff cos_add sin_add) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 768 | |
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 769 | lemma DeMoivre: "(cis a) ^ n = cis (real n * a)" | 
| 63569 | 770 | by (induct n) (simp_all add: algebra_simps cis_mult) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 771 | |
| 63569 | 772 | 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: 
56541diff
changeset | 773 | by (simp add: complex_eq_iff) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 774 | |
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 775 | 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: 
56541diff
changeset | 776 | by (simp add: divide_complex_def cis_mult) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 777 | |
| 63569 | 778 | lemma cos_n_Re_cis_pow_n: "cos (real n * a) = Re (cis a ^ n)" | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 779 | by (auto simp add: DeMoivre) | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 780 | |
| 63569 | 781 | lemma sin_n_Im_cis_pow_n: "sin (real n * a) = Im (cis a ^ n)" | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 782 | by (auto simp add: DeMoivre) | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 783 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 784 | lemma cis_pi: "cis pi = -1" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 785 | by (simp add: complex_eq_iff) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 786 | |
| 63569 | 787 | |
| 60758 | 788 | subsubsection \<open>$r(\cos \theta + i \sin \theta)$\<close> | 
| 44715 | 789 | |
| 63569 | 790 | definition rcis :: "real \<Rightarrow> real \<Rightarrow> complex" | 
| 791 | where "rcis r a = complex_of_real r * cis a" | |
| 20557 
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
 huffman parents: 
20556diff
changeset | 792 | |
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 793 | lemma Re_rcis [simp]: "Re(rcis r a) = r * cos a" | 
| 44828 | 794 | by (simp add: rcis_def) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 795 | |
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 796 | lemma Im_rcis [simp]: "Im(rcis r a) = r * sin a" | 
| 44828 | 797 | by (simp add: rcis_def) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 798 | |
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 799 | lemma rcis_Ex: "\<exists>r a. z = rcis r a" | 
| 44828 | 800 | by (simp add: complex_eq_iff polar_Ex) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 801 | |
| 61944 | 802 | lemma complex_mod_rcis [simp]: "cmod (rcis r a) = \<bar>r\<bar>" | 
| 44828 | 803 | by (simp add: rcis_def norm_mult) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 804 | |
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 805 | lemma cis_rcis_eq: "cis a = rcis 1 a" | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 806 | by (simp add: rcis_def) | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 807 | |
| 63569 | 808 | lemma rcis_mult: "rcis r1 a * rcis r2 b = rcis (r1 * r2) (a + b)" | 
| 44828 | 809 | by (simp add: rcis_def cis_mult) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 810 | |
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 811 | lemma rcis_zero_mod [simp]: "rcis 0 a = 0" | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 812 | by (simp add: rcis_def) | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 813 | |
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 814 | lemma rcis_zero_arg [simp]: "rcis r 0 = complex_of_real r" | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 815 | by (simp add: rcis_def) | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 816 | |
| 44828 | 817 | lemma rcis_eq_zero_iff [simp]: "rcis r a = 0 \<longleftrightarrow> r = 0" | 
| 818 | by (simp add: rcis_def) | |
| 819 | ||
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 820 | lemma DeMoivre2: "(rcis r a) ^ n = rcis (r ^ n) (real n * a)" | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 821 | by (simp add: rcis_def power_mult_distrib DeMoivre) | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 822 | |
| 63569 | 823 | lemma rcis_inverse: "inverse(rcis r a) = rcis (1 / r) (- a)" | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 824 | by (simp add: divide_inverse rcis_def) | 
| 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 825 | |
| 63569 | 826 | lemma rcis_divide: "rcis r1 a / rcis r2 b = rcis (r1 / r2) (a - b)" | 
| 44828 | 827 | by (simp add: rcis_def cis_divide [symmetric]) | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 828 | |
| 63569 | 829 | |
| 60758 | 830 | subsubsection \<open>Complex exponential\<close> | 
| 44827 
4d1384a1fc82
Complex.thy: move theorems into appropriate subsections
 huffman parents: 
44825diff
changeset | 831 | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 832 | 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: 
56541diff
changeset | 833 | proof - | 
| 63569 | 834 | have "(\<i> * complex_of_real b) ^ n /\<^sub>R fact n = | 
| 835 | of_real (cos_coeff n * b^n) + \<i> * of_real (sin_coeff n * b^n)" | |
| 836 | for n :: nat | |
| 837 | proof - | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 838 | 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: 
56541diff
changeset | 839 | by (induct n) | 
| 63569 | 840 | (simp_all add: sin_coeff_Suc cos_coeff_Suc complex_eq_iff Re_divide Im_divide field_simps | 
| 841 | power2_eq_square add_nonneg_eq_0_iff) | |
| 842 | then show ?thesis | |
| 843 | by (simp add: field_simps) | |
| 844 | qed | |
| 845 | then show ?thesis | |
| 846 | using sin_converges [of b] cos_converges [of b] | |
| 65274 
db2de50de28e
Removed [simp] status for Complex_eq. Also tidied some proofs
 paulson <lp15@cam.ac.uk> parents: 
65064diff
changeset | 847 | by (auto simp add: Complex_eq cis.ctr exp_def simp del: of_real_mult | 
| 63569 | 848 | intro!: sums_unique sums_add sums_mult sums_of_real) | 
| 44291 
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
 huffman parents: 
44290diff
changeset | 849 | qed | 
| 
dbd9965745fd
define complex exponential 'expi' as abbreviation for 'exp'
 huffman parents: 
44290diff
changeset | 850 | |
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61649diff
changeset | 851 | lemma exp_eq_polar: "exp z = exp (Re z) * cis (Im z)" | 
| 63569 | 852 | unfolding cis_conv_exp exp_of_real [symmetric] mult_exp_exp | 
| 65274 
db2de50de28e
Removed [simp] status for Complex_eq. Also tidied some proofs
 paulson <lp15@cam.ac.uk> parents: 
65064diff
changeset | 853 | by (cases z) (simp add: Complex_eq) | 
| 20557 
81dd3679f92c
complex_of_real abbreviates of_real::real=>complex;
 huffman parents: 
20556diff
changeset | 854 | |
| 44828 | 855 | lemma Re_exp: "Re (exp z) = exp (Re z) * cos (Im z)" | 
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61649diff
changeset | 856 | unfolding exp_eq_polar by simp | 
| 44828 | 857 | |
| 858 | lemma Im_exp: "Im (exp z) = exp (Re z) * sin (Im z)" | |
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61649diff
changeset | 859 | unfolding exp_eq_polar by simp | 
| 44828 | 860 | |
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59741diff
changeset | 861 | lemma norm_cos_sin [simp]: "norm (Complex (cos t) (sin t)) = 1" | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59741diff
changeset | 862 | by (simp add: norm_complex_def) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59741diff
changeset | 863 | |
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59741diff
changeset | 864 | lemma norm_exp_eq_Re [simp]: "norm (exp z) = exp (Re z)" | 
| 65274 
db2de50de28e
Removed [simp] status for Complex_eq. Also tidied some proofs
 paulson <lp15@cam.ac.uk> parents: 
65064diff
changeset | 865 | by (simp add: cis.code cmod_complex_polar exp_eq_polar Complex_eq) | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59741diff
changeset | 866 | |
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61649diff
changeset | 867 | lemma complex_exp_exists: "\<exists>a r. z = complex_of_real r * exp a" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59741diff
changeset | 868 | apply (insert rcis_Ex [of z]) | 
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61649diff
changeset | 869 | apply (auto simp add: exp_eq_polar rcis_def mult.assoc [symmetric]) | 
| 63569 | 870 | apply (rule_tac x = "\<i> * complex_of_real a" in exI) | 
| 871 | apply auto | |
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59741diff
changeset | 872 | done | 
| 14323 | 873 | |
| 63569 | 874 | lemma exp_pi_i [simp]: "exp (of_real pi * \<i>) = -1" | 
| 61848 | 875 | by (metis cis_conv_exp cis_pi mult.commute) | 
| 876 | ||
| 63569 | 877 | lemma exp_pi_i' [simp]: "exp (\<i> * of_real pi) = -1" | 
| 63114 
27afe7af7379
Lots of new material for multivariate analysis
 paulson <lp15@cam.ac.uk> parents: 
63040diff
changeset | 878 | using cis_conv_exp cis_pi by auto | 
| 
27afe7af7379
Lots of new material for multivariate analysis
 paulson <lp15@cam.ac.uk> parents: 
63040diff
changeset | 879 | |
| 63569 | 880 | lemma exp_two_pi_i [simp]: "exp (2 * of_real pi * \<i>) = 1" | 
| 61762 
d50b993b4fb9
Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
 paulson <lp15@cam.ac.uk> parents: 
61649diff
changeset | 881 | by (simp add: exp_eq_polar complex_eq_iff) | 
| 14387 
e96d5c42c4b0
Polymorphic treatment of binary arithmetic using axclasses
 paulson parents: 
14377diff
changeset | 882 | |
| 63114 
27afe7af7379
Lots of new material for multivariate analysis
 paulson <lp15@cam.ac.uk> parents: 
63040diff
changeset | 883 | lemma exp_two_pi_i' [simp]: "exp (\<i> * (of_real pi * 2)) = 1" | 
| 
27afe7af7379
Lots of new material for multivariate analysis
 paulson <lp15@cam.ac.uk> parents: 
63040diff
changeset | 884 | by (metis exp_two_pi_i mult.commute) | 
| 
27afe7af7379
Lots of new material for multivariate analysis
 paulson <lp15@cam.ac.uk> parents: 
63040diff
changeset | 885 | |
| 63569 | 886 | |
| 60758 | 887 | subsubsection \<open>Complex argument\<close> | 
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 888 | |
| 63569 | 889 | definition arg :: "complex \<Rightarrow> real" | 
| 890 | where "arg z = (if z = 0 then 0 else (SOME a. sgn z = cis a \<and> - pi < a \<and> a \<le> pi))" | |
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 891 | |
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 892 | lemma arg_zero: "arg 0 = 0" | 
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 893 | by (simp add: arg_def) | 
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 894 | |
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 895 | lemma arg_unique: | 
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 896 | 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: 
44843diff
changeset | 897 | shows "arg z = x" | 
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 898 | proof - | 
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 899 | from assms have "z \<noteq> 0" by auto | 
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 900 | 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: 
44843diff
changeset | 901 | proof | 
| 63040 | 902 | fix a | 
| 903 | define d where "d = a - x" | |
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 904 | 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: 
44843diff
changeset | 905 | from a assms have "- (2*pi) < d \<and> d < 2*pi" | 
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 906 | unfolding d_def by simp | 
| 63569 | 907 | moreover | 
| 908 | from a assms have "cos a = cos x" and "sin a = sin x" | |
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 909 | by (simp_all add: complex_eq_iff) | 
| 63569 | 910 | then have cos: "cos d = 1" | 
| 911 | by (simp add: d_def cos_diff) | |
| 912 | moreover from cos have "sin d = 0" | |
| 913 | by (rule cos_one_sin_zero) | |
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 914 | ultimately have "d = 0" | 
| 63569 | 915 | by (auto simp: sin_zero_iff elim!: evenE dest!: less_2_cases) | 
| 916 | then show "a = x" | |
| 917 | by (simp add: d_def) | |
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 918 | qed (simp add: assms del: Re_sgn Im_sgn) | 
| 60758 | 919 | with \<open>z \<noteq> 0\<close> show "arg z = x" | 
| 63569 | 920 | by (simp add: arg_def) | 
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 921 | qed | 
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 922 | |
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 923 | lemma arg_correct: | 
| 63569 | 924 | assumes "z \<noteq> 0" | 
| 925 | shows "sgn z = cis (arg z) \<and> -pi < arg z \<and> arg z \<le> pi" | |
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 926 | proof (simp add: arg_def assms, rule someI_ex) | 
| 63569 | 927 | obtain r a where z: "z = rcis r a" | 
| 928 | using rcis_Ex by fast | |
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 929 | with assms have "r \<noteq> 0" by auto | 
| 63040 | 930 | define b where "b = (if 0 < r then a else a + pi)" | 
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 931 | have b: "sgn z = cis b" | 
| 63569 | 932 | using \<open>r \<noteq> 0\<close> by (simp add: z b_def rcis_def of_real_def sgn_scaleR sgn_if complex_eq_iff) | 
| 933 | have cis_2pi_nat: "cis (2 * pi * real_of_nat n) = 1" for n | |
| 934 | by (induct n) (simp_all add: distrib_left cis_mult [symmetric] complex_eq_iff) | |
| 935 | have cis_2pi_int: "cis (2 * pi * real_of_int x) = 1" for x | |
| 936 | by (cases x rule: int_diff_cases) | |
| 937 | (simp add: right_diff_distrib cis_divide [symmetric] cis_2pi_nat) | |
| 63040 | 938 | define c where "c = b - 2 * pi * of_int \<lceil>(b - pi) / (2 * pi)\<rceil>" | 
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 939 | have "sgn z = cis c" | 
| 63569 | 940 | by (simp add: b c_def cis_divide [symmetric] cis_2pi_int) | 
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 941 | moreover have "- pi < c \<and> c \<le> pi" | 
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 942 | using ceiling_correct [of "(b - pi) / (2*pi)"] | 
| 61649 
268d88ec9087
Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
 paulson <lp15@cam.ac.uk> parents: 
61609diff
changeset | 943 | by (simp add: c_def less_divide_eq divide_le_eq algebra_simps del: le_of_int_ceiling) | 
| 63569 | 944 | ultimately show "\<exists>a. sgn z = cis a \<and> -pi < a \<and> a \<le> pi" | 
| 945 | by fast | |
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 946 | qed | 
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 947 | |
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 948 | 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: 
56541diff
changeset | 949 | 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: 
44843diff
changeset | 950 | |
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 951 | 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: 
44843diff
changeset | 952 | by (simp add: arg_correct) | 
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 953 | |
| 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 954 | 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: 
56541diff
changeset | 955 | 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: 
56541diff
changeset | 956 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 957 | 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: 
56541diff
changeset | 958 | 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: 
56541diff
changeset | 959 | |
| 63569 | 960 | |
| 60758 | 961 | subsection \<open>Square root of complex numbers\<close> | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 962 | |
| 63569 | 963 | primcorec csqrt :: "complex \<Rightarrow> complex" | 
| 964 | where | |
| 965 | "Re (csqrt z) = sqrt ((cmod z + Re z) / 2)" | |
| 966 | | "Im (csqrt z) = (if Im z = 0 then 1 else sgn (Im z)) * sqrt ((cmod z - Re z) / 2)" | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 967 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 968 | 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: 
56541diff
changeset | 969 | 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: 
56541diff
changeset | 970 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 971 | 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: 
56541diff
changeset | 972 | 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: 
56541diff
changeset | 973 | |
| 59862 | 974 | lemma of_real_sqrt: "x \<ge> 0 \<Longrightarrow> of_real (sqrt x) = csqrt (of_real x)" | 
| 975 | by (simp add: complex_eq_iff norm_complex_def) | |
| 976 | ||
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 977 | 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: 
56541diff
changeset | 978 | by simp | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 979 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 980 | 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: 
56541diff
changeset | 981 | by simp | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 982 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 983 | 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: 
56541diff
changeset | 984 | 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: 
44843diff
changeset | 985 | |
| 59741 
5b762cd73a8e
Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
 paulson <lp15@cam.ac.uk> parents: 
59658diff
changeset | 986 | lemma power2_csqrt[simp,algebra]: "(csqrt z)\<^sup>2 = z" | 
| 63569 | 987 | proof (cases "Im z = 0") | 
| 988 | case True | |
| 989 | then show ?thesis | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 990 | 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: 
56541diff
changeset | 991 | by (cases "0::real" "Re z" rule: linorder_cases) | 
| 63569 | 992 | (simp_all add: complex_eq_iff Re_power2 Im_power2 power2_eq_square cmod_eq_Re) | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 993 | next | 
| 63569 | 994 | case False | 
| 995 | moreover have "cmod z * cmod z - Re z * Re z = Im z * Im z" | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 996 | by (simp add: norm_complex_def power2_eq_square) | 
| 63569 | 997 | moreover have "\<bar>Re z\<bar> \<le> cmod z" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 998 | by (simp add: norm_complex_def) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 999 | ultimately show ?thesis | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1000 | by (simp add: Re_power2 Im_power2 complex_eq_iff real_sgn_eq | 
| 63569 | 1001 | field_simps real_sqrt_mult[symmetric] real_sqrt_divide) | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1002 | qed | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1003 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1004 | 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: 
56541diff
changeset | 1005 | 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: 
56541diff
changeset | 1006 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1007 | 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: 
56541diff
changeset | 1008 | 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: 
56541diff
changeset | 1009 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1010 | 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: 
56541diff
changeset | 1011 | 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: 
56541diff
changeset | 1012 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1013 | 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: 
56541diff
changeset | 1014 | by (metis csqrt_principal le_less) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1015 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1016 | lemma csqrt_square: | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1017 | 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: 
56541diff
changeset | 1018 | shows "csqrt (b^2) = b" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1019 | proof - | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1020 | have "csqrt (b^2) = b \<or> csqrt (b^2) = - b" | 
| 63569 | 1021 | by (simp add: power2_eq_iff[symmetric]) | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1022 | moreover have "csqrt (b^2) \<noteq> -b \<or> b = 0" | 
| 63569 | 1023 | using csqrt_principal[of "b ^ 2"] assms | 
| 1024 | by (intro disjCI notI) (auto simp: complex_eq_iff) | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1025 | ultimately show ?thesis | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1026 | by auto | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1027 | qed | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1028 | |
| 63569 | 1029 | lemma csqrt_unique: "w\<^sup>2 = z \<Longrightarrow> 0 < Re w \<or> Re w = 0 \<and> 0 \<le> Im w \<Longrightarrow> csqrt z = w" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59741diff
changeset | 1030 | by (auto simp: csqrt_square) | 
| 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59741diff
changeset | 1031 | |
| 59613 
7103019278f0
The function frac. Various lemmas about limits, series, the exp function, etc.
 paulson <lp15@cam.ac.uk> parents: 
59000diff
changeset | 1032 | lemma csqrt_minus [simp]: | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1033 | 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: 
56541diff
changeset | 1034 | shows "csqrt (- x) = \<i> * csqrt x" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1035 | proof - | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1036 | 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: 
56541diff
changeset | 1037 | proof (rule csqrt_square) | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1038 | have "Im (csqrt x) \<le> 0" | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1039 | 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: 
56541diff
changeset | 1040 | 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: 
56541diff
changeset | 1041 | 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: 
56541diff
changeset | 1042 | qed | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1043 | also have "(\<i> * csqrt x)^2 = - x" | 
| 59746 
ddae5727c5a9
new HOL Light material about exp, sin, cos
 paulson <lp15@cam.ac.uk> parents: 
59741diff
changeset | 1044 | by (simp add: power_mult_distrib) | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1045 | finally show ?thesis . | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1046 | qed | 
| 44844 
f74a4175a3a8
prove existence, uniqueness, and other properties of complex arg function
 huffman parents: 
44843diff
changeset | 1047 | |
| 63569 | 1048 | |
| 60758 | 1049 | text \<open>Legacy theorem names\<close> | 
| 44065 
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
 huffman parents: 
41959diff
changeset | 1050 | |
| 
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
 huffman parents: 
41959diff
changeset | 1051 | lemmas expand_complex_eq = complex_eq_iff | 
| 
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
 huffman parents: 
41959diff
changeset | 1052 | lemmas complex_Re_Im_cancel_iff = complex_eq_iff | 
| 
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
 huffman parents: 
41959diff
changeset | 1053 | lemmas complex_equality = complex_eqI | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1054 | lemmas cmod_def = norm_complex_def | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1055 | 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: 
56541diff
changeset | 1056 | 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: 
56541diff
changeset | 1057 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1058 | lemma legacy_Complex_simps: | 
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1059 | 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: 
56541diff
changeset | 1060 | 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: 
56541diff
changeset | 1061 | 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: 
56541diff
changeset | 1062 | 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: 
56541diff
changeset | 1063 | 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: 
56541diff
changeset | 1064 | 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: 
56541diff
changeset | 1065 | 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: 
56541diff
changeset | 1066 | 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: 
56541diff
changeset | 1067 | 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: 
56541diff
changeset | 1068 | 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: 
56541diff
changeset | 1069 | and complex_scaleR: "scaleR r (Complex a b) = Complex (r * a) (r * b)" | 
| 63569 | 1070 | and Complex_eq_i: "Complex x y = \<i> \<longleftrightarrow> x = 0 \<and> y = 1" | 
| 1071 | and i_mult_Complex: "\<i> * Complex a b = Complex (- b) a" | |
| 1072 | and Complex_mult_i: "Complex a b * \<i> = Complex (- b) a" | |
| 1073 | and i_complex_of_real: "\<i> * complex_of_real r = Complex 0 r" | |
| 1074 | and complex_of_real_i: "complex_of_real r * \<i> = Complex 0 r" | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1075 | 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: 
56541diff
changeset | 1076 | 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: 
56541diff
changeset | 1077 | 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: 
56541diff
changeset | 1078 | and complex_of_real_mult_Complex: "complex_of_real r * Complex x y = Complex (r*x) (r*y)" | 
| 63569 | 1079 | and complex_eq_cancel_iff2: "(Complex x y = complex_of_real xa) = (x = xa \<and> y = 0)" | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1080 | and complex_cn: "cnj (Complex a b) = Complex a (- b)" | 
| 64267 | 1081 | and Complex_sum': "sum (\<lambda>x. Complex (f x) 0) s = Complex (sum f s) 0" | 
| 1082 | and Complex_sum: "Complex (sum f s) 0 = sum (\<lambda>x. Complex (f x) 0) s" | |
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1083 | 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: 
56541diff
changeset | 1084 | and complex_norm: "cmod (Complex x y) = sqrt (x\<^sup>2 + y\<^sup>2)" | 
| 65274 
db2de50de28e
Removed [simp] status for Complex_eq. Also tidied some proofs
 paulson <lp15@cam.ac.uk> parents: 
65064diff
changeset | 1085 | by (simp_all add: norm_complex_def field_simps complex_eq_iff Re_divide Im_divide) | 
| 56889 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1086 | |
| 
48a745e1bde7
avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
 hoelzl parents: 
56541diff
changeset | 1087 | 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: 
56541diff
changeset | 1088 | by (metis Reals_of_real complex_of_real_def) | 
| 44065 
eb64ffccfc75
standard theorem naming scheme: complex_eqI, complex_eq_iff
 huffman parents: 
41959diff
changeset | 1089 | |
| 13957 | 1090 | end |