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