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