src/HOL/Complex/NSComplex.thy
author haftmann
Tue, 04 Oct 2005 10:58:46 +0200
changeset 17749 4fb42f4d61df
parent 17429 e8d6ed3aacfe
child 19765 dfe940911617
permissions -rw-r--r--
removed removed IntFloor
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
     1
(*  Title:       NSComplex.thy
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
     2
    ID:      $Id$
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
     3
    Author:      Jacques D. Fleuriot
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
     4
    Copyright:   2001  University of Edinburgh
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
     5
    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
     6
*)
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
     7
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
     8
header{*Nonstandard Complex Numbers*}
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
     9
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15085
diff changeset
    10
theory NSComplex
15140
322485b816ac import -> imports
nipkow
parents: 15131
diff changeset
    11
imports Complex
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15085
diff changeset
    12
begin
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    13
17300
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
    14
types hcomplex = "complex star"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    15
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
    16
syntax hcomplex_of_complex :: "real => real star"
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
    17
translations "hcomplex_of_complex" => "star_of :: complex => complex star"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
    18
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    19
constdefs
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    20
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    21
  (*--- real and Imaginary parts ---*)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    22
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    23
  hRe :: "hcomplex => hypreal"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    24
  "hRe == *f* Re"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    25
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    26
  hIm :: "hcomplex => hypreal"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    27
  "hIm == *f* Im"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    28
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    29
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    30
  (*----------- modulus ------------*)
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    31
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    32
  hcmod :: "hcomplex => hypreal"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    33
  "hcmod == *f* cmod"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    34
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    35
  (*------ imaginary unit ----------*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    36
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    37
  iii :: hcomplex
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
    38
  "iii == star_of ii"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    39
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    40
  (*------- complex conjugate ------*)
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    41
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    42
  hcnj :: "hcomplex => hcomplex"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    43
  "hcnj == *f* cnj"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    44
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    45
  (*------------ Argand -------------*)
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    46
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    47
  hsgn :: "hcomplex => hcomplex"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    48
  "hsgn == *f* sgn"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    49
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    50
  harg :: "hcomplex => hypreal"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    51
  "harg == *f* arg"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    52
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    53
  (* abbreviation for (cos a + i sin a) *)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    54
  hcis :: "hypreal => hcomplex"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    55
  "hcis == *f* cis"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    56
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    57
  (*----- injection from hyperreals -----*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    58
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    59
  hcomplex_of_hypreal :: "hypreal => hcomplex"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    60
  "hcomplex_of_hypreal == *f* complex_of_real"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    61
14653
0848ab6fe5fc constdefs: proper order;
wenzelm
parents: 14641
diff changeset
    62
  (* abbreviation for r*(cos a + i sin a) *)
0848ab6fe5fc constdefs: proper order;
wenzelm
parents: 14641
diff changeset
    63
  hrcis :: "[hypreal, hypreal] => hcomplex"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    64
  "hrcis == *f2* rcis"
14653
0848ab6fe5fc constdefs: proper order;
wenzelm
parents: 14641
diff changeset
    65
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    66
  (*------------ e ^ (x + iy) ------------*)
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    67
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    68
  hexpi :: "hcomplex => hcomplex"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    69
  "hexpi == *f* expi"
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    70
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
    71
  HComplex :: "[hypreal,hypreal] => hcomplex"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    72
  "HComplex == *f2* Complex"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    73
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
    74
  hcpow :: "[hcomplex,hypnat] => hcomplex"  (infixr "hcpow" 80)
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
    75
  "(z::hcomplex) hcpow (n::hypnat) == ( *f2* op ^) z n"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    76
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
    77
lemmas hcomplex_defs [transfer_unfold] =
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
    78
  hRe_def hIm_def hcmod_def iii_def hcnj_def hsgn_def harg_def hcis_def
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
    79
  hcomplex_of_hypreal_def hrcis_def hexpi_def HComplex_def hcpow_def
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
    80
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    81
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    82
subsection{*Properties of Nonstandard Real and Imaginary Parts*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    83
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
    84
lemma hRe: "hRe (star_n X) = star_n (%n. Re(X n))"
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
    85
by (simp add: hRe_def starfun)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    86
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
    87
lemma hIm: "hIm (star_n X) = star_n (%n. Im(X n))"
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
    88
by (simp add: hIm_def starfun)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    89
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
    90
lemma hcomplex_hRe_hIm_cancel_iff:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
    91
     "!!w z. (w=z) = (hRe(w) = hRe(z) & hIm(w) = hIm(z))"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
    92
by (transfer, rule complex_Re_Im_cancel_iff)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    93
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
    94
lemma hcomplex_equality [intro?]: "hRe z = hRe w ==> hIm z = hIm w ==> z = w"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
    95
by (simp add: hcomplex_hRe_hIm_cancel_iff)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
    96
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
    97
lemma hcomplex_hRe_zero [simp]: "hRe 0 = 0"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
    98
by (simp add: hRe star_n_zero_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    99
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   100
lemma hcomplex_hIm_zero [simp]: "hIm 0 = 0"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   101
by (simp add: hIm star_n_zero_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   102
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   103
lemma hcomplex_hRe_one [simp]: "hRe 1 = 1"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   104
by (simp add: hRe star_n_one_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   105
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   106
lemma hcomplex_hIm_one [simp]: "hIm 1 = 0"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   107
by (simp add: hIm star_n_one_num star_n_zero_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   108
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   109
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   110
subsection{*Addition for Nonstandard Complex Numbers*}
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   111
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   112
lemma hRe_add: "!!x y. hRe(x + y) = hRe(x) + hRe(y)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   113
by (transfer, rule complex_Re_add)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   114
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   115
lemma hIm_add: "!!x y. hIm(x + y) = hIm(x) + hIm(y)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   116
by (transfer, rule complex_Im_add)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   117
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   118
subsection{*More Minus Laws*}
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   119
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   120
lemma hRe_minus: "!!z. hRe(-z) = - hRe(z)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   121
by (transfer, rule complex_Re_minus)
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   122
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   123
lemma hIm_minus: "!!z. hIm(-z) = - hIm(z)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   124
by (transfer, rule complex_Im_minus)
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   125
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   126
lemma hcomplex_add_minus_eq_minus:
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   127
      "x + y = (0::hcomplex) ==> x = -y"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14691
diff changeset
   128
apply (drule OrderedGroup.equals_zero_I)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   129
apply (simp add: minus_equation_iff [of x y])
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   130
done
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   131
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   132
lemma hcomplex_i_mult_eq [simp]: "iii * iii = - 1"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   133
by (simp add: iii_def star_of_def star_n_mult star_n_one_num star_n_minus)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   134
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   135
lemma hcomplex_i_mult_left [simp]: "iii * (iii * z) = -z"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   136
by (simp add: mult_assoc [symmetric])
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   137
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   138
lemma hcomplex_i_not_zero [simp]: "iii \<noteq> 0"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   139
by (simp add: iii_def star_of_def star_n_zero_num star_n_eq_iff)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   140
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   141
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   142
subsection{*More Multiplication Laws*}
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   143
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   144
lemma hcomplex_mult_minus_one [simp]: "- 1 * (z::hcomplex) = -z"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   145
by simp
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   146
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   147
lemma hcomplex_mult_minus_one_right [simp]: "(z::hcomplex) * - 1 = -z"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   148
by simp
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   149
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   150
lemma hcomplex_mult_left_cancel:
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   151
     "(c::hcomplex) \<noteq> (0::hcomplex) ==> (c*a=c*b) = (a=b)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   152
by (simp add: field_mult_cancel_left)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   153
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   154
lemma hcomplex_mult_right_cancel:
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   155
     "(c::hcomplex) \<noteq> (0::hcomplex) ==> (a*c=b*c) = (a=b)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   156
by (simp add: Ring_and_Field.field_mult_cancel_right)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   157
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   158
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   159
subsection{*Subraction and Division*}
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   160
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   161
lemma hcomplex_diff_eq_eq [simp]: "((x::hcomplex) - y = z) = (x = z + y)"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14691
diff changeset
   162
by (rule OrderedGroup.diff_eq_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   163
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   164
lemma hcomplex_add_divide_distrib: "(x+y)/(z::hcomplex) = x/z + y/z"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   165
by (rule Ring_and_Field.add_divide_distrib)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   166
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   167
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   168
subsection{*Embedding Properties for @{term hcomplex_of_hypreal} Map*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   169
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   170
lemma hcomplex_of_hypreal:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   171
  "hcomplex_of_hypreal (star_n X) = star_n (%n. complex_of_real (X n))"
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   172
by (simp add: hcomplex_of_hypreal_def starfun)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   173
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   174
lemma hcomplex_of_hypreal_cancel_iff [iff]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   175
     "!!x y. (hcomplex_of_hypreal x = hcomplex_of_hypreal y) = (x = y)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   176
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   177
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   178
lemma hcomplex_of_hypreal_one [simp]: "hcomplex_of_hypreal 1 = 1"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   179
by (simp add: hcomplex_of_hypreal star_n_one_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   180
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   181
lemma hcomplex_of_hypreal_zero [simp]: "hcomplex_of_hypreal 0 = 0"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   182
by (simp add: star_n_zero_num hcomplex_of_hypreal)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   183
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   184
lemma hcomplex_of_hypreal_minus [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   185
     "!!x. hcomplex_of_hypreal(-x) = - hcomplex_of_hypreal x"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   186
by (transfer, simp)
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   187
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   188
lemma hcomplex_of_hypreal_inverse [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   189
     "!!x. hcomplex_of_hypreal(inverse x) = inverse(hcomplex_of_hypreal x)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   190
by (transfer, simp)
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   191
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   192
lemma hcomplex_of_hypreal_add [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   193
     "!!x y. hcomplex_of_hypreal (x + y) =
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   194
      hcomplex_of_hypreal x + hcomplex_of_hypreal y"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   195
by (transfer, simp)
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   196
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   197
lemma hcomplex_of_hypreal_diff [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   198
     "!!x y. hcomplex_of_hypreal (x - y) =
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   199
      hcomplex_of_hypreal x - hcomplex_of_hypreal y "
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   200
by (transfer, simp)
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   201
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   202
lemma hcomplex_of_hypreal_mult [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   203
     "!!x y. hcomplex_of_hypreal (x * y) =
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   204
      hcomplex_of_hypreal x * hcomplex_of_hypreal y"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   205
by (transfer, simp)
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   206
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   207
lemma hcomplex_of_hypreal_divide [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   208
     "!!x y. hcomplex_of_hypreal(x/y) =
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   209
      hcomplex_of_hypreal x / hcomplex_of_hypreal y"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   210
by (transfer, simp)
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   211
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   212
lemma hRe_hcomplex_of_hypreal [simp]: "!!z. hRe(hcomplex_of_hypreal z) = z"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   213
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   214
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   215
lemma hIm_hcomplex_of_hypreal [simp]: "!!z. hIm(hcomplex_of_hypreal z) = 0"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   216
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   217
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   218
lemma hcomplex_of_hypreal_epsilon_not_zero [simp]:
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   219
     "hcomplex_of_hypreal epsilon \<noteq> 0"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   220
by (simp add: hcomplex_of_hypreal epsilon_def star_n_zero_num star_n_eq_iff)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   221
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   222
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   223
subsection{*HComplex theorems*}
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   224
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   225
lemma hRe_HComplex [simp]: "!!x y. hRe (HComplex x y) = x"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   226
by (transfer, simp)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   227
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   228
lemma hIm_HComplex [simp]: "!!x y. hIm (HComplex x y) = y"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   229
by (transfer, simp)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   230
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   231
text{*Relates the two nonstandard constructions*}
17300
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
   232
lemma HComplex_eq_Abs_star_Complex:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   233
     "HComplex (star_n X) (star_n Y) =
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   234
      star_n (%n::nat. Complex (X n) (Y n))"
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   235
by (simp add: hcomplex_hRe_hIm_cancel_iff hRe hIm)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   236
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   237
lemma hcomplex_surj [simp]: "HComplex (hRe z) (hIm z) = z"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   238
by (simp add: hcomplex_equality)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   239
17300
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
   240
lemma hcomplex_induct [case_names rect(*, induct type: hcomplex*)]:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   241
     "(\<And>x y. P (HComplex x y)) ==> P z"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   242
by (rule hcomplex_surj [THEN subst], blast)
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
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   245
subsection{*Modulus (Absolute Value) of Nonstandard Complex Number*}
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   246
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   247
lemma hcmod: "hcmod (star_n X) = star_n (%n. cmod (X n))"
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   248
by (simp add: hcmod_def starfun)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   249
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   250
lemma hcmod_zero [simp]: "hcmod(0) = 0"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   251
by (simp add: star_n_zero_num hcmod)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   252
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   253
lemma hcmod_one [simp]: "hcmod(1) = 1"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   254
by (simp add: hcmod star_n_one_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   255
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   256
lemma hcmod_hcomplex_of_hypreal [simp]:
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   257
  "!!x. hcmod(hcomplex_of_hypreal x) = abs x"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   258
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   259
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   260
lemma hcomplex_of_hypreal_abs:
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   261
     "hcomplex_of_hypreal (abs x) =
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   262
      hcomplex_of_hypreal(hcmod(hcomplex_of_hypreal x))"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   263
by simp
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   264
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   265
lemma HComplex_inject [simp]:
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   266
  "!!x y x' y'. HComplex x y = HComplex x' y' = (x=x' & y=y')"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   267
by (transfer, simp)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   268
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   269
lemma HComplex_add [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   270
  "!!x1 y1 x2 y2. HComplex x1 y1 + HComplex x2 y2 = HComplex (x1+x2) (y1+y2)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   271
by (transfer, simp)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   272
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   273
lemma HComplex_minus [simp]: "!!x y. - HComplex x y = HComplex (-x) (-y)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   274
by (transfer, simp)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   275
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   276
lemma HComplex_diff [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   277
  "!!x1 y1 x2 y2. HComplex x1 y1 - HComplex x2 y2 = HComplex (x1-x2) (y1-y2)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   278
by (transfer, rule complex_diff)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   279
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   280
lemma HComplex_mult [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   281
  "!!x1 y1 x2 y2. HComplex x1 y1 * HComplex x2 y2 =
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   282
   HComplex (x1*x2 - y1*y2) (x1*y2 + y1*x2)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   283
by (transfer, rule complex_mult)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   284
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   285
(*HComplex_inverse is proved below*)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   286
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   287
lemma hcomplex_of_hypreal_eq: "!!r. hcomplex_of_hypreal r = HComplex r 0"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   288
apply (transfer)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   289
apply (simp add: complex_of_real_def)
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   290
done
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   291
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   292
lemma HComplex_add_hcomplex_of_hypreal [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   293
     "HComplex x y + hcomplex_of_hypreal r = HComplex (x+r) y"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   294
by (simp add: hcomplex_of_hypreal_eq)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   295
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   296
lemma hcomplex_of_hypreal_add_HComplex [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   297
     "hcomplex_of_hypreal r + HComplex x y = HComplex (r+x) y"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   298
by (simp add: i_def hcomplex_of_hypreal_eq)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   299
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   300
lemma HComplex_mult_hcomplex_of_hypreal:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   301
     "HComplex x y * hcomplex_of_hypreal r = HComplex (x*r) (y*r)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   302
by (simp add: hcomplex_of_hypreal_eq)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   303
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   304
lemma hcomplex_of_hypreal_mult_HComplex:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   305
     "hcomplex_of_hypreal r * HComplex x y = HComplex (r*x) (r*y)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   306
by (simp add: i_def hcomplex_of_hypreal_eq)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   307
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   308
lemma i_hcomplex_of_hypreal [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   309
     "!!r. iii * hcomplex_of_hypreal r = HComplex 0 r"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   310
by (transfer, rule i_complex_of_real)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   311
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   312
lemma hcomplex_of_hypreal_i [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   313
     "!!r. hcomplex_of_hypreal r * iii = HComplex 0 r"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   314
by (transfer, rule complex_of_real_i)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   315
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   316
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   317
subsection{*Conjugation*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   318
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   319
lemma hcnj: "hcnj (star_n X) = star_n (%n. cnj(X n))"
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   320
by (simp add: hcnj_def starfun)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   321
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   322
lemma hcomplex_hcnj_cancel_iff [iff]: "!!x y. (hcnj x = hcnj y) = (x = y)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   323
by (transfer, rule complex_cnj_cancel_iff)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   324
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   325
lemma hcomplex_hcnj_hcnj [simp]: "!!z. hcnj (hcnj z) = z"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   326
by (transfer, rule complex_cnj_cnj)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   327
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   328
lemma hcomplex_hcnj_hcomplex_of_hypreal [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   329
     "!!x. hcnj (hcomplex_of_hypreal x) = hcomplex_of_hypreal x"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   330
by (transfer, rule complex_cnj_complex_of_real)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   331
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   332
lemma hcomplex_hmod_hcnj [simp]: "!!z. hcmod (hcnj z) = hcmod z"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   333
by (transfer, rule complex_mod_cnj)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   334
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   335
lemma hcomplex_hcnj_minus: "!!z. hcnj (-z) = - hcnj z"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   336
by (transfer, rule complex_cnj_minus)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   337
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   338
lemma hcomplex_hcnj_inverse: "!!z. hcnj(inverse z) = inverse(hcnj z)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   339
by (transfer, rule complex_cnj_inverse)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   340
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   341
lemma hcomplex_hcnj_add: "!!w z. hcnj(w + z) = hcnj(w) + hcnj(z)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   342
by (transfer, rule complex_cnj_add)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   343
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   344
lemma hcomplex_hcnj_diff: "!!w z. hcnj(w - z) = hcnj(w) - hcnj(z)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   345
by (transfer, rule complex_cnj_diff)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   346
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   347
lemma hcomplex_hcnj_mult: "!!w z. hcnj(w * z) = hcnj(w) * hcnj(z)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   348
by (transfer, rule complex_cnj_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   349
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   350
lemma hcomplex_hcnj_divide: "!!w z. hcnj(w / z) = (hcnj w)/(hcnj z)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   351
by (transfer, rule complex_cnj_divide)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   352
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   353
lemma hcnj_one [simp]: "hcnj 1 = 1"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   354
by (transfer, rule complex_cnj_one)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   355
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   356
lemma hcomplex_hcnj_zero [simp]: "hcnj 0 = 0"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   357
by (transfer, rule complex_cnj_zero)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   358
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   359
lemma hcomplex_hcnj_zero_iff [iff]: "!!z. (hcnj z = 0) = (z = 0)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   360
by (transfer, rule complex_cnj_zero_iff)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   361
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   362
lemma hcomplex_mult_hcnj:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   363
     "!!z. z * hcnj z = hcomplex_of_hypreal (hRe(z) ^ 2 + hIm(z) ^ 2)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   364
by (transfer, rule complex_mult_cnj)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   365
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   366
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   367
subsection{*More Theorems about the Function @{term hcmod}*}
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   368
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   369
lemma hcomplex_hcmod_eq_zero_cancel [simp]: "!!x. (hcmod x = 0) = (x = 0)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   370
by (transfer, rule complex_mod_eq_zero_cancel)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   371
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   372
lemma hcmod_hcomplex_of_hypreal_of_nat [simp]:
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   373
     "hcmod (hcomplex_of_hypreal(hypreal_of_nat n)) = hypreal_of_nat n"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   374
by (simp add: abs_if linorder_not_less)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   375
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   376
lemma hcmod_hcomplex_of_hypreal_of_hypnat [simp]:
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   377
     "hcmod (hcomplex_of_hypreal(hypreal_of_hypnat n)) = hypreal_of_hypnat n"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   378
by (simp add: abs_if linorder_not_less)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   379
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   380
lemma hcmod_minus [simp]: "!!x. hcmod (-x) = hcmod(x)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   381
by (transfer, rule complex_mod_minus)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   382
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   383
lemma hcmod_mult_hcnj: "!!z. hcmod(z * hcnj(z)) = hcmod(z) ^ 2"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   384
by (transfer, rule complex_mod_mult_cnj)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   385
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   386
lemma hcmod_ge_zero [simp]: "!!x. (0::hypreal) \<le> hcmod x"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   387
by (transfer, rule complex_mod_ge_zero)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   388
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   389
lemma hrabs_hcmod_cancel [simp]: "abs(hcmod x) = hcmod x"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   390
by (simp add: abs_if linorder_not_less)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   391
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   392
lemma hcmod_mult: "!!x y. hcmod(x*y) = hcmod(x) * hcmod(y)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   393
by (transfer, rule complex_mod_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   394
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   395
lemma hcmod_add_squared_eq:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   396
  "!!x y. hcmod(x + y) ^ 2 = hcmod(x) ^ 2 + hcmod(y) ^ 2 + 2 * hRe(x * hcnj y)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   397
by (transfer, rule complex_mod_add_squared_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   398
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   399
lemma hcomplex_hRe_mult_hcnj_le_hcmod [simp]:
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   400
  "!!x y. hRe(x * hcnj y) \<le> hcmod(x * hcnj y)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   401
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   402
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   403
lemma hcomplex_hRe_mult_hcnj_le_hcmod2 [simp]:
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   404
  "!!x y. hRe(x * hcnj y) \<le> hcmod(x * y)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   405
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   406
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   407
lemma hcmod_triangle_squared [simp]:
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   408
  "!!x y. hcmod (x + y) ^ 2 \<le> (hcmod(x) + hcmod(y)) ^ 2"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   409
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   410
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   411
lemma hcmod_triangle_ineq [simp]:
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   412
  "!!x y. hcmod (x + y) \<le> hcmod(x) + hcmod(y)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   413
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   414
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   415
lemma hcmod_triangle_ineq2 [simp]:
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   416
  "!!a b. hcmod(b + a) - hcmod b \<le> hcmod a"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   417
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   418
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   419
lemma hcmod_diff_commute: "!!x y. hcmod (x - y) = hcmod (y - x)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   420
by (transfer, rule complex_mod_diff_commute)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   421
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   422
lemma hcmod_add_less:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   423
  "!!x y r s. [| hcmod x < r; hcmod y < s |] ==> hcmod (x + y) < r + s"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   424
by (transfer, rule complex_mod_add_less)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   425
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   426
lemma hcmod_mult_less:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   427
  "!!x y r s. [| hcmod x < r; hcmod y < s |] ==> hcmod (x * y) < r * s"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   428
by (transfer, rule complex_mod_mult_less)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   429
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   430
lemma hcmod_diff_ineq [simp]: "!!a b. hcmod(a) - hcmod(b) \<le> hcmod(a + b)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   431
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   432
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   433
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   434
subsection{*A Few Nonlinear Theorems*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   435
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   436
lemma hcpow: "star_n X hcpow star_n Y = star_n (%n. X n ^ Y n)"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
   437
by (simp add: hcpow_def starfun2_star_n)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   438
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   439
lemma hcomplex_of_hypreal_hyperpow:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   440
     "!!x n. hcomplex_of_hypreal (x pow n) = (hcomplex_of_hypreal x) hcpow n"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   441
by (transfer, rule complex_of_real_pow)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   442
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   443
lemma hcmod_hcpow: "!!x n. hcmod(x hcpow n) = hcmod(x) pow n"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   444
by (transfer, rule complex_mod_complexpow)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   445
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   446
lemma hcmod_hcomplex_inverse: "!!x. hcmod(inverse x) = inverse(hcmod x)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   447
by (transfer, rule complex_mod_inverse)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   448
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   449
lemma hcmod_divide: "hcmod(x/y) = hcmod(x)/(hcmod y)"
17300
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
   450
by (simp add: divide_inverse hcmod_mult hcmod_hcomplex_inverse)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   451
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   452
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   453
subsection{*Exponentiation*}
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   454
17300
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
   455
lemma hcomplexpow_0 [simp]:   "z ^ 0       = (1::hcomplex)"
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
   456
by (rule power_0)
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   457
17300
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
   458
lemma hcomplexpow_Suc [simp]: "z ^ (Suc n) = (z::hcomplex) * (z ^ n)"
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
   459
by (rule power_Suc)
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
   460
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   461
lemma hcomplexpow_i_squared [simp]: "iii ^ 2 = - 1"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   462
by (simp add: power2_eq_square)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   463
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   464
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   465
lemma hcomplex_of_hypreal_pow:
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   466
     "hcomplex_of_hypreal (x ^ n) = (hcomplex_of_hypreal x) ^ n"
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   467
apply (induct_tac "n")
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   468
apply (auto simp add: hcomplex_of_hypreal_mult [symmetric])
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   469
done
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   470
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   471
lemma hcomplex_hcnj_pow: "hcnj(z ^ n) = hcnj(z) ^ n"
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   472
apply (induct_tac "n")
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   473
apply (auto simp add: hcomplex_hcnj_mult)
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   474
done
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   475
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   476
lemma hcmod_hcomplexpow: "hcmod(x ^ n) = hcmod(x) ^ n"
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   477
apply (induct_tac "n")
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   478
apply (auto simp add: hcmod_mult)
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   479
done
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   480
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   481
lemma hcpow_minus:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   482
     "!!x n. (-x::hcomplex) hcpow n =
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   483
      (if ( *p* even) n then (x hcpow n) else -(x hcpow n))"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   484
by (transfer, rule neg_power_if)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   485
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   486
lemma hcpow_mult:
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   487
  "!!r s n. ((r::hcomplex) * s) hcpow n = (r hcpow n) * (s hcpow n)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   488
by (transfer, rule power_mult_distrib)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   489
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   490
lemma hcpow_zero [simp]: "!!n. 0 hcpow (n + 1) = 0"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   491
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   492
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   493
lemma hcpow_zero2 [simp]: "0 hcpow (hSuc n) = 0"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   494
by (simp add: hSuc_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   495
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   496
lemma hcpow_not_zero [simp,intro]:
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   497
  "!!r n. r \<noteq> 0 ==> r hcpow n \<noteq> (0::hcomplex)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   498
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   499
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   500
lemma hcpow_zero_zero: "r hcpow n = (0::hcomplex) ==> r = 0"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   501
by (blast intro: ccontr dest: hcpow_not_zero)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   502
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   503
lemma star_n_divide: "star_n X / star_n Y = star_n (%n. X n / Y n)"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
   504
by (simp add: star_divide_def starfun2_star_n)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   505
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   506
subsection{*The Function @{term hsgn}*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   507
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   508
lemma hsgn: "hsgn (star_n X) = star_n (%n. sgn (X n))"
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   509
by (simp add: hsgn_def starfun)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   510
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   511
lemma hsgn_zero [simp]: "hsgn 0 = 0"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   512
by (simp add: star_n_zero_num hsgn)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   513
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   514
lemma hsgn_one [simp]: "hsgn 1 = 1"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   515
by (simp add: star_n_one_num hsgn)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   516
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   517
lemma hsgn_minus: "!!z. hsgn (-z) = - hsgn(z)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   518
by (transfer, rule sgn_minus)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   519
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   520
lemma hsgn_eq: "!!z. hsgn z = z / hcomplex_of_hypreal (hcmod z)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   521
by (transfer, rule sgn_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   522
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   523
lemma hcmod_i: "!!x y. hcmod (HComplex x y) = ( *f* sqrt) (x ^ 2 + y ^ 2)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   524
by (transfer, rule complex_mod)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   525
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   526
lemma hcomplex_eq_cancel_iff1 [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   527
     "(hcomplex_of_hypreal xa = HComplex x y) = (xa = x & y = 0)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   528
by (simp add: hcomplex_of_hypreal_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   529
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   530
lemma hcomplex_eq_cancel_iff2 [simp]:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   531
     "(HComplex x y = hcomplex_of_hypreal xa) = (x = xa & y = 0)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   532
by (simp add: hcomplex_of_hypreal_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   533
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   534
lemma HComplex_eq_0 [simp]: "(HComplex x y = 0) = (x = 0 & y = 0)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   535
by (insert hcomplex_eq_cancel_iff2 [of _ _ 0], simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   536
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   537
lemma HComplex_eq_1 [simp]: "(HComplex x y = 1) = (x = 1 & y = 0)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   538
by (insert hcomplex_eq_cancel_iff2 [of _ _ 1], simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   539
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   540
lemma i_eq_HComplex_0_1: "iii = HComplex 0 1"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   541
by (insert hcomplex_of_hypreal_i [of 1], simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   542
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   543
lemma HComplex_eq_i [simp]: "(HComplex x y = iii) = (x = 0 & y = 1)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   544
by (simp add: i_eq_HComplex_0_1) 
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   545
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   546
lemma hRe_hsgn [simp]: "!!z. hRe(hsgn z) = hRe(z)/hcmod z"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   547
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   548
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   549
lemma hIm_hsgn [simp]: "!!z. hIm(hsgn z) = hIm(z)/hcmod z"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   550
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   551
15085
5693a977a767 removed some [iff] declarations from RealDef.thy, concerning inequalities
paulson
parents: 15013
diff changeset
   552
(*????move to RealDef????*)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   553
lemma real_two_squares_add_zero_iff [simp]: "(x*x + y*y = 0) = ((x::real) = 0 & y = 0)"
15085
5693a977a767 removed some [iff] declarations from RealDef.thy, concerning inequalities
paulson
parents: 15013
diff changeset
   554
by (auto intro: real_sum_squares_cancel iff: real_add_eq_0_iff)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   555
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   556
lemma hcomplex_inverse_complex_split:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   557
     "!!x y. inverse(hcomplex_of_hypreal x + iii * hcomplex_of_hypreal y) =
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   558
      hcomplex_of_hypreal(x/(x ^ 2 + y ^ 2)) -
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   559
      iii * hcomplex_of_hypreal(y/(x ^ 2 + y ^ 2))"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   560
by (transfer, rule complex_inverse_complex_split)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   561
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   562
lemma HComplex_inverse:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   563
     "!!x y. inverse (HComplex x y) =
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   564
      HComplex (x/(x ^ 2 + y ^ 2)) (-y/(x ^ 2 + y ^ 2))"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   565
by (transfer, rule complex_inverse)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   566
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   567
lemma hRe_mult_i_eq[simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   568
    "!!y. hRe (iii * hcomplex_of_hypreal y) = 0"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   569
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   570
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   571
lemma hIm_mult_i_eq [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   572
    "!!y. hIm (iii * hcomplex_of_hypreal y) = y"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   573
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   574
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   575
lemma hcmod_mult_i [simp]: "!!y. hcmod (iii * hcomplex_of_hypreal y) = abs y"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   576
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   577
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   578
lemma hcmod_mult_i2 [simp]: "hcmod (hcomplex_of_hypreal y * iii) = abs y"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   579
by (simp only: hcmod_mult_i mult_commute)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   580
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   581
(*---------------------------------------------------------------------------*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   582
(*  harg                                                                     *)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   583
(*---------------------------------------------------------------------------*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   584
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   585
lemma harg: "harg (star_n X) = star_n (%n. arg (X n))"
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   586
by (simp add: harg_def starfun)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   587
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   588
lemma cos_harg_i_mult_zero_pos:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   589
     "!!y. 0 < y ==> ( *f* cos) (harg(HComplex 0 y)) = 0"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   590
by (transfer, rule cos_arg_i_mult_zero_pos)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   591
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   592
lemma cos_harg_i_mult_zero_neg:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   593
     "!!y. y < 0 ==> ( *f* cos) (harg(HComplex 0 y)) = 0"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   594
by (transfer, rule cos_arg_i_mult_zero_neg)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   595
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   596
lemma cos_harg_i_mult_zero [simp]:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   597
     "y \<noteq> 0 ==> ( *f* cos) (harg(HComplex 0 y)) = 0"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   598
by (auto simp add: linorder_neq_iff
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   599
                   cos_harg_i_mult_zero_pos cos_harg_i_mult_zero_neg)
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   600
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   601
lemma hcomplex_of_hypreal_zero_iff [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   602
     "!!y. (hcomplex_of_hypreal y = 0) = (y = 0)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   603
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   604
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   605
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   606
subsection{*Polar Form for Nonstandard Complex Numbers*}
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   607
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   608
lemma complex_split_polar2:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   609
     "\<forall>n. \<exists>r a. (z n) =  complex_of_real r * (Complex (cos a) (sin a))"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   610
by (blast intro: complex_split_polar)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   611
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   612
lemma lemma_hypreal_P_EX2:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   613
     "(\<exists>(x::hypreal) y. P x y) =
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   614
      (\<exists>f g. P (star_n f) (star_n g))"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   615
apply auto
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   616
apply (rule_tac x = x in star_cases)
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   617
apply (rule_tac x = y in star_cases, auto)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   618
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   619
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   620
lemma hcomplex_split_polar:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   621
  "!!z. \<exists>r a. z = hcomplex_of_hypreal r * (HComplex(( *f* cos) a)(( *f* sin) a))"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   622
by (transfer, rule complex_split_polar)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   623
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   624
lemma hcis: "hcis (star_n X) = star_n (%n. cis (X n))"
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   625
by (simp add: hcis_def starfun)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   626
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   627
lemma hcis_eq:
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   628
   "!!a. hcis a =
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   629
    (hcomplex_of_hypreal(( *f* cos) a) +
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   630
    iii * hcomplex_of_hypreal(( *f* sin) a))"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   631
by (transfer, simp add: cis_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   632
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   633
lemma hrcis: "hrcis (star_n X) (star_n Y) = star_n (%n. rcis (X n) (Y n))"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17373
diff changeset
   634
by (simp add: hrcis_def starfun2_star_n)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   635
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   636
lemma hrcis_Ex: "!!z. \<exists>r a. z = hrcis r a"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   637
by (transfer, rule rcis_Ex)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   638
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   639
lemma hRe_hcomplex_polar [simp]:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   640
     "hRe (hcomplex_of_hypreal r * HComplex (( *f* cos) a) (( *f* sin) a)) = 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   641
      r * ( *f* cos) a"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   642
by (simp add: hcomplex_of_hypreal_mult_HComplex)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   643
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   644
lemma hRe_hrcis [simp]: "!!r a. hRe(hrcis r a) = r * ( *f* cos) a"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   645
by (transfer, rule Re_rcis)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   646
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   647
lemma hIm_hcomplex_polar [simp]:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   648
     "hIm (hcomplex_of_hypreal r * HComplex (( *f* cos) a) (( *f* sin) a)) = 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   649
      r * ( *f* sin) a"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   650
by (simp add: hcomplex_of_hypreal_mult_HComplex)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   651
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   652
lemma hIm_hrcis [simp]: "!!r a. hIm(hrcis r a) = r * ( *f* sin) a"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   653
by (transfer, rule Im_rcis)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   654
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   655
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   656
lemma hcmod_unit_one [simp]:
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   657
     "!!a. hcmod (HComplex (( *f* cos) a) (( *f* sin) a)) = 1"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   658
by (transfer, simp)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   659
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   660
lemma hcmod_complex_polar [simp]:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   661
     "hcmod (hcomplex_of_hypreal r * HComplex (( *f* cos) a) (( *f* sin) a)) =
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   662
      abs r"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   663
by (simp only: hcmod_mult hcmod_unit_one, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   664
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   665
lemma hcmod_hrcis [simp]: "!!r a. hcmod(hrcis r a) = abs r"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   666
by (transfer, rule complex_mod_rcis)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   667
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   668
(*---------------------------------------------------------------------------*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   669
(*  (r1 * hrcis a) * (r2 * hrcis b) = r1 * r2 * hrcis (a + b)                *)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   670
(*---------------------------------------------------------------------------*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   671
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   672
lemma hcis_hrcis_eq: "!!a. hcis a = hrcis 1 a"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   673
by (transfer, rule cis_rcis_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   674
declare hcis_hrcis_eq [symmetric, simp]
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   675
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   676
lemma hrcis_mult:
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   677
  "!!a b r1 r2. hrcis r1 a * hrcis r2 b = hrcis (r1*r2) (a + b)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   678
by (transfer, rule rcis_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   679
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   680
lemma hcis_mult: "!!a b. hcis a * hcis b = hcis (a + b)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   681
by (transfer, rule cis_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   682
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   683
lemma hcis_zero [simp]: "hcis 0 = 1"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   684
by (transfer, rule cis_zero)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   685
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   686
lemma hrcis_zero_mod [simp]: "!!a. hrcis 0 a = 0"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   687
by (transfer, rule rcis_zero_mod)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   688
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   689
lemma hrcis_zero_arg [simp]: "!!r. hrcis r 0 = hcomplex_of_hypreal r"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   690
by (transfer, rule rcis_zero_arg)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   691
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   692
lemma hcomplex_i_mult_minus [simp]: "iii * (iii * x) = - x"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   693
by (simp add: mult_assoc [symmetric])
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   694
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   695
lemma hcomplex_i_mult_minus2 [simp]: "iii * iii * x = - x"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   696
by simp
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   697
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   698
lemma hcis_hypreal_of_nat_Suc_mult:
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   699
   "!!a. hcis (hypreal_of_nat (Suc n) * a) =
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   700
     hcis a * hcis (hypreal_of_nat n * a)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   701
apply (unfold hypreal_of_nat_def)
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   702
apply transfer
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   703
apply (fold real_of_nat_def)
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   704
apply (rule cis_real_of_nat_Suc_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   705
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   706
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   707
lemma NSDeMoivre: "(hcis a) ^ n = hcis (hypreal_of_nat n * a)"
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   708
apply (induct_tac "n")
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   709
apply (simp_all add: hcis_hypreal_of_nat_Suc_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   710
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   711
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   712
lemma hcis_hypreal_of_hypnat_Suc_mult:
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   713
     "!! a n. hcis (hypreal_of_hypnat (n + 1) * a) =
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   714
      hcis a * hcis (hypreal_of_hypnat n * a)"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   715
by (transfer, simp add: cis_real_of_nat_Suc_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   716
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   717
lemma NSDeMoivre_ext:
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   718
  "!!a n. (hcis a) hcpow n = hcis (hypreal_of_hypnat n * a)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   719
by (transfer, rule DeMoivre)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   720
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   721
lemma NSDeMoivre2:
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   722
  "!!a r. (hrcis r a) ^ n = hrcis (r ^ n) (hypreal_of_nat n * a)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   723
apply (unfold hypreal_of_nat_def)
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   724
apply transfer
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   725
apply (fold real_of_nat_def)
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   726
apply (rule DeMoivre2)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   727
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   728
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   729
lemma DeMoivre2_ext:
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   730
  "!! a r n. (hrcis r a) hcpow n = hrcis (r pow n) (hypreal_of_hypnat n * a)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   731
by (transfer, rule DeMoivre2)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   732
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   733
lemma hcis_inverse [simp]: "!!a. inverse(hcis a) = hcis (-a)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   734
by (transfer, simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   735
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   736
lemma hrcis_inverse: "!!a r. inverse(hrcis r a) = hrcis (inverse r) (-a)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   737
by (transfer, simp add: rcis_inverse inverse_eq_divide [symmetric])
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   738
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   739
lemma hRe_hcis [simp]: "!!a. hRe(hcis a) = ( *f* cos) a"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   740
by (transfer, rule Re_cis)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   741
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   742
lemma hIm_hcis [simp]: "!!a. hIm(hcis a) = ( *f* sin) a"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   743
by (transfer, rule Im_cis)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   744
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   745
lemma cos_n_hRe_hcis_pow_n: "( *f* cos) (hypreal_of_nat n * a) = hRe(hcis a ^ n)"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   746
by (simp add: NSDeMoivre)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   747
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   748
lemma sin_n_hIm_hcis_pow_n: "( *f* sin) (hypreal_of_nat n * a) = hIm(hcis a ^ n)"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   749
by (simp add: NSDeMoivre)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   750
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   751
lemma cos_n_hRe_hcis_hcpow_n: "( *f* cos) (hypreal_of_hypnat n * a) = hRe(hcis a hcpow n)"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   752
by (simp add: NSDeMoivre_ext)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   753
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   754
lemma sin_n_hIm_hcis_hcpow_n: "( *f* sin) (hypreal_of_hypnat n * a) = hIm(hcis a hcpow n)"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   755
by (simp add: NSDeMoivre_ext)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   756
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   757
lemma hexpi_add: "!!a b. hexpi(a + b) = hexpi(a) * hexpi(b)"
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   758
by (transfer, rule expi_add)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   759
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   760
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   761
subsection{*@{term hcomplex_of_complex}: the Injection from
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   762
  type @{typ complex} to to @{typ hcomplex}*}
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   763
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   764
lemma inj_hcomplex_of_complex: "inj(hcomplex_of_complex)"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   765
by (rule inj_onI, simp)
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   766
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   767
lemma hcomplex_of_complex_i: "iii = hcomplex_of_complex ii"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   768
by (simp add: iii_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   769
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   770
lemma hRe_hcomplex_of_complex:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   771
   "hRe (hcomplex_of_complex z) = hypreal_of_real (Re z)"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   772
by (transfer, rule refl)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   773
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   774
lemma hIm_hcomplex_of_complex:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   775
   "hIm (hcomplex_of_complex z) = hypreal_of_real (Im z)"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   776
by (transfer, rule refl)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   777
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   778
lemma hcmod_hcomplex_of_complex:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   779
     "hcmod (hcomplex_of_complex x) = hypreal_of_real (cmod x)"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   780
by (transfer, rule refl)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   781
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   782
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   783
subsection{*Numerals and Arithmetic*}
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   784
17300
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
   785
lemma hcomplex_number_of_def: "(number_of w :: hcomplex) == of_int (Rep_Bin w)"
17332
4910cf8c0cd2 added theorem attributes transfer_intro, transfer_unfold, transfer_refold; simplified some proofs; some rearranging
huffman
parents: 17318
diff changeset
   786
by (transfer, rule number_of_eq [THEN eq_reflection])
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   787
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   788
lemma hcomplex_of_hypreal_eq_hcomplex_of_complex: 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   789
     "hcomplex_of_hypreal (hypreal_of_real x) =  
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   790
      hcomplex_of_complex (complex_of_real x)"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   791
by (transfer, rule refl)
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   792
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   793
lemma hcomplex_hypreal_number_of: 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   794
  "hcomplex_of_complex (number_of w) = hcomplex_of_hypreal(number_of w)"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   795
by (transfer, rule complex_number_of [symmetric])
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   796
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   797
text{*This theorem is necessary because theorems such as
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   798
   @{text iszero_number_of_0} only hold for ordered rings. They cannot
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   799
   be generalized to fields in general because they fail for finite fields.
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   800
   They work for type complex because the reals can be embedded in them.*}
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   801
lemma iszero_hcomplex_number_of [simp]:
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   802
     "iszero (number_of w :: hcomplex) = iszero (number_of w :: real)"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   803
by (transfer iszero_def, simp)
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   804
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   805
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   806
(*
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   807
Goal "z + hcnj z =  
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   808
      hcomplex_of_hypreal (2 * hRe(z))"
17300
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
   809
by (res_inst_tac [("z","z")] eq_Abs_star 1);
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   810
by (auto_tac (claset(),HOL_ss addsimps [hRe,hcnj,star_n_add,
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   811
    hypreal_mult,hcomplex_of_hypreal,complex_add_cnj]));
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   812
qed "star_n_add_hcnj";
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   813
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   814
Goal "z - hcnj z = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   815
\     hcomplex_of_hypreal (hypreal_of_real #2 * hIm(z)) * iii";
17300
5798fbf42a6a replace type hcomplex with complex star
huffman
parents: 17299
diff changeset
   816
by (res_inst_tac [("z","z")] eq_Abs_star 1);
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   817
by (auto_tac (claset(),simpset() addsimps [hIm,hcnj,hcomplex_diff,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   818
    hypreal_of_real_def,hypreal_mult,hcomplex_of_hypreal,
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   819
    complex_diff_cnj,iii_def,star_n_mult]));
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   820
qed "hcomplex_diff_hcnj";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   821
*)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   822
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   823
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   824
(*** Real and imaginary stuff ***)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   825
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   826
(*Convert???
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   827
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   828
  "((number_of xa :: hcomplex) + iii * number_of ya =  
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   829
        number_of xb + iii * number_of yb) =  
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   830
   (((number_of xa :: hcomplex) = number_of xb) &  
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   831
    ((number_of ya :: hcomplex) = number_of yb))"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   832
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iff,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   833
     hcomplex_hypreal_number_of]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   834
qed "hcomplex_number_of_eq_cancel_iff";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   835
Addsimps [hcomplex_number_of_eq_cancel_iff];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   836
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   837
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   838
  "((number_of xa :: hcomplex) + number_of ya * iii = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   839
\       number_of xb + number_of yb * iii) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   840
\  (((number_of xa :: hcomplex) = number_of xb) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   841
\   ((number_of ya :: hcomplex) = number_of yb))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   842
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iffA,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   843
    hcomplex_hypreal_number_of]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   844
qed "hcomplex_number_of_eq_cancel_iffA";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   845
Addsimps [hcomplex_number_of_eq_cancel_iffA];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   846
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   847
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   848
  "((number_of xa :: hcomplex) + number_of ya * iii = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   849
\       number_of xb + iii * number_of yb) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   850
\  (((number_of xa :: hcomplex) = number_of xb) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   851
\   ((number_of ya :: hcomplex) = number_of yb))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   852
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iffB,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   853
    hcomplex_hypreal_number_of]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   854
qed "hcomplex_number_of_eq_cancel_iffB";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   855
Addsimps [hcomplex_number_of_eq_cancel_iffB];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   856
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   857
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   858
  "((number_of xa :: hcomplex) + iii * number_of ya = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   859
\       number_of xb + number_of yb * iii) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   860
\  (((number_of xa :: hcomplex) = number_of xb) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   861
\   ((number_of ya :: hcomplex) = number_of yb))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   862
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iffC,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   863
     hcomplex_hypreal_number_of]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   864
qed "hcomplex_number_of_eq_cancel_iffC";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   865
Addsimps [hcomplex_number_of_eq_cancel_iffC];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   866
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   867
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   868
  "((number_of xa :: hcomplex) + iii * number_of ya = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   869
\       number_of xb) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   870
\  (((number_of xa :: hcomplex) = number_of xb) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   871
\   ((number_of ya :: hcomplex) = 0))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   872
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iff2,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   873
    hcomplex_hypreal_number_of,hcomplex_of_hypreal_zero_iff]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   874
qed "hcomplex_number_of_eq_cancel_iff2";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   875
Addsimps [hcomplex_number_of_eq_cancel_iff2];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   876
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   877
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   878
  "((number_of xa :: hcomplex) + number_of ya * iii = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   879
\       number_of xb) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   880
\  (((number_of xa :: hcomplex) = number_of xb) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   881
\   ((number_of ya :: hcomplex) = 0))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   882
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iff2a,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   883
    hcomplex_hypreal_number_of,hcomplex_of_hypreal_zero_iff]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   884
qed "hcomplex_number_of_eq_cancel_iff2a";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   885
Addsimps [hcomplex_number_of_eq_cancel_iff2a];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   886
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   887
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   888
  "((number_of xa :: hcomplex) + iii * number_of ya = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   889
\    iii * number_of yb) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   890
\  (((number_of xa :: hcomplex) = 0) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   891
\   ((number_of ya :: hcomplex) = number_of yb))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   892
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iff3,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   893
    hcomplex_hypreal_number_of,hcomplex_of_hypreal_zero_iff]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   894
qed "hcomplex_number_of_eq_cancel_iff3";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   895
Addsimps [hcomplex_number_of_eq_cancel_iff3];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   896
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   897
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   898
  "((number_of xa :: hcomplex) + number_of ya * iii= \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   899
\    iii * number_of yb) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   900
\  (((number_of xa :: hcomplex) = 0) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   901
\   ((number_of ya :: hcomplex) = number_of yb))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   902
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iff3a,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   903
    hcomplex_hypreal_number_of,hcomplex_of_hypreal_zero_iff]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   904
qed "hcomplex_number_of_eq_cancel_iff3a";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   905
Addsimps [hcomplex_number_of_eq_cancel_iff3a];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   906
*)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   907
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   908
lemma hcomplex_number_of_hcnj [simp]:
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   909
     "hcnj (number_of v :: hcomplex) = number_of v"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   910
by (transfer, rule complex_number_of_cnj)
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   911
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   912
lemma hcomplex_number_of_hcmod [simp]: 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   913
      "hcmod(number_of v :: hcomplex) = abs (number_of v :: hypreal)"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   914
by (transfer, rule complex_number_of_cmod)
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   915
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   916
lemma hcomplex_number_of_hRe [simp]: 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   917
      "hRe(number_of v :: hcomplex) = number_of v"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   918
by (transfer, simp)
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   919
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   920
lemma hcomplex_number_of_hIm [simp]: 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   921
      "hIm(number_of v :: hcomplex) = 0"
17373
27509e72f29e removed duplicated lemmas; convert more proofs to transfer principle
huffman
parents: 17332
diff changeset
   922
by (transfer, simp)
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   923
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
   924
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   925
ML
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   926
{*
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   927
val iii_def = thm"iii_def";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   928
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   929
val hRe = thm"hRe";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   930
val hIm = thm"hIm";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   931
val hcomplex_hRe_hIm_cancel_iff = thm"hcomplex_hRe_hIm_cancel_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   932
val hcomplex_hRe_zero = thm"hcomplex_hRe_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   933
val hcomplex_hIm_zero = thm"hcomplex_hIm_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   934
val hcomplex_hRe_one = thm"hcomplex_hRe_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   935
val hcomplex_hIm_one = thm"hcomplex_hIm_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   936
val inj_hcomplex_of_complex = thm"inj_hcomplex_of_complex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   937
val hcomplex_of_complex_i = thm"hcomplex_of_complex_i";
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
   938
val star_n_add = thm"star_n_add";
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   939
val hRe_add = thm"hRe_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   940
val hIm_add = thm"hIm_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   941
val hRe_minus = thm"hRe_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   942
val hIm_minus = thm"hIm_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   943
val hcomplex_add_minus_eq_minus = thm"hcomplex_add_minus_eq_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   944
val hcomplex_diff_eq_eq = thm"hcomplex_diff_eq_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   945
val hcomplex_mult_minus_one = thm"hcomplex_mult_minus_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   946
val hcomplex_mult_minus_one_right = thm"hcomplex_mult_minus_one_right";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   947
val hcomplex_mult_left_cancel = thm"hcomplex_mult_left_cancel";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   948
val hcomplex_mult_right_cancel = thm"hcomplex_mult_right_cancel";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   949
val hcomplex_add_divide_distrib = thm"hcomplex_add_divide_distrib";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   950
val hcomplex_of_hypreal = thm"hcomplex_of_hypreal";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   951
val hcomplex_of_hypreal_cancel_iff = thm"hcomplex_of_hypreal_cancel_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   952
val hcomplex_of_hypreal_minus = thm"hcomplex_of_hypreal_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   953
val hcomplex_of_hypreal_inverse = thm"hcomplex_of_hypreal_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   954
val hcomplex_of_hypreal_add = thm"hcomplex_of_hypreal_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   955
val hcomplex_of_hypreal_diff = thm"hcomplex_of_hypreal_diff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   956
val hcomplex_of_hypreal_mult = thm"hcomplex_of_hypreal_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   957
val hcomplex_of_hypreal_divide = thm"hcomplex_of_hypreal_divide";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   958
val hcomplex_of_hypreal_one = thm"hcomplex_of_hypreal_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   959
val hcomplex_of_hypreal_zero = thm"hcomplex_of_hypreal_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   960
val hcomplex_of_hypreal_pow = thm"hcomplex_of_hypreal_pow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   961
val hRe_hcomplex_of_hypreal = thm"hRe_hcomplex_of_hypreal";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   962
val hIm_hcomplex_of_hypreal = thm"hIm_hcomplex_of_hypreal";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   963
val hcomplex_of_hypreal_epsilon_not_zero = thm"hcomplex_of_hypreal_epsilon_not_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   964
val hcmod = thm"hcmod";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   965
val hcmod_zero = thm"hcmod_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   966
val hcmod_one = thm"hcmod_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   967
val hcmod_hcomplex_of_hypreal = thm"hcmod_hcomplex_of_hypreal";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   968
val hcomplex_of_hypreal_abs = thm"hcomplex_of_hypreal_abs";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   969
val hcnj = thm"hcnj";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   970
val hcomplex_hcnj_cancel_iff = thm"hcomplex_hcnj_cancel_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   971
val hcomplex_hcnj_hcnj = thm"hcomplex_hcnj_hcnj";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   972
val hcomplex_hcnj_hcomplex_of_hypreal = thm"hcomplex_hcnj_hcomplex_of_hypreal";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   973
val hcomplex_hmod_hcnj = thm"hcomplex_hmod_hcnj";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   974
val hcomplex_hcnj_minus = thm"hcomplex_hcnj_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   975
val hcomplex_hcnj_inverse = thm"hcomplex_hcnj_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   976
val hcomplex_hcnj_add = thm"hcomplex_hcnj_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   977
val hcomplex_hcnj_diff = thm"hcomplex_hcnj_diff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   978
val hcomplex_hcnj_mult = thm"hcomplex_hcnj_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   979
val hcomplex_hcnj_divide = thm"hcomplex_hcnj_divide";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   980
val hcnj_one = thm"hcnj_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   981
val hcomplex_hcnj_pow = thm"hcomplex_hcnj_pow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   982
val hcomplex_hcnj_zero = thm"hcomplex_hcnj_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   983
val hcomplex_hcnj_zero_iff = thm"hcomplex_hcnj_zero_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   984
val hcomplex_mult_hcnj = thm"hcomplex_mult_hcnj";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   985
val hcomplex_hcmod_eq_zero_cancel = thm"hcomplex_hcmod_eq_zero_cancel";
14371
c78c7da09519 Conversion of HyperNat to Isar format and its declaration as a semiring
paulson
parents: 14370
diff changeset
   986
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   987
val hcmod_hcomplex_of_hypreal_of_nat = thm"hcmod_hcomplex_of_hypreal_of_nat";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   988
val hcmod_hcomplex_of_hypreal_of_hypnat = thm"hcmod_hcomplex_of_hypreal_of_hypnat";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   989
val hcmod_minus = thm"hcmod_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   990
val hcmod_mult_hcnj = thm"hcmod_mult_hcnj";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   991
val hcmod_ge_zero = thm"hcmod_ge_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   992
val hrabs_hcmod_cancel = thm"hrabs_hcmod_cancel";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   993
val hcmod_mult = thm"hcmod_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   994
val hcmod_add_squared_eq = thm"hcmod_add_squared_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   995
val hcomplex_hRe_mult_hcnj_le_hcmod = thm"hcomplex_hRe_mult_hcnj_le_hcmod";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   996
val hcomplex_hRe_mult_hcnj_le_hcmod2 = thm"hcomplex_hRe_mult_hcnj_le_hcmod2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   997
val hcmod_triangle_squared = thm"hcmod_triangle_squared";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   998
val hcmod_triangle_ineq = thm"hcmod_triangle_ineq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   999
val hcmod_triangle_ineq2 = thm"hcmod_triangle_ineq2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1000
val hcmod_diff_commute = thm"hcmod_diff_commute";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1001
val hcmod_add_less = thm"hcmod_add_less";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1002
val hcmod_mult_less = thm"hcmod_mult_less";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1003
val hcmod_diff_ineq = thm"hcmod_diff_ineq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1004
val hcpow = thm"hcpow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1005
val hcomplex_of_hypreal_hyperpow = thm"hcomplex_of_hypreal_hyperpow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1006
val hcmod_hcomplexpow = thm"hcmod_hcomplexpow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1007
val hcmod_hcpow = thm"hcmod_hcpow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1008
val hcpow_minus = thm"hcpow_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1009
val hcmod_hcomplex_inverse = thm"hcmod_hcomplex_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1010
val hcmod_divide = thm"hcmod_divide";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1011
val hcpow_mult = thm"hcpow_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1012
val hcpow_zero = thm"hcpow_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1013
val hcpow_zero2 = thm"hcpow_zero2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1014
val hcpow_not_zero = thm"hcpow_not_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1015
val hcpow_zero_zero = thm"hcpow_zero_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1016
val hcomplex_i_mult_eq = thm"hcomplex_i_mult_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1017
val hcomplexpow_i_squared = thm"hcomplexpow_i_squared";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1018
val hcomplex_i_not_zero = thm"hcomplex_i_not_zero";
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17300
diff changeset
  1019
val star_n_divide = thm"star_n_divide";
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1020
val hsgn = thm"hsgn";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1021
val hsgn_zero = thm"hsgn_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1022
val hsgn_one = thm"hsgn_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1023
val hsgn_minus = thm"hsgn_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1024
val hsgn_eq = thm"hsgn_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1025
val lemma_hypreal_P_EX2 = thm"lemma_hypreal_P_EX2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1026
val hcmod_i = thm"hcmod_i";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1027
val hcomplex_eq_cancel_iff2 = thm"hcomplex_eq_cancel_iff2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1028
val hRe_hsgn = thm"hRe_hsgn";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1029
val hIm_hsgn = thm"hIm_hsgn";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1030
val real_two_squares_add_zero_iff = thm"real_two_squares_add_zero_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1031
val hRe_mult_i_eq = thm"hRe_mult_i_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1032
val hIm_mult_i_eq = thm"hIm_mult_i_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1033
val hcmod_mult_i = thm"hcmod_mult_i";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1034
val hcmod_mult_i2 = thm"hcmod_mult_i2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1035
val harg = thm"harg";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1036
val cos_harg_i_mult_zero = thm"cos_harg_i_mult_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1037
val hcomplex_of_hypreal_zero_iff = thm"hcomplex_of_hypreal_zero_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1038
val complex_split_polar2 = thm"complex_split_polar2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1039
val hcomplex_split_polar = thm"hcomplex_split_polar";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1040
val hcis = thm"hcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1041
val hcis_eq = thm"hcis_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1042
val hrcis = thm"hrcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1043
val hrcis_Ex = thm"hrcis_Ex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1044
val hRe_hcomplex_polar = thm"hRe_hcomplex_polar";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1045
val hRe_hrcis = thm"hRe_hrcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1046
val hIm_hcomplex_polar = thm"hIm_hcomplex_polar";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1047
val hIm_hrcis = thm"hIm_hrcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1048
val hcmod_complex_polar = thm"hcmod_complex_polar";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1049
val hcmod_hrcis = thm"hcmod_hrcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1050
val hcis_hrcis_eq = thm"hcis_hrcis_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1051
val hrcis_mult = thm"hrcis_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1052
val hcis_mult = thm"hcis_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1053
val hcis_zero = thm"hcis_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1054
val hrcis_zero_mod = thm"hrcis_zero_mod";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1055
val hrcis_zero_arg = thm"hrcis_zero_arg";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1056
val hcomplex_i_mult_minus = thm"hcomplex_i_mult_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1057
val hcomplex_i_mult_minus2 = thm"hcomplex_i_mult_minus2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1058
val hcis_hypreal_of_nat_Suc_mult = thm"hcis_hypreal_of_nat_Suc_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1059
val NSDeMoivre = thm"NSDeMoivre";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1060
val hcis_hypreal_of_hypnat_Suc_mult = thm"hcis_hypreal_of_hypnat_Suc_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1061
val NSDeMoivre_ext = thm"NSDeMoivre_ext";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1062
val DeMoivre2 = thm"DeMoivre2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1063
val DeMoivre2_ext = thm"DeMoivre2_ext";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1064
val hcis_inverse = thm"hcis_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1065
val hrcis_inverse = thm"hrcis_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1066
val hRe_hcis = thm"hRe_hcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1067
val hIm_hcis = thm"hIm_hcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1068
val cos_n_hRe_hcis_pow_n = thm"cos_n_hRe_hcis_pow_n";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1069
val sin_n_hIm_hcis_pow_n = thm"sin_n_hIm_hcis_pow_n";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1070
val cos_n_hRe_hcis_hcpow_n = thm"cos_n_hRe_hcis_hcpow_n";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1071
val sin_n_hIm_hcis_hcpow_n = thm"sin_n_hIm_hcis_hcpow_n";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1072
val hexpi_add = thm"hexpi_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1073
val hRe_hcomplex_of_complex = thm"hRe_hcomplex_of_complex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1074
val hIm_hcomplex_of_complex = thm"hIm_hcomplex_of_complex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1075
val hcmod_hcomplex_of_complex = thm"hcmod_hcomplex_of_complex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1076
*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1077
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
  1078
end