src/HOL/Complex.thy
author immler
Sun, 03 Nov 2019 21:46:46 -0500
changeset 71034 e0755162093f
parent 70817 dd675800469d
child 73109 783406dd051e
permissions -rw-r--r--
replace approximation oracle by less ad-hoc @{computation}s
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41959
b460124855b8 tuned headers;
wenzelm
parents: 37887
diff changeset
     1
(*  Title:       HOL/Complex.thy
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
     2
    Author:      Jacques D. Fleuriot, 2001 University of Edinburgh
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
     3
    Author:      Lawrence C Paulson, 2003/4
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
     4
*)
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
     5
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
     6
section \<open>Complex Numbers: Rectangular and Polar Representations\<close>
14373
67a628beb981 tidying of the complex numbers
paulson
parents: 14354
diff changeset
     7
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15085
diff changeset
     8
theory Complex
28952
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28944
diff changeset
     9
imports Transcendental
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15085
diff changeset
    10
begin
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    11
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
    12
text \<open>
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    13
  We use the \<^theory_text>\<open>codatatype\<close> command to define the type of complex numbers. This
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    14
  allows us to use \<^theory_text>\<open>primcorec\<close> to define complex functions by defining their
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    15
  real and imaginary result separately.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
    16
\<close>
14373
67a628beb981 tidying of the complex numbers
paulson
parents: 14354
diff changeset
    17
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
    18
codatatype complex = Complex (Re: real) (Im: real)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
    19
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
    20
lemma complex_surj: "Complex (Re z) (Im z) = z"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
    21
  by (rule complex.collapse)
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    22
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    23
lemma complex_eqI [intro?]: "Re x = Re y \<Longrightarrow> Im x = Im y \<Longrightarrow> x = y"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
    24
  by (rule complex.expand) simp
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    25
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
    26
lemma complex_eq_iff: "x = y \<longleftrightarrow> Re x = Re y \<and> Im x = Im y"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
    27
  by (auto intro: complex.expand)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    28
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    29
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
    30
subsection \<open>Addition and Subtraction\<close>
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    31
25599
haftmann
parents: 25571
diff changeset
    32
instantiation complex :: ab_group_add
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    33
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    34
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    35
primcorec zero_complex
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    36
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    37
    "Re 0 = 0"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    38
  | "Im 0 = 0"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    39
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    40
primcorec plus_complex
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    41
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    42
    "Re (x + y) = Re x + Re y"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    43
  | "Im (x + y) = Im x + Im y"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    44
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    45
primcorec uminus_complex
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    46
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    47
    "Re (- x) = - Re x"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    48
  | "Im (- x) = - Im x"
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    49
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    50
primcorec minus_complex
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    51
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    52
    "Re (x - y) = Re x - Re y"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    53
  | "Im (x - y) = Im x - Im y"
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    54
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    55
instance
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    56
  by standard (simp_all add: complex_eq_iff)
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    57
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    58
end
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    59
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    60
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
    61
subsection \<open>Multiplication and Division\<close>
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    62
59867
58043346ca64 given up separate type classes demanding `inverse 0 = 0`
haftmann
parents: 59862
diff changeset
    63
instantiation complex :: field
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    64
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    65
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    66
primcorec one_complex
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    67
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    68
    "Re 1 = 1"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    69
  | "Im 1 = 0"
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
    70
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    71
primcorec times_complex
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    72
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    73
    "Re (x * y) = Re x * Re y - Im x * Im y"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    74
  | "Im (x * y) = Re x * Im y + Im x * Re y"
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
    75
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    76
primcorec inverse_complex
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    77
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    78
    "Re (inverse x) = Re x / ((Re x)\<^sup>2 + (Im x)\<^sup>2)"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    79
  | "Im (inverse x) = - Im x / ((Re x)\<^sup>2 + (Im x)\<^sup>2)"
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14334
diff changeset
    80
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    81
definition "x div y = x * inverse y" for x y :: complex
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14334
diff changeset
    82
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    83
instance
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    84
  by standard
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
    85
     (simp_all add: complex_eq_iff divide_complex_def
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
    86
      distrib_left distrib_right right_diff_distrib left_diff_distrib
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
    87
      power2_eq_square add_divide_distrib [symmetric])
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14334
diff changeset
    88
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    89
end
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    90
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
    91
lemma Re_divide: "Re (x / y) = (Re x * Re y + Im x * Im y) / ((Re y)\<^sup>2 + (Im y)\<^sup>2)"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
    92
  by (simp add: divide_complex_def add_divide_distrib)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    93
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
    94
lemma Im_divide: "Im (x / y) = (Im x * Re y - Re x * Im y) / ((Re y)\<^sup>2 + (Im y)\<^sup>2)"
70817
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70802
diff changeset
    95
  by (simp add: divide_complex_def diff_divide_distrib)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    96
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
    97
lemma Complex_divide:
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
    98
    "(x / y) = Complex ((Re x * Re y + Im x * Im y) / ((Re y)\<^sup>2 + (Im y)\<^sup>2))
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
    99
                       ((Im x * Re y - Re x * Im y) / ((Re y)\<^sup>2 + (Im y)\<^sup>2))"
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   100
  by (metis Im_divide Re_divide complex_surj)
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   101
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   102
lemma Re_power2: "Re (x ^ 2) = (Re x)^2 - (Im x)^2"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   103
  by (simp add: power2_eq_square)
20556
2e8227b81bf1 add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents: 20485
diff changeset
   104
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   105
lemma Im_power2: "Im (x ^ 2) = 2 * Re x * Im x"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   106
  by (simp add: power2_eq_square)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   107
59862
44b3f4fa33ca New material and binomial fix
paulson <lp15@cam.ac.uk>
parents: 59746
diff changeset
   108
lemma Re_power_real [simp]: "Im x = 0 \<Longrightarrow> Re (x ^ n) = Re x ^ n "
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   109
  by (induct n) simp_all
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   110
59862
44b3f4fa33ca New material and binomial fix
paulson <lp15@cam.ac.uk>
parents: 59746
diff changeset
   111
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: 56541
diff changeset
   112
  by (induct n) simp_all
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   113
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   114
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   115
subsection \<open>Scalar Multiplication\<close>
20556
2e8227b81bf1 add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents: 20485
diff changeset
   116
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   117
instantiation complex :: real_field
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   118
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   119
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   120
primcorec scaleR_complex
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   121
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   122
    "Re (scaleR r x) = r * Re x"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   123
  | "Im (scaleR r x) = r * Im x"
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22968
diff changeset
   124
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   125
instance
20556
2e8227b81bf1 add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents: 20485
diff changeset
   126
proof
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   127
  fix a b :: real and x y :: complex
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   128
  show "scaleR a (x + y) = scaleR a x + scaleR a y"
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 47108
diff changeset
   129
    by (simp add: complex_eq_iff distrib_left)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   130
  show "scaleR (a + b) x = scaleR a x + scaleR b x"
49962
a8cc904a6820 Renamed {left,right}_distrib to distrib_{right,left}.
webertj
parents: 47108
diff changeset
   131
    by (simp add: complex_eq_iff distrib_right)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   132
  show "scaleR a (scaleR b x) = scaleR (a * b) x"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57259
diff changeset
   133
    by (simp add: complex_eq_iff mult.assoc)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   134
  show "scaleR 1 x = x"
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   135
    by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   136
  show "scaleR a x * y = scaleR a (x * y)"
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   137
    by (simp add: complex_eq_iff algebra_simps)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   138
  show "x * scaleR a y = scaleR a (x * y)"
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   139
    by (simp add: complex_eq_iff algebra_simps)
20556
2e8227b81bf1 add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents: 20485
diff changeset
   140
qed
2e8227b81bf1 add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents: 20485
diff changeset
   141
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   142
end
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   143
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   144
65579
52eafedaf196 Fixed LaTeX issue
paulson <lp15@cam.ac.uk>
parents: 65578
diff changeset
   145
subsection \<open>Numerals, Arithmetic, and Embedding from R\<close>
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   146
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   147
abbreviation complex_of_real :: "real \<Rightarrow> complex"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   148
  where "complex_of_real \<equiv> of_real"
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   149
59000
6eb0725503fc import general theorems from AFP/Markov_Models
hoelzl
parents: 58889
diff changeset
   150
declare [[coercion "of_real :: real \<Rightarrow> complex"]]
6eb0725503fc import general theorems from AFP/Markov_Models
hoelzl
parents: 58889
diff changeset
   151
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: 56541
diff changeset
   152
declare [[coercion "of_int :: int \<Rightarrow> complex"]]
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   153
declare [[coercion "of_nat :: nat \<Rightarrow> complex"]]
56331
bea2196627cb add complex_of_real coercion
hoelzl
parents: 56238
diff changeset
   154
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   155
lemma complex_Re_of_nat [simp]: "Re (of_nat n) = of_nat n"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   156
  by (induct n) simp_all
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   157
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   158
lemma complex_Im_of_nat [simp]: "Im (of_nat n) = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   159
  by (induct n) simp_all
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   160
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   161
lemma complex_Re_of_int [simp]: "Re (of_int z) = of_int z"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   162
  by (cases z rule: int_diff_cases) simp
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   163
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   164
lemma complex_Im_of_int [simp]: "Im (of_int z) = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   165
  by (cases z rule: int_diff_cases) simp
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   166
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   167
lemma complex_Re_numeral [simp]: "Re (numeral v) = numeral v"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   168
  using complex_Re_of_int [of "numeral v"] by simp
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   169
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   170
lemma complex_Im_numeral [simp]: "Im (numeral v) = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   171
  using complex_Im_of_int [of "numeral v"] by simp
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   172
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   173
lemma Re_complex_of_real [simp]: "Re (complex_of_real z) = z"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   174
  by (simp add: of_real_def)
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   175
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   176
lemma Im_complex_of_real [simp]: "Im (complex_of_real z) = 0"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   177
  by (simp add: of_real_def)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   178
59613
7103019278f0 The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents: 59000
diff changeset
   179
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: 59000
diff changeset
   180
  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: 59000
diff changeset
   181
7103019278f0 The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents: 59000
diff changeset
   182
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: 59000
diff changeset
   183
  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: 61552
diff changeset
   184
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: 62102
diff changeset
   185
lemma Re_divide_of_nat [simp]: "Re (z / of_nat n) = Re z / of_nat n"
70817
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70802
diff changeset
   186
  by (cases n) (simp_all add: Re_divide field_split_simps power2_eq_square del: of_nat_Suc)
61552
980dd46a03fb Added binomial identities to CONTRIBUTORS; small lemmas on of_int/pochhammer
eberlm
parents: 61531
diff changeset
   187
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: 62102
diff changeset
   188
lemma Im_divide_of_nat [simp]: "Im (z / of_nat n) = Im z / of_nat n"
70817
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70802
diff changeset
   189
  by (cases n) (simp_all add: Im_divide field_split_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: 59000
diff changeset
   190
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   191
lemma of_real_Re [simp]: "z \<in> \<real> \<Longrightarrow> of_real (Re z) = z"
60017
b785d6d06430 Overloading of ln and powr, but "approximation" no longer works for powr. Code generation also fails due to type ambiguity in scala.
paulson <lp15@cam.ac.uk>
parents: 59867
diff changeset
   192
  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: 59867
diff changeset
   193
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   194
lemma complex_Re_fact [simp]: "Re (fact n) = fact n"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   195
proof -
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   196
  have "(fact n :: complex) = of_real (fact n)"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   197
    by simp
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   198
  also have "Re \<dots> = fact n"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   199
    by (subst Re_complex_of_real) simp_all
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   200
  finally show ?thesis .
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   201
qed
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   202
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   203
lemma complex_Im_fact [simp]: "Im (fact n) = 0"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   204
  by (subst of_nat_fact [symmetric]) (simp only: complex_Im_of_nat)
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   205
67234
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   206
lemma Re_prod_Reals: "(\<And>x. x \<in> A \<Longrightarrow> f x \<in> \<real>) \<Longrightarrow> Re (prod f A) = prod (\<lambda>x. Re (f x)) A"
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   207
proof (induction A rule: infinite_finite_induct)
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   208
  case (insert x A)
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   209
  hence "Re (prod f (insert x A)) = Re (f x) * Re (prod f A) - Im (f x) * Im (prod f A)"
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   210
    by simp
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   211
  also from insert.prems have "f x \<in> \<real>" by simp
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   212
  hence "Im (f x) = 0" by (auto elim!: Reals_cases)
68499
d4312962161a Rationalisation of complex transcendentals, esp the Arg function
paulson <lp15@cam.ac.uk>
parents: 67234
diff changeset
   213
  also have "Re (prod f A) = (\<Prod>x\<in>A. Re (f x))"
67234
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   214
    by (intro insert.IH insert.prems) auto
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   215
  finally show ?case using insert.hyps by simp
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   216
qed auto
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   217
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   218
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   219
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: 56541
diff changeset
   220
65064
a4abec71279a Renamed ii to imaginary_unit in order to free up ii as a variable name. Also replaced some legacy def commands
paulson <lp15@cam.ac.uk>
parents: 64773
diff changeset
   221
primcorec imaginary_unit :: complex  ("\<i>")
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   222
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   223
    "Re \<i> = 0"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   224
  | "Im \<i> = 1"
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   225
65274
db2de50de28e Removed [simp] status for Complex_eq. Also tidied some proofs
paulson <lp15@cam.ac.uk>
parents: 65064
diff changeset
   226
lemma Complex_eq: "Complex a b = a + \<i> * b"
57259
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   227
  by (simp add: complex_eq_iff)
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   228
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   229
lemma complex_eq: "a = Re a + \<i> * Im a"
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   230
  by (simp add: complex_eq_iff)
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   231
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   232
lemma fun_complex_eq: "f = (\<lambda>x. Re (f x) + \<i> * Im (f x))"
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   233
  by (simp add: fun_eq_iff complex_eq)
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   234
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   235
lemma i_squared [simp]: "\<i> * \<i> = -1"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   236
  by (simp add: complex_eq_iff)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   237
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   238
lemma power2_i [simp]: "\<i>\<^sup>2 = -1"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   239
  by (simp add: power2_eq_square)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   240
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   241
lemma inverse_i [simp]: "inverse \<i> = - \<i>"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   242
  by (rule inverse_unique) simp
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   243
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   244
lemma divide_i [simp]: "x / \<i> = - \<i> * x"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   245
  by (simp add: divide_complex_def)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   246
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   247
lemma complex_i_mult_minus [simp]: "\<i> * (\<i> * x) = - x"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57259
diff changeset
   248
  by (simp add: mult.assoc [symmetric])
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   249
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   250
lemma complex_i_not_zero [simp]: "\<i> \<noteq> 0"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   251
  by (simp add: complex_eq_iff)
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   252
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   253
lemma complex_i_not_one [simp]: "\<i> \<noteq> 1"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   254
  by (simp add: complex_eq_iff)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   255
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   256
lemma complex_i_not_numeral [simp]: "\<i> \<noteq> numeral w"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   257
  by (simp add: complex_eq_iff)
44841
huffman
parents: 44828
diff changeset
   258
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   259
lemma complex_i_not_neg_numeral [simp]: "\<i> \<noteq> - numeral w"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   260
  by (simp add: complex_eq_iff)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   261
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   262
lemma complex_split_polar: "\<exists>r a. z = complex_of_real r * (cos a + \<i> * sin a)"
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   263
  by (simp add: complex_eq_iff polar_Ex)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   264
59613
7103019278f0 The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents: 59000
diff changeset
   265
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: 59000
diff changeset
   266
  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: 59000
diff changeset
   267
65064
a4abec71279a Renamed ii to imaginary_unit in order to free up ii as a variable name. Also replaced some legacy def commands
paulson <lp15@cam.ac.uk>
parents: 64773
diff changeset
   268
lemma Re_i_times [simp]: "Re (\<i> * z) = - Im z"
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   269
  by simp
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   270
65064
a4abec71279a Renamed ii to imaginary_unit in order to free up ii as a variable name. Also replaced some legacy def commands
paulson <lp15@cam.ac.uk>
parents: 64773
diff changeset
   271
lemma Im_i_times [simp]: "Im (\<i> * z) = Re z"
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   272
  by simp
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   273
65064
a4abec71279a Renamed ii to imaginary_unit in order to free up ii as a variable name. Also replaced some legacy def commands
paulson <lp15@cam.ac.uk>
parents: 64773
diff changeset
   274
lemma i_times_eq_iff: "\<i> * w = z \<longleftrightarrow> w = - (\<i> * z)"
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   275
  by auto
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   276
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   277
lemma divide_numeral_i [simp]: "z / (numeral n * \<i>) = - (\<i> * z) / numeral n"
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   278
  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: 59658
diff changeset
   279
65583
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   280
lemma imaginary_eq_real_iff [simp]:
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   281
  assumes "y \<in> Reals" "x \<in> Reals"
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   282
  shows "\<i> * y = x \<longleftrightarrow> x=0 \<and> y=0"
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   283
    using assms
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   284
    unfolding Reals_def
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   285
    apply clarify
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   286
      apply (rule iffI)
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   287
    apply (metis Im_complex_of_real Im_i_times Re_complex_of_real mult_eq_0_iff of_real_0)
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   288
    by simp
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   289
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   290
lemma real_eq_imaginary_iff [simp]:
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   291
  assumes "y \<in> Reals" "x \<in> Reals"
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   292
  shows "x = \<i> * y  \<longleftrightarrow> x=0 \<and> y=0"
8d53b3bebab4 Further new material. The simprule status of some exp and ln identities was reverted.
paulson <lp15@cam.ac.uk>
parents: 65579
diff changeset
   293
    using assms imaginary_eq_real_iff by fastforce
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   294
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   295
subsection \<open>Vector Norm\<close>
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   296
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   297
instantiation complex :: real_normed_field
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   298
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   299
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   300
definition "norm z = sqrt ((Re z)\<^sup>2 + (Im z)\<^sup>2)"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   301
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   302
abbreviation cmod :: "complex \<Rightarrow> real"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   303
  where "cmod \<equiv> norm"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   304
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   305
definition complex_sgn_def: "sgn x = x /\<^sub>R cmod x"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   306
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   307
definition dist_complex_def: "dist x y = cmod (x - y)"
31413
729d90a531e4 introduce class topological_space as a superclass of metric_space
huffman
parents: 31292
diff changeset
   308
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 61973
diff changeset
   309
definition uniformity_complex_def [code del]:
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 68721
diff changeset
   310
  "(uniformity :: (complex \<times> complex) filter) = (INF e\<in>{0 <..}. principal {(x, y). dist x y < e})"
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 61973
diff changeset
   311
26c0a70f78a3 add uniform spaces
hoelzl
parents: 61973
diff changeset
   312
definition open_complex_def [code del]:
26c0a70f78a3 add uniform spaces
hoelzl
parents: 61973
diff changeset
   313
  "open (U :: complex set) \<longleftrightarrow> (\<forall>x\<in>U. eventually (\<lambda>(x', y). x' = x \<longrightarrow> y \<in> U) uniformity)"
31292
d24b2692562f definition of dist for complex
huffman
parents: 31021
diff changeset
   314
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   315
instance
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   316
proof
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31419
diff changeset
   317
  fix r :: real and x y :: complex and S :: "complex set"
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   318
  show "(norm x = 0) = (x = 0)"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   319
    by (simp add: norm_complex_def complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   320
  show "norm (x + y) \<le> norm x + norm y"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   321
    by (simp add: norm_complex_def complex_eq_iff real_sqrt_sum_squares_triangle_ineq)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   322
  show "norm (scaleR r x) = \<bar>r\<bar> * norm x"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   323
    by (simp add: norm_complex_def complex_eq_iff power_mult_distrib distrib_left [symmetric]
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   324
        real_sqrt_mult)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   325
  show "norm (x * y) = norm x * norm y"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   326
    by (simp add: norm_complex_def complex_eq_iff real_sqrt_mult [symmetric]
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   327
        power2_eq_square algebra_simps)
62101
26c0a70f78a3 add uniform spaces
hoelzl
parents: 61973
diff changeset
   328
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: 20556
diff changeset
   329
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   330
end
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   331
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   332
declare uniformity_Abort[where 'a = complex, code]
62102
877463945ce9 fix code generation for uniformity: uniformity is a non-computable pure data.
hoelzl
parents: 62101
diff changeset
   333
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   334
lemma norm_ii [simp]: "norm \<i> = 1"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   335
  by (simp add: norm_complex_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   336
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   337
lemma cmod_unit_one: "cmod (cos a + \<i> * sin a) = 1"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   338
  by (simp add: norm_complex_def)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   339
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   340
lemma cmod_complex_polar: "cmod (r * (cos a + \<i> * sin a)) = \<bar>r\<bar>"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   341
  by (simp add: norm_mult cmod_unit_one)
22861
8ec47039614e clean up complex norm proofs, remove redundant lemmas
huffman
parents: 22852
diff changeset
   342
8ec47039614e clean up complex norm proofs, remove redundant lemmas
huffman
parents: 22852
diff changeset
   343
lemma complex_Re_le_cmod: "Re x \<le> cmod x"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   344
  unfolding norm_complex_def by (rule real_sqrt_sum_squares_ge1)
22861
8ec47039614e clean up complex norm proofs, remove redundant lemmas
huffman
parents: 22852
diff changeset
   345
44761
0694fc3248fd remove some unnecessary simp rules from simpset
huffman
parents: 44749
diff changeset
   346
lemma complex_mod_minus_le_complex_mod: "- cmod x \<le> cmod x"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   347
  by (rule order_trans [OF _ norm_ge_zero]) simp
22861
8ec47039614e clean up complex norm proofs, remove redundant lemmas
huffman
parents: 22852
diff changeset
   348
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   349
lemma complex_mod_triangle_ineq2: "cmod (b + a) - cmod b \<le> cmod a"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   350
  by (rule ord_le_eq_trans [OF norm_triangle_ineq2]) simp
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   351
26117
ca578d3b9f8c Added trivial theorems aboud cmod
chaieb
parents: 25712
diff changeset
   352
lemma abs_Re_le_cmod: "\<bar>Re x\<bar> \<le> cmod x"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   353
  by (simp add: norm_complex_def)
26117
ca578d3b9f8c Added trivial theorems aboud cmod
chaieb
parents: 25712
diff changeset
   354
ca578d3b9f8c Added trivial theorems aboud cmod
chaieb
parents: 25712
diff changeset
   355
lemma abs_Im_le_cmod: "\<bar>Im x\<bar> \<le> cmod x"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   356
  by (simp add: norm_complex_def)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   357
57259
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   358
lemma cmod_le: "cmod z \<le> \<bar>Re z\<bar> + \<bar>Im z\<bar>"
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   359
  apply (subst complex_eq)
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   360
  apply (rule order_trans)
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   361
   apply (rule norm_triangle_ineq)
57259
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   362
  apply (simp add: norm_mult)
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   363
  done
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   364
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   365
lemma cmod_eq_Re: "Im z = 0 \<Longrightarrow> cmod z = \<bar>Re z\<bar>"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   366
  by (simp add: norm_complex_def)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   367
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   368
lemma cmod_eq_Im: "Re z = 0 \<Longrightarrow> cmod z = \<bar>Im z\<bar>"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   369
  by (simp add: norm_complex_def)
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   370
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   371
lemma cmod_power2: "(cmod z)\<^sup>2 = (Re z)\<^sup>2 + (Im z)\<^sup>2"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   372
  by (simp add: norm_complex_def)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   373
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   374
lemma cmod_plus_Re_le_0_iff: "cmod z + Re z \<le> 0 \<longleftrightarrow> Re z = - cmod z"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   375
  using abs_Re_le_cmod[of z] by auto
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   376
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   377
lemma cmod_Re_le_iff: "Im x = Im y \<Longrightarrow> cmod x \<le> cmod y \<longleftrightarrow> \<bar>Re x\<bar> \<le> \<bar>Re y\<bar>"
62379
340738057c8c An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents: 62102
diff changeset
   378
  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: 62102
diff changeset
   379
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   380
lemma cmod_Im_le_iff: "Re x = Re y \<Longrightarrow> cmod x \<le> cmod y \<longleftrightarrow> \<bar>Im x\<bar> \<le> \<bar>Im y\<bar>"
62379
340738057c8c An assortment of useful lemmas about sums, norm, etc. Also: norm_conv_dist [symmetric] is now a simprule!
paulson <lp15@cam.ac.uk>
parents: 62102
diff changeset
   381
  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: 62102
diff changeset
   382
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   383
lemma Im_eq_0: "\<bar>Re z\<bar> = cmod z \<Longrightarrow> Im z = 0"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   384
  by (subst (asm) power_eq_iff_eq_base[symmetric, where n=2]) (auto simp add: norm_complex_def)
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   385
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   386
lemma abs_sqrt_wlog: "(\<And>x. x \<ge> 0 \<Longrightarrow> P x (x\<^sup>2)) \<Longrightarrow> P \<bar>x\<bar> (x\<^sup>2)"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   387
  for x::"'a::linordered_idom"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   388
  by (metis abs_ge_zero power2_abs)
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   389
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   390
lemma complex_abs_le_norm: "\<bar>Re z\<bar> + \<bar>Im z\<bar> \<le> sqrt 2 * norm z"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   391
  unfolding norm_complex_def
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   392
  apply (rule abs_sqrt_wlog [where x="Re z"])
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   393
  apply (rule abs_sqrt_wlog [where x="Im z"])
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   394
  apply (rule power2_le_imp_le)
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   395
   apply (simp_all add: power2_sum add.commute sum_squares_bound real_sqrt_mult [symmetric])
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   396
  done
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   397
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   398
lemma complex_unit_circle: "z \<noteq> 0 \<Longrightarrow> (Re z / cmod z)\<^sup>2 + (Im z / cmod z)\<^sup>2 = 1"
70817
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70802
diff changeset
   399
  by (simp add: norm_complex_def complex_eq_iff power2_eq_square add_divide_distrib [symmetric])
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   400
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   401
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   402
text \<open>Properties of complex signum.\<close>
44843
huffman
parents: 44842
diff changeset
   403
huffman
parents: 44842
diff changeset
   404
lemma sgn_eq: "sgn z = z / complex_of_real (cmod z)"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57259
diff changeset
   405
  by (simp add: sgn_div_norm divide_inverse scaleR_conv_of_real mult.commute)
44843
huffman
parents: 44842
diff changeset
   406
huffman
parents: 44842
diff changeset
   407
lemma Re_sgn [simp]: "Re(sgn z) = Re(z)/cmod z"
huffman
parents: 44842
diff changeset
   408
  by (simp add: complex_sgn_def divide_inverse)
huffman
parents: 44842
diff changeset
   409
huffman
parents: 44842
diff changeset
   410
lemma Im_sgn [simp]: "Im(sgn z) = Im(z)/cmod z"
huffman
parents: 44842
diff changeset
   411
  by (simp add: complex_sgn_def divide_inverse)
huffman
parents: 44842
diff changeset
   412
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14353
diff changeset
   413
64290
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   414
subsection \<open>Absolute value\<close>
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   415
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   416
instantiation complex :: field_abs_sgn
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   417
begin
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   418
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   419
definition abs_complex :: "complex \<Rightarrow> complex"
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   420
  where "abs_complex = of_real \<circ> norm"
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   421
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   422
instance
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   423
  apply standard
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   424
         apply (auto simp add: abs_complex_def complex_sgn_def norm_mult)
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   425
  apply (auto simp add: scaleR_conv_of_real field_simps)
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   426
  done
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   427
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   428
end
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   429
fb5c74a58796 suitable logical type class for abs, sgn
haftmann
parents: 64272
diff changeset
   430
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   431
subsection \<open>Completeness of the Complexes\<close>
23123
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   432
44290
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   433
lemma bounded_linear_Re: "bounded_linear Re"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   434
  by (rule bounded_linear_intro [where K=1]) (simp_all add: norm_complex_def)
44290
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   435
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   436
lemma bounded_linear_Im: "bounded_linear Im"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   437
  by (rule bounded_linear_intro [where K=1]) (simp_all add: norm_complex_def)
23123
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   438
44290
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   439
lemmas Cauchy_Re = bounded_linear.Cauchy [OF bounded_linear_Re]
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   440
lemmas Cauchy_Im = bounded_linear.Cauchy [OF bounded_linear_Im]
56381
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   441
lemmas tendsto_Re [tendsto_intros] = bounded_linear.tendsto [OF bounded_linear_Re]
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   442
lemmas tendsto_Im [tendsto_intros] = bounded_linear.tendsto [OF bounded_linear_Im]
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   443
lemmas isCont_Re [simp] = bounded_linear.isCont [OF bounded_linear_Re]
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   444
lemmas isCont_Im [simp] = bounded_linear.isCont [OF bounded_linear_Im]
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   445
lemmas continuous_Re [simp] = bounded_linear.continuous [OF bounded_linear_Re]
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   446
lemmas continuous_Im [simp] = bounded_linear.continuous [OF bounded_linear_Im]
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   447
lemmas continuous_on_Re [continuous_intros] = bounded_linear.continuous_on[OF bounded_linear_Re]
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   448
lemmas continuous_on_Im [continuous_intros] = bounded_linear.continuous_on[OF bounded_linear_Im]
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   449
lemmas has_derivative_Re [derivative_intros] = bounded_linear.has_derivative[OF bounded_linear_Re]
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   450
lemmas has_derivative_Im [derivative_intros] = bounded_linear.has_derivative[OF bounded_linear_Im]
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   451
lemmas sums_Re = bounded_linear.sums [OF bounded_linear_Re]
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   452
lemmas sums_Im = bounded_linear.sums [OF bounded_linear_Im]
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   453
36825
d9320cdcde73 add lemma tendsto_Complex
huffman
parents: 36777
diff changeset
   454
lemma tendsto_Complex [tendsto_intros]:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   455
  "(f \<longlongrightarrow> a) F \<Longrightarrow> (g \<longlongrightarrow> b) F \<Longrightarrow> ((\<lambda>x. Complex (f x) (g x)) \<longlongrightarrow> Complex a b) F"
65274
db2de50de28e Removed [simp] status for Complex_eq. Also tidied some proofs
paulson <lp15@cam.ac.uk>
parents: 65064
diff changeset
   456
  unfolding Complex_eq by (auto intro!: tendsto_intros)
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   457
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   458
lemma tendsto_complex_iff:
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   459
  "(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: 56541
diff changeset
   460
proof safe
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   461
  assume "((\<lambda>x. Re (f x)) \<longlongrightarrow> Re x) F" "((\<lambda>x. Im (f x)) \<longlongrightarrow> Im x) F"
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   462
  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: 56541
diff changeset
   463
    unfolding complex.collapse .
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   464
qed (auto intro: tendsto_intros)
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   465
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   466
lemma continuous_complex_iff:
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   467
  "continuous F f \<longleftrightarrow> continuous F (\<lambda>x. Re (f x)) \<and> continuous F (\<lambda>x. Im (f x))"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   468
  by (simp only: continuous_def tendsto_complex_iff)
57259
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   469
64773
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64290
diff changeset
   470
lemma continuous_on_of_real_o_iff [simp]:
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64290
diff changeset
   471
     "continuous_on S (\<lambda>x. complex_of_real (g x)) = continuous_on S g"
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64290
diff changeset
   472
  using continuous_on_Re continuous_on_of_real  by fastforce
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64290
diff changeset
   473
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64290
diff changeset
   474
lemma continuous_on_of_real_id [simp]:
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64290
diff changeset
   475
     "continuous_on S (of_real :: real \<Rightarrow> 'a::real_normed_algebra_1)"
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64290
diff changeset
   476
  by (rule continuous_on_of_real [OF continuous_on_id])
223b2ebdda79 Many new theorems, and more tidying
paulson <lp15@cam.ac.uk>
parents: 64290
diff changeset
   477
57259
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   478
lemma has_vector_derivative_complex_iff: "(f has_vector_derivative x) F \<longleftrightarrow>
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   479
    ((\<lambda>x. Re (f x)) has_field_derivative (Re x)) F \<and>
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   480
    ((\<lambda>x. Im (f x)) has_field_derivative (Im x)) F"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   481
  by (simp add: has_vector_derivative_def has_field_derivative_def has_derivative_def
70802
160eaf566bcb formally augmented corresponding rules for field_simps
haftmann
parents: 70707
diff changeset
   482
      tendsto_complex_iff algebra_simps bounded_linear_scaleR_left bounded_linear_mult_right)
57259
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   483
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   484
lemma has_field_derivative_Re[derivative_intros]:
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   485
  "(f has_vector_derivative D) F \<Longrightarrow> ((\<lambda>x. Re (f x)) has_field_derivative (Re D)) F"
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   486
  unfolding has_vector_derivative_complex_iff by safe
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   487
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   488
lemma has_field_derivative_Im[derivative_intros]:
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   489
  "(f has_vector_derivative D) F \<Longrightarrow> ((\<lambda>x. Im (f x)) has_field_derivative (Im D)) F"
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   490
  unfolding has_vector_derivative_complex_iff by safe
3a448982a74a add more derivative and continuity rules for complex-values functions
hoelzl
parents: 56889
diff changeset
   491
23123
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   492
instance complex :: banach
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   493
proof
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   494
  fix X :: "nat \<Rightarrow> complex"
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   495
  assume X: "Cauchy X"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   496
  then have "(\<lambda>n. Complex (Re (X n)) (Im (X n))) \<longlonglongrightarrow>
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   497
    Complex (lim (\<lambda>n. Re (X n))) (lim (\<lambda>n. Im (X n)))"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   498
    by (intro tendsto_Complex convergent_LIMSEQ_iff[THEN iffD1]
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   499
        Cauchy_convergent_iff[THEN iffD1] Cauchy_Re Cauchy_Im)
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   500
  then show "convergent X"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   501
    unfolding complex.collapse by (rule convergentI)
23123
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   502
qed
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   503
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   504
declare DERIV_power[where 'a=complex, unfolded of_nat_def[symmetric], derivative_intros]
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   505
56238
5d147e1e18d1 a few new lemmas and generalisations of old ones
paulson <lp15@cam.ac.uk>
parents: 56217
diff changeset
   506
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   507
subsection \<open>Complex Conjugation\<close>
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   508
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   509
primcorec cnj :: "complex \<Rightarrow> complex"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   510
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   511
    "Re (cnj z) = Re z"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   512
  | "Im (cnj z) = - Im z"
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   513
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   514
lemma complex_cnj_cancel_iff [simp]: "cnj x = cnj y \<longleftrightarrow> x = y"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   515
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   516
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   517
lemma complex_cnj_cnj [simp]: "cnj (cnj z) = z"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   518
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   519
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   520
lemma complex_cnj_zero [simp]: "cnj 0 = 0"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   521
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   522
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   523
lemma complex_cnj_zero_iff [iff]: "cnj z = 0 \<longleftrightarrow> z = 0"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   524
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   525
67234
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   526
lemma complex_cnj_one_iff [simp]: "cnj z = 1 \<longleftrightarrow> z = 1"
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   527
  by (simp add: complex_eq_iff)
ab10ea1d6fd0 Some lemmas on complex numbers and coprimality
eberlm <eberlm@in.tum.de>
parents: 67082
diff changeset
   528
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   529
lemma complex_cnj_add [simp]: "cnj (x + y) = cnj x + cnj y"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   530
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   531
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63569
diff changeset
   532
lemma cnj_sum [simp]: "cnj (sum f s) = (\<Sum>x\<in>s. cnj (f x))"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   533
  by (induct s rule: infinite_finite_induct) auto
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   534
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   535
lemma complex_cnj_diff [simp]: "cnj (x - y) = cnj x - cnj y"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   536
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   537
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   538
lemma complex_cnj_minus [simp]: "cnj (- x) = - cnj x"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   539
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   540
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   541
lemma complex_cnj_one [simp]: "cnj 1 = 1"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   542
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   543
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   544
lemma complex_cnj_mult [simp]: "cnj (x * y) = cnj x * cnj y"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   545
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   546
64272
f76b6dda2e56 setprod -> prod
nipkow
parents: 64267
diff changeset
   547
lemma cnj_prod [simp]: "cnj (prod f s) = (\<Prod>x\<in>s. cnj (f x))"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   548
  by (induct s rule: infinite_finite_induct) auto
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   549
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   550
lemma complex_cnj_inverse [simp]: "cnj (inverse x) = inverse (cnj x)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   551
  by (simp add: complex_eq_iff)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   552
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   553
lemma complex_cnj_divide [simp]: "cnj (x / y) = cnj x / cnj y"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   554
  by (simp add: divide_complex_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   555
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   556
lemma complex_cnj_power [simp]: "cnj (x ^ n) = cnj x ^ n"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   557
  by (induct n) simp_all
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   558
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   559
lemma complex_cnj_of_nat [simp]: "cnj (of_nat n) = of_nat n"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   560
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   561
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   562
lemma complex_cnj_of_int [simp]: "cnj (of_int z) = of_int z"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   563
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   564
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 44902
diff changeset
   565
lemma complex_cnj_numeral [simp]: "cnj (numeral w) = numeral w"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 44902
diff changeset
   566
  by (simp add: complex_eq_iff)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 44902
diff changeset
   567
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54230
diff changeset
   568
lemma complex_cnj_neg_numeral [simp]: "cnj (- numeral w) = - numeral w"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   569
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   570
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   571
lemma complex_cnj_scaleR [simp]: "cnj (scaleR r x) = scaleR r (cnj x)"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   572
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   573
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   574
lemma complex_mod_cnj [simp]: "cmod (cnj z) = cmod z"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   575
  by (simp add: norm_complex_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   576
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   577
lemma complex_cnj_complex_of_real [simp]: "cnj (of_real x) = of_real x"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   578
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   579
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   580
lemma complex_cnj_i [simp]: "cnj \<i> = - \<i>"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   581
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   582
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   583
lemma complex_add_cnj: "z + cnj z = complex_of_real (2 * Re z)"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   584
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   585
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   586
lemma complex_diff_cnj: "z - cnj z = complex_of_real (2 * Im z) * \<i>"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   587
  by (simp add: complex_eq_iff)
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14353
diff changeset
   588
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 51002
diff changeset
   589
lemma complex_mult_cnj: "z * cnj z = complex_of_real ((Re z)\<^sup>2 + (Im z)\<^sup>2)"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   590
  by (simp add: complex_eq_iff power2_eq_square)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   591
68499
d4312962161a Rationalisation of complex transcendentals, esp the Arg function
paulson <lp15@cam.ac.uk>
parents: 67234
diff changeset
   592
lemma cnj_add_mult_eq_Re: "z * cnj w + cnj z * w = 2 * Re (z * cnj w)"
d4312962161a Rationalisation of complex transcendentals, esp the Arg function
paulson <lp15@cam.ac.uk>
parents: 67234
diff changeset
   593
  by (rule complex_eqI) auto
d4312962161a Rationalisation of complex transcendentals, esp the Arg function
paulson <lp15@cam.ac.uk>
parents: 67234
diff changeset
   594
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 51002
diff changeset
   595
lemma complex_mod_mult_cnj: "cmod (z * cnj z) = (cmod z)\<^sup>2"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   596
  by (simp add: norm_mult power2_eq_square)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   597
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   598
lemma complex_mod_sqrt_Re_mult_cnj: "cmod z = sqrt (Re (z * cnj z))"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   599
  by (simp add: norm_complex_def power2_eq_square)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   600
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   601
lemma complex_In_mult_cnj_zero [simp]: "Im (z * cnj z) = 0"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   602
  by simp
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   603
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   604
lemma complex_cnj_fact [simp]: "cnj (fact n) = fact n"
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   605
  by (subst of_nat_fact [symmetric], subst complex_cnj_of_nat) simp
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   606
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   607
lemma complex_cnj_pochhammer [simp]: "cnj (pochhammer z n) = pochhammer (cnj z) n"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   608
  by (induct n arbitrary: z) (simp_all add: pochhammer_rec)
61531
ab2e862263e7 Rounding function, uniform limits, cotangent, binomial identities
eberlm
parents: 61104
diff changeset
   609
44290
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   610
lemma bounded_linear_cnj: "bounded_linear cnj"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   611
  using complex_cnj_add complex_cnj_scaleR by (rule bounded_linear_intro [where K=1]) simp
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14353
diff changeset
   612
70707
125705f5965f A little-known material, and some tidying up
paulson <lp15@cam.ac.uk>
parents: 69260
diff changeset
   613
lemma linear_cnj: "linear cnj"
125705f5965f A little-known material, and some tidying up
paulson <lp15@cam.ac.uk>
parents: 69260
diff changeset
   614
  using bounded_linear.linear[OF bounded_linear_cnj] .
125705f5965f A little-known material, and some tidying up
paulson <lp15@cam.ac.uk>
parents: 69260
diff changeset
   615
56381
0556204bc230 merged DERIV_intros, has_derivative_intros into derivative_intros
hoelzl
parents: 56369
diff changeset
   616
lemmas tendsto_cnj [tendsto_intros] = bounded_linear.tendsto [OF bounded_linear_cnj]
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   617
  and isCont_cnj [simp] = bounded_linear.isCont [OF bounded_linear_cnj]
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   618
  and continuous_cnj [simp, continuous_intros] = bounded_linear.continuous [OF bounded_linear_cnj]
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   619
  and continuous_on_cnj [simp, continuous_intros] = bounded_linear.continuous_on [OF bounded_linear_cnj]
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   620
  and has_derivative_cnj [simp, derivative_intros] = bounded_linear.has_derivative [OF bounded_linear_cnj]
44290
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   621
61973
0c7e865fa7cb more symbols;
wenzelm
parents: 61969
diff changeset
   622
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: 56541
diff changeset
   623
  by (simp add: tendsto_iff dist_complex_def complex_cnj_diff [symmetric] del: complex_cnj_diff)
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   624
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   625
lemma sums_cnj: "((\<lambda>x. cnj(f x)) sums cnj l) \<longleftrightarrow> (f sums l)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63569
diff changeset
   626
  by (simp add: sums_def lim_cnj cnj_sum [symmetric] del: cnj_sum)
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   627
68721
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   628
lemma differentiable_cnj_iff:
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   629
  "(\<lambda>z. cnj (f z)) differentiable at x within A \<longleftrightarrow> f differentiable at x within A"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   630
proof
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   631
  assume "(\<lambda>z. cnj (f z)) differentiable at x within A"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   632
  then obtain D where "((\<lambda>z. cnj (f z)) has_derivative D) (at x within A)"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   633
    by (auto simp: differentiable_def)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   634
  from has_derivative_cnj[OF this] show "f differentiable at x within A"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   635
    by (auto simp: differentiable_def)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   636
next
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   637
  assume "f differentiable at x within A"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   638
  then obtain D where "(f has_derivative D) (at x within A)"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   639
    by (auto simp: differentiable_def)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   640
  from has_derivative_cnj[OF this] show "(\<lambda>z. cnj (f z)) differentiable at x within A"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   641
    by (auto simp: differentiable_def)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   642
qed
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   643
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   644
lemma has_vector_derivative_cnj [derivative_intros]:
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   645
  assumes "(f has_vector_derivative f') (at z within A)"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   646
  shows   "((\<lambda>z. cnj (f z)) has_vector_derivative cnj f') (at z within A)"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   647
  using assms by (auto simp: has_vector_derivative_complex_iff intro: derivative_intros)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   648
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14353
diff changeset
   649
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   650
subsection \<open>Basic Lemmas\<close>
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   651
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   652
lemma complex_eq_0: "z=0 \<longleftrightarrow> (Re z)\<^sup>2 + (Im z)\<^sup>2 = 0"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   653
  by (metis zero_complex.sel complex_eqI sum_power2_eq_zero_iff)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   654
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   655
lemma complex_neq_0: "z\<noteq>0 \<longleftrightarrow> (Re z)\<^sup>2 + (Im z)\<^sup>2 > 0"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   656
  by (metis complex_eq_0 less_numeral_extra(3) sum_power2_gt_zero_iff)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   657
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   658
lemma complex_norm_square: "of_real ((norm z)\<^sup>2) = z * cnj z"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   659
  by (cases z)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   660
    (auto simp: complex_eq_iff norm_complex_def power2_eq_square[symmetric] of_real_power[symmetric]
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   661
      simp del: of_real_power)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   662
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   663
lemma complex_div_cnj: "a / b = (a * cnj b) / (norm b)\<^sup>2"
61104
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   664
  using complex_norm_square by auto
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   665
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   666
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: 56541
diff changeset
   667
  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: 59000
diff changeset
   668
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   669
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: 56541
diff changeset
   670
  by (auto simp add: Im_divide)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   671
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   672
lemma complex_div_gt_0: "(Re (a / b) > 0 \<longleftrightarrow> Re (a * cnj b) > 0) \<and> (Im (a / b) > 0 \<longleftrightarrow> Im (a * cnj b) > 0)"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   673
proof (cases "b = 0")
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   674
  case True
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   675
  then show ?thesis by auto
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   676
next
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   677
  case False
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   678
  then have "0 < (Re b)\<^sup>2 + (Im b)\<^sup>2"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   679
    by (simp add: complex_eq_iff sum_power2_gt_zero_iff)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   680
  then show ?thesis
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   681
    by (simp add: Re_divide Im_divide zero_less_divide_iff)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   682
qed
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   683
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   684
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: 59658
diff changeset
   685
  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: 56541
diff changeset
   686
  using complex_div_gt_0 by auto
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   687
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   688
lemma Re_complex_div_ge_0: "Re (a / b) \<ge> 0 \<longleftrightarrow> Re (a * cnj b) \<ge> 0"
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   689
  by (metis le_less Re_complex_div_eq_0 Re_complex_div_gt_0)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   690
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   691
lemma Im_complex_div_ge_0: "Im (a / b) \<ge> 0 \<longleftrightarrow> Im (a * cnj b) \<ge> 0"
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   692
  by (metis Im_complex_div_eq_0 Im_complex_div_gt_0 le_less)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   693
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   694
lemma Re_complex_div_lt_0: "Re (a / b) < 0 \<longleftrightarrow> Re (a * cnj b) < 0"
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   695
  by (metis less_asym neq_iff Re_complex_div_eq_0 Re_complex_div_gt_0)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   696
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   697
lemma Im_complex_div_lt_0: "Im (a / b) < 0 \<longleftrightarrow> Im (a * cnj b) < 0"
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   698
  by (metis Im_complex_div_eq_0 Im_complex_div_gt_0 less_asym neq_iff)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   699
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   700
lemma Re_complex_div_le_0: "Re (a / b) \<le> 0 \<longleftrightarrow> Re (a * cnj b) \<le> 0"
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   701
  by (metis not_le Re_complex_div_gt_0)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   702
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   703
lemma Im_complex_div_le_0: "Im (a / b) \<le> 0 \<longleftrightarrow> Im (a * cnj b) \<le> 0"
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
   704
  by (metis Im_complex_div_gt_0 not_le)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   705
61104
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   706
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: 61076
diff changeset
   707
  by (simp add: Re_divide power2_eq_square)
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   708
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   709
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: 61076
diff changeset
   710
  by (simp add: Im_divide power2_eq_square)
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   711
65578
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65274
diff changeset
   712
lemma Re_divide_Reals [simp]: "r \<in> \<real> \<Longrightarrow> Re (z / r) = Re z / Re r"
61104
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   713
  by (metis Re_divide_of_real of_real_Re)
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   714
65578
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65274
diff changeset
   715
lemma Im_divide_Reals [simp]: "r \<in> \<real> \<Longrightarrow> Im (z / r) = Im z / Re r"
61104
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   716
  by (metis Im_divide_of_real of_real_Re)
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   717
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63569
diff changeset
   718
lemma Re_sum[simp]: "Re (sum f s) = (\<Sum>x\<in>s. Re (f x))"
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   719
  by (induct s rule: infinite_finite_induct) auto
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   720
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63569
diff changeset
   721
lemma Im_sum[simp]: "Im (sum f s) = (\<Sum>x\<in>s. Im(f x))"
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   722
  by (induct s rule: infinite_finite_induct) auto
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   723
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   724
lemma sums_complex_iff: "f sums x \<longleftrightarrow> ((\<lambda>x. Re (f x)) sums Re x) \<and> ((\<lambda>x. Im (f x)) sums Im x)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63569
diff changeset
   725
  unfolding sums_def tendsto_complex_iff Im_sum Re_sum ..
59613
7103019278f0 The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents: 59000
diff changeset
   726
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   727
lemma summable_complex_iff: "summable f \<longleftrightarrow> summable (\<lambda>x. Re (f x)) \<and>  summable (\<lambda>x. Im (f x))"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   728
  unfolding summable_def sums_complex_iff[abs_def] by (metis complex.sel)
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   729
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   730
lemma summable_complex_of_real [simp]: "summable (\<lambda>n. complex_of_real (f n)) \<longleftrightarrow> summable f"
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   731
  unfolding summable_complex_iff by simp
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   732
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   733
lemma summable_Re: "summable f \<Longrightarrow> summable (\<lambda>x. Re (f x))"
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   734
  unfolding summable_complex_iff by blast
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   735
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   736
lemma summable_Im: "summable f \<Longrightarrow> summable (\<lambda>x. Im (f x))"
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   737
  unfolding summable_complex_iff by blast
56217
dc429a5b13c4 Some rationalisation of basic lemmas
paulson <lp15@cam.ac.uk>
parents: 55759
diff changeset
   738
61104
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   739
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: 61076
diff changeset
   740
  by (auto simp: Nats_def complex_eq_iff)
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   741
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   742
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: 61076
diff changeset
   743
  by (auto simp: Ints_def complex_eq_iff)
3c2d4636cebc new lemmas about vector_derivative, complex numbers, paths, etc.
paulson
parents: 61076
diff changeset
   744
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   745
lemma complex_is_Real_iff: "z \<in> \<real> \<longleftrightarrow> Im z = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   746
  by (auto simp: Reals_def complex_eq_iff)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   747
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   748
lemma Reals_cnj_iff: "z \<in> \<real> \<longleftrightarrow> cnj z = z"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   749
  by (auto simp: complex_is_Real_iff complex_eq_iff)
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   750
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61848
diff changeset
   751
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: 56541
diff changeset
   752
  by (simp add: complex_is_Real_iff norm_complex_def)
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   753
65578
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65274
diff changeset
   754
lemma Re_Reals_divide: "r \<in> \<real> \<Longrightarrow> Re (r / z) = Re r * Re z / (norm z)\<^sup>2"
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65274
diff changeset
   755
  by (simp add: Re_divide complex_is_Real_iff cmod_power2)
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65274
diff changeset
   756
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65274
diff changeset
   757
lemma Im_Reals_divide: "r \<in> \<real> \<Longrightarrow> Im (r / z) = -Re r * Im z / (norm z)\<^sup>2"
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65274
diff changeset
   758
  by (simp add: Im_divide complex_is_Real_iff cmod_power2)
e4997c181cce New material from PNT proof, as well as more default [simp] declarations. Also removed duplicate theorems about geometric series
paulson <lp15@cam.ac.uk>
parents: 65274
diff changeset
   759
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   760
lemma series_comparison_complex:
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   761
  fixes f:: "nat \<Rightarrow> 'a::banach"
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   762
  assumes sg: "summable g"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   763
    and "\<And>n. g n \<in> \<real>" "\<And>n. Re (g n) \<ge> 0"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   764
    and fg: "\<And>n. n \<ge> N \<Longrightarrow> norm(f n) \<le> norm(g n)"
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   765
  shows "summable f"
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   766
proof -
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   767
  have g: "\<And>n. cmod (g n) = Re (g n)"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   768
    using assms by (metis abs_of_nonneg in_Reals_norm)
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   769
  show ?thesis
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   770
    apply (rule summable_comparison_test' [where g = "\<lambda>n. norm (g n)" and N=N])
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   771
    using sg
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   772
     apply (auto simp: summable_def)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   773
     apply (rule_tac x = "Re s" in exI)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   774
     apply (auto simp: g sums_Re)
56369
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   775
    apply (metis fg g)
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   776
    done
2704ca85be98 moved generic theorems from Complex_Analysis_Basic; fixed some theorem names
hoelzl
parents: 56331
diff changeset
   777
qed
55734
3f5b2745d659 More complex-related lemmas
paulson <lp15@cam.ac.uk>
parents: 54489
diff changeset
   778
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   779
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   780
subsection \<open>Polar Form for Complex Numbers\<close>
59746
ddae5727c5a9 new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   781
62620
d21dab28b3f9 New results about paths, segments, etc. The notion of simply_connected.
paulson <lp15@cam.ac.uk>
parents: 62379
diff changeset
   782
lemma complex_unimodular_polar:
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   783
  assumes "norm z = 1"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   784
  obtains t where "0 \<le> t" "t < 2 * pi" "z = Complex (cos t) (sin t)"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   785
  by (metis cmod_power2 one_power2 complex_surj sincos_total_2pi [of "Re z" "Im z"] assms)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   786
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   787
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   788
subsubsection \<open>$\cos \theta + i \sin \theta$\<close>
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   789
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   790
primcorec cis :: "real \<Rightarrow> complex"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   791
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   792
    "Re (cis a) = cos a"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   793
  | "Im (cis a) = sin a"
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   794
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   795
lemma cis_zero [simp]: "cis 0 = 1"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   796
  by (simp add: complex_eq_iff)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   797
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   798
lemma norm_cis [simp]: "norm (cis a) = 1"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   799
  by (simp add: norm_complex_def)
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   800
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   801
lemma sgn_cis [simp]: "sgn (cis a) = cis a"
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   802
  by (simp add: sgn_div_norm)
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   803
68721
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   804
lemma cis_2pi [simp]: "cis (2 * pi) = 1"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   805
  by (simp add: cis.ctr complex_eq_iff)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   806
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   807
lemma cis_neq_zero [simp]: "cis a \<noteq> 0"
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   808
  by (metis norm_cis norm_zero zero_neq_one)
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   809
68721
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   810
lemma cis_cnj: "cnj (cis t) = cis (-t)"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   811
  by (simp add: complex_eq_iff)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   812
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   813
lemma cis_mult: "cis a * cis b = cis (a + b)"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   814
  by (simp add: complex_eq_iff cos_add sin_add)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   815
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   816
lemma DeMoivre: "(cis a) ^ n = cis (real n * a)"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   817
  by (induct n) (simp_all add: algebra_simps cis_mult)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   818
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   819
lemma cis_inverse [simp]: "inverse (cis a) = cis (- a)"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   820
  by (simp add: complex_eq_iff)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   821
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   822
lemma cis_divide: "cis a / cis b = cis (a - b)"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   823
  by (simp add: divide_complex_def cis_mult)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   824
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   825
lemma cos_n_Re_cis_pow_n: "cos (real n * a) = Re (cis a ^ n)"
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   826
  by (auto simp add: DeMoivre)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   827
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   828
lemma sin_n_Im_cis_pow_n: "sin (real n * a) = Im (cis a ^ n)"
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   829
  by (auto simp add: DeMoivre)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   830
68499
d4312962161a Rationalisation of complex transcendentals, esp the Arg function
paulson <lp15@cam.ac.uk>
parents: 67234
diff changeset
   831
lemma cis_pi [simp]: "cis pi = -1"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   832
  by (simp add: complex_eq_iff)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   833
68721
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   834
lemma cis_pi_half[simp]: "cis (pi / 2) = \<i>"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   835
  by (simp add: cis.ctr complex_eq_iff)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   836
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   837
lemma cis_minus_pi_half[simp]: "cis (-(pi / 2)) = -\<i>"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   838
  by (simp add: cis.ctr complex_eq_iff)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   839
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   840
lemma cis_multiple_2pi[simp]: "n \<in> \<int> \<Longrightarrow> cis (2 * pi * n) = 1"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   841
  by (auto elim!: Ints_cases simp: cis.ctr one_complex.ctr)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   842
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   843
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   844
subsubsection \<open>$r(\cos \theta + i \sin \theta)$\<close>
44715
1a17d8913976 tuned comments
huffman
parents: 44712
diff changeset
   845
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   846
definition rcis :: "real \<Rightarrow> real \<Rightarrow> complex"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   847
  where "rcis r a = complex_of_real r * cis a"
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   848
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   849
lemma Re_rcis [simp]: "Re(rcis r a) = r * cos a"
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   850
  by (simp add: rcis_def)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   851
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   852
lemma Im_rcis [simp]: "Im(rcis r a) = r * sin a"
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   853
  by (simp add: rcis_def)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   854
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   855
lemma rcis_Ex: "\<exists>r a. z = rcis r a"
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   856
  by (simp add: complex_eq_iff polar_Ex)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   857
61944
5d06ecfdb472 prefer symbols for "abs";
wenzelm
parents: 61848
diff changeset
   858
lemma complex_mod_rcis [simp]: "cmod (rcis r a) = \<bar>r\<bar>"
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   859
  by (simp add: rcis_def norm_mult)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   860
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   861
lemma cis_rcis_eq: "cis a = rcis 1 a"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   862
  by (simp add: rcis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   863
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   864
lemma rcis_mult: "rcis r1 a * rcis r2 b = rcis (r1 * r2) (a + b)"
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   865
  by (simp add: rcis_def cis_mult)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   866
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   867
lemma rcis_zero_mod [simp]: "rcis 0 a = 0"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   868
  by (simp add: rcis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   869
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   870
lemma rcis_zero_arg [simp]: "rcis r 0 = complex_of_real r"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   871
  by (simp add: rcis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   872
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   873
lemma rcis_eq_zero_iff [simp]: "rcis r a = 0 \<longleftrightarrow> r = 0"
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   874
  by (simp add: rcis_def)
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   875
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   876
lemma DeMoivre2: "(rcis r a) ^ n = rcis (r ^ n) (real n * a)"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   877
  by (simp add: rcis_def power_mult_distrib DeMoivre)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   878
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   879
lemma rcis_inverse: "inverse(rcis r a) = rcis (1 / r) (- a)"
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   880
  by (simp add: divide_inverse rcis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   881
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   882
lemma rcis_divide: "rcis r1 a / rcis r2 b = rcis (r1 / r2) (a - b)"
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   883
  by (simp add: rcis_def cis_divide [symmetric])
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   884
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   885
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   886
subsubsection \<open>Complex exponential\<close>
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   887
68721
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   888
lemma exp_Reals_eq:
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   889
  assumes "z \<in> \<real>"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   890
  shows   "exp z = of_real (exp (Re z))"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   891
  using assms by (auto elim!: Reals_cases simp: exp_of_real)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   892
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   893
lemma cis_conv_exp: "cis b = exp (\<i> * b)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   894
proof -
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   895
  have "(\<i> * complex_of_real b) ^ n /\<^sub>R fact n =
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   896
      of_real (cos_coeff n * b^n) + \<i> * of_real (sin_coeff n * b^n)"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   897
    for n :: nat
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   898
  proof -
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   899
    have "\<i> ^ n = fact n *\<^sub>R (cos_coeff n + \<i> * sin_coeff n)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
   900
      by (induct n)
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   901
        (simp_all add: sin_coeff_Suc cos_coeff_Suc complex_eq_iff Re_divide Im_divide field_simps
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   902
          power2_eq_square add_nonneg_eq_0_iff)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   903
    then show ?thesis
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   904
      by (simp add: field_simps)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   905
  qed
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   906
  then show ?thesis
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   907
    using sin_converges [of b] cos_converges [of b]
65274
db2de50de28e Removed [simp] status for Complex_eq. Also tidied some proofs
paulson <lp15@cam.ac.uk>
parents: 65064
diff changeset
   908
    by (auto simp add: Complex_eq cis.ctr exp_def simp del: of_real_mult
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   909
        intro!: sums_unique sums_add sums_mult sums_of_real)
44291
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   910
qed
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   911
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: 61649
diff changeset
   912
lemma exp_eq_polar: "exp z = exp (Re z) * cis (Im z)"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   913
  unfolding cis_conv_exp exp_of_real [symmetric] mult_exp_exp
65274
db2de50de28e Removed [simp] status for Complex_eq. Also tidied some proofs
paulson <lp15@cam.ac.uk>
parents: 65064
diff changeset
   914
  by (cases z) (simp add: Complex_eq)
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   915
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   916
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: 61649
diff changeset
   917
  unfolding exp_eq_polar by simp
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   918
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   919
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: 61649
diff changeset
   920
  unfolding exp_eq_polar by simp
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   921
59746
ddae5727c5a9 new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   922
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: 59741
diff changeset
   923
  by (simp add: norm_complex_def)
ddae5727c5a9 new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   924
ddae5727c5a9 new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   925
lemma norm_exp_eq_Re [simp]: "norm (exp z) = exp (Re z)"
65274
db2de50de28e Removed [simp] status for Complex_eq. Also tidied some proofs
paulson <lp15@cam.ac.uk>
parents: 65064
diff changeset
   926
  by (simp add: cis.code cmod_complex_polar exp_eq_polar Complex_eq)
59746
ddae5727c5a9 new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   927
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: 61649
diff changeset
   928
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: 59741
diff changeset
   929
  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: 61649
diff changeset
   930
  apply (auto simp add: exp_eq_polar rcis_def mult.assoc [symmetric])
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   931
  apply (rule_tac x = "\<i> * complex_of_real a" in exI)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   932
  apply auto
59746
ddae5727c5a9 new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
   933
  done
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   934
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   935
lemma exp_pi_i [simp]: "exp (of_real pi * \<i>) = -1"
61848
9250e546ab23 New complex analysis material
paulson <lp15@cam.ac.uk>
parents: 61799
diff changeset
   936
  by (metis cis_conv_exp cis_pi mult.commute)
9250e546ab23 New complex analysis material
paulson <lp15@cam.ac.uk>
parents: 61799
diff changeset
   937
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   938
lemma exp_pi_i' [simp]: "exp (\<i> * of_real pi) = -1"
63114
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63040
diff changeset
   939
  using cis_conv_exp cis_pi by auto
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63040
diff changeset
   940
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   941
lemma exp_two_pi_i [simp]: "exp (2 * of_real pi * \<i>) = 1"
61762
d50b993b4fb9 Removal of redundant lemmas (diff_less_iff, diff_le_iff) and of the abbreviation Exp. Addition of some new material.
paulson <lp15@cam.ac.uk>
parents: 61649
diff changeset
   942
  by (simp add: exp_eq_polar complex_eq_iff)
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   943
63114
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63040
diff changeset
   944
lemma exp_two_pi_i' [simp]: "exp (\<i> * (of_real pi * 2)) = 1"
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63040
diff changeset
   945
  by (metis exp_two_pi_i mult.commute)
27afe7af7379 Lots of new material for multivariate analysis
paulson <lp15@cam.ac.uk>
parents: 63040
diff changeset
   946
68721
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   947
lemma continuous_on_cis [continuous_intros]:
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   948
  "continuous_on A f \<Longrightarrow> continuous_on A (\<lambda>x. cis (f x))"
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   949
  by (auto simp: cis_conv_exp intro!: continuous_intros)
53ad5c01be3f Small lemmas about analysis
eberlm <eberlm@in.tum.de>
parents: 68499
diff changeset
   950
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   951
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   952
subsubsection \<open>Complex argument\<close>
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   953
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   954
definition arg :: "complex \<Rightarrow> real"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   955
  where "arg z = (if z = 0 then 0 else (SOME a. sgn z = cis a \<and> - pi < a \<and> a \<le> pi))"
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   956
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   957
lemma arg_zero: "arg 0 = 0"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   958
  by (simp add: arg_def)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   959
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   960
lemma arg_unique:
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   961
  assumes "sgn z = cis x" and "-pi < x" and "x \<le> pi"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   962
  shows "arg z = x"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   963
proof -
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   964
  from assms have "z \<noteq> 0" by auto
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   965
  have "(SOME a. sgn z = cis a \<and> -pi < a \<and> a \<le> pi) = x"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   966
  proof
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62620
diff changeset
   967
    fix a
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62620
diff changeset
   968
    define d where "d = a - x"
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   969
    assume a: "sgn z = cis a \<and> - pi < a \<and> a \<le> pi"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   970
    from a assms have "- (2*pi) < d \<and> d < 2*pi"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   971
      unfolding d_def by simp
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   972
    moreover
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   973
    from a assms have "cos a = cos x" and "sin a = sin x"
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   974
      by (simp_all add: complex_eq_iff)
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   975
    then have cos: "cos d = 1"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   976
      by (simp add: d_def cos_diff)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   977
    moreover from cos have "sin d = 0"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   978
      by (rule cos_one_sin_zero)
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   979
    ultimately have "d = 0"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   980
      by (auto simp: sin_zero_iff elim!: evenE dest!: less_2_cases)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   981
    then show "a = x"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   982
      by (simp add: d_def)
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   983
  qed (simp add: assms del: Re_sgn Im_sgn)
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
   984
  with \<open>z \<noteq> 0\<close> show "arg z = x"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   985
    by (simp add: arg_def)
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   986
qed
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   987
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   988
lemma arg_correct:
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   989
  assumes "z \<noteq> 0"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   990
  shows "sgn z = cis (arg z) \<and> -pi < arg z \<and> arg z \<le> pi"
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   991
proof (simp add: arg_def assms, rule someI_ex)
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   992
  obtain r a where z: "z = rcis r a"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   993
    using rcis_Ex by fast
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   994
  with assms have "r \<noteq> 0" by auto
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62620
diff changeset
   995
  define b where "b = (if 0 < r then a else a + pi)"
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   996
  have b: "sgn z = cis b"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   997
    using \<open>r \<noteq> 0\<close> by (simp add: z b_def rcis_def of_real_def sgn_scaleR sgn_if complex_eq_iff)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   998
  have cis_2pi_nat: "cis (2 * pi * real_of_nat n) = 1" for n
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
   999
    by (induct n) (simp_all add: distrib_left cis_mult [symmetric] complex_eq_iff)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1000
  have cis_2pi_int: "cis (2 * pi * real_of_int x) = 1" for x
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1001
    by (cases x rule: int_diff_cases)
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1002
      (simp add: right_diff_distrib cis_divide [symmetric] cis_2pi_nat)
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62620
diff changeset
  1003
  define c where "c = b - 2 * pi * of_int \<lceil>(b - pi) / (2 * pi)\<rceil>"
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1004
  have "sgn z = cis c"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1005
    by (simp add: b c_def cis_divide [symmetric] cis_2pi_int)
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1006
  moreover have "- pi < c \<and> c \<le> pi"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1007
    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: 61609
diff changeset
  1008
    by (simp add: c_def less_divide_eq divide_le_eq algebra_simps del: le_of_int_ceiling)
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1009
  ultimately show "\<exists>a. sgn z = cis a \<and> -pi < a \<and> a \<le> pi"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1010
    by fast
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1011
qed
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1012
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1013
lemma arg_bounded: "- pi < arg z \<and> arg z \<le> pi"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1014
  by (cases "z = 0") (simp_all add: arg_zero arg_correct)
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1015
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1016
lemma cis_arg: "z \<noteq> 0 \<Longrightarrow> cis (arg z) = sgn z"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1017
  by (simp add: arg_correct)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1018
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1019
lemma rcis_cmod_arg: "rcis (cmod z) (arg z) = z"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1020
  by (cases "z = 0") (simp_all add: rcis_def cis_arg sgn_div_norm of_real_def)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1021
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1022
lemma cos_arg_i_mult_zero [simp]: "y \<noteq> 0 \<Longrightarrow> Re y = 0 \<Longrightarrow> cos (arg y) = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1023
  using cis_arg [of y] by (simp add: complex_eq_iff)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1024
67082
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1025
subsection \<open>Complex n-th roots\<close>
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1026
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1027
lemma bij_betw_roots_unity:
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1028
  assumes "n > 0"
68499
d4312962161a Rationalisation of complex transcendentals, esp the Arg function
paulson <lp15@cam.ac.uk>
parents: 67234
diff changeset
  1029
  shows   "bij_betw (\<lambda>k. cis (2 * pi * real k / real n)) {..<n} {z. z ^ n = 1}"
67082
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1030
    (is "bij_betw ?f _ _")
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1031
  unfolding bij_betw_def
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1032
proof (intro conjI)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1033
  show inj: "inj_on ?f {..<n}" unfolding inj_on_def
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1034
  proof (safe, goal_cases)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1035
    case (1 k l)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1036
    hence kl: "k < n" "l < n" by simp_all
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1037
    from 1 have "1 = ?f k / ?f l" by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1038
    also have "\<dots> = cis (2*pi*(real k - real l)/n)"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1039
      using assms by (simp add: field_simps cis_divide)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1040
    finally have "cos (2*pi*(real k - real l) / n) = 1"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1041
      by (simp add: complex_eq_iff)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1042
    then obtain m :: int where "2 * pi * (real k - real l) / real n = real_of_int m * 2 * pi"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1043
      by (subst (asm) cos_one_2pi_int) blast
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1044
    hence "real_of_int (int k - int l) = real_of_int (m * int n)"
70817
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70802
diff changeset
  1045
      unfolding of_int_diff of_int_mult using assms
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70802
diff changeset
  1046
      by (simp add: nonzero_divide_eq_eq)
67082
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1047
    also note of_int_eq_iff
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1048
    finally have *: "abs m * n = abs (int k - int l)" by (simp add: abs_mult)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1049
    also have "\<dots> < int n" using kl by linarith
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1050
    finally have "m = 0" using assms by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1051
    with * show "k = l" by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1052
  qed
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1053
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1054
  have subset: "?f ` {..<n} \<subseteq> {z. z ^ n = 1}"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1055
  proof safe
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1056
    fix k :: nat
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1057
    have "cis (2 * pi * real k / real n) ^ n = cis (2 * pi) ^ k"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1058
      using assms by (simp add: DeMoivre mult_ac)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1059
    also have "cis (2 * pi) = 1" by (simp add: complex_eq_iff)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1060
    finally show "?f k ^ n = 1" by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1061
  qed
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1062
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1063
  have "n = card {..<n}" by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1064
  also from assms and subset have "\<dots> \<le> card {z::complex. z ^ n = 1}"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1065
    by (intro card_inj_on_le[OF inj]) (auto simp: finite_roots_unity)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1066
  finally have card: "card {z::complex. z ^ n = 1} = n"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1067
    using assms by (intro antisym card_roots_unity) auto
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1068
68499
d4312962161a Rationalisation of complex transcendentals, esp the Arg function
paulson <lp15@cam.ac.uk>
parents: 67234
diff changeset
  1069
  have "card (?f ` {..<n}) = card {z::complex. z ^ n = 1}"
67082
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1070
    using card inj by (subst card_image) auto
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1071
  with subset and assms show "?f ` {..<n} = {z::complex. z ^ n = 1}"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1072
    by (intro card_subset_eq finite_roots_unity) auto
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1073
qed
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1074
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1075
lemma card_roots_unity_eq:
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1076
  assumes "n > 0"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1077
  shows   "card {z::complex. z ^ n = 1} = n"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1078
  using bij_betw_same_card [OF bij_betw_roots_unity [OF assms]] by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1079
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1080
lemma bij_betw_nth_root_unity:
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1081
  fixes c :: complex and n :: nat
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1082
  assumes c: "c \<noteq> 0" and n: "n > 0"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1083
  defines "c' \<equiv> root n (norm c) * cis (arg c / n)"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1084
  shows "bij_betw (\<lambda>z. c' * z) {z. z ^ n = 1} {z. z ^ n = c}"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1085
proof -
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1086
  have "c' ^ n = of_real (root n (norm c) ^ n) * cis (arg c)"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1087
    unfolding of_real_power using n by (simp add: c'_def power_mult_distrib DeMoivre)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1088
  also from n have "root n (norm c) ^ n = norm c" by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1089
  also from c have "of_real \<dots> * cis (arg c) = c" by (simp add: cis_arg Complex.sgn_eq)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1090
  finally have [simp]: "c' ^ n = c" .
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1091
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1092
  show ?thesis unfolding bij_betw_def inj_on_def
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1093
  proof safe
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1094
    fix z :: complex assume "z ^ n = 1"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1095
    hence "(c' * z) ^ n = c' ^ n" by (simp add: power_mult_distrib)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1096
    also have "c' ^ n = of_real (root n (norm c) ^ n) * cis (arg c)"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1097
      unfolding of_real_power using n by (simp add: c'_def power_mult_distrib DeMoivre)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1098
    also from n have "root n (norm c) ^ n = norm c" by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1099
    also from c have "\<dots> * cis (arg c) = c" by (simp add: cis_arg Complex.sgn_eq)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1100
    finally show "(c' * z) ^ n = c" .
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1101
  next
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1102
    fix z assume z: "c = z ^ n"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1103
    define z' where "z' = z / c'"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1104
    from c and n have "c' \<noteq> 0" by (auto simp: c'_def)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1105
    with n c have "z = c' * z'" and "z' ^ n = 1"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1106
      by (auto simp: z'_def power_divide z)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1107
    thus "z \<in> (\<lambda>z. c' * z) ` {z. z ^ n = 1}" by blast
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1108
  qed (insert c n, auto simp: c'_def)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1109
qed
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1110
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1111
lemma finite_nth_roots [intro]:
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1112
  assumes "n > 0"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1113
  shows   "finite {z::complex. z ^ n = c}"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1114
proof (cases "c = 0")
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1115
  case True
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1116
  with assms have "{z::complex. z ^ n = c} = {0}" by auto
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1117
  thus ?thesis by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1118
next
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1119
  case False
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1120
  from assms have "finite {z::complex. z ^ n = 1}" by (intro finite_roots_unity) simp_all
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1121
  also have "?this \<longleftrightarrow> ?thesis"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1122
    by (rule bij_betw_finite, rule bij_betw_nth_root_unity) fact+
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1123
  finally show ?thesis .
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1124
qed
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1125
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1126
lemma card_nth_roots:
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1127
  assumes "c \<noteq> 0" "n > 0"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1128
  shows   "card {z::complex. z ^ n = c} = n"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1129
proof -
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1130
  have "card {z. z ^ n = c} = card {z::complex. z ^ n = 1}"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1131
    by (rule sym, rule bij_betw_same_card, rule bij_betw_nth_root_unity) fact+
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1132
  also have "\<dots> = n" by (rule card_roots_unity_eq) fact+
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1133
  finally show ?thesis .
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1134
qed
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1135
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1136
lemma sum_roots_unity:
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1137
  assumes "n > 1"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1138
  shows   "\<Sum>{z::complex. z ^ n = 1} = 0"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1139
proof -
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1140
  define \<omega> where "\<omega> = cis (2 * pi / real n)"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1141
  have [simp]: "\<omega> \<noteq> 1"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1142
  proof
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1143
    assume "\<omega> = 1"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1144
    with assms obtain k :: int where "2 * pi / real n = 2 * pi * of_int k"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1145
      by (auto simp: \<omega>_def complex_eq_iff cos_one_2pi_int)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1146
    with assms have "real n * of_int k = 1" by (simp add: field_simps)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1147
    also have "real n * of_int k = of_int (int n * k)" by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1148
    also have "1 = (of_int 1 :: real)" by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1149
    also note of_int_eq_iff
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1150
    finally show False using assms by (auto simp: zmult_eq_1_iff)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1151
  qed
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1152
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1153
  have "(\<Sum>z | z ^ n = 1. z :: complex) = (\<Sum>k<n. cis (2 * pi * real k / real n))"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1154
    using assms by (intro sum.reindex_bij_betw [symmetric] bij_betw_roots_unity) auto
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1155
  also have "\<dots> = (\<Sum>k<n. \<omega> ^ k)"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1156
    by (intro sum.cong refl) (auto simp: \<omega>_def DeMoivre mult_ac)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1157
  also have "\<dots> = (\<omega> ^ n - 1) / (\<omega> - 1)"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1158
    by (subst geometric_sum) auto
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1159
  also have "\<omega> ^ n - 1 = cis (2 * pi) - 1" using assms by (auto simp: \<omega>_def DeMoivre)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1160
  also have "\<dots> = 0" by (simp add: complex_eq_iff)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1161
  finally show ?thesis by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1162
qed
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1163
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1164
lemma sum_nth_roots:
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1165
  assumes "n > 1"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1166
  shows   "\<Sum>{z::complex. z ^ n = c} = 0"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1167
proof (cases "c = 0")
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1168
  case True
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1169
  with assms have "{z::complex. z ^ n = c} = {0}" by auto
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1170
  also have "\<Sum>\<dots> = 0" by simp
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1171
  finally show ?thesis .
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1172
next
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1173
  case False
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1174
  define c' where "c' = root n (norm c) * cis (arg c / n)"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1175
  from False and assms have "(\<Sum>{z. z ^ n = c}) = (\<Sum>z | z ^ n = 1. c' * z)"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1176
    by (subst sum.reindex_bij_betw [OF bij_betw_nth_root_unity, symmetric])
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1177
       (auto simp: sum_distrib_left finite_roots_unity c'_def)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1178
  also from assms have "\<dots> = 0"
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1179
    by (simp add: sum_distrib_left [symmetric] sum_roots_unity)
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1180
  finally show ?thesis .
4e4bea76e559 Facts about complex n-th roots
eberlm <eberlm@in.tum.de>
parents: 66793
diff changeset
  1181
qed
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1182
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
  1183
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: 56541
diff changeset
  1184
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1185
primcorec csqrt :: "complex \<Rightarrow> complex"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1186
  where
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1187
    "Re (csqrt z) = sqrt ((cmod z + Re z) / 2)"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1188
  | "Im (csqrt z) = (if Im z = 0 then 1 else sgn (Im z)) * sqrt ((cmod z - Re z) / 2)"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1189
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1190
lemma csqrt_of_real_nonneg [simp]: "Im x = 0 \<Longrightarrow> Re x \<ge> 0 \<Longrightarrow> csqrt x = sqrt (Re x)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1191
  by (simp add: complex_eq_iff norm_complex_def)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1192
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1193
lemma csqrt_of_real_nonpos [simp]: "Im x = 0 \<Longrightarrow> Re x \<le> 0 \<Longrightarrow> csqrt x = \<i> * sqrt \<bar>Re x\<bar>"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1194
  by (simp add: complex_eq_iff norm_complex_def)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1195
59862
44b3f4fa33ca New material and binomial fix
paulson <lp15@cam.ac.uk>
parents: 59746
diff changeset
  1196
lemma of_real_sqrt: "x \<ge> 0 \<Longrightarrow> of_real (sqrt x) = csqrt (of_real x)"
44b3f4fa33ca New material and binomial fix
paulson <lp15@cam.ac.uk>
parents: 59746
diff changeset
  1197
  by (simp add: complex_eq_iff norm_complex_def)
44b3f4fa33ca New material and binomial fix
paulson <lp15@cam.ac.uk>
parents: 59746
diff changeset
  1198
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1199
lemma csqrt_0 [simp]: "csqrt 0 = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1200
  by simp
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1201
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1202
lemma csqrt_1 [simp]: "csqrt 1 = 1"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1203
  by simp
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1204
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1205
lemma csqrt_ii [simp]: "csqrt \<i> = (1 + \<i>) / sqrt 2"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1206
  by (simp add: complex_eq_iff Re_divide Im_divide real_sqrt_divide real_div_sqrt)
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1207
59741
5b762cd73a8e Lots of new material on complex-valued functions. Modified simplification of (x/n)^k
paulson <lp15@cam.ac.uk>
parents: 59658
diff changeset
  1208
lemma power2_csqrt[simp,algebra]: "(csqrt z)\<^sup>2 = z"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1209
proof (cases "Im z = 0")
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1210
  case True
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1211
  then show ?thesis
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1212
    using real_sqrt_pow2[of "Re z"] real_sqrt_pow2[of "- Re z"]
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1213
    by (cases "0::real" "Re z" rule: linorder_cases)
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1214
      (simp_all add: complex_eq_iff Re_power2 Im_power2 power2_eq_square cmod_eq_Re)
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1215
next
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1216
  case False
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1217
  moreover have "cmod z * cmod z - Re z * Re z = Im z * Im z"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1218
    by (simp add: norm_complex_def power2_eq_square)
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1219
  moreover have "\<bar>Re z\<bar> \<le> cmod z"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1220
    by (simp add: norm_complex_def)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1221
  ultimately show ?thesis
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1222
    by (simp add: Re_power2 Im_power2 complex_eq_iff real_sgn_eq
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1223
        field_simps real_sqrt_mult[symmetric] real_sqrt_divide)
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1224
qed
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1225
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1226
lemma csqrt_eq_0 [simp]: "csqrt z = 0 \<longleftrightarrow> z = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1227
  by auto (metis power2_csqrt power_eq_0_iff)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1228
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1229
lemma csqrt_eq_1 [simp]: "csqrt z = 1 \<longleftrightarrow> z = 1"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1230
  by auto (metis power2_csqrt power2_eq_1_iff)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1231
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1232
lemma csqrt_principal: "0 < Re (csqrt z) \<or> Re (csqrt z) = 0 \<and> 0 \<le> Im (csqrt z)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1233
  by (auto simp add: not_less cmod_plus_Re_le_0_iff Im_eq_0)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1234
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1235
lemma Re_csqrt: "0 \<le> Re (csqrt z)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1236
  by (metis csqrt_principal le_less)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1237
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1238
lemma csqrt_square:
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1239
  assumes "0 < Re b \<or> (Re b = 0 \<and> 0 \<le> Im b)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1240
  shows "csqrt (b^2) = b"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1241
proof -
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1242
  have "csqrt (b^2) = b \<or> csqrt (b^2) = - b"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1243
    by (simp add: power2_eq_iff[symmetric])
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1244
  moreover have "csqrt (b^2) \<noteq> -b \<or> b = 0"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1245
    using csqrt_principal[of "b ^ 2"] assms
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1246
    by (intro disjCI notI) (auto simp: complex_eq_iff)
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1247
  ultimately show ?thesis
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1248
    by auto
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1249
qed
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1250
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1251
lemma csqrt_unique: "w\<^sup>2 = z \<Longrightarrow> 0 < Re w \<or> Re w = 0 \<and> 0 \<le> Im w \<Longrightarrow> csqrt z = w"
59746
ddae5727c5a9 new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
  1252
  by (auto simp: csqrt_square)
ddae5727c5a9 new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
  1253
59613
7103019278f0 The function frac. Various lemmas about limits, series, the exp function, etc.
paulson <lp15@cam.ac.uk>
parents: 59000
diff changeset
  1254
lemma csqrt_minus [simp]:
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1255
  assumes "Im x < 0 \<or> (Im x = 0 \<and> 0 \<le> Re x)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1256
  shows "csqrt (- x) = \<i> * csqrt x"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1257
proof -
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1258
  have "csqrt ((\<i> * csqrt x)^2) = \<i> * csqrt x"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1259
  proof (rule csqrt_square)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1260
    have "Im (csqrt x) \<le> 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1261
      using assms by (auto simp add: cmod_eq_Re mult_le_0_iff field_simps complex_Re_le_cmod)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1262
    then show "0 < Re (\<i> * csqrt x) \<or> Re (\<i> * csqrt x) = 0 \<and> 0 \<le> Im (\<i> * csqrt x)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1263
      by (auto simp add: Re_csqrt simp del: csqrt.simps)
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1264
  qed
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1265
  also have "(\<i> * csqrt x)^2 = - x"
59746
ddae5727c5a9 new HOL Light material about exp, sin, cos
paulson <lp15@cam.ac.uk>
parents: 59741
diff changeset
  1266
    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: 56541
diff changeset
  1267
  finally show ?thesis .
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1268
qed
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
  1269
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1270
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60429
diff changeset
  1271
text \<open>Legacy theorem names\<close>
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
  1272
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1273
lemmas cmod_def = norm_complex_def
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1274
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1275
lemma legacy_Complex_simps:
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1276
  shows Complex_eq_0: "Complex a b = 0 \<longleftrightarrow> a = 0 \<and> b = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1277
    and complex_add: "Complex a b + Complex c d = Complex (a + c) (b + d)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1278
    and complex_minus: "- (Complex a b) = Complex (- a) (- b)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1279
    and complex_diff: "Complex a b - Complex c d = Complex (a - c) (b - d)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1280
    and Complex_eq_1: "Complex a b = 1 \<longleftrightarrow> a = 1 \<and> b = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1281
    and Complex_eq_neg_1: "Complex a b = - 1 \<longleftrightarrow> a = - 1 \<and> b = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1282
    and complex_mult: "Complex a b * Complex c d = Complex (a * c - b * d) (a * d + b * c)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1283
    and complex_inverse: "inverse (Complex a b) = Complex (a / (a\<^sup>2 + b\<^sup>2)) (- b / (a\<^sup>2 + b\<^sup>2))"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1284
    and Complex_eq_numeral: "Complex a b = numeral w \<longleftrightarrow> a = numeral w \<and> b = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1285
    and Complex_eq_neg_numeral: "Complex a b = - numeral w \<longleftrightarrow> a = - numeral w \<and> b = 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1286
    and complex_scaleR: "scaleR r (Complex a b) = Complex (r * a) (r * b)"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1287
    and Complex_eq_i: "Complex x y = \<i> \<longleftrightarrow> x = 0 \<and> y = 1"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1288
    and i_mult_Complex: "\<i> * Complex a b = Complex (- b) a"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1289
    and Complex_mult_i: "Complex a b * \<i> = Complex (- b) a"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1290
    and i_complex_of_real: "\<i> * complex_of_real r = Complex 0 r"
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1291
    and complex_of_real_i: "complex_of_real r * \<i> = Complex 0 r"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1292
    and Complex_add_complex_of_real: "Complex x y + complex_of_real r = Complex (x+r) y"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1293
    and complex_of_real_add_Complex: "complex_of_real r + Complex x y = Complex (r+x) y"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1294
    and Complex_mult_complex_of_real: "Complex x y * complex_of_real r = Complex (x*r) (y*r)"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1295
    and complex_of_real_mult_Complex: "complex_of_real r * Complex x y = Complex (r*x) (r*y)"
63569
7e0b0db5e9ac misc tuning and modernization;
wenzelm
parents: 63114
diff changeset
  1296
    and complex_eq_cancel_iff2: "(Complex x y = complex_of_real xa) = (x = xa \<and> y = 0)"
66793
deabce3ccf1f new material about connectedness, etc.
paulson <lp15@cam.ac.uk>
parents: 65583
diff changeset
  1297
    and complex_cnj: "cnj (Complex a b) = Complex a (- b)"
64267
b9a1486e79be setsum -> sum
nipkow
parents: 63569
diff changeset
  1298
    and Complex_sum': "sum (\<lambda>x. Complex (f x) 0) s = Complex (sum f s) 0"
b9a1486e79be setsum -> sum
nipkow
parents: 63569
diff changeset
  1299
    and Complex_sum: "Complex (sum f s) 0 = sum (\<lambda>x. Complex (f x) 0) s"
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1300
    and complex_of_real_def: "complex_of_real r = Complex r 0"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1301
    and complex_norm: "cmod (Complex x y) = sqrt (x\<^sup>2 + y\<^sup>2)"
65274
db2de50de28e Removed [simp] status for Complex_eq. Also tidied some proofs
paulson <lp15@cam.ac.uk>
parents: 65064
diff changeset
  1302
  by (simp_all add: norm_complex_def field_simps complex_eq_iff Re_divide Im_divide)
56889
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1303
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1304
lemma Complex_in_Reals: "Complex x 0 \<in> \<real>"
48a745e1bde7 avoid the Complex constructor, use the more natural Re/Im view; moved csqrt to Complex.
hoelzl
parents: 56541
diff changeset
  1305
  by (metis Reals_of_real complex_of_real_def)
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
  1306
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
  1307
end