src/HOL/Complex/NSComplex.thy
author wenzelm
Mon, 29 Aug 2005 16:18:04 +0200
changeset 17184 3d80209e9a53
parent 15413 901d1bfedf09
child 17298 ad73fb6144cf
permissions -rw-r--r--
use AList operations;
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
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    14
constdefs
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    15
    hcomplexrel :: "((nat=>complex)*(nat=>complex)) set"
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
    16
    "hcomplexrel == {p. \<exists>X Y. p = ((X::nat=>complex),Y) &
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    17
                        {n::nat. X(n) = Y(n)}: FreeUltrafilterNat}"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    18
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    19
typedef hcomplex = "{x::nat=>complex. True}//hcomplexrel"
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    20
  by (auto simp add: quotient_def)
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    21
14691
e1eedc8cad37 tuned instance statements;
wenzelm
parents: 14658
diff changeset
    22
instance hcomplex :: "{zero, one, plus, times, minus, inverse, power}" ..
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    23
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    24
defs (overloaded)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    25
  hcomplex_zero_def:
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    26
  "0 == Abs_hcomplex(hcomplexrel `` {%n. (0::complex)})"
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    27
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    28
  hcomplex_one_def:
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    29
  "1 == Abs_hcomplex(hcomplexrel `` {%n. (1::complex)})"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    30
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
  hcomplex_minus_def:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    33
  "- z == Abs_hcomplex(UN X: Rep_hcomplex(z).
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    34
                       hcomplexrel `` {%n::nat. - (X n)})"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    35
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    36
  hcomplex_diff_def:
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    37
  "w - z == w + -(z::hcomplex)"
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    38
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
    39
  hcinv_def:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
    40
  "inverse(P) == Abs_hcomplex(UN X: Rep_hcomplex(P).
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
    41
                    hcomplexrel `` {%n. inverse(X n)})"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
    42
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    43
constdefs
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
  hcomplex_of_complex :: "complex => hcomplex"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    46
  "hcomplex_of_complex z == Abs_hcomplex(hcomplexrel `` {%n. z})"
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    47
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    48
  (*--- real and Imaginary parts ---*)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    49
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    50
  hRe :: "hcomplex => hypreal"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    51
  "hRe(z) == Abs_hypreal(UN X:Rep_hcomplex(z). hyprel `` {%n. Re (X n)})"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    52
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    53
  hIm :: "hcomplex => hypreal"
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    54
  "hIm(z) == Abs_hypreal(UN X:Rep_hcomplex(z). hyprel `` {%n. Im (X n)})"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    55
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    56
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    57
  (*----------- modulus ------------*)
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    58
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    59
  hcmod :: "hcomplex => hypreal"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    60
  "hcmod z == Abs_hypreal(UN X: Rep_hcomplex(z).
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    61
			  hyprel `` {%n. cmod (X n)})"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    62
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    63
  (*------ imaginary unit ----------*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    64
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    65
  iii :: hcomplex
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    66
  "iii == Abs_hcomplex(hcomplexrel `` {%n. ii})"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    67
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    68
  (*------- complex conjugate ------*)
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    69
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    70
  hcnj :: "hcomplex => hcomplex"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    71
  "hcnj z == Abs_hcomplex(UN X:Rep_hcomplex(z). hcomplexrel `` {%n. cnj (X n)})"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    72
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    73
  (*------------ Argand -------------*)
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    74
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    75
  hsgn :: "hcomplex => hcomplex"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    76
  "hsgn z == Abs_hcomplex(UN X:Rep_hcomplex(z). hcomplexrel `` {%n. sgn(X n)})"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    77
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    78
  harg :: "hcomplex => hypreal"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    79
  "harg z == Abs_hypreal(UN X:Rep_hcomplex(z). hyprel `` {%n. arg(X n)})"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    80
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    81
  (* abbreviation for (cos a + i sin a) *)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    82
  hcis :: "hypreal => hcomplex"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    83
  "hcis a == Abs_hcomplex(UN X:Rep_hypreal(a). hcomplexrel `` {%n. cis (X n)})"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    84
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    85
  (*----- injection from hyperreals -----*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    86
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    87
  hcomplex_of_hypreal :: "hypreal => hcomplex"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    88
  "hcomplex_of_hypreal r == Abs_hcomplex(UN X:Rep_hypreal(r).
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    89
			       hcomplexrel `` {%n. complex_of_real (X n)})"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    90
14653
0848ab6fe5fc constdefs: proper order;
wenzelm
parents: 14641
diff changeset
    91
  (* abbreviation for r*(cos a + i sin a) *)
0848ab6fe5fc constdefs: proper order;
wenzelm
parents: 14641
diff changeset
    92
  hrcis :: "[hypreal, hypreal] => hcomplex"
0848ab6fe5fc constdefs: proper order;
wenzelm
parents: 14641
diff changeset
    93
  "hrcis r a == hcomplex_of_hypreal r * hcis a"
0848ab6fe5fc constdefs: proper order;
wenzelm
parents: 14641
diff changeset
    94
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    95
  (*------------ e ^ (x + iy) ------------*)
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    96
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    97
  hexpi :: "hcomplex => hcomplex"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
    98
  "hexpi z == hcomplex_of_hypreal(( *f* exp) (hRe z)) * hcis (hIm z)"
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
    99
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   100
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   101
constdefs
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   102
  HComplex :: "[hypreal,hypreal] => hcomplex"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   103
   "HComplex x y == hcomplex_of_hypreal x + iii * hcomplex_of_hypreal y"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   104
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   105
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   106
defs (overloaded)
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   107
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   108
  (*----------- division ----------*)
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   109
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   110
  hcomplex_divide_def:
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   111
  "w / (z::hcomplex) == w * inverse z"
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   112
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   113
  hcomplex_add_def:
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   114
  "w + z == Abs_hcomplex(UN X:Rep_hcomplex(w). UN Y:Rep_hcomplex(z).
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   115
		      hcomplexrel `` {%n. X n + Y n})"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   116
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   117
  hcomplex_mult_def:
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   118
  "w * z == Abs_hcomplex(UN X:Rep_hcomplex(w). UN Y:Rep_hcomplex(z).
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   119
		      hcomplexrel `` {%n. X n * Y n})"
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   120
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   121
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   122
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   123
consts
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   124
  "hcpow"  :: "[hcomplex,hypnat] => hcomplex"     (infixr 80)
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   125
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   126
defs
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   127
  (* hypernatural powers of nonstandard complex numbers *)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   128
  hcpow_def:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   129
  "(z::hcomplex) hcpow (n::hypnat)
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   130
      == Abs_hcomplex(UN X:Rep_hcomplex(z). UN Y: Rep_hypnat(n).
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   131
             hcomplexrel `` {%n. (X n) ^ (Y n)})"
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
   132
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   133
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   134
lemma hcomplexrel_refl: "(x,x): hcomplexrel"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   135
by (simp add: hcomplexrel_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   136
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   137
lemma hcomplexrel_sym: "(x,y): hcomplexrel ==> (y,x):hcomplexrel"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   138
by (auto simp add: hcomplexrel_def eq_commute)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   139
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   140
lemma hcomplexrel_trans:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   141
      "[|(x,y): hcomplexrel; (y,z):hcomplexrel|] ==> (x,z):hcomplexrel"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   142
by (simp add: hcomplexrel_def, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   143
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   144
lemma equiv_hcomplexrel: "equiv UNIV hcomplexrel"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   145
apply (simp add: equiv_def refl_def sym_def trans_def hcomplexrel_refl)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   146
apply (blast intro: hcomplexrel_sym hcomplexrel_trans)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   147
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   148
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   149
lemmas equiv_hcomplexrel_iff =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   150
    eq_equiv_class_iff [OF equiv_hcomplexrel UNIV_I UNIV_I, simp]
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   151
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   152
lemma hcomplexrel_in_hcomplex [simp]: "hcomplexrel``{x} : hcomplex"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   153
by (simp add: hcomplex_def hcomplexrel_def quotient_def, blast)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   154
15413
901d1bfedf09 removal of archaic Abs/Rep proofs
paulson
parents: 15169
diff changeset
   155
declare Abs_hcomplex_inject [simp] Abs_hcomplex_inverse [simp]
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   156
declare equiv_hcomplexrel [THEN eq_equiv_class_iff, simp]
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   157
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   158
lemma lemma_hcomplexrel_refl [simp]: "x: hcomplexrel `` {x}"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   159
by (simp add: hcomplexrel_def)
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_empty_not_mem [simp]: "{} \<notin> hcomplex"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   162
apply (simp add: hcomplex_def hcomplexrel_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   163
apply (auto elim!: quotientE)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   164
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   165
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   166
lemma Rep_hcomplex_nonempty [simp]: "Rep_hcomplex x \<noteq> {}"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   167
by (cut_tac x = x in Rep_hcomplex, auto)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   168
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   169
lemma eq_Abs_hcomplex:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   170
    "(!!x. z = Abs_hcomplex(hcomplexrel `` {x}) ==> P) ==> P"
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   171
apply (rule_tac x1=z in Rep_hcomplex [unfolded hcomplex_def, THEN quotientE])
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   172
apply (drule_tac f = Abs_hcomplex in arg_cong)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   173
apply (force simp add: Rep_hcomplex_inverse hcomplexrel_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   174
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   175
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   176
theorem hcomplex_cases [case_names Abs_hcomplex, cases type: hcomplex]:
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   177
    "(!!x. z = Abs_hcomplex(hcomplexrel``{x}) ==> P) ==> P"
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   178
by (rule eq_Abs_hcomplex [of z], blast)
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   179
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   180
lemma hcomplexrel_iff [simp]:
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   181
   "((X,Y): hcomplexrel) = ({n. X n = Y n}: FreeUltrafilterNat)"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   182
by (simp add: hcomplexrel_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   183
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   184
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   185
subsection{*Properties of Nonstandard Real and Imaginary Parts*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   186
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   187
lemma hRe:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   188
     "hRe(Abs_hcomplex (hcomplexrel `` {X})) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   189
      Abs_hypreal(hyprel `` {%n. Re(X n)})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   190
apply (simp add: hRe_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   191
apply (rule_tac f = Abs_hypreal in arg_cong)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   192
apply (auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   193
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   194
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   195
lemma hIm:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   196
     "hIm(Abs_hcomplex (hcomplexrel `` {X})) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   197
      Abs_hypreal(hyprel `` {%n. Im(X n)})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   198
apply (simp add: hIm_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   199
apply (rule_tac f = Abs_hypreal in arg_cong)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   200
apply (auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   201
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   202
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   203
lemma hcomplex_hRe_hIm_cancel_iff:
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   204
     "(w=z) = (hRe(w) = hRe(z) & hIm(w) = hIm(z))"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   205
apply (cases z, cases w)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   206
apply (auto simp add: hRe hIm complex_Re_Im_cancel_iff iff: hcomplexrel_iff)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   207
apply (ultra+)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   208
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   209
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   210
lemma hcomplex_equality [intro?]: "hRe z = hRe w ==> hIm z = hIm w ==> z = w"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   211
by (simp add: hcomplex_hRe_hIm_cancel_iff) 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   212
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   213
lemma hcomplex_hRe_zero [simp]: "hRe 0 = 0"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   214
by (simp add: hcomplex_zero_def hRe hypreal_zero_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   215
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   216
lemma hcomplex_hIm_zero [simp]: "hIm 0 = 0"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   217
by (simp add: hcomplex_zero_def hIm hypreal_zero_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   218
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   219
lemma hcomplex_hRe_one [simp]: "hRe 1 = 1"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   220
by (simp add: hcomplex_one_def hRe hypreal_one_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   221
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   222
lemma hcomplex_hIm_one [simp]: "hIm 1 = 0"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   223
by (simp add: hcomplex_one_def hIm hypreal_one_def hypreal_zero_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   224
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   225
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   226
subsection{*Addition for Nonstandard Complex Numbers*}
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   227
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   228
lemma hcomplex_add_congruent2:
14658
b1293d0f8d5f congruent2 now allows different equiv relations
paulson
parents: 14653
diff changeset
   229
    "congruent2 hcomplexrel hcomplexrel (%X Y. hcomplexrel `` {%n. X n + Y n})"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   230
by (auto simp add: congruent2_def iff: hcomplexrel_iff, ultra) 
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   231
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   232
lemma hcomplex_add:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   233
  "Abs_hcomplex(hcomplexrel``{%n. X n}) + 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   234
   Abs_hcomplex(hcomplexrel``{%n. Y n}) =
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   235
     Abs_hcomplex(hcomplexrel``{%n. X n + Y n})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   236
apply (simp add: hcomplex_add_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   237
apply (rule_tac f = Abs_hcomplex in arg_cong)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   238
apply (auto simp add: iff: hcomplexrel_iff, ultra) 
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   239
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   240
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   241
lemma hcomplex_add_commute: "(z::hcomplex) + w = w + z"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   242
apply (cases z, cases w)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   243
apply (simp add: complex_add_commute hcomplex_add)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   244
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   245
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   246
lemma hcomplex_add_assoc: "((z1::hcomplex) + z2) + z3 = z1 + (z2 + z3)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   247
apply (cases z1, cases z2, cases z3)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   248
apply (simp add: hcomplex_add complex_add_assoc)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   249
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   250
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   251
lemma hcomplex_add_zero_left: "(0::hcomplex) + z = z"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   252
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   253
apply (simp add: hcomplex_zero_def hcomplex_add)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   254
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   255
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   256
lemma hcomplex_add_zero_right: "z + (0::hcomplex) = z"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   257
by (simp add: hcomplex_add_zero_left hcomplex_add_commute)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   258
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   259
lemma hRe_add: "hRe(x + y) = hRe(x) + hRe(y)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   260
apply (cases x, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   261
apply (simp add: hRe hcomplex_add hypreal_add complex_Re_add)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   262
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   263
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   264
lemma hIm_add: "hIm(x + y) = hIm(x) + hIm(y)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   265
apply (cases x, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   266
apply (simp add: hIm hcomplex_add hypreal_add complex_Im_add)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   267
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   268
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   269
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   270
subsection{*Additive Inverse on Nonstandard Complex Numbers*}
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   271
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   272
lemma hcomplex_minus_congruent:
15169
2b5da07a0b89 new "respects" syntax for quotienting
paulson
parents: 15140
diff changeset
   273
     "(%X. hcomplexrel `` {%n. - (X n)}) respects hcomplexrel"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   274
by (simp add: congruent_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   275
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   276
lemma hcomplex_minus:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   277
  "- (Abs_hcomplex(hcomplexrel `` {%n. X n})) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   278
      Abs_hcomplex(hcomplexrel `` {%n. -(X n)})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   279
apply (simp add: hcomplex_minus_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   280
apply (rule_tac f = Abs_hcomplex in arg_cong)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   281
apply (auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   282
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   283
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   284
lemma hcomplex_add_minus_left: "-z + z = (0::hcomplex)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   285
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   286
apply (simp add: hcomplex_add hcomplex_minus hcomplex_zero_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   287
done
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   288
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   289
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   290
subsection{*Multiplication for Nonstandard Complex Numbers*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   291
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   292
lemma hcomplex_mult:
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   293
  "Abs_hcomplex(hcomplexrel``{%n. X n}) *
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   294
     Abs_hcomplex(hcomplexrel``{%n. Y n}) =
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   295
     Abs_hcomplex(hcomplexrel``{%n. X n * Y n})"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   296
apply (simp add: hcomplex_mult_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   297
apply (rule_tac f = Abs_hcomplex in arg_cong)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   298
apply (auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   299
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   300
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   301
lemma hcomplex_mult_commute: "(w::hcomplex) * z = z * w"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   302
apply (cases w, cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   303
apply (simp add: hcomplex_mult complex_mult_commute)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   304
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   305
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   306
lemma hcomplex_mult_assoc: "((u::hcomplex) * v) * w = u * (v * w)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   307
apply (cases u, cases v, cases w)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   308
apply (simp add: hcomplex_mult complex_mult_assoc)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   309
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   310
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   311
lemma hcomplex_mult_one_left: "(1::hcomplex) * z = z"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   312
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   313
apply (simp add: hcomplex_one_def hcomplex_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   314
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   315
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   316
lemma hcomplex_mult_zero_left: "(0::hcomplex) * z = 0"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   317
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   318
apply (simp add: hcomplex_zero_def hcomplex_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   319
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   320
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   321
lemma hcomplex_add_mult_distrib:
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   322
     "((z1::hcomplex) + z2) * w = (z1 * w) + (z2 * w)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   323
apply (cases z1, cases z2, cases w)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   324
apply (simp add: hcomplex_mult hcomplex_add left_distrib)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   325
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   326
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   327
lemma hcomplex_zero_not_eq_one: "(0::hcomplex) \<noteq> (1::hcomplex)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   328
by (simp add: hcomplex_zero_def hcomplex_one_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   329
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   330
declare hcomplex_zero_not_eq_one [THEN not_sym, simp]
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   331
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   332
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   333
subsection{*Inverse of Nonstandard Complex Number*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   334
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   335
lemma hcomplex_inverse:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   336
  "inverse (Abs_hcomplex(hcomplexrel `` {%n. X n})) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   337
      Abs_hcomplex(hcomplexrel `` {%n. inverse (X n)})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   338
apply (simp add: hcinv_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   339
apply (rule_tac f = Abs_hcomplex in arg_cong)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   340
apply (auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   341
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   342
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   343
lemma hcomplex_mult_inv_left:
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   344
      "z \<noteq> (0::hcomplex) ==> inverse(z) * z = (1::hcomplex)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   345
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   346
apply (simp add: hcomplex_zero_def hcomplex_one_def hcomplex_inverse hcomplex_mult, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   347
apply (rule ccontr)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   348
apply (drule left_inverse, auto)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   349
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   350
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   351
subsection {* The Field of Nonstandard Complex Numbers *}
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   352
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   353
instance hcomplex :: field
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   354
proof
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   355
  fix z u v w :: hcomplex
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   356
  show "(u + v) + w = u + (v + w)"
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   357
    by (simp add: hcomplex_add_assoc)
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   358
  show "z + w = w + z"
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   359
    by (simp add: hcomplex_add_commute)
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   360
  show "0 + z = z"
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   361
    by (simp add: hcomplex_add_zero_left)
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   362
  show "-z + z = 0"
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   363
    by (simp add: hcomplex_add_minus_left)
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   364
  show "z - w = z + -w"
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   365
    by (simp add: hcomplex_diff_def)
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   366
  show "(u * v) * w = u * (v * w)"
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   367
    by (simp add: hcomplex_mult_assoc)
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   368
  show "z * w = w * z"
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   369
    by (simp add: hcomplex_mult_commute)
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   370
  show "1 * z = z"
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   371
    by (simp add: hcomplex_mult_one_left)
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   372
  show "0 \<noteq> (1::hcomplex)"
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   373
    by (rule hcomplex_zero_not_eq_one)
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   374
  show "(u + v) * w = u * w + v * w"
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   375
    by (simp add: hcomplex_add_mult_distrib)
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
   376
  show "z / w = z * inverse w"
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   377
    by (simp add: hcomplex_divide_def)
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
   378
  assume "w \<noteq> 0"
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
   379
  thus "inverse w * w = 1"
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   380
    by (rule hcomplex_mult_inv_left)
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   381
qed
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   382
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   383
instance hcomplex :: division_by_zero
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   384
proof
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14421
diff changeset
   385
  show "inverse 0 = (0::hcomplex)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   386
    by (simp add: hcomplex_inverse hcomplex_zero_def)
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   387
qed
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
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   390
subsection{*More Minus Laws*}
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   391
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   392
lemma hRe_minus: "hRe(-z) = - hRe(z)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   393
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   394
apply (simp add: hRe hcomplex_minus hypreal_minus complex_Re_minus)
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   395
done
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   396
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   397
lemma hIm_minus: "hIm(-z) = - hIm(z)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   398
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   399
apply (simp add: hIm hcomplex_minus hypreal_minus complex_Im_minus)
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   400
done
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   401
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   402
lemma hcomplex_add_minus_eq_minus:
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   403
      "x + y = (0::hcomplex) ==> x = -y"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14691
diff changeset
   404
apply (drule OrderedGroup.equals_zero_I)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   405
apply (simp add: minus_equation_iff [of x y])
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   406
done
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   407
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   408
lemma hcomplex_i_mult_eq [simp]: "iii * iii = - 1"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   409
by (simp add: iii_def hcomplex_mult hcomplex_one_def hcomplex_minus)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   410
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   411
lemma hcomplex_i_mult_left [simp]: "iii * (iii * z) = -z"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   412
by (simp add: mult_assoc [symmetric])
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   413
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   414
lemma hcomplex_i_not_zero [simp]: "iii \<noteq> 0"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   415
by (simp add: iii_def hcomplex_zero_def)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   416
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   417
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   418
subsection{*More Multiplication Laws*}
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   419
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   420
lemma hcomplex_mult_one_right: "z * (1::hcomplex) = z"
14738
83f1a514dcb4 changes made due to new Ring_and_Field theory
obua
parents: 14691
diff changeset
   421
by (rule OrderedGroup.mult_1_right)
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   422
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   423
lemma hcomplex_mult_minus_one [simp]: "- 1 * (z::hcomplex) = -z"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   424
by simp
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   425
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   426
lemma hcomplex_mult_minus_one_right [simp]: "(z::hcomplex) * - 1 = -z"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   427
by (subst hcomplex_mult_commute, simp)
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   428
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   429
lemma hcomplex_mult_left_cancel:
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   430
     "(c::hcomplex) \<noteq> (0::hcomplex) ==> (c*a=c*b) = (a=b)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   431
by (simp add: field_mult_cancel_left)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   432
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   433
lemma hcomplex_mult_right_cancel:
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   434
     "(c::hcomplex) \<noteq> (0::hcomplex) ==> (a*c=b*c) = (a=b)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   435
by (simp add: Ring_and_Field.field_mult_cancel_right)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   436
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   437
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   438
subsection{*Subraction and Division*}
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   439
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   440
lemma hcomplex_diff:
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   441
 "Abs_hcomplex(hcomplexrel``{%n. X n}) - Abs_hcomplex(hcomplexrel``{%n. Y n}) =
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   442
  Abs_hcomplex(hcomplexrel``{%n. X n - Y n})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   443
by (simp add: hcomplex_diff_def hcomplex_minus hcomplex_add complex_diff_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   444
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   445
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
   446
by (rule OrderedGroup.diff_eq_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   447
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   448
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
   449
by (rule Ring_and_Field.add_divide_distrib)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   450
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   451
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   452
subsection{*Embedding Properties for @{term hcomplex_of_hypreal} Map*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   453
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   454
lemma hcomplex_of_hypreal:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   455
  "hcomplex_of_hypreal (Abs_hypreal(hyprel `` {%n. X n})) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   456
      Abs_hcomplex(hcomplexrel `` {%n. complex_of_real (X n)})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   457
apply (simp add: hcomplex_of_hypreal_def)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   458
apply (rule_tac f = Abs_hcomplex in arg_cong, auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   459
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   460
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   461
lemma hcomplex_of_hypreal_cancel_iff [iff]:
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   462
     "(hcomplex_of_hypreal x = hcomplex_of_hypreal y) = (x = y)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   463
apply (cases x, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   464
apply (simp add: hcomplex_of_hypreal)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   465
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   466
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   467
lemma hcomplex_of_hypreal_one [simp]: "hcomplex_of_hypreal 1 = 1"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   468
by (simp add: hcomplex_one_def hcomplex_of_hypreal hypreal_one_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   469
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   470
lemma hcomplex_of_hypreal_zero [simp]: "hcomplex_of_hypreal 0 = 0"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   471
by (simp add: hcomplex_zero_def hypreal_zero_def hcomplex_of_hypreal)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   472
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   473
lemma hcomplex_of_hypreal_minus [simp]:
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   474
     "hcomplex_of_hypreal(-x) = - hcomplex_of_hypreal x"
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   475
apply (cases x)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   476
apply (simp add: hcomplex_of_hypreal hcomplex_minus hypreal_minus)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   477
done
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   478
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   479
lemma hcomplex_of_hypreal_inverse [simp]:
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   480
     "hcomplex_of_hypreal(inverse x) = inverse(hcomplex_of_hypreal x)"
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   481
apply (cases x)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   482
apply (simp add: hcomplex_of_hypreal hypreal_inverse hcomplex_inverse)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   483
done
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   484
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   485
lemma hcomplex_of_hypreal_add [simp]:
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   486
  "hcomplex_of_hypreal (x + y) = hcomplex_of_hypreal x + hcomplex_of_hypreal y"
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   487
apply (cases x, cases y)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   488
apply (simp add: hcomplex_of_hypreal hypreal_add hcomplex_add)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   489
done
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   490
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   491
lemma hcomplex_of_hypreal_diff [simp]:
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   492
     "hcomplex_of_hypreal (x - y) =
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   493
      hcomplex_of_hypreal x - hcomplex_of_hypreal y "
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   494
by (simp add: hcomplex_diff_def hypreal_diff_def)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   495
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   496
lemma hcomplex_of_hypreal_mult [simp]:
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   497
  "hcomplex_of_hypreal (x * y) = hcomplex_of_hypreal x * hcomplex_of_hypreal y"
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   498
apply (cases x, cases y)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   499
apply (simp add: hcomplex_of_hypreal hypreal_mult hcomplex_mult)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   500
done
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   501
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   502
lemma hcomplex_of_hypreal_divide [simp]:
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   503
  "hcomplex_of_hypreal(x/y) = hcomplex_of_hypreal x / hcomplex_of_hypreal y"
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   504
apply (simp add: hcomplex_divide_def)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   505
apply (case_tac "y=0", simp)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   506
apply (simp add: hypreal_divide_def)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   507
done
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   508
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   509
lemma hRe_hcomplex_of_hypreal [simp]: "hRe(hcomplex_of_hypreal z) = z"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   510
apply (cases z)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   511
apply (auto simp add: hcomplex_of_hypreal hRe)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   512
done
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 hIm_hcomplex_of_hypreal [simp]: "hIm(hcomplex_of_hypreal z) = 0"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   515
apply (cases z)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   516
apply (auto simp add: hcomplex_of_hypreal hIm hypreal_zero_num)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   517
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   518
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   519
lemma hcomplex_of_hypreal_epsilon_not_zero [simp]:
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   520
     "hcomplex_of_hypreal epsilon \<noteq> 0"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   521
by (auto simp add: hcomplex_of_hypreal epsilon_def hcomplex_zero_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   522
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   523
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   524
subsection{*HComplex theorems*}
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   525
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   526
lemma hRe_HComplex [simp]: "hRe (HComplex x y) = x"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   527
apply (cases x, cases y)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   528
apply (simp add: HComplex_def hRe iii_def hcomplex_add hcomplex_mult hcomplex_of_hypreal)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   529
done
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   530
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   531
lemma hIm_HComplex [simp]: "hIm (HComplex x y) = y"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   532
apply (cases x, cases y)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   533
apply (simp add: HComplex_def hIm iii_def hcomplex_add hcomplex_mult hcomplex_of_hypreal)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   534
done
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   535
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   536
text{*Relates the two nonstandard constructions*}
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   537
lemma HComplex_eq_Abs_hcomplex_Complex:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   538
     "HComplex (Abs_hypreal (hyprel `` {X})) (Abs_hypreal (hyprel `` {Y})) =
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   539
      Abs_hcomplex(hcomplexrel `` {%n::nat. Complex (X n) (Y n)})";
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   540
by (simp add: hcomplex_hRe_hIm_cancel_iff hRe hIm) 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   541
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   542
lemma hcomplex_surj [simp]: "HComplex (hRe z) (hIm z) = z"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   543
by (simp add: hcomplex_equality) 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   544
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   545
lemma hcomplex_induct [case_names rect, induct type: hcomplex]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   546
     "(\<And>x y. P (HComplex x y)) ==> P z"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   547
by (rule hcomplex_surj [THEN subst], blast)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   548
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   549
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   550
subsection{*Modulus (Absolute Value) of Nonstandard Complex Number*}
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   551
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   552
lemma hcmod:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   553
  "hcmod (Abs_hcomplex(hcomplexrel `` {%n. X n})) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   554
      Abs_hypreal(hyprel `` {%n. cmod (X n)})"
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   555
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   556
apply (simp add: hcmod_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   557
apply (rule_tac f = Abs_hypreal in arg_cong)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   558
apply (auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   559
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   560
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   561
lemma hcmod_zero [simp]: "hcmod(0) = 0"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   562
by (simp add: hcomplex_zero_def hypreal_zero_def hcmod)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   563
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   564
lemma hcmod_one [simp]: "hcmod(1) = 1"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   565
by (simp add: hcomplex_one_def hcmod hypreal_one_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   566
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   567
lemma hcmod_hcomplex_of_hypreal [simp]: "hcmod(hcomplex_of_hypreal x) = abs x"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   568
apply (cases x)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   569
apply (auto simp add: hcmod hcomplex_of_hypreal hypreal_hrabs)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   570
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   571
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   572
lemma hcomplex_of_hypreal_abs:
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   573
     "hcomplex_of_hypreal (abs x) =
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   574
      hcomplex_of_hypreal(hcmod(hcomplex_of_hypreal x))"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   575
by simp
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   576
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   577
lemma HComplex_inject [simp]: "HComplex x y = HComplex x' y' = (x=x' & y=y')"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   578
apply (rule iffI) 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   579
 prefer 2 apply simp 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   580
apply (simp add: HComplex_def iii_def) 
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   581
apply (cases x, cases y, cases x', cases y')
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   582
apply (auto simp add: iii_def hcomplex_mult hcomplex_add hcomplex_of_hypreal)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   583
apply (ultra+) 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   584
done
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   585
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   586
lemma HComplex_add [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   587
     "HComplex x1 y1 + HComplex x2 y2 = HComplex (x1+x2) (y1+y2)"
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   588
by (simp add: HComplex_def add_ac right_distrib) 
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   589
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   590
lemma HComplex_minus [simp]: "- HComplex x y = HComplex (-x) (-y)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   591
by (simp add: HComplex_def hcomplex_of_hypreal_minus) 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   592
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   593
lemma HComplex_diff [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   594
     "HComplex x1 y1 - HComplex x2 y2 = HComplex (x1-x2) (y1-y2)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   595
by (simp add: diff_minus)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   596
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   597
lemma HComplex_mult [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   598
  "HComplex x1 y1 * HComplex x2 y2 = HComplex (x1*x2 - y1*y2) (x1*y2 + y1*x2)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   599
by (simp add: HComplex_def diff_minus hcomplex_of_hypreal_minus 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   600
       add_ac mult_ac right_distrib)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   601
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   602
(*HComplex_inverse is proved below*)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   603
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   604
lemma hcomplex_of_hypreal_eq: "hcomplex_of_hypreal r = HComplex r 0"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   605
by (simp add: HComplex_def)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   606
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   607
lemma HComplex_add_hcomplex_of_hypreal [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   608
     "HComplex x y + hcomplex_of_hypreal r = HComplex (x+r) y"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   609
by (simp add: hcomplex_of_hypreal_eq)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   610
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   611
lemma hcomplex_of_hypreal_add_HComplex [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   612
     "hcomplex_of_hypreal r + HComplex x y = HComplex (r+x) y"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   613
by (simp add: i_def hcomplex_of_hypreal_eq)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   614
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   615
lemma HComplex_mult_hcomplex_of_hypreal:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   616
     "HComplex x y * hcomplex_of_hypreal r = HComplex (x*r) (y*r)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   617
by (simp add: hcomplex_of_hypreal_eq)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   618
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   619
lemma hcomplex_of_hypreal_mult_HComplex:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   620
     "hcomplex_of_hypreal r * HComplex x y = HComplex (r*x) (r*y)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   621
by (simp add: i_def hcomplex_of_hypreal_eq)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   622
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   623
lemma i_hcomplex_of_hypreal [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   624
     "iii * hcomplex_of_hypreal r = HComplex 0 r"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   625
by (simp add: HComplex_def)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   626
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   627
lemma hcomplex_of_hypreal_i [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   628
     "hcomplex_of_hypreal r * iii = HComplex 0 r"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   629
by (simp add: mult_commute) 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   630
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   631
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   632
subsection{*Conjugation*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   633
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   634
lemma hcnj:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   635
  "hcnj (Abs_hcomplex(hcomplexrel `` {%n. X n})) =
14318
7dbd3988b15b type hcomplex is now in class field
paulson
parents: 14314
diff changeset
   636
   Abs_hcomplex(hcomplexrel `` {%n. cnj(X n)})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   637
apply (simp add: hcnj_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   638
apply (rule_tac f = Abs_hcomplex in arg_cong)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   639
apply (auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   640
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   641
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   642
lemma hcomplex_hcnj_cancel_iff [iff]: "(hcnj x = hcnj y) = (x = y)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   643
apply (cases x, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   644
apply (simp add: hcnj)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   645
done
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   646
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   647
lemma hcomplex_hcnj_hcnj [simp]: "hcnj (hcnj z) = z"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   648
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   649
apply (simp add: hcnj)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   650
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   651
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   652
lemma hcomplex_hcnj_hcomplex_of_hypreal [simp]:
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   653
     "hcnj (hcomplex_of_hypreal x) = hcomplex_of_hypreal x"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   654
apply (cases x)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   655
apply (simp add: hcnj hcomplex_of_hypreal)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   656
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   657
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   658
lemma hcomplex_hmod_hcnj [simp]: "hcmod (hcnj z) = hcmod z"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   659
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   660
apply (simp add: hcnj hcmod)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   661
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   662
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   663
lemma hcomplex_hcnj_minus: "hcnj (-z) = - hcnj z"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   664
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   665
apply (simp add: hcnj hcomplex_minus complex_cnj_minus)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   666
done
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
lemma hcomplex_hcnj_inverse: "hcnj(inverse z) = inverse(hcnj z)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   669
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   670
apply (simp add: hcnj hcomplex_inverse complex_cnj_inverse)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   671
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   672
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   673
lemma hcomplex_hcnj_add: "hcnj(w + z) = hcnj(w) + hcnj(z)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   674
apply (cases z, cases w)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   675
apply (simp add: hcnj hcomplex_add complex_cnj_add)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   676
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   677
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   678
lemma hcomplex_hcnj_diff: "hcnj(w - z) = hcnj(w) - hcnj(z)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   679
apply (cases z, cases w)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   680
apply (simp add: hcnj hcomplex_diff complex_cnj_diff)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   681
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   682
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   683
lemma hcomplex_hcnj_mult: "hcnj(w * z) = hcnj(w) * hcnj(z)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   684
apply (cases z, cases w)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   685
apply (simp add: hcnj hcomplex_mult complex_cnj_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   686
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   687
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   688
lemma hcomplex_hcnj_divide: "hcnj(w / z) = (hcnj w)/(hcnj z)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   689
by (simp add: hcomplex_divide_def hcomplex_hcnj_mult hcomplex_hcnj_inverse)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   690
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   691
lemma hcnj_one [simp]: "hcnj 1 = 1"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   692
by (simp add: hcomplex_one_def hcnj)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   693
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   694
lemma hcomplex_hcnj_zero [simp]: "hcnj 0 = 0"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   695
by (simp add: hcomplex_zero_def hcnj)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   696
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   697
lemma hcomplex_hcnj_zero_iff [iff]: "(hcnj z = 0) = (z = 0)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   698
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   699
apply (simp add: hcomplex_zero_def hcnj)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   700
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   701
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   702
lemma hcomplex_mult_hcnj:
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   703
     "z * hcnj z = hcomplex_of_hypreal (hRe(z) ^ 2 + hIm(z) ^ 2)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   704
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   705
apply (simp add: hcnj hcomplex_mult hcomplex_of_hypreal hRe hIm hypreal_add
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   706
                      hypreal_mult complex_mult_cnj numeral_2_eq_2)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   707
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   708
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   709
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   710
subsection{*More Theorems about the Function @{term hcmod}*}
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   711
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   712
lemma hcomplex_hcmod_eq_zero_cancel [simp]: "(hcmod x = 0) = (x = 0)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   713
apply (cases x)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   714
apply (simp add: hcmod hcomplex_zero_def hypreal_zero_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   715
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   716
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   717
lemma hcmod_hcomplex_of_hypreal_of_nat [simp]:
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   718
     "hcmod (hcomplex_of_hypreal(hypreal_of_nat n)) = hypreal_of_nat n"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   719
apply (simp add: abs_if linorder_not_less)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   720
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   721
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   722
lemma hcmod_hcomplex_of_hypreal_of_hypnat [simp]:
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   723
     "hcmod (hcomplex_of_hypreal(hypreal_of_hypnat n)) = hypreal_of_hypnat n"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   724
apply (simp add: abs_if linorder_not_less)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   725
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   726
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   727
lemma hcmod_minus [simp]: "hcmod (-x) = hcmod(x)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   728
apply (cases x)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   729
apply (simp add: hcmod hcomplex_minus)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   730
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   731
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   732
lemma hcmod_mult_hcnj: "hcmod(z * hcnj(z)) = hcmod(z) ^ 2"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   733
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   734
apply (simp add: hcmod hcomplex_mult hcnj hypreal_mult complex_mod_mult_cnj numeral_2_eq_2)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   735
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   736
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   737
lemma hcmod_ge_zero [simp]: "(0::hypreal) \<le> hcmod x"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   738
apply (cases x)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   739
apply (simp add: hcmod hypreal_zero_num hypreal_le)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   740
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   741
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   742
lemma hrabs_hcmod_cancel [simp]: "abs(hcmod x) = hcmod x"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   743
by (simp add: abs_if linorder_not_less)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   744
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   745
lemma hcmod_mult: "hcmod(x*y) = hcmod(x) * hcmod(y)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   746
apply (cases x, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   747
apply (simp add: hcmod hcomplex_mult hypreal_mult complex_mod_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   748
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   749
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   750
lemma hcmod_add_squared_eq:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   751
     "hcmod(x + y) ^ 2 = hcmod(x) ^ 2 + hcmod(y) ^ 2 + 2 * hRe(x * hcnj y)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   752
apply (cases x, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   753
apply (simp add: hcmod hcomplex_add hypreal_mult hRe hcnj hcomplex_mult
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   754
                      numeral_2_eq_2 realpow_two [symmetric]
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   755
                  del: realpow_Suc)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   756
apply (simp add: numeral_2_eq_2 [symmetric] complex_mod_add_squared_eq
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   757
                 hypreal_add [symmetric] hypreal_mult [symmetric]
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   758
                 hypreal_of_real_def [symmetric])
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   759
done
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
lemma hcomplex_hRe_mult_hcnj_le_hcmod [simp]: "hRe(x * hcnj y) \<le> hcmod(x * hcnj y)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   762
apply (cases x, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   763
apply (simp add: hcmod hcnj hcomplex_mult hRe hypreal_le)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   764
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   765
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   766
lemma hcomplex_hRe_mult_hcnj_le_hcmod2 [simp]: "hRe(x * hcnj y) \<le> hcmod(x * y)"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   767
apply (cut_tac x = x and y = y in hcomplex_hRe_mult_hcnj_le_hcmod)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   768
apply (simp add: hcmod_mult)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   769
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   770
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   771
lemma hcmod_triangle_squared [simp]: "hcmod (x + y) ^ 2 \<le> (hcmod(x) + hcmod(y)) ^ 2"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   772
apply (cases x, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   773
apply (simp add: hcmod hcnj hcomplex_add hypreal_mult hypreal_add
14323
27724f528f82 converting Complex/Complex.ML to Isar
paulson
parents: 14320
diff changeset
   774
                      hypreal_le realpow_two [symmetric] numeral_2_eq_2
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   775
            del: realpow_Suc)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   776
apply (simp add: numeral_2_eq_2 [symmetric])
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   777
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   778
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   779
lemma hcmod_triangle_ineq [simp]: "hcmod (x + y) \<le> hcmod(x) + hcmod(y)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   780
apply (cases x, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   781
apply (simp add: hcmod hcomplex_add hypreal_add hypreal_le)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   782
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   783
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   784
lemma hcmod_triangle_ineq2 [simp]: "hcmod(b + a) - hcmod b \<le> hcmod a"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   785
apply (cut_tac x1 = b and y1 = a and c = "-hcmod b" in hcmod_triangle_ineq [THEN add_right_mono])
14331
8dbbb7cf3637 re-organized numeric lemmas
paulson
parents: 14323
diff changeset
   786
apply (simp add: add_ac)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   787
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   788
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   789
lemma hcmod_diff_commute: "hcmod (x - y) = hcmod (y - x)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   790
apply (cases x, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   791
apply (simp add: hcmod hcomplex_diff complex_mod_diff_commute)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   792
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   793
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   794
lemma hcmod_add_less:
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   795
     "[| hcmod x < r; hcmod y < s |] ==> hcmod (x + y) < r + s"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   796
apply (cases x, cases y, cases r, cases s)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   797
apply (simp add: hcmod hcomplex_add hypreal_add hypreal_less, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   798
apply (auto intro: complex_mod_add_less)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   799
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   800
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   801
lemma hcmod_mult_less:
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   802
     "[| hcmod x < r; hcmod y < s |] ==> hcmod (x * y) < r * s"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   803
apply (cases x, cases y, cases r, cases s)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   804
apply (simp add: hcmod hypreal_mult hypreal_less hcomplex_mult, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   805
apply (auto intro: complex_mod_mult_less)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   806
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   807
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   808
lemma hcmod_diff_ineq [simp]: "hcmod(a) - hcmod(b) \<le> hcmod(a + b)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   809
apply (cases a, cases b)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   810
apply (simp add: hcmod hcomplex_add hypreal_diff hypreal_le)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   811
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   812
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   813
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   814
subsection{*A Few Nonlinear Theorems*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   815
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   816
lemma hcpow:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   817
  "Abs_hcomplex(hcomplexrel``{%n. X n}) hcpow
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   818
   Abs_hypnat(hypnatrel``{%n. Y n}) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   819
   Abs_hcomplex(hcomplexrel``{%n. X n ^ Y n})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   820
apply (simp add: hcpow_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   821
apply (rule_tac f = Abs_hcomplex in arg_cong)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   822
apply (auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   823
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   824
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   825
lemma hcomplex_of_hypreal_hyperpow:
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   826
     "hcomplex_of_hypreal (x pow n) = (hcomplex_of_hypreal x) hcpow n"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   827
apply (cases x, cases n)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   828
apply (simp add: hcomplex_of_hypreal hyperpow hcpow complex_of_real_pow)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   829
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   830
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   831
lemma hcmod_hcpow: "hcmod(x hcpow n) = hcmod(x) pow n"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   832
apply (cases x, cases n)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   833
apply (simp add: hcpow hyperpow hcmod complex_mod_complexpow)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   834
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   835
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   836
lemma hcmod_hcomplex_inverse: "hcmod(inverse x) = inverse(hcmod x)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   837
apply (case_tac "x = 0", simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   838
apply (rule_tac c1 = "hcmod x" in hypreal_mult_left_cancel [THEN iffD1])
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   839
apply (auto simp add: hcmod_mult [symmetric])
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   840
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   841
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   842
lemma hcmod_divide: "hcmod(x/y) = hcmod(x)/(hcmod y)"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   843
by (simp add: hcomplex_divide_def hypreal_divide_def hcmod_mult hcmod_hcomplex_inverse)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   844
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   845
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   846
subsection{*Exponentiation*}
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   847
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   848
primrec
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   849
     hcomplexpow_0:   "z ^ 0       = 1"
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   850
     hcomplexpow_Suc: "z ^ (Suc n) = (z::hcomplex) * (z ^ n)"
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   851
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14738
diff changeset
   852
instance hcomplex :: recpower
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   853
proof
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   854
  fix z :: hcomplex
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   855
  fix n :: nat
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   856
  show "z^0 = 1" by simp
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   857
  show "z^(Suc n) = z * (z^n)" by simp
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   858
qed
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   859
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   860
lemma hcomplexpow_i_squared [simp]: "iii ^ 2 = - 1"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   861
by (simp add: power2_eq_square)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   862
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   863
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   864
lemma hcomplex_of_hypreal_pow:
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   865
     "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
   866
apply (induct_tac "n")
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   867
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
   868
done
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   869
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   870
lemma hcomplex_hcnj_pow: "hcnj(z ^ n) = hcnj(z) ^ n"
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   871
apply (induct_tac "n")
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   872
apply (auto simp add: hcomplex_hcnj_mult)
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   873
done
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   874
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   875
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
   876
apply (induct_tac "n")
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   877
apply (auto simp add: hcmod_mult)
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   878
done
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   879
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   880
lemma hcpow_minus:
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   881
     "(-x::hcomplex) hcpow n =
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   882
      (if ( *pNat* even) n then (x hcpow n) else -(x hcpow n))"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   883
apply (cases x, cases n)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   884
apply (auto simp add: hcpow hyperpow starPNat hcomplex_minus, ultra)
14443
75910c7557c5 generic theorems about exponentials; general tidying up
paulson
parents: 14430
diff changeset
   885
apply (auto simp add: neg_power_if, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   886
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   887
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   888
lemma hcpow_mult: "((r::hcomplex) * s) hcpow n = (r hcpow n) * (s hcpow n)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   889
apply (cases r, cases s, cases n)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   890
apply (simp add: hcpow hypreal_mult hcomplex_mult power_mult_distrib)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   891
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   892
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   893
lemma hcpow_zero [simp]: "0 hcpow (n + 1) = 0"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   894
apply (simp add: hcomplex_zero_def hypnat_one_def, cases n)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   895
apply (simp add: hcpow hypnat_add)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   896
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   897
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   898
lemma hcpow_zero2 [simp]: "0 hcpow (hSuc n) = 0"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   899
by (simp add: hSuc_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   900
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
   901
lemma hcpow_not_zero [simp,intro]: "r \<noteq> 0 ==> r hcpow n \<noteq> (0::hcomplex)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   902
apply (cases r, cases n)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   903
apply (auto simp add: hcpow hcomplex_zero_def, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   904
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   905
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   906
lemma hcpow_zero_zero: "r hcpow n = (0::hcomplex) ==> r = 0"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   907
by (blast intro: ccontr dest: hcpow_not_zero)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   908
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   909
lemma hcomplex_divide:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   910
  "Abs_hcomplex(hcomplexrel``{%n. X n}) / Abs_hcomplex(hcomplexrel``{%n. Y n}) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   911
   Abs_hcomplex(hcomplexrel``{%n. X n / Y n})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   912
by (simp add: hcomplex_divide_def complex_divide_def hcomplex_inverse hcomplex_mult)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   913
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   914
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   915
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   916
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   917
subsection{*The Function @{term hsgn}*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   918
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   919
lemma hsgn:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   920
  "hsgn (Abs_hcomplex(hcomplexrel `` {%n. X n})) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   921
      Abs_hcomplex(hcomplexrel `` {%n. sgn (X n)})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   922
apply (simp add: hsgn_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   923
apply (rule_tac f = Abs_hcomplex in arg_cong)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   924
apply (auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   925
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   926
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   927
lemma hsgn_zero [simp]: "hsgn 0 = 0"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   928
by (simp add: hcomplex_zero_def hsgn)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   929
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   930
lemma hsgn_one [simp]: "hsgn 1 = 1"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   931
by (simp add: hcomplex_one_def hsgn)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   932
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   933
lemma hsgn_minus: "hsgn (-z) = - hsgn(z)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   934
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   935
apply (simp add: hsgn hcomplex_minus sgn_minus)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   936
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   937
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   938
lemma hsgn_eq: "hsgn z = z / hcomplex_of_hypreal (hcmod z)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   939
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   940
apply (simp add: hsgn hcomplex_divide hcomplex_of_hypreal hcmod sgn_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   941
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   942
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   943
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   944
lemma hcmod_i: "hcmod (HComplex x y) = ( *f* sqrt) (x ^ 2 + y ^ 2)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   945
apply (cases x, cases y) 
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   946
apply (simp add: HComplex_eq_Abs_hcomplex_Complex starfun 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   947
                 hypreal_mult hypreal_add hcmod numeral_2_eq_2)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   948
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   949
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   950
lemma hcomplex_eq_cancel_iff1 [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   951
     "(hcomplex_of_hypreal xa = HComplex x y) = (xa = x & y = 0)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   952
by (simp add: hcomplex_of_hypreal_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   953
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   954
lemma hcomplex_eq_cancel_iff2 [simp]:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   955
     "(HComplex x y = hcomplex_of_hypreal xa) = (x = xa & y = 0)"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   956
by (simp add: hcomplex_of_hypreal_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   957
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   958
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
   959
by (insert hcomplex_eq_cancel_iff2 [of _ _ 0], simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   960
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   961
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
   962
by (insert hcomplex_eq_cancel_iff2 [of _ _ 1], simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   963
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   964
lemma i_eq_HComplex_0_1: "iii = HComplex 0 1"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   965
by (insert hcomplex_of_hypreal_i [of 1], simp)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   966
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   967
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
   968
by (simp add: i_eq_HComplex_0_1) 
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   969
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   970
lemma hRe_hsgn [simp]: "hRe(hsgn z) = hRe(z)/hcmod z"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   971
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   972
apply (simp add: hsgn hcmod hRe hypreal_divide)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   973
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   974
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   975
lemma hIm_hsgn [simp]: "hIm(hsgn z) = hIm(z)/hcmod z"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   976
apply (cases z)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   977
apply (simp add: hsgn hcmod hIm hypreal_divide)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   978
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   979
15085
5693a977a767 removed some [iff] declarations from RealDef.thy, concerning inequalities
paulson
parents: 15013
diff changeset
   980
(*????move to RealDef????*)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   981
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
   982
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
   983
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   984
lemma hcomplex_inverse_complex_split:
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
   985
     "inverse(hcomplex_of_hypreal x + iii * hcomplex_of_hypreal y) =
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   986
      hcomplex_of_hypreal(x/(x ^ 2 + y ^ 2)) -
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
   987
      iii * hcomplex_of_hypreal(y/(x ^ 2 + y ^ 2))"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
   988
apply (cases x, cases y)
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   989
apply (simp add: hcomplex_of_hypreal hcomplex_mult hcomplex_add iii_def
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   990
         starfun hypreal_mult hypreal_add hcomplex_inverse hypreal_divide
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
   991
         hcomplex_diff numeral_2_eq_2 complex_of_real_def i_def)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   992
apply (simp add: diff_minus) 
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   993
done
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
   994
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   995
lemma HComplex_inverse:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   996
     "inverse (HComplex x y) =
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   997
      HComplex (x/(x ^ 2 + y ^ 2)) (-y/(x ^ 2 + y ^ 2))"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   998
by (simp only: HComplex_def hcomplex_inverse_complex_split, simp)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
   999
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1000
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1001
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1002
lemma hRe_mult_i_eq[simp]:
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1003
    "hRe (iii * hcomplex_of_hypreal y) = 0"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1004
apply (simp add: iii_def, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1005
apply (simp add: hcomplex_of_hypreal hcomplex_mult hRe hypreal_zero_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1006
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1007
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1008
lemma hIm_mult_i_eq [simp]:
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1009
    "hIm (iii * hcomplex_of_hypreal y) = y"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1010
apply (simp add: iii_def, cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1011
apply (simp add: hcomplex_of_hypreal hcomplex_mult hIm hypreal_zero_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1012
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1013
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1014
lemma hcmod_mult_i [simp]: "hcmod (iii * hcomplex_of_hypreal y) = abs y"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1015
apply (cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1016
apply (simp add: hcomplex_of_hypreal hcmod hypreal_hrabs iii_def hcomplex_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1017
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1018
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1019
lemma hcmod_mult_i2 [simp]: "hcmod (hcomplex_of_hypreal y * iii) = abs y"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1020
by (simp only: hcmod_mult_i hcomplex_mult_commute)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1021
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1022
(*---------------------------------------------------------------------------*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1023
(*  harg                                                                     *)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1024
(*---------------------------------------------------------------------------*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1025
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1026
lemma harg:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1027
  "harg (Abs_hcomplex(hcomplexrel `` {%n. X n})) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1028
      Abs_hypreal(hyprel `` {%n. arg (X n)})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1029
apply (simp add: harg_def)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1030
apply (rule_tac f = Abs_hypreal in arg_cong)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1031
apply (auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1032
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1033
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1034
lemma cos_harg_i_mult_zero_pos:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1035
     "0 < y ==> ( *f* cos) (harg(HComplex 0 y)) = 0"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1036
apply (cases y)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1037
apply (simp add: HComplex_def hcomplex_of_hypreal iii_def hcomplex_mult
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1038
                hcomplex_add hypreal_zero_num hypreal_less starfun harg, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1039
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1040
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1041
lemma cos_harg_i_mult_zero_neg:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1042
     "y < 0 ==> ( *f* cos) (harg(HComplex 0 y)) = 0"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1043
apply (cases y)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1044
apply (simp add: HComplex_def hcomplex_of_hypreal iii_def hcomplex_mult
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1045
                 hcomplex_add hypreal_zero_num hypreal_less starfun harg, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1046
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1047
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1048
lemma cos_harg_i_mult_zero [simp]:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1049
     "y \<noteq> 0 ==> ( *f* cos) (harg(HComplex 0 y)) = 0"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1050
by (auto simp add: linorder_neq_iff
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1051
                   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
  1052
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1053
lemma hcomplex_of_hypreal_zero_iff [simp]:
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1054
     "(hcomplex_of_hypreal y = 0) = (y = 0)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1055
apply (cases y)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1056
apply (simp add: hcomplex_of_hypreal hypreal_zero_num hcomplex_zero_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1057
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1058
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1059
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1060
subsection{*Polar Form for Nonstandard Complex Numbers*}
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1061
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
  1062
lemma complex_split_polar2:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1063
     "\<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
  1064
by (blast intro: complex_split_polar)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1065
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1066
lemma lemma_hypreal_P_EX2:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1067
     "(\<exists>(x::hypreal) y. P x y) =
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1068
      (\<exists>f g. P (Abs_hypreal(hyprel `` {f})) (Abs_hypreal(hyprel `` {g})))"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1069
apply auto
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1070
apply (rule_tac z = x in eq_Abs_hypreal)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1071
apply (rule_tac z = y in eq_Abs_hypreal, auto)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1072
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1073
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1074
lemma hcomplex_split_polar:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1075
  "\<exists>r a. z = hcomplex_of_hypreal r * (HComplex(( *f* cos) a)(( *f* sin) a))"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1076
apply (cases z)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1077
apply (simp add: lemma_hypreal_P_EX2 hcomplex_of_hypreal iii_def starfun hcomplex_add hcomplex_mult HComplex_def)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1078
apply (cut_tac z = x in complex_split_polar2)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
  1079
apply (drule choice, safe)+
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1080
apply (rule_tac x = f in exI)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1081
apply (rule_tac x = fa in exI, auto)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1082
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1083
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1084
lemma hcis:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1085
  "hcis (Abs_hypreal(hyprel `` {%n. X n})) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1086
      Abs_hcomplex(hcomplexrel `` {%n. cis (X n)})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1087
apply (simp add: hcis_def)
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1088
apply (rule_tac f = Abs_hcomplex in arg_cong, auto iff: hcomplexrel_iff, ultra)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1089
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1090
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1091
lemma hcis_eq:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1092
   "hcis a =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1093
    (hcomplex_of_hypreal(( *f* cos) a) +
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1094
    iii * hcomplex_of_hypreal(( *f* sin) a))"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1095
apply (cases a)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1096
apply (simp add: starfun hcis hcomplex_of_hypreal iii_def hcomplex_mult hcomplex_add cis_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1097
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1098
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1099
lemma hrcis:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1100
  "hrcis (Abs_hypreal(hyprel `` {%n. X n})) (Abs_hypreal(hyprel `` {%n. Y n})) =
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1101
      Abs_hcomplex(hcomplexrel `` {%n. rcis (X n) (Y n)})"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1102
by (simp add: hrcis_def hcomplex_of_hypreal hcomplex_mult hcis rcis_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1103
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1104
lemma hrcis_Ex: "\<exists>r a. z = hrcis r a"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1105
apply (simp add: hrcis_def hcis_eq hcomplex_of_hypreal_mult_HComplex [symmetric])
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1106
apply (rule hcomplex_split_polar)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1107
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1108
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1109
lemma hRe_hcomplex_polar [simp]:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1110
     "hRe (hcomplex_of_hypreal r * HComplex (( *f* cos) a) (( *f* sin) a)) = 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1111
      r * ( *f* cos) a"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1112
by (simp add: hcomplex_of_hypreal_mult_HComplex)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1113
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1114
lemma hRe_hrcis [simp]: "hRe(hrcis r a) = r * ( *f* cos) a"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1115
by (simp add: hrcis_def hcis_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1116
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1117
lemma hIm_hcomplex_polar [simp]:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1118
     "hIm (hcomplex_of_hypreal r * HComplex (( *f* cos) a) (( *f* sin) a)) = 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1119
      r * ( *f* sin) a"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1120
by (simp add: hcomplex_of_hypreal_mult_HComplex)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1121
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1122
lemma hIm_hrcis [simp]: "hIm(hrcis r a) = r * ( *f* sin) a"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1123
by (simp add: hrcis_def hcis_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1124
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1125
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1126
lemma hcmod_unit_one [simp]:
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1127
     "hcmod (HComplex (( *f* cos) a) (( *f* sin) a)) = 1"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1128
apply (cases a) 
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1129
apply (simp add: HComplex_def iii_def starfun hcomplex_of_hypreal 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1130
                 hcomplex_mult hcmod hcomplex_add hypreal_one_def)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1131
done
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1132
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1133
lemma hcmod_complex_polar [simp]:
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1134
     "hcmod (hcomplex_of_hypreal r * HComplex (( *f* cos) a) (( *f* sin) a)) =
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1135
      abs r"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14374
diff changeset
  1136
apply (simp only: hcmod_mult hcmod_unit_one, simp)  
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1137
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1138
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1139
lemma hcmod_hrcis [simp]: "hcmod(hrcis r a) = abs r"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1140
by (simp add: hrcis_def hcis_eq)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1141
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1142
(*---------------------------------------------------------------------------*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1143
(*  (r1 * hrcis a) * (r2 * hrcis b) = r1 * r2 * hrcis (a + b)                *)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1144
(*---------------------------------------------------------------------------*)
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1145
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1146
lemma hcis_hrcis_eq: "hcis a = hrcis 1 a"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1147
by (simp add: hrcis_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1148
declare hcis_hrcis_eq [symmetric, simp]
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1149
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1150
lemma hrcis_mult:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1151
  "hrcis r1 a * hrcis r2 b = hrcis (r1*r2) (a + b)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1152
apply (simp add: hrcis_def, cases r1, cases r2, cases a, cases b)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1153
apply (simp add: hrcis hcis hypreal_add hypreal_mult hcomplex_of_hypreal
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1154
                      hcomplex_mult cis_mult [symmetric])
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1155
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1156
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1157
lemma hcis_mult: "hcis a * hcis b = hcis (a + b)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1158
apply (cases a, cases b)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1159
apply (simp add: hcis hcomplex_mult hypreal_add cis_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1160
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1161
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1162
lemma hcis_zero [simp]: "hcis 0 = 1"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1163
by (simp add: hcomplex_one_def hcis hypreal_zero_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1164
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1165
lemma hrcis_zero_mod [simp]: "hrcis 0 a = 0"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1166
apply (simp add: hcomplex_zero_def, cases a)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1167
apply (simp add: hrcis hypreal_zero_num)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1168
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1169
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1170
lemma hrcis_zero_arg [simp]: "hrcis r 0 = hcomplex_of_hypreal r"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1171
apply (cases r)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1172
apply (simp add: hrcis hypreal_zero_num hcomplex_of_hypreal)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1173
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1174
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1175
lemma hcomplex_i_mult_minus [simp]: "iii * (iii * x) = - x"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1176
by (simp add: hcomplex_mult_assoc [symmetric])
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1177
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1178
lemma hcomplex_i_mult_minus2 [simp]: "iii * iii * x = - x"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1179
by simp
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1180
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1181
lemma hcis_hypreal_of_nat_Suc_mult:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1182
   "hcis (hypreal_of_nat (Suc n) * a) = hcis a * hcis (hypreal_of_nat n * a)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1183
apply (cases a)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1184
apply (simp add: hypreal_of_nat hcis hypreal_mult hcomplex_mult cis_real_of_nat_Suc_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1185
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1186
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1187
lemma NSDeMoivre: "(hcis a) ^ n = hcis (hypreal_of_nat n * a)"
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1188
apply (induct_tac "n")
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1189
apply (simp_all add: hcis_hypreal_of_nat_Suc_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1190
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1191
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
  1192
lemma hcis_hypreal_of_hypnat_Suc_mult:
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
  1193
     "hcis (hypreal_of_hypnat (n + 1) * a) =
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1194
      hcis a * hcis (hypreal_of_hypnat n * a)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1195
apply (cases a, cases n)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1196
apply (simp add: hcis hypreal_of_hypnat hypnat_add hypnat_one_def hypreal_mult hcomplex_mult cis_real_of_nat_Suc_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1197
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1198
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1199
lemma NSDeMoivre_ext: "(hcis a) hcpow n = hcis (hypreal_of_hypnat n * a)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1200
apply (cases a, cases n)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1201
apply (simp add: hcis hypreal_of_hypnat hypreal_mult hcpow DeMoivre)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1202
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1203
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1204
lemma DeMoivre2:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1205
  "(hrcis r a) ^ n = hrcis (r ^ n) (hypreal_of_nat n * a)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1206
apply (simp add: hrcis_def power_mult_distrib NSDeMoivre hcomplex_of_hypreal_pow)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1207
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1208
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1209
lemma DeMoivre2_ext:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1210
  "(hrcis r a) hcpow n = hrcis (r pow n) (hypreal_of_hypnat n * a)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1211
apply (simp add: hrcis_def hcpow_mult NSDeMoivre_ext hcomplex_of_hypreal_hyperpow)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1212
done
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1213
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1214
lemma hcis_inverse [simp]: "inverse(hcis a) = hcis (-a)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1215
apply (cases a)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1216
apply (simp add: hcomplex_inverse hcis hypreal_minus)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1217
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1218
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1219
lemma hrcis_inverse: "inverse(hrcis r a) = hrcis (inverse r) (-a)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1220
apply (cases a, cases r)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1221
apply (simp add: hcomplex_inverse hrcis hypreal_minus hypreal_inverse rcis_inverse, ultra)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1222
apply (simp add: real_divide_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1223
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1224
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1225
lemma hRe_hcis [simp]: "hRe(hcis a) = ( *f* cos) a"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1226
apply (cases a)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1227
apply (simp add: hcis starfun hRe)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1228
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1229
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1230
lemma hIm_hcis [simp]: "hIm(hcis a) = ( *f* sin) a"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1231
apply (cases a)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1232
apply (simp add: hcis starfun hIm)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1233
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1234
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1235
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
  1236
by (simp add: NSDeMoivre)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1237
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1238
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
  1239
by (simp add: NSDeMoivre)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1240
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1241
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
  1242
by (simp add: NSDeMoivre_ext)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1243
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1244
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
  1245
by (simp add: NSDeMoivre_ext)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1246
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1247
lemma hexpi_add: "hexpi(a + b) = hexpi(a) * hexpi(b)"
14469
c7674b7034f5 heavy tidying
paulson
parents: 14443
diff changeset
  1248
apply (simp add: hexpi_def, cases a, cases b)
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1249
apply (simp add: hcis hRe hIm hcomplex_add hcomplex_mult hypreal_mult starfun hcomplex_of_hypreal cis_mult [symmetric] complex_Im_add complex_Re_add exp_add complex_of_real_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1250
done
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1251
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1252
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1253
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
  1254
  type @{typ complex} to to @{typ hcomplex}*}
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1255
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1256
lemma inj_hcomplex_of_complex: "inj(hcomplex_of_complex)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1257
apply (rule inj_onI, rule ccontr)
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1258
apply (simp add: hcomplex_of_complex_def)
14354
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1259
done
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1260
988aa4648597 types complex and hcomplex are now instances of class ringpower:
paulson
parents: 14341
diff changeset
  1261
lemma hcomplex_of_complex_i: "iii = hcomplex_of_complex ii"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1262
by (simp add: iii_def hcomplex_of_complex_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1263
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1264
lemma hcomplex_of_complex_add [simp]:
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1265
     "hcomplex_of_complex (z1 + z2) = hcomplex_of_complex z1 + hcomplex_of_complex z2"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1266
by (simp add: hcomplex_of_complex_def hcomplex_add)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1267
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1268
lemma hcomplex_of_complex_mult [simp]:
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1269
     "hcomplex_of_complex (z1 * z2) = hcomplex_of_complex z1 * hcomplex_of_complex z2"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1270
by (simp add: hcomplex_of_complex_def hcomplex_mult)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1271
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1272
lemma hcomplex_of_complex_eq_iff [simp]:
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1273
     "(hcomplex_of_complex z1 = hcomplex_of_complex z2) = (z1 = z2)"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1274
by (simp add: hcomplex_of_complex_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1275
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1276
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1277
lemma hcomplex_of_complex_minus [simp]:
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
  1278
     "hcomplex_of_complex (-r) = - hcomplex_of_complex  r"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1279
by (simp add: hcomplex_of_complex_def hcomplex_minus)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1280
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1281
lemma hcomplex_of_complex_one [simp]: "hcomplex_of_complex 1 = 1"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1282
by (simp add: hcomplex_of_complex_def hcomplex_one_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1283
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1284
lemma hcomplex_of_complex_zero [simp]: "hcomplex_of_complex 0 = 0"
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1285
by (simp add: hcomplex_of_complex_def hcomplex_zero_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1286
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1287
lemma hcomplex_of_complex_zero_iff [simp]:
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1288
     "(hcomplex_of_complex r = 0) = (r = 0)"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1289
by (auto intro: FreeUltrafilterNat_P 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1290
         simp add: hcomplex_of_complex_def hcomplex_zero_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1291
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1292
lemma hcomplex_of_complex_inverse [simp]:
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 14331
diff changeset
  1293
     "hcomplex_of_complex (inverse r) = inverse (hcomplex_of_complex r)"
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1294
proof cases
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1295
  assume "r=0" thus ?thesis by simp
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1296
next
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1297
  assume nz: "r\<noteq>0" 
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1298
  show ?thesis
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1299
  proof (rule hcomplex_mult_left_cancel [THEN iffD1]) 
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1300
    show "hcomplex_of_complex r \<noteq> 0"
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1301
      by (simp add: nz) 
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1302
  next
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1303
    have "hcomplex_of_complex r * hcomplex_of_complex (inverse r) =
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1304
          hcomplex_of_complex (r * inverse r)"
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1305
      by simp
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1306
    also have "... = hcomplex_of_complex r * inverse (hcomplex_of_complex r)" 
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1307
      by (simp add: nz)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1308
    finally show "hcomplex_of_complex r * hcomplex_of_complex (inverse r) =
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1309
                  hcomplex_of_complex r * inverse (hcomplex_of_complex r)" .
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1310
  qed
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1311
qed
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1312
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1313
lemma hcomplex_of_complex_divide [simp]:
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1314
     "hcomplex_of_complex (z1 / z2) = 
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1315
      hcomplex_of_complex z1 / hcomplex_of_complex z2"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1316
by (simp add: hcomplex_divide_def complex_divide_def)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1317
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1318
lemma hRe_hcomplex_of_complex:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1319
   "hRe (hcomplex_of_complex z) = hypreal_of_real (Re z)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1320
by (simp add: hcomplex_of_complex_def hypreal_of_real_def hRe)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1321
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1322
lemma hIm_hcomplex_of_complex:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1323
   "hIm (hcomplex_of_complex z) = hypreal_of_real (Im z)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1324
by (simp add: hcomplex_of_complex_def hypreal_of_real_def hIm)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1325
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1326
lemma hcmod_hcomplex_of_complex:
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1327
     "hcmod (hcomplex_of_complex x) = hypreal_of_real (cmod x)"
14374
61de62096768 further tidying of the complex numbers
paulson
parents: 14373
diff changeset
  1328
by (simp add: hypreal_of_real_def hcomplex_of_complex_def hcmod)
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1329
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1330
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1331
subsection{*Numerals and Arithmetic*}
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1332
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1333
instance hcomplex :: number ..
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1334
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1335
defs (overloaded)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1336
  hcomplex_number_of_def: "(number_of w :: hcomplex) == of_int (Rep_Bin w)"
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1337
    --{*the type constraint is essential!*}
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1338
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1339
instance hcomplex :: number_ring
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1340
by (intro_classes, simp add: hcomplex_number_of_def) 
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1341
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1342
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1343
lemma hcomplex_of_complex_of_nat [simp]:
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1344
     "hcomplex_of_complex (of_nat n) = of_nat n"
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1345
by (induct n, simp_all) 
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1346
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1347
lemma hcomplex_of_complex_of_int [simp]:
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1348
     "hcomplex_of_complex (of_int z) = of_int z"
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1349
proof (cases z)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1350
  case (1 n)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1351
    thus ?thesis by simp
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1352
next
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1353
  case (2 n)
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1354
    thus ?thesis 
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1355
      by (simp only: of_int_minus hcomplex_of_complex_minus, simp)
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1356
qed
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1357
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1358
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1359
text{*Collapse applications of @{term hcomplex_of_complex} to @{term number_of}*}
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1360
lemma hcomplex_number_of [simp]:
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1361
     "hcomplex_of_complex (number_of w) = number_of w"
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1362
by (simp add: hcomplex_number_of_def complex_number_of_def) 
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1363
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1364
lemma hcomplex_of_hypreal_eq_hcomplex_of_complex: 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1365
     "hcomplex_of_hypreal (hypreal_of_real x) =  
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 15003
diff changeset
  1366
      hcomplex_of_complex (complex_of_real x)"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1367
by (simp add: hypreal_of_real_def hcomplex_of_hypreal hcomplex_of_complex_def 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1368
              complex_of_real_def)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1369
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1370
lemma hcomplex_hypreal_number_of: 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1371
  "hcomplex_of_complex (number_of w) = hcomplex_of_hypreal(number_of w)"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1372
by (simp only: complex_number_of [symmetric] hypreal_number_of [symmetric] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1373
               hcomplex_of_hypreal_eq_hcomplex_of_complex)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1374
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1375
text{*This theorem is necessary because theorems such as
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1376
   @{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
  1377
   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
  1378
   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
  1379
lemma iszero_hcomplex_number_of [simp]:
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1380
     "iszero (number_of w :: hcomplex) = iszero (number_of w :: real)"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1381
apply (simp only: iszero_complex_number_of [symmetric])  
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1382
apply (simp only: hcomplex_of_complex_zero_iff hcomplex_number_of [symmetric] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1383
                  iszero_def)  
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1384
done
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1385
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1386
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1387
(*
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1388
Goal "z + hcnj z =  
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1389
      hcomplex_of_hypreal (2 * hRe(z))"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1390
by (res_inst_tac [("z","z")] eq_Abs_hcomplex 1);
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1391
by (auto_tac (claset(),HOL_ss addsimps [hRe,hcnj,hcomplex_add,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1392
    hypreal_mult,hcomplex_of_hypreal,complex_add_cnj]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1393
qed "hcomplex_add_hcnj";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1394
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1395
Goal "z - hcnj z = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1396
\     hcomplex_of_hypreal (hypreal_of_real #2 * hIm(z)) * iii";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1397
by (res_inst_tac [("z","z")] eq_Abs_hcomplex 1);
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1398
by (auto_tac (claset(),simpset() addsimps [hIm,hcnj,hcomplex_diff,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1399
    hypreal_of_real_def,hypreal_mult,hcomplex_of_hypreal,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1400
    complex_diff_cnj,iii_def,hcomplex_mult]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1401
qed "hcomplex_diff_hcnj";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1402
*)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1403
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1404
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1405
lemma hcomplex_hcnj_num_zero_iff: "(hcnj z = 0) = (z = 0)"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1406
apply (auto simp add: hcomplex_hcnj_zero_iff)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1407
done
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1408
declare hcomplex_hcnj_num_zero_iff [simp]
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1409
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1410
lemma hcomplex_zero_num: "0 = Abs_hcomplex (hcomplexrel `` {%n. 0})"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1411
apply (simp add: hcomplex_zero_def)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1412
done
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1413
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1414
lemma hcomplex_one_num: "1 =  Abs_hcomplex (hcomplexrel `` {%n. 1})"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1415
apply (simp add: hcomplex_one_def)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1416
done
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1417
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1418
(*** Real and imaginary stuff ***)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1419
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1420
(*Convert???
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1421
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1422
  "((number_of xa :: hcomplex) + iii * number_of ya =  
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1423
        number_of xb + iii * number_of yb) =  
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1424
   (((number_of xa :: hcomplex) = number_of xb) &  
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1425
    ((number_of ya :: hcomplex) = number_of yb))"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1426
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iff,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1427
     hcomplex_hypreal_number_of]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1428
qed "hcomplex_number_of_eq_cancel_iff";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1429
Addsimps [hcomplex_number_of_eq_cancel_iff];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1430
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1431
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1432
  "((number_of xa :: hcomplex) + number_of ya * iii = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1433
\       number_of xb + number_of yb * iii) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1434
\  (((number_of xa :: hcomplex) = number_of xb) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1435
\   ((number_of ya :: hcomplex) = number_of yb))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1436
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iffA,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1437
    hcomplex_hypreal_number_of]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1438
qed "hcomplex_number_of_eq_cancel_iffA";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1439
Addsimps [hcomplex_number_of_eq_cancel_iffA];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1440
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1441
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1442
  "((number_of xa :: hcomplex) + number_of ya * iii = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1443
\       number_of xb + iii * number_of yb) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1444
\  (((number_of xa :: hcomplex) = number_of xb) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1445
\   ((number_of ya :: hcomplex) = number_of yb))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1446
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iffB,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1447
    hcomplex_hypreal_number_of]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1448
qed "hcomplex_number_of_eq_cancel_iffB";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1449
Addsimps [hcomplex_number_of_eq_cancel_iffB];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1450
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1451
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1452
  "((number_of xa :: hcomplex) + iii * number_of ya = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1453
\       number_of xb + number_of yb * iii) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1454
\  (((number_of xa :: hcomplex) = number_of xb) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1455
\   ((number_of ya :: hcomplex) = number_of yb))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1456
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iffC,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1457
     hcomplex_hypreal_number_of]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1458
qed "hcomplex_number_of_eq_cancel_iffC";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1459
Addsimps [hcomplex_number_of_eq_cancel_iffC];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1460
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1461
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1462
  "((number_of xa :: hcomplex) + iii * number_of ya = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1463
\       number_of xb) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1464
\  (((number_of xa :: hcomplex) = number_of xb) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1465
\   ((number_of ya :: hcomplex) = 0))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1466
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iff2,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1467
    hcomplex_hypreal_number_of,hcomplex_of_hypreal_zero_iff]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1468
qed "hcomplex_number_of_eq_cancel_iff2";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1469
Addsimps [hcomplex_number_of_eq_cancel_iff2];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1470
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1471
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1472
  "((number_of xa :: hcomplex) + number_of ya * iii = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1473
\       number_of xb) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1474
\  (((number_of xa :: hcomplex) = number_of xb) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1475
\   ((number_of ya :: hcomplex) = 0))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1476
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iff2a,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1477
    hcomplex_hypreal_number_of,hcomplex_of_hypreal_zero_iff]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1478
qed "hcomplex_number_of_eq_cancel_iff2a";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1479
Addsimps [hcomplex_number_of_eq_cancel_iff2a];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1480
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1481
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1482
  "((number_of xa :: hcomplex) + iii * number_of ya = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1483
\    iii * number_of yb) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1484
\  (((number_of xa :: hcomplex) = 0) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1485
\   ((number_of ya :: hcomplex) = number_of yb))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1486
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iff3,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1487
    hcomplex_hypreal_number_of,hcomplex_of_hypreal_zero_iff]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1488
qed "hcomplex_number_of_eq_cancel_iff3";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1489
Addsimps [hcomplex_number_of_eq_cancel_iff3];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1490
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1491
Goalw [hcomplex_number_of_def] 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1492
  "((number_of xa :: hcomplex) + number_of ya * iii= \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1493
\    iii * number_of yb) = \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1494
\  (((number_of xa :: hcomplex) = 0) & \
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1495
\   ((number_of ya :: hcomplex) = number_of yb))";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1496
by (auto_tac (claset(), HOL_ss addsimps [hcomplex_eq_cancel_iff3a,
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1497
    hcomplex_hypreal_number_of,hcomplex_of_hypreal_zero_iff]));
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1498
qed "hcomplex_number_of_eq_cancel_iff3a";
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1499
Addsimps [hcomplex_number_of_eq_cancel_iff3a];
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1500
*)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1501
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1502
lemma hcomplex_number_of_hcnj [simp]:
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1503
     "hcnj (number_of v :: hcomplex) = number_of v"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1504
by (simp only: hcomplex_number_of [symmetric] hcomplex_hypreal_number_of
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1505
               hcomplex_hcnj_hcomplex_of_hypreal)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1506
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1507
lemma hcomplex_number_of_hcmod [simp]: 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1508
      "hcmod(number_of v :: hcomplex) = abs (number_of v :: hypreal)"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1509
by (simp only: hcomplex_number_of [symmetric] hcomplex_hypreal_number_of
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1510
               hcmod_hcomplex_of_hypreal)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1511
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1512
lemma hcomplex_number_of_hRe [simp]: 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1513
      "hRe(number_of v :: hcomplex) = number_of v"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1514
by (simp only: hcomplex_number_of [symmetric] hcomplex_hypreal_number_of
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1515
               hRe_hcomplex_of_hypreal)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1516
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1517
lemma hcomplex_number_of_hIm [simp]: 
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1518
      "hIm(number_of v :: hcomplex) = 0"
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1519
by (simp only: hcomplex_number_of [symmetric] hcomplex_hypreal_number_of
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1520
               hIm_hcomplex_of_hypreal)
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1521
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14377
diff changeset
  1522
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1523
ML
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1524
{*
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1525
val hcomplex_zero_def = thm"hcomplex_zero_def";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1526
val hcomplex_one_def = thm"hcomplex_one_def";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1527
val hcomplex_minus_def = thm"hcomplex_minus_def";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1528
val hcomplex_diff_def = thm"hcomplex_diff_def";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1529
val hcomplex_divide_def = thm"hcomplex_divide_def";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1530
val hcomplex_mult_def = thm"hcomplex_mult_def";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1531
val hcomplex_add_def = thm"hcomplex_add_def";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1532
val hcomplex_of_complex_def = thm"hcomplex_of_complex_def";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1533
val iii_def = thm"iii_def";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1534
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1535
val hcomplexrel_iff = thm"hcomplexrel_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1536
val hcomplexrel_refl = thm"hcomplexrel_refl";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1537
val hcomplexrel_sym = thm"hcomplexrel_sym";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1538
val hcomplexrel_trans = thm"hcomplexrel_trans";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1539
val equiv_hcomplexrel = thm"equiv_hcomplexrel";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1540
val equiv_hcomplexrel_iff = thm"equiv_hcomplexrel_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1541
val hcomplexrel_in_hcomplex = thm"hcomplexrel_in_hcomplex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1542
val lemma_hcomplexrel_refl = thm"lemma_hcomplexrel_refl";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1543
val hcomplex_empty_not_mem = thm"hcomplex_empty_not_mem";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1544
val Rep_hcomplex_nonempty = thm"Rep_hcomplex_nonempty";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1545
val eq_Abs_hcomplex = thm"eq_Abs_hcomplex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1546
val hRe = thm"hRe";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1547
val hIm = thm"hIm";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1548
val hcomplex_hRe_hIm_cancel_iff = thm"hcomplex_hRe_hIm_cancel_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1549
val hcomplex_hRe_zero = thm"hcomplex_hRe_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1550
val hcomplex_hIm_zero = thm"hcomplex_hIm_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1551
val hcomplex_hRe_one = thm"hcomplex_hRe_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1552
val hcomplex_hIm_one = thm"hcomplex_hIm_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1553
val inj_hcomplex_of_complex = thm"inj_hcomplex_of_complex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1554
val hcomplex_of_complex_i = thm"hcomplex_of_complex_i";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1555
val hcomplex_add = thm"hcomplex_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1556
val hcomplex_add_commute = thm"hcomplex_add_commute";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1557
val hcomplex_add_assoc = thm"hcomplex_add_assoc";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1558
val hcomplex_add_zero_left = thm"hcomplex_add_zero_left";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1559
val hcomplex_add_zero_right = thm"hcomplex_add_zero_right";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1560
val hRe_add = thm"hRe_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1561
val hIm_add = thm"hIm_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1562
val hcomplex_minus_congruent = thm"hcomplex_minus_congruent";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1563
val hcomplex_minus = thm"hcomplex_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1564
val hcomplex_add_minus_left = thm"hcomplex_add_minus_left";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1565
val hRe_minus = thm"hRe_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1566
val hIm_minus = thm"hIm_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1567
val hcomplex_add_minus_eq_minus = thm"hcomplex_add_minus_eq_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1568
val hcomplex_diff = thm"hcomplex_diff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1569
val hcomplex_diff_eq_eq = thm"hcomplex_diff_eq_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1570
val hcomplex_mult = thm"hcomplex_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1571
val hcomplex_mult_commute = thm"hcomplex_mult_commute";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1572
val hcomplex_mult_assoc = thm"hcomplex_mult_assoc";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1573
val hcomplex_mult_one_left = thm"hcomplex_mult_one_left";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1574
val hcomplex_mult_one_right = thm"hcomplex_mult_one_right";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1575
val hcomplex_mult_zero_left = thm"hcomplex_mult_zero_left";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1576
val hcomplex_mult_minus_one = thm"hcomplex_mult_minus_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1577
val hcomplex_mult_minus_one_right = thm"hcomplex_mult_minus_one_right";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1578
val hcomplex_add_mult_distrib = thm"hcomplex_add_mult_distrib";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1579
val hcomplex_zero_not_eq_one = thm"hcomplex_zero_not_eq_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1580
val hcomplex_inverse = thm"hcomplex_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1581
val hcomplex_mult_inv_left = thm"hcomplex_mult_inv_left";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1582
val hcomplex_mult_left_cancel = thm"hcomplex_mult_left_cancel";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1583
val hcomplex_mult_right_cancel = thm"hcomplex_mult_right_cancel";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1584
val hcomplex_add_divide_distrib = thm"hcomplex_add_divide_distrib";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1585
val hcomplex_of_hypreal = thm"hcomplex_of_hypreal";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1586
val hcomplex_of_hypreal_cancel_iff = thm"hcomplex_of_hypreal_cancel_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1587
val hcomplex_of_hypreal_minus = thm"hcomplex_of_hypreal_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1588
val hcomplex_of_hypreal_inverse = thm"hcomplex_of_hypreal_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1589
val hcomplex_of_hypreal_add = thm"hcomplex_of_hypreal_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1590
val hcomplex_of_hypreal_diff = thm"hcomplex_of_hypreal_diff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1591
val hcomplex_of_hypreal_mult = thm"hcomplex_of_hypreal_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1592
val hcomplex_of_hypreal_divide = thm"hcomplex_of_hypreal_divide";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1593
val hcomplex_of_hypreal_one = thm"hcomplex_of_hypreal_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1594
val hcomplex_of_hypreal_zero = thm"hcomplex_of_hypreal_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1595
val hcomplex_of_hypreal_pow = thm"hcomplex_of_hypreal_pow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1596
val hRe_hcomplex_of_hypreal = thm"hRe_hcomplex_of_hypreal";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1597
val hIm_hcomplex_of_hypreal = thm"hIm_hcomplex_of_hypreal";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1598
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
  1599
val hcmod = thm"hcmod";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1600
val hcmod_zero = thm"hcmod_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1601
val hcmod_one = thm"hcmod_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1602
val hcmod_hcomplex_of_hypreal = thm"hcmod_hcomplex_of_hypreal";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1603
val hcomplex_of_hypreal_abs = thm"hcomplex_of_hypreal_abs";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1604
val hcnj = thm"hcnj";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1605
val hcomplex_hcnj_cancel_iff = thm"hcomplex_hcnj_cancel_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1606
val hcomplex_hcnj_hcnj = thm"hcomplex_hcnj_hcnj";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1607
val hcomplex_hcnj_hcomplex_of_hypreal = thm"hcomplex_hcnj_hcomplex_of_hypreal";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1608
val hcomplex_hmod_hcnj = thm"hcomplex_hmod_hcnj";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1609
val hcomplex_hcnj_minus = thm"hcomplex_hcnj_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1610
val hcomplex_hcnj_inverse = thm"hcomplex_hcnj_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1611
val hcomplex_hcnj_add = thm"hcomplex_hcnj_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1612
val hcomplex_hcnj_diff = thm"hcomplex_hcnj_diff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1613
val hcomplex_hcnj_mult = thm"hcomplex_hcnj_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1614
val hcomplex_hcnj_divide = thm"hcomplex_hcnj_divide";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1615
val hcnj_one = thm"hcnj_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1616
val hcomplex_hcnj_pow = thm"hcomplex_hcnj_pow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1617
val hcomplex_hcnj_zero = thm"hcomplex_hcnj_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1618
val hcomplex_hcnj_zero_iff = thm"hcomplex_hcnj_zero_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1619
val hcomplex_mult_hcnj = thm"hcomplex_mult_hcnj";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1620
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
  1621
14314
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1622
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
  1623
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
  1624
val hcmod_minus = thm"hcmod_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1625
val hcmod_mult_hcnj = thm"hcmod_mult_hcnj";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1626
val hcmod_ge_zero = thm"hcmod_ge_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1627
val hrabs_hcmod_cancel = thm"hrabs_hcmod_cancel";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1628
val hcmod_mult = thm"hcmod_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1629
val hcmod_add_squared_eq = thm"hcmod_add_squared_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1630
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
  1631
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
  1632
val hcmod_triangle_squared = thm"hcmod_triangle_squared";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1633
val hcmod_triangle_ineq = thm"hcmod_triangle_ineq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1634
val hcmod_triangle_ineq2 = thm"hcmod_triangle_ineq2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1635
val hcmod_diff_commute = thm"hcmod_diff_commute";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1636
val hcmod_add_less = thm"hcmod_add_less";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1637
val hcmod_mult_less = thm"hcmod_mult_less";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1638
val hcmod_diff_ineq = thm"hcmod_diff_ineq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1639
val hcpow = thm"hcpow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1640
val hcomplex_of_hypreal_hyperpow = thm"hcomplex_of_hypreal_hyperpow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1641
val hcmod_hcomplexpow = thm"hcmod_hcomplexpow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1642
val hcmod_hcpow = thm"hcmod_hcpow";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1643
val hcpow_minus = thm"hcpow_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1644
val hcmod_hcomplex_inverse = thm"hcmod_hcomplex_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1645
val hcmod_divide = thm"hcmod_divide";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1646
val hcpow_mult = thm"hcpow_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1647
val hcpow_zero = thm"hcpow_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1648
val hcpow_zero2 = thm"hcpow_zero2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1649
val hcpow_not_zero = thm"hcpow_not_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1650
val hcpow_zero_zero = thm"hcpow_zero_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1651
val hcomplex_i_mult_eq = thm"hcomplex_i_mult_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1652
val hcomplexpow_i_squared = thm"hcomplexpow_i_squared";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1653
val hcomplex_i_not_zero = thm"hcomplex_i_not_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1654
val hcomplex_divide = thm"hcomplex_divide";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1655
val hsgn = thm"hsgn";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1656
val hsgn_zero = thm"hsgn_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1657
val hsgn_one = thm"hsgn_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1658
val hsgn_minus = thm"hsgn_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1659
val hsgn_eq = thm"hsgn_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1660
val lemma_hypreal_P_EX2 = thm"lemma_hypreal_P_EX2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1661
val hcmod_i = thm"hcmod_i";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1662
val hcomplex_eq_cancel_iff2 = thm"hcomplex_eq_cancel_iff2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1663
val hRe_hsgn = thm"hRe_hsgn";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1664
val hIm_hsgn = thm"hIm_hsgn";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1665
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
  1666
val hRe_mult_i_eq = thm"hRe_mult_i_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1667
val hIm_mult_i_eq = thm"hIm_mult_i_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1668
val hcmod_mult_i = thm"hcmod_mult_i";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1669
val hcmod_mult_i2 = thm"hcmod_mult_i2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1670
val harg = thm"harg";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1671
val cos_harg_i_mult_zero = thm"cos_harg_i_mult_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1672
val hcomplex_of_hypreal_zero_iff = thm"hcomplex_of_hypreal_zero_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1673
val complex_split_polar2 = thm"complex_split_polar2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1674
val hcomplex_split_polar = thm"hcomplex_split_polar";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1675
val hcis = thm"hcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1676
val hcis_eq = thm"hcis_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1677
val hrcis = thm"hrcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1678
val hrcis_Ex = thm"hrcis_Ex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1679
val hRe_hcomplex_polar = thm"hRe_hcomplex_polar";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1680
val hRe_hrcis = thm"hRe_hrcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1681
val hIm_hcomplex_polar = thm"hIm_hcomplex_polar";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1682
val hIm_hrcis = thm"hIm_hrcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1683
val hcmod_complex_polar = thm"hcmod_complex_polar";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1684
val hcmod_hrcis = thm"hcmod_hrcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1685
val hcis_hrcis_eq = thm"hcis_hrcis_eq";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1686
val hrcis_mult = thm"hrcis_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1687
val hcis_mult = thm"hcis_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1688
val hcis_zero = thm"hcis_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1689
val hrcis_zero_mod = thm"hrcis_zero_mod";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1690
val hrcis_zero_arg = thm"hrcis_zero_arg";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1691
val hcomplex_i_mult_minus = thm"hcomplex_i_mult_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1692
val hcomplex_i_mult_minus2 = thm"hcomplex_i_mult_minus2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1693
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
  1694
val NSDeMoivre = thm"NSDeMoivre";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1695
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
  1696
val NSDeMoivre_ext = thm"NSDeMoivre_ext";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1697
val DeMoivre2 = thm"DeMoivre2";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1698
val DeMoivre2_ext = thm"DeMoivre2_ext";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1699
val hcis_inverse = thm"hcis_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1700
val hrcis_inverse = thm"hrcis_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1701
val hRe_hcis = thm"hRe_hcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1702
val hIm_hcis = thm"hIm_hcis";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1703
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
  1704
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
  1705
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
  1706
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
  1707
val hexpi_add = thm"hexpi_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1708
val hcomplex_of_complex_add = thm"hcomplex_of_complex_add";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1709
val hcomplex_of_complex_mult = thm"hcomplex_of_complex_mult";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1710
val hcomplex_of_complex_eq_iff = thm"hcomplex_of_complex_eq_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1711
val hcomplex_of_complex_minus = thm"hcomplex_of_complex_minus";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1712
val hcomplex_of_complex_one = thm"hcomplex_of_complex_one";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1713
val hcomplex_of_complex_zero = thm"hcomplex_of_complex_zero";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1714
val hcomplex_of_complex_zero_iff = thm"hcomplex_of_complex_zero_iff";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1715
val hcomplex_of_complex_inverse = thm"hcomplex_of_complex_inverse";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1716
val hcomplex_of_complex_divide = thm"hcomplex_of_complex_divide";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1717
val hRe_hcomplex_of_complex = thm"hRe_hcomplex_of_complex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1718
val hIm_hcomplex_of_complex = thm"hIm_hcomplex_of_complex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1719
val hcmod_hcomplex_of_complex = thm"hcmod_hcomplex_of_complex";
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1720
*}
314da085adf3 converted Complex/NSComplex to Isar script
paulson
parents: 13957
diff changeset
  1721
13957
10dbf16be15f new session Complex for the complex numbers
paulson
parents:
diff changeset
  1722
end