src/HOL/Complex.thy
author huffman
Thu, 08 Sep 2011 10:07:53 -0700
changeset 44846 e9d1fcbc7d20
parent 44844 f74a4175a3a8
child 44902 9ba11d41cd1f
permissions -rw-r--r--
remove unnecessary intermediate lemmas
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41959
b460124855b8 tuned headers;
wenzelm
parents: 37887
diff changeset
     1
(*  Title:       HOL/Complex.thy
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
     2
    Author:      Jacques D. Fleuriot
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
     3
    Copyright:   2001 University of Edinburgh
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
     4
    Conversion to Isar and new proofs by Lawrence C Paulson, 2003/4
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
     5
*)
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
     6
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
     7
header {* Complex Numbers: Rectangular and Polar Representations *}
14373
67a628beb981 tidying of the complex numbers
paulson
parents: 14354
diff changeset
     8
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15085
diff changeset
     9
theory Complex
28952
15a4b2cf8c34 made repository layout more coherent with logical distribution structure; stripped some $Id$s
haftmann
parents: 28944
diff changeset
    10
imports Transcendental
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15085
diff changeset
    11
begin
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    12
14373
67a628beb981 tidying of the complex numbers
paulson
parents: 14354
diff changeset
    13
datatype complex = Complex real real
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    14
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    15
primrec Re :: "complex \<Rightarrow> real"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    16
  where Re: "Re (Complex x y) = x"
14373
67a628beb981 tidying of the complex numbers
paulson
parents: 14354
diff changeset
    17
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    18
primrec Im :: "complex \<Rightarrow> real"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    19
  where Im: "Im (Complex x y) = y"
14373
67a628beb981 tidying of the complex numbers
paulson
parents: 14354
diff changeset
    20
67a628beb981 tidying of the complex numbers
paulson
parents: 14354
diff changeset
    21
lemma complex_surj [simp]: "Complex (Re z) (Im z) = z"
67a628beb981 tidying of the complex numbers
paulson
parents: 14354
diff changeset
    22
  by (induct z) simp
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    23
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
    24
lemma complex_eqI [intro?]: "\<lbrakk>Re x = Re y; Im x = Im y\<rbrakk> \<Longrightarrow> x = y"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    25
  by (induct x, induct y) simp
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    26
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
    27
lemma complex_eq_iff: "x = y \<longleftrightarrow> Re x = Re y \<and> Im x = Im y"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    28
  by (induct x, induct y) simp
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    29
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    30
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    31
subsection {* Addition and Subtraction *}
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    32
25599
haftmann
parents: 25571
diff changeset
    33
instantiation complex :: ab_group_add
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    34
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    35
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    36
definition complex_zero_def:
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    37
  "0 = Complex 0 0"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    38
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    39
definition complex_add_def:
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    40
  "x + y = Complex (Re x + Re y) (Im x + Im y)"
23124
892e0a4551da use new-style instance declarations
huffman
parents: 23123
diff changeset
    41
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    42
definition complex_minus_def:
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    43
  "- x = Complex (- Re x) (- Im x)"
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
    44
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    45
definition complex_diff_def:
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    46
  "x - (y\<Colon>complex) = x + - y"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    47
25599
haftmann
parents: 25571
diff changeset
    48
lemma Complex_eq_0 [simp]: "Complex a b = 0 \<longleftrightarrow> a = 0 \<and> b = 0"
haftmann
parents: 25571
diff changeset
    49
  by (simp add: complex_zero_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
    50
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
    51
lemma complex_Re_zero [simp]: "Re 0 = 0"
25599
haftmann
parents: 25571
diff changeset
    52
  by (simp add: complex_zero_def)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
    53
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
    54
lemma complex_Im_zero [simp]: "Im 0 = 0"
25599
haftmann
parents: 25571
diff changeset
    55
  by (simp add: complex_zero_def)
haftmann
parents: 25571
diff changeset
    56
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    57
lemma complex_add [simp]:
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    58
  "Complex a b + Complex c d = Complex (a + c) (b + d)"
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    59
  by (simp add: complex_add_def)
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    60
25599
haftmann
parents: 25571
diff changeset
    61
lemma complex_Re_add [simp]: "Re (x + y) = Re x + Re y"
haftmann
parents: 25571
diff changeset
    62
  by (simp add: complex_add_def)
haftmann
parents: 25571
diff changeset
    63
haftmann
parents: 25571
diff changeset
    64
lemma complex_Im_add [simp]: "Im (x + y) = Im x + Im y"
haftmann
parents: 25571
diff changeset
    65
  by (simp add: complex_add_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
    66
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    67
lemma complex_minus [simp]:
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    68
  "- (Complex a b) = Complex (- a) (- b)"
25599
haftmann
parents: 25571
diff changeset
    69
  by (simp add: complex_minus_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    70
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    71
lemma complex_Re_minus [simp]: "Re (- x) = - Re x"
25599
haftmann
parents: 25571
diff changeset
    72
  by (simp add: complex_minus_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    73
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    74
lemma complex_Im_minus [simp]: "Im (- x) = - Im x"
25599
haftmann
parents: 25571
diff changeset
    75
  by (simp add: complex_minus_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    76
23275
339cdc29b0bc declare complex_diff as simp rule
huffman
parents: 23125
diff changeset
    77
lemma complex_diff [simp]:
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    78
  "Complex a b - Complex c d = Complex (a - c) (b - d)"
25599
haftmann
parents: 25571
diff changeset
    79
  by (simp add: complex_diff_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    80
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    81
lemma complex_Re_diff [simp]: "Re (x - y) = Re x - Re y"
25599
haftmann
parents: 25571
diff changeset
    82
  by (simp add: complex_diff_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    83
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    84
lemma complex_Im_diff [simp]: "Im (x - y) = Im x - Im y"
25599
haftmann
parents: 25571
diff changeset
    85
  by (simp add: complex_diff_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    86
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    87
instance
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    88
  by intro_classes (simp_all add: complex_add_def complex_diff_def)
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    89
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    90
end
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    91
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
    92
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    93
subsection {* Multiplication and Division *}
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
    94
36409
d323e7773aa8 use new classes (linordered_)field_inverse_zero
haftmann
parents: 36349
diff changeset
    95
instantiation complex :: field_inverse_zero
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    96
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
    97
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    98
definition complex_one_def:
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
    99
  "1 = Complex 1 0"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   100
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   101
definition complex_mult_def:
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   102
  "x * y = Complex (Re x * Re y - Im x * Im y) (Re x * Im y + Im x * Re y)"
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   103
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   104
definition complex_inverse_def:
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   105
  "inverse x =
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   106
    Complex (Re x / ((Re x)\<twosuperior> + (Im x)\<twosuperior>)) (- Im x / ((Re x)\<twosuperior> + (Im x)\<twosuperior>))"
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   107
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   108
definition complex_divide_def:
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   109
  "x / (y\<Colon>complex) = x * inverse y"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   110
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   111
lemma Complex_eq_1 [simp]: "(Complex a b = 1) = (a = 1 \<and> b = 0)"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   112
  by (simp add: complex_one_def)
22861
8ec47039614e clean up complex norm proofs, remove redundant lemmas
huffman
parents: 22852
diff changeset
   113
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   114
lemma complex_Re_one [simp]: "Re 1 = 1"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   115
  by (simp add: complex_one_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   116
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   117
lemma complex_Im_one [simp]: "Im 1 = 0"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   118
  by (simp add: complex_one_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   119
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   120
lemma complex_mult [simp]:
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   121
  "Complex a b * Complex c d = Complex (a * c - b * d) (a * d + b * c)"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   122
  by (simp add: complex_mult_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   123
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   124
lemma complex_Re_mult [simp]: "Re (x * y) = Re x * Re y - Im x * Im y"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   125
  by (simp add: complex_mult_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   126
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   127
lemma complex_Im_mult [simp]: "Im (x * y) = Re x * Im y + Im x * Re y"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   128
  by (simp add: complex_mult_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   129
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   130
lemma complex_inverse [simp]:
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   131
  "inverse (Complex a b) = Complex (a / (a\<twosuperior> + b\<twosuperior>)) (- b / (a\<twosuperior> + b\<twosuperior>))"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   132
  by (simp add: complex_inverse_def)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14334
diff changeset
   133
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   134
lemma complex_Re_inverse:
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   135
  "Re (inverse x) = Re x / ((Re x)\<twosuperior> + (Im x)\<twosuperior>)"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   136
  by (simp add: complex_inverse_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   137
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   138
lemma complex_Im_inverse:
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   139
  "Im (inverse x) = - Im x / ((Re x)\<twosuperior> + (Im x)\<twosuperior>)"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   140
  by (simp add: complex_inverse_def)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14334
diff changeset
   141
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   142
instance
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   143
  by intro_classes (simp_all add: complex_mult_def
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   144
    right_distrib left_distrib right_diff_distrib left_diff_distrib
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   145
    complex_inverse_def complex_divide_def
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   146
    power2_eq_square add_divide_distrib [symmetric]
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   147
    complex_eq_iff)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14334
diff changeset
   148
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   149
end
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   150
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   151
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   152
subsection {* Numerals and Arithmetic *}
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   153
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   154
instantiation complex :: number_ring
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   155
begin
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   156
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   157
definition complex_number_of_def:
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   158
  "number_of w = (of_int w \<Colon> complex)"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   159
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   160
instance
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   161
  by intro_classes (simp only: complex_number_of_def)
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   162
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   163
end
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   164
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   165
lemma complex_Re_of_nat [simp]: "Re (of_nat n) = of_nat n"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   166
  by (induct n) simp_all
20556
2e8227b81bf1 add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents: 20485
diff changeset
   167
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   168
lemma complex_Im_of_nat [simp]: "Im (of_nat n) = 0"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   169
  by (induct n) simp_all
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   170
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   171
lemma complex_Re_of_int [simp]: "Re (of_int z) = of_int z"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   172
  by (cases z rule: int_diff_cases) simp
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   173
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   174
lemma complex_Im_of_int [simp]: "Im (of_int z) = 0"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   175
  by (cases z rule: int_diff_cases) simp
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   176
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   177
lemma complex_Re_number_of [simp]: "Re (number_of v) = number_of v"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   178
  unfolding number_of_eq by (rule complex_Re_of_int)
20556
2e8227b81bf1 add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents: 20485
diff changeset
   179
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   180
lemma complex_Im_number_of [simp]: "Im (number_of v) = 0"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   181
  unfolding number_of_eq by (rule complex_Im_of_int)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   182
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   183
lemma Complex_eq_number_of [simp]:
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   184
  "(Complex a b = number_of w) = (a = number_of w \<and> b = 0)"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   185
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   186
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   187
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   188
subsection {* Scalar Multiplication *}
20556
2e8227b81bf1 add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents: 20485
diff changeset
   189
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   190
instantiation complex :: real_field
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   191
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   192
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   193
definition complex_scaleR_def:
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   194
  "scaleR r x = Complex (r * Re x) (r * Im x)"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   195
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   196
lemma complex_scaleR [simp]:
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   197
  "scaleR r (Complex a b) = Complex (r * a) (r * b)"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   198
  unfolding complex_scaleR_def by simp
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   199
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   200
lemma complex_Re_scaleR [simp]: "Re (scaleR r x) = r * Re x"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   201
  unfolding complex_scaleR_def by simp
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   202
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   203
lemma complex_Im_scaleR [simp]: "Im (scaleR r x) = r * Im x"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   204
  unfolding complex_scaleR_def by simp
22972
3e96b98d37c6 generalized sgn function to work on any real normed vector space
huffman
parents: 22968
diff changeset
   205
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   206
instance
20556
2e8227b81bf1 add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents: 20485
diff changeset
   207
proof
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   208
  fix a b :: real and x y :: complex
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   209
  show "scaleR a (x + y) = scaleR a x + scaleR a y"
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   210
    by (simp add: complex_eq_iff right_distrib)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   211
  show "scaleR (a + b) x = scaleR a x + scaleR b x"
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   212
    by (simp add: complex_eq_iff left_distrib)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   213
  show "scaleR a (scaleR b x) = scaleR (a * b) x"
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   214
    by (simp add: complex_eq_iff mult_assoc)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   215
  show "scaleR 1 x = x"
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   216
    by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   217
  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
   218
    by (simp add: complex_eq_iff algebra_simps)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   219
  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
   220
    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
   221
qed
2e8227b81bf1 add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents: 20485
diff changeset
   222
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   223
end
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   224
20556
2e8227b81bf1 add instance for real_algebra_1 and real_normed_div_algebra
huffman
parents: 20485
diff changeset
   225
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   226
subsection{* Properties of Embedding from Reals *}
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   227
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   228
abbreviation complex_of_real :: "real \<Rightarrow> complex"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   229
  where "complex_of_real \<equiv> of_real"
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   230
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   231
lemma complex_of_real_def: "complex_of_real r = Complex r 0"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   232
  by (simp add: of_real_def complex_scaleR_def)
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   233
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   234
lemma Re_complex_of_real [simp]: "Re (complex_of_real z) = z"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   235
  by (simp add: complex_of_real_def)
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   236
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   237
lemma Im_complex_of_real [simp]: "Im (complex_of_real z) = 0"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   238
  by (simp add: complex_of_real_def)
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   239
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   240
lemma Complex_add_complex_of_real [simp]:
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   241
  shows "Complex x y + complex_of_real r = Complex (x+r) y"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   242
  by (simp add: complex_of_real_def)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   243
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   244
lemma complex_of_real_add_Complex [simp]:
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   245
  shows "complex_of_real r + Complex x y = Complex (r+x) y"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   246
  by (simp add: complex_of_real_def)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   247
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   248
lemma Complex_mult_complex_of_real:
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   249
  shows "Complex x y * complex_of_real r = Complex (x*r) (y*r)"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   250
  by (simp add: complex_of_real_def)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   251
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   252
lemma complex_of_real_mult_Complex:
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   253
  shows "complex_of_real r * Complex x y = Complex (r*x) (r*y)"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   254
  by (simp add: complex_of_real_def)
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   255
44841
huffman
parents: 44828
diff changeset
   256
lemma complex_eq_cancel_iff2 [simp]:
huffman
parents: 44828
diff changeset
   257
  shows "(Complex x y = complex_of_real xa) = (x = xa & y = 0)"
huffman
parents: 44828
diff changeset
   258
  by (simp add: complex_of_real_def)
huffman
parents: 44828
diff changeset
   259
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   260
lemma complex_split_polar:
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   261
     "\<exists>r a. z = complex_of_real r * (Complex (cos a) (sin a))"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   262
  by (simp add: complex_eq_iff polar_Ex)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   263
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   264
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   265
subsection {* Vector Norm *}
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   266
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   267
instantiation complex :: real_normed_field
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   268
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   269
31413
729d90a531e4 introduce class topological_space as a superclass of metric_space
huffman
parents: 31292
diff changeset
   270
definition complex_norm_def:
729d90a531e4 introduce class topological_space as a superclass of metric_space
huffman
parents: 31292
diff changeset
   271
  "norm z = sqrt ((Re z)\<twosuperior> + (Im z)\<twosuperior>)"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   272
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   273
abbreviation cmod :: "complex \<Rightarrow> real"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   274
  where "cmod \<equiv> norm"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   275
31413
729d90a531e4 introduce class topological_space as a superclass of metric_space
huffman
parents: 31292
diff changeset
   276
definition complex_sgn_def:
729d90a531e4 introduce class topological_space as a superclass of metric_space
huffman
parents: 31292
diff changeset
   277
  "sgn x = x /\<^sub>R cmod x"
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   278
31413
729d90a531e4 introduce class topological_space as a superclass of metric_space
huffman
parents: 31292
diff changeset
   279
definition dist_complex_def:
729d90a531e4 introduce class topological_space as a superclass of metric_space
huffman
parents: 31292
diff changeset
   280
  "dist x y = cmod (x - y)"
729d90a531e4 introduce class topological_space as a superclass of metric_space
huffman
parents: 31292
diff changeset
   281
37767
a2b7a20d6ea3 dropped superfluous [code del]s
haftmann
parents: 36825
diff changeset
   282
definition open_complex_def:
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31419
diff changeset
   283
  "open (S :: complex set) \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)"
31292
d24b2692562f definition of dist for complex
huffman
parents: 31021
diff changeset
   284
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   285
lemmas cmod_def = complex_norm_def
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   286
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   287
lemma complex_norm [simp]: "cmod (Complex x y) = sqrt (x\<twosuperior> + y\<twosuperior>)"
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   288
  by (simp add: complex_norm_def)
22852
2490d4b4671a clean up RealVector classes
huffman
parents: 22655
diff changeset
   289
31413
729d90a531e4 introduce class topological_space as a superclass of metric_space
huffman
parents: 31292
diff changeset
   290
instance proof
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31419
diff changeset
   291
  fix r :: real and x y :: complex and S :: "complex set"
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   292
  show "0 \<le> norm x"
22861
8ec47039614e clean up complex norm proofs, remove redundant lemmas
huffman
parents: 22852
diff changeset
   293
    by (induct x) simp
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   294
  show "(norm x = 0) = (x = 0)"
22861
8ec47039614e clean up complex norm proofs, remove redundant lemmas
huffman
parents: 22852
diff changeset
   295
    by (induct x) simp
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   296
  show "norm (x + y) \<le> norm x + norm y"
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   297
    by (induct x, induct y)
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   298
       (simp add: real_sqrt_sum_squares_triangle_ineq)
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   299
  show "norm (scaleR r x) = \<bar>r\<bar> * norm x"
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   300
    by (induct x)
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   301
       (simp add: power_mult_distrib right_distrib [symmetric] real_sqrt_mult)
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   302
  show "norm (x * y) = norm x * norm y"
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   303
    by (induct x, induct y)
29667
53103fc8ffa3 Replaced group_ and ring_simps by algebra_simps;
nipkow
parents: 29233
diff changeset
   304
       (simp add: real_sqrt_mult [symmetric] power2_eq_square algebra_simps)
31292
d24b2692562f definition of dist for complex
huffman
parents: 31021
diff changeset
   305
  show "sgn x = x /\<^sub>R cmod x"
d24b2692562f definition of dist for complex
huffman
parents: 31021
diff changeset
   306
    by (rule complex_sgn_def)
d24b2692562f definition of dist for complex
huffman
parents: 31021
diff changeset
   307
  show "dist x y = cmod (x - y)"
d24b2692562f definition of dist for complex
huffman
parents: 31021
diff changeset
   308
    by (rule dist_complex_def)
31492
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31419
diff changeset
   309
  show "open S \<longleftrightarrow> (\<forall>x\<in>S. \<exists>e>0. \<forall>y. dist y x < e \<longrightarrow> y \<in> S)"
5400beeddb55 replace 'topo' with 'open'; add extra type constraint for 'open'
huffman
parents: 31419
diff changeset
   310
    by (rule open_complex_def)
24520
40b220403257 fix sgn_div_norm class
huffman
parents: 24506
diff changeset
   311
qed
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   312
25712
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   313
end
f488a37cfad4 instantiation target
haftmann
parents: 25599
diff changeset
   314
44761
0694fc3248fd remove some unnecessary simp rules from simpset
huffman
parents: 44749
diff changeset
   315
lemma cmod_unit_one: "cmod (Complex (cos a) (sin a)) = 1"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   316
  by simp
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   317
44761
0694fc3248fd remove some unnecessary simp rules from simpset
huffman
parents: 44749
diff changeset
   318
lemma cmod_complex_polar:
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   319
  "cmod (complex_of_real r * Complex (cos a) (sin a)) = abs r"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   320
  by (simp add: norm_mult)
22861
8ec47039614e clean up complex norm proofs, remove redundant lemmas
huffman
parents: 22852
diff changeset
   321
8ec47039614e clean up complex norm proofs, remove redundant lemmas
huffman
parents: 22852
diff changeset
   322
lemma complex_Re_le_cmod: "Re x \<le> cmod x"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   323
  unfolding complex_norm_def
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   324
  by (rule real_sqrt_sum_squares_ge1)
22861
8ec47039614e clean up complex norm proofs, remove redundant lemmas
huffman
parents: 22852
diff changeset
   325
44761
0694fc3248fd remove some unnecessary simp rules from simpset
huffman
parents: 44749
diff changeset
   326
lemma complex_mod_minus_le_complex_mod: "- cmod x \<le> cmod x"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   327
  by (rule order_trans [OF _ norm_ge_zero], simp)
22861
8ec47039614e clean up complex norm proofs, remove redundant lemmas
huffman
parents: 22852
diff changeset
   328
44761
0694fc3248fd remove some unnecessary simp rules from simpset
huffman
parents: 44749
diff changeset
   329
lemma complex_mod_triangle_ineq2: "cmod(b + a) - cmod b \<le> cmod a"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   330
  by (rule ord_le_eq_trans [OF norm_triangle_ineq2], simp)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   331
26117
ca578d3b9f8c Added trivial theorems aboud cmod
chaieb
parents: 25712
diff changeset
   332
lemma abs_Re_le_cmod: "\<bar>Re x\<bar> \<le> cmod x"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   333
  by (cases x) simp
26117
ca578d3b9f8c Added trivial theorems aboud cmod
chaieb
parents: 25712
diff changeset
   334
ca578d3b9f8c Added trivial theorems aboud cmod
chaieb
parents: 25712
diff changeset
   335
lemma abs_Im_le_cmod: "\<bar>Im x\<bar> \<le> cmod x"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   336
  by (cases x) simp
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   337
44843
huffman
parents: 44842
diff changeset
   338
text {* Properties of complex signum. *}
huffman
parents: 44842
diff changeset
   339
huffman
parents: 44842
diff changeset
   340
lemma sgn_eq: "sgn z = z / complex_of_real (cmod z)"
huffman
parents: 44842
diff changeset
   341
  by (simp add: sgn_div_norm divide_inverse scaleR_conv_of_real mult_commute)
huffman
parents: 44842
diff changeset
   342
huffman
parents: 44842
diff changeset
   343
lemma Re_sgn [simp]: "Re(sgn z) = Re(z)/cmod z"
huffman
parents: 44842
diff changeset
   344
  by (simp add: complex_sgn_def divide_inverse)
huffman
parents: 44842
diff changeset
   345
huffman
parents: 44842
diff changeset
   346
lemma Im_sgn [simp]: "Im(sgn z) = Im(z)/cmod z"
huffman
parents: 44842
diff changeset
   347
  by (simp add: complex_sgn_def divide_inverse)
huffman
parents: 44842
diff changeset
   348
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14353
diff changeset
   349
23123
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   350
subsection {* Completeness of the Complexes *}
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   351
44290
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   352
lemma bounded_linear_Re: "bounded_linear Re"
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   353
  by (rule bounded_linear_intro [where K=1], simp_all add: complex_norm_def)
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   354
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   355
lemma bounded_linear_Im: "bounded_linear Im"
44127
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 44065
diff changeset
   356
  by (rule bounded_linear_intro [where K=1], simp_all add: complex_norm_def)
23123
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   357
44290
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   358
lemmas tendsto_Re [tendsto_intros] =
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   359
  bounded_linear.tendsto [OF bounded_linear_Re]
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   360
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   361
lemmas tendsto_Im [tendsto_intros] =
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   362
  bounded_linear.tendsto [OF bounded_linear_Im]
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   363
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   364
lemmas isCont_Re [simp] = bounded_linear.isCont [OF bounded_linear_Re]
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   365
lemmas isCont_Im [simp] = bounded_linear.isCont [OF bounded_linear_Im]
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   366
lemmas Cauchy_Re = bounded_linear.Cauchy [OF bounded_linear_Re]
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   367
lemmas Cauchy_Im = bounded_linear.Cauchy [OF bounded_linear_Im]
23123
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   368
36825
d9320cdcde73 add lemma tendsto_Complex
huffman
parents: 36777
diff changeset
   369
lemma tendsto_Complex [tendsto_intros]:
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   370
  assumes "(f ---> a) F" and "(g ---> b) F"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   371
  shows "((\<lambda>x. Complex (f x) (g x)) ---> Complex a b) F"
36825
d9320cdcde73 add lemma tendsto_Complex
huffman
parents: 36777
diff changeset
   372
proof (rule tendstoI)
d9320cdcde73 add lemma tendsto_Complex
huffman
parents: 36777
diff changeset
   373
  fix r :: real assume "0 < r"
d9320cdcde73 add lemma tendsto_Complex
huffman
parents: 36777
diff changeset
   374
  hence "0 < r / sqrt 2" by (simp add: divide_pos_pos)
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   375
  have "eventually (\<lambda>x. dist (f x) a < r / sqrt 2) F"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   376
    using `(f ---> a) F` and `0 < r / sqrt 2` by (rule tendstoD)
36825
d9320cdcde73 add lemma tendsto_Complex
huffman
parents: 36777
diff changeset
   377
  moreover
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   378
  have "eventually (\<lambda>x. dist (g x) b < r / sqrt 2) F"
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   379
    using `(g ---> b) F` and `0 < r / sqrt 2` by (rule tendstoD)
36825
d9320cdcde73 add lemma tendsto_Complex
huffman
parents: 36777
diff changeset
   380
  ultimately
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   381
  show "eventually (\<lambda>x. dist (Complex (f x) (g x)) (Complex a b) < r) F"
36825
d9320cdcde73 add lemma tendsto_Complex
huffman
parents: 36777
diff changeset
   382
    by (rule eventually_elim2)
d9320cdcde73 add lemma tendsto_Complex
huffman
parents: 36777
diff changeset
   383
       (simp add: dist_norm real_sqrt_sum_squares_less)
d9320cdcde73 add lemma tendsto_Complex
huffman
parents: 36777
diff changeset
   384
qed
d9320cdcde73 add lemma tendsto_Complex
huffman
parents: 36777
diff changeset
   385
23123
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   386
instance complex :: banach
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   387
proof
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   388
  fix X :: "nat \<Rightarrow> complex"
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   389
  assume X: "Cauchy X"
44290
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   390
  from Cauchy_Re [OF X] have 1: "(\<lambda>n. Re (X n)) ----> lim (\<lambda>n. Re (X n))"
23123
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   391
    by (simp add: Cauchy_convergent_iff convergent_LIMSEQ_iff)
44290
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   392
  from Cauchy_Im [OF X] have 2: "(\<lambda>n. Im (X n)) ----> lim (\<lambda>n. Im (X n))"
23123
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   393
    by (simp add: Cauchy_convergent_iff convergent_LIMSEQ_iff)
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   394
  have "X ----> Complex (lim (\<lambda>n. Re (X n))) (lim (\<lambda>n. Im (X n)))"
44748
7f6838b3474a remove redundant lemma LIMSEQ_Complex in favor of tendsto_Complex
huffman
parents: 44724
diff changeset
   395
    using tendsto_Complex [OF 1 2] by simp
23123
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   396
  thus "convergent X"
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   397
    by (rule convergentI)
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   398
qed
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   399
e2e370bccde1 instance complex :: banach
huffman
parents: 22972
diff changeset
   400
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   401
subsection {* The Complex Number $i$ *}
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   402
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   403
definition "ii" :: complex  ("\<i>")
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   404
  where i_def: "ii \<equiv> Complex 0 1"
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   405
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   406
lemma complex_Re_i [simp]: "Re ii = 0"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   407
  by (simp add: i_def)
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14353
diff changeset
   408
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   409
lemma complex_Im_i [simp]: "Im ii = 1"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   410
  by (simp add: i_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   411
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   412
lemma Complex_eq_i [simp]: "(Complex x y = ii) = (x = 0 \<and> y = 1)"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   413
  by (simp add: i_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   414
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   415
lemma complex_i_not_zero [simp]: "ii \<noteq> 0"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   416
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   417
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   418
lemma complex_i_not_one [simp]: "ii \<noteq> 1"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   419
  by (simp add: complex_eq_iff)
23124
892e0a4551da use new-style instance declarations
huffman
parents: 23123
diff changeset
   420
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   421
lemma complex_i_not_number_of [simp]: "ii \<noteq> number_of w"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   422
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   423
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   424
lemma i_mult_Complex [simp]: "ii * Complex a b = Complex (- b) a"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   425
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   426
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   427
lemma Complex_mult_i [simp]: "Complex a b * ii = Complex (- b) a"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   428
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   429
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   430
lemma i_complex_of_real [simp]: "ii * complex_of_real r = Complex 0 r"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   431
  by (simp add: i_def complex_of_real_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   432
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   433
lemma complex_of_real_i [simp]: "complex_of_real r * ii = Complex 0 r"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   434
  by (simp add: i_def complex_of_real_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   435
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   436
lemma i_squared [simp]: "ii * ii = -1"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   437
  by (simp add: i_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   438
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   439
lemma power2_i [simp]: "ii\<twosuperior> = -1"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   440
  by (simp add: power2_eq_square)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   441
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   442
lemma inverse_i [simp]: "inverse ii = - ii"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   443
  by (rule inverse_unique, simp)
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14353
diff changeset
   444
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   445
lemma complex_i_mult_minus [simp]: "ii * (ii * x) = - x"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   446
  by (simp add: mult_assoc [symmetric])
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   447
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14353
diff changeset
   448
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   449
subsection {* Complex Conjugation *}
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   450
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   451
definition cnj :: "complex \<Rightarrow> complex" where
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   452
  "cnj z = Complex (Re z) (- Im z)"
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   453
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   454
lemma complex_cnj [simp]: "cnj (Complex a b) = Complex a (- b)"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   455
  by (simp add: cnj_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   456
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   457
lemma complex_Re_cnj [simp]: "Re (cnj x) = Re x"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   458
  by (simp add: cnj_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   459
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   460
lemma complex_Im_cnj [simp]: "Im (cnj x) = - Im x"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   461
  by (simp add: cnj_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   462
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   463
lemma complex_cnj_cancel_iff [simp]: "(cnj x = cnj y) = (x = y)"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   464
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   465
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   466
lemma complex_cnj_cnj [simp]: "cnj (cnj z) = z"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   467
  by (simp add: cnj_def)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   468
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   469
lemma complex_cnj_zero [simp]: "cnj 0 = 0"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   470
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   471
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   472
lemma complex_cnj_zero_iff [iff]: "(cnj z = 0) = (z = 0)"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   473
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   474
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   475
lemma complex_cnj_add: "cnj (x + y) = cnj x + cnj y"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   476
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   477
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   478
lemma complex_cnj_diff: "cnj (x - y) = cnj x - cnj y"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   479
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   480
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   481
lemma complex_cnj_minus: "cnj (- x) = - cnj x"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   482
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   483
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   484
lemma complex_cnj_one [simp]: "cnj 1 = 1"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   485
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   486
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   487
lemma complex_cnj_mult: "cnj (x * y) = cnj x * cnj y"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   488
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   489
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   490
lemma complex_cnj_inverse: "cnj (inverse x) = inverse (cnj x)"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   491
  by (simp add: complex_inverse_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   492
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   493
lemma complex_cnj_divide: "cnj (x / y) = cnj x / cnj y"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   494
  by (simp add: complex_divide_def complex_cnj_mult complex_cnj_inverse)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   495
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   496
lemma complex_cnj_power: "cnj (x ^ n) = cnj x ^ n"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   497
  by (induct n, simp_all add: complex_cnj_mult)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   498
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   499
lemma complex_cnj_of_nat [simp]: "cnj (of_nat n) = of_nat n"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   500
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   501
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   502
lemma complex_cnj_of_int [simp]: "cnj (of_int z) = of_int z"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   503
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   504
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   505
lemma complex_cnj_number_of [simp]: "cnj (number_of w) = number_of w"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   506
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   507
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   508
lemma complex_cnj_scaleR: "cnj (scaleR r x) = scaleR r (cnj x)"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   509
  by (simp add: complex_eq_iff)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   510
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   511
lemma complex_mod_cnj [simp]: "cmod (cnj z) = cmod z"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   512
  by (simp add: complex_norm_def)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   513
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   514
lemma complex_cnj_complex_of_real [simp]: "cnj (of_real x) = of_real x"
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_i [simp]: "cnj ii = - ii"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
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_add_cnj: "z + cnj z = complex_of_real (2 * Re z)"
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
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   523
lemma complex_diff_cnj: "z - cnj z = complex_of_real (2 * Im z) * ii"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   524
  by (simp add: complex_eq_iff)
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14353
diff changeset
   525
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   526
lemma complex_mult_cnj: "z * cnj z = complex_of_real ((Re z)\<twosuperior> + (Im z)\<twosuperior>)"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   527
  by (simp add: complex_eq_iff power2_eq_square)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   528
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   529
lemma complex_mod_mult_cnj: "cmod (z * cnj z) = (cmod z)\<twosuperior>"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   530
  by (simp add: norm_mult power2_eq_square)
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   531
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   532
lemma complex_mod_sqrt_Re_mult_cnj: "cmod z = sqrt (Re (z * cnj z))"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   533
  by (simp add: cmod_def power2_eq_square)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   534
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   535
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
   536
  by simp
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   537
44290
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   538
lemma bounded_linear_cnj: "bounded_linear cnj"
44127
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 44065
diff changeset
   539
  using complex_cnj_add complex_cnj_scaleR
7b57b9295d98 lemma bounded_linear_intro
huffman
parents: 44065
diff changeset
   540
  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
   541
44290
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   542
lemmas tendsto_cnj [tendsto_intros] =
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   543
  bounded_linear.tendsto [OF bounded_linear_cnj]
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   544
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   545
lemmas isCont_cnj [simp] =
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   546
  bounded_linear.isCont [OF bounded_linear_cnj]
23a5137162ea remove more bounded_linear locale interpretations (cf. f0de18b62d63)
huffman
parents: 44127
diff changeset
   547
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14353
diff changeset
   548
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   549
subsection{*Finally! Polar Form for Complex Numbers*}
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   550
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   551
subsubsection {* $\cos \theta + i \sin \theta$ *}
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   552
44715
1a17d8913976 tuned comments
huffman
parents: 44712
diff changeset
   553
definition cis :: "real \<Rightarrow> complex" where
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   554
  "cis a = Complex (cos a) (sin a)"
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   555
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   556
lemma Re_cis [simp]: "Re (cis a) = cos a"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   557
  by (simp add: cis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   558
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   559
lemma Im_cis [simp]: "Im (cis a) = sin a"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   560
  by (simp add: cis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   561
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   562
lemma cis_zero [simp]: "cis 0 = 1"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   563
  by (simp add: cis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   564
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   565
lemma norm_cis [simp]: "norm (cis a) = 1"
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   566
  by (simp add: cis_def)
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   567
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   568
lemma sgn_cis [simp]: "sgn (cis a) = cis a"
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   569
  by (simp add: sgn_div_norm)
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   570
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   571
lemma cis_neq_zero [simp]: "cis a \<noteq> 0"
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   572
  by (metis norm_cis norm_zero zero_neq_one)
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   573
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   574
lemma cis_mult: "cis a * cis b = cis (a + b)"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   575
  by (simp add: cis_def cos_add sin_add)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   576
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   577
lemma DeMoivre: "(cis a) ^ n = cis (real n * a)"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   578
  by (induct n, simp_all add: real_of_nat_Suc algebra_simps cis_mult)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   579
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   580
lemma cis_inverse [simp]: "inverse(cis a) = cis (-a)"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   581
  by (simp add: cis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   582
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   583
lemma cis_divide: "cis a / cis b = cis (a - b)"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   584
  by (simp add: complex_divide_def cis_mult diff_minus)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   585
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   586
lemma cos_n_Re_cis_pow_n: "cos (real n * a) = Re(cis a ^ n)"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   587
  by (auto simp add: DeMoivre)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   588
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   589
lemma sin_n_Im_cis_pow_n: "sin (real n * a) = Im(cis a ^ n)"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   590
  by (auto simp add: DeMoivre)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   591
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   592
subsubsection {* $r(\cos \theta + i \sin \theta)$ *}
44715
1a17d8913976 tuned comments
huffman
parents: 44712
diff changeset
   593
1a17d8913976 tuned comments
huffman
parents: 44712
diff changeset
   594
definition rcis :: "[real, real] \<Rightarrow> complex" where
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   595
  "rcis r a = complex_of_real r * cis a"
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   596
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   597
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
   598
  by (simp add: rcis_def)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   599
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   600
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
   601
  by (simp add: rcis_def)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   602
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   603
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
   604
  by (simp add: complex_eq_iff polar_Ex)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   605
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   606
lemma complex_mod_rcis [simp]: "cmod(rcis r a) = abs r"
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   607
  by (simp add: rcis_def norm_mult)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   608
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   609
lemma cis_rcis_eq: "cis a = rcis 1 a"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   610
  by (simp add: rcis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   611
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   612
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
   613
  by (simp add: rcis_def cis_mult)
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   614
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   615
lemma rcis_zero_mod [simp]: "rcis 0 a = 0"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   616
  by (simp add: rcis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   617
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   618
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
   619
  by (simp add: rcis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   620
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   621
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
   622
  by (simp add: rcis_def)
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   623
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   624
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
   625
  by (simp add: rcis_def power_mult_distrib DeMoivre)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   626
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   627
lemma rcis_inverse: "inverse(rcis r a) = rcis (1/r) (-a)"
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   628
  by (simp add: divide_inverse rcis_def)
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   629
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   630
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
   631
  by (simp add: rcis_def cis_divide [symmetric])
44827
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   632
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   633
subsubsection {* Complex exponential *}
4d1384a1fc82 Complex.thy: move theorems into appropriate subsections
huffman
parents: 44825
diff changeset
   634
44291
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   635
abbreviation expi :: "complex \<Rightarrow> complex"
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   636
  where "expi \<equiv> exp"
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   637
44712
1e490e891c88 replace lemma expi_imaginary with reoriented lemma cis_conv_exp
huffman
parents: 44711
diff changeset
   638
lemma cis_conv_exp: "cis b = exp (Complex 0 b)"
44291
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   639
proof (rule complex_eqI)
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   640
  { fix n have "Complex 0 b ^ n =
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   641
    real (fact n) *\<^sub>R Complex (cos_coeff n * b ^ n) (sin_coeff n * b ^ n)"
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   642
      apply (induct n)
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   643
      apply (simp add: cos_coeff_def sin_coeff_def)
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   644
      apply (simp add: sin_coeff_Suc cos_coeff_Suc del: mult_Suc)
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   645
      done } note * = this
44712
1e490e891c88 replace lemma expi_imaginary with reoriented lemma cis_conv_exp
huffman
parents: 44711
diff changeset
   646
  show "Re (cis b) = Re (exp (Complex 0 b))"
44291
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   647
    unfolding exp_def cis_def cos_def
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   648
    by (subst bounded_linear.suminf[OF bounded_linear_Re summable_exp_generic],
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   649
      simp add: * mult_assoc [symmetric])
44712
1e490e891c88 replace lemma expi_imaginary with reoriented lemma cis_conv_exp
huffman
parents: 44711
diff changeset
   650
  show "Im (cis b) = Im (exp (Complex 0 b))"
44291
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   651
    unfolding exp_def cis_def sin_def
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   652
    by (subst bounded_linear.suminf[OF bounded_linear_Im summable_exp_generic],
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   653
      simp add: * mult_assoc [symmetric])
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   654
qed
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   655
dbd9965745fd define complex exponential 'expi' as abbreviation for 'exp'
huffman
parents: 44290
diff changeset
   656
lemma expi_def: "expi z = complex_of_real (exp (Re z)) * cis (Im z)"
44712
1e490e891c88 replace lemma expi_imaginary with reoriented lemma cis_conv_exp
huffman
parents: 44711
diff changeset
   657
  unfolding cis_conv_exp exp_of_real [symmetric] mult_exp_exp by simp
20557
81dd3679f92c complex_of_real abbreviates of_real::real=>complex;
huffman
parents: 20556
diff changeset
   658
44828
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   659
lemma Re_exp: "Re (exp z) = exp (Re z) * cos (Im z)"
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   660
  unfolding expi_def by simp
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   661
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   662
lemma Im_exp: "Im (exp z) = exp (Re z) * sin (Im z)"
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   663
  unfolding expi_def by simp
3d6a79e0e1d0 add some new lemmas about cis and rcis;
huffman
parents: 44827
diff changeset
   664
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   665
lemma complex_expi_Ex: "\<exists>a r. z = complex_of_real r * expi a"
14373
67a628beb981 tidying of the complex numbers
paulson
parents: 14354
diff changeset
   666
apply (insert rcis_Ex [of z])
23125
6f7b5b96241f cleaned up proofs; reorganized sections; removed redundant lemmas
huffman
parents: 23124
diff changeset
   667
apply (auto simp add: expi_def rcis_def mult_assoc [symmetric])
14334
6137d24eef79 tweaking of lemmas in RealDef, RealOrd
paulson
parents: 14323
diff changeset
   668
apply (rule_tac x = "ii * complex_of_real a" in exI, auto)
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   669
done
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 13957
diff changeset
   670
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   671
lemma expi_two_pi_i [simp]: "expi((2::complex) * complex_of_real pi * ii) = 1"
44724
0b900a9d8023 tuned indentation
huffman
parents: 44715
diff changeset
   672
  by (simp add: expi_def cis_def)
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   673
44844
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   674
subsubsection {* Complex argument *}
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   675
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   676
definition arg :: "complex \<Rightarrow> real" where
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   677
  "arg z = (if z = 0 then 0 else (SOME a. sgn z = cis a \<and> -pi < a \<and> a \<le> pi))"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   678
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   679
lemma arg_zero: "arg 0 = 0"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   680
  by (simp add: arg_def)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   681
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   682
lemma of_nat_less_of_int_iff: (* TODO: move *)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   683
  "(of_nat n :: 'a::linordered_idom) < of_int x \<longleftrightarrow> int n < x"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   684
  by (metis of_int_of_nat_eq of_int_less_iff)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   685
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   686
lemma real_of_nat_less_number_of_iff [simp]: (* TODO: move *)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   687
  "real (n::nat) < number_of w \<longleftrightarrow> n < number_of w"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   688
  unfolding real_of_nat_def nat_number_of_def number_of_eq
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   689
  by (simp add: of_nat_less_of_int_iff zless_nat_eq_int_zless)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   690
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   691
lemma arg_unique:
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   692
  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
   693
  shows "arg z = x"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   694
proof -
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   695
  from assms have "z \<noteq> 0" by auto
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   696
  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
   697
  proof
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   698
    fix a def d \<equiv> "a - x"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   699
    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
   700
    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
   701
      unfolding d_def by simp
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   702
    moreover from a assms have "cos a = cos x" and "sin a = sin x"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   703
      by (simp_all add: complex_eq_iff)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   704
    hence "cos d = 1" unfolding d_def cos_diff by simp
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   705
    moreover hence "sin d = 0" by (rule cos_one_sin_zero)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   706
    ultimately have "d = 0"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   707
      unfolding sin_zero_iff even_mult_two_ex
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   708
      by (safe, auto simp add: numeral_2_eq_2 less_Suc_eq)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   709
    thus "a = x" unfolding d_def by simp
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   710
  qed (simp add: assms del: Re_sgn Im_sgn)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   711
  with `z \<noteq> 0` show "arg z = x"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   712
    unfolding arg_def by simp
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   713
qed
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   714
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   715
lemma arg_correct:
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   716
  assumes "z \<noteq> 0" shows "sgn z = cis (arg z) \<and> -pi < arg z \<and> arg z \<le> pi"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   717
proof (simp add: arg_def assms, rule someI_ex)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   718
  obtain r a where z: "z = rcis r a" using rcis_Ex by fast
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   719
  with assms have "r \<noteq> 0" by auto
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   720
  def b \<equiv> "if 0 < r then a else a + pi"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   721
  have b: "sgn z = cis b"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   722
    unfolding z b_def rcis_def using `r \<noteq> 0`
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   723
    by (simp add: of_real_def sgn_scaleR sgn_if, simp add: cis_def)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   724
  have cis_2pi_nat: "\<And>n. cis (2 * pi * real_of_nat n) = 1"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   725
    by (induct_tac n, simp_all add: right_distrib cis_mult [symmetric],
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   726
      simp add: cis_def)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   727
  have cis_2pi_int: "\<And>x. cis (2 * pi * real_of_int x) = 1"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   728
    by (case_tac x rule: int_diff_cases,
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   729
      simp add: right_diff_distrib cis_divide [symmetric] cis_2pi_nat)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   730
  def c \<equiv> "b - 2*pi * of_int \<lceil>(b - pi) / (2*pi)\<rceil>"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   731
  have "sgn z = cis c"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   732
    unfolding b c_def
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   733
    by (simp add: cis_divide [symmetric] cis_2pi_int)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   734
  moreover have "- pi < c \<and> c \<le> pi"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   735
    using ceiling_correct [of "(b - pi) / (2*pi)"]
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   736
    by (simp add: c_def less_divide_eq divide_le_eq algebra_simps)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   737
  ultimately show "\<exists>a. sgn z = cis a \<and> -pi < a \<and> a \<le> pi" by fast
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   738
qed
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   739
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   740
lemma arg_bounded: "- pi < arg z \<and> arg z \<le> pi"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   741
  by (cases "z = 0", simp_all add: arg_zero arg_correct)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   742
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   743
lemma 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
   744
  by (simp add: arg_correct)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   745
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   746
lemma rcis_cmod_arg: "rcis (cmod z) (arg z) = z"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   747
  by (cases "z = 0", simp_all add: rcis_def cis_arg sgn_div_norm of_real_def)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   748
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   749
lemma cos_arg_i_mult_zero [simp]:
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   750
     "y \<noteq> 0 ==> cos (arg(Complex 0 y)) = 0"
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   751
  using cis_arg [of "Complex 0 y"] by (simp add: complex_eq_iff)
f74a4175a3a8 prove existence, uniqueness, and other properties of complex arg function
huffman
parents: 44843
diff changeset
   752
44065
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   753
text {* Legacy theorem names *}
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   754
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   755
lemmas expand_complex_eq = complex_eq_iff
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   756
lemmas complex_Re_Im_cancel_iff = complex_eq_iff
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   757
lemmas complex_equality = complex_eqI
eb64ffccfc75 standard theorem naming scheme: complex_eqI, complex_eq_iff
huffman
parents: 41959
diff changeset
   758
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   759
end