src/HOL/Hyperreal/NSA.thy
author ballarin
Wed, 19 Jul 2006 19:25:58 +0200
changeset 20168 ed7bced29e1b
parent 19765 dfe940911617
child 20217 25b068a99d2b
permissions -rw-r--r--
Reimplemented algebra method; now controlled by attribute.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
     1
(*  Title       : NSA.thy
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
     2
    Author      : Jacques D. Fleuriot
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
     3
    Copyright   : 1998  University of Cambridge
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
     4
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
     5
Converted to Isar and polished by lcp
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
     6
*)
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
     7
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
     8
header{*Infinite Numbers, Infinitesimals, Infinitely Close Relation*}
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
     9
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15003
diff changeset
    10
theory NSA
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
    11
imports HyperArith "../Real/RComplete"
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15003
diff changeset
    12
begin
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    13
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    14
definition
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    15
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    16
  Infinitesimal  :: "hypreal set"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    17
  "Infinitesimal = {x. \<forall>r \<in> Reals. 0 < r --> abs x < r}"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    18
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    19
  HFinite :: "hypreal set"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    20
  "HFinite = {x. \<exists>r \<in> Reals. abs x < r}"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    21
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    22
  HInfinite :: "hypreal set"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    23
  "HInfinite = {x. \<forall>r \<in> Reals. r < abs x}"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    24
14653
0848ab6fe5fc constdefs: proper order;
wenzelm
parents: 14565
diff changeset
    25
  approx :: "[hypreal, hypreal] => bool"    (infixl "@=" 50)
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
    26
    --{*the `infinitely close' relation*}
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    27
  "(x @= y) = ((x + -y) \<in> Infinitesimal)"
14653
0848ab6fe5fc constdefs: proper order;
wenzelm
parents: 14565
diff changeset
    28
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    29
  st        :: "hypreal => hypreal"
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
    30
    --{*the standard part of a hyperreal*}
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    31
  "st = (%x. @r. x \<in> HFinite & r \<in> Reals & r @= x)"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    32
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    33
  monad     :: "hypreal => hypreal set"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    34
  "monad x = {y. x @= y}"
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
    35
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    36
  galaxy    :: "hypreal => hypreal set"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    37
  "galaxy x = {y. (x + -y) \<in> HFinite}"
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    38
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    39
const_syntax (xsymbols)
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    40
  approx  (infixl "\<approx>" 50)
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    41
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    42
const_syntax (HTML output)
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    43
  approx  (infixl "\<approx>" 50)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    44
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    45
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14371
diff changeset
    46
defs (overloaded)
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    47
  SReal_def:      "Reals == {x. \<exists>r. x = hypreal_of_real r}"
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
    48
    --{*the standard real numbers as a subset of the hyperreals*}
14565
c6dc17aab88a use more symbols in HTML output
kleing
parents: 14477
diff changeset
    49
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    50
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    51
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
    52
subsection{*Closure Laws for the Standard Reals*}
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    53
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14371
diff changeset
    54
lemma SReal_add [simp]:
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14371
diff changeset
    55
     "[| (x::hypreal) \<in> Reals; y \<in> Reals |] ==> x + y \<in> Reals"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    56
apply (auto simp add: SReal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    57
apply (rule_tac x = "r + ra" in exI, simp)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    58
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    59
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    60
lemma SReal_mult: "[| (x::hypreal) \<in> Reals; y \<in> Reals |] ==> x * y \<in> Reals"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    61
apply (simp add: SReal_def, safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    62
apply (rule_tac x = "r * ra" in exI)
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
    63
apply (simp (no_asm))
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    64
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    65
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    66
lemma SReal_inverse: "(x::hypreal) \<in> Reals ==> inverse x \<in> Reals"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    67
apply (simp add: SReal_def)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
    68
apply (blast intro: star_of_inverse [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    69
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    70
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    71
lemma SReal_divide: "[| (x::hypreal) \<in> Reals;  y \<in> Reals |] ==> x/y \<in> Reals"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
    72
by (simp (no_asm_simp) add: SReal_mult SReal_inverse divide_inverse)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    73
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    74
lemma SReal_minus: "(x::hypreal) \<in> Reals ==> -x \<in> Reals"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    75
apply (simp add: SReal_def)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
    76
apply (blast intro: star_of_minus [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    77
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    78
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
    79
lemma SReal_minus_iff [simp]: "(-x \<in> Reals) = ((x::hypreal) \<in> Reals)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    80
apply auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    81
apply (erule_tac [2] SReal_minus)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    82
apply (drule SReal_minus, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    83
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    84
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
    85
lemma SReal_add_cancel:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
    86
     "[| (x::hypreal) + y \<in> Reals; y \<in> Reals |] ==> x \<in> Reals"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    87
apply (drule_tac x = y in SReal_minus)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    88
apply (drule SReal_add, assumption, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    89
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    90
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    91
lemma SReal_hrabs: "(x::hypreal) \<in> Reals ==> abs x \<in> Reals"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
    92
apply (auto simp add: SReal_def)
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
    93
apply (rule_tac x="abs r" in exI)
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
    94
apply simp
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    95
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    96
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
    97
lemma SReal_hypreal_of_real [simp]: "hypreal_of_real x \<in> Reals"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    98
by (simp add: SReal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
    99
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   100
lemma SReal_number_of [simp]: "(number_of w ::hypreal) \<in> Reals"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   101
apply (simp only: star_of_number_of [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   102
apply (rule SReal_hypreal_of_real)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   103
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   104
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   105
(** As always with numerals, 0 and 1 are special cases **)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   106
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   107
lemma Reals_0 [simp]: "(0::hypreal) \<in> Reals"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14378
diff changeset
   108
apply (subst numeral_0_eq_0 [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   109
apply (rule SReal_number_of)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   110
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   111
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   112
lemma Reals_1 [simp]: "(1::hypreal) \<in> Reals"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14378
diff changeset
   113
apply (subst numeral_1_eq_1 [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   114
apply (rule SReal_number_of)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   115
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   116
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   117
lemma SReal_divide_number_of: "r \<in> Reals ==> r/(number_of w::hypreal) \<in> Reals"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   118
apply (simp only: divide_inverse)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   119
apply (blast intro!: SReal_number_of SReal_mult SReal_inverse)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   120
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   121
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   122
text{*epsilon is not in Reals because it is an infinitesimal*}
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   123
lemma SReal_epsilon_not_mem: "epsilon \<notin> Reals"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   124
apply (simp add: SReal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   125
apply (auto simp add: hypreal_of_real_not_eq_epsilon [THEN not_sym])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   126
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   127
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   128
lemma SReal_omega_not_mem: "omega \<notin> Reals"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   129
apply (simp add: SReal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   130
apply (auto simp add: hypreal_of_real_not_eq_omega [THEN not_sym])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   131
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   132
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   133
lemma SReal_UNIV_real: "{x. hypreal_of_real x \<in> Reals} = (UNIV::real set)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   134
by (simp add: SReal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   135
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   136
lemma SReal_iff: "(x \<in> Reals) = (\<exists>y. x = hypreal_of_real y)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   137
by (simp add: SReal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   138
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   139
lemma hypreal_of_real_image: "hypreal_of_real `(UNIV::real set) = Reals"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   140
by (auto simp add: SReal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   141
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   142
lemma inv_hypreal_of_real_image: "inv hypreal_of_real ` Reals = UNIV"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   143
apply (auto simp add: SReal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   144
apply (rule inj_hypreal_of_real [THEN inv_f_f, THEN subst], blast)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   145
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   146
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   147
lemma SReal_hypreal_of_real_image:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   148
      "[| \<exists>x. x: P; P \<subseteq> Reals |] ==> \<exists>Q. P = hypreal_of_real ` Q"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   149
apply (simp add: SReal_def, blast)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   150
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   151
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   152
lemma SReal_dense:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   153
     "[| (x::hypreal) \<in> Reals; y \<in> Reals;  x<y |] ==> \<exists>r \<in> Reals. x<r & r<y"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   154
apply (auto simp add: SReal_iff)
14477
cc61fd03e589 conversion of Hyperreal/Lim to new-style
paulson
parents: 14468
diff changeset
   155
apply (drule dense, safe)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   156
apply (rule_tac x = "hypreal_of_real r" in bexI, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   157
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   158
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   159
text{*Completeness of Reals, but both lemmas are unused.*}
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   160
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   161
lemma SReal_sup_lemma:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   162
     "P \<subseteq> Reals ==> ((\<exists>x \<in> P. y < x) =
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   163
      (\<exists>X. hypreal_of_real X \<in> P & y < hypreal_of_real X))"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   164
by (blast dest!: SReal_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   165
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   166
lemma SReal_sup_lemma2:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   167
     "[| P \<subseteq> Reals; \<exists>x. x \<in> P; \<exists>y \<in> Reals. \<forall>x \<in> P. x < y |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   168
      ==> (\<exists>X. X \<in> {w. hypreal_of_real w \<in> P}) &
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   169
          (\<exists>Y. \<forall>X \<in> {w. hypreal_of_real w \<in> P}. X < Y)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   170
apply (rule conjI)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   171
apply (fast dest!: SReal_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   172
apply (auto, frule subsetD, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   173
apply (drule SReal_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   174
apply (auto, rule_tac x = ya in exI, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   175
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   176
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   177
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   178
subsection{*Lifting of the Ub and Lub Properties*}
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   179
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   180
lemma hypreal_of_real_isUb_iff:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   181
      "(isUb (Reals) (hypreal_of_real ` Q) (hypreal_of_real Y)) =
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   182
       (isUb (UNIV :: real set) Q Y)"
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   183
by (simp add: isUb_def setle_def)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   184
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   185
lemma hypreal_of_real_isLub1:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   186
     "isLub Reals (hypreal_of_real ` Q) (hypreal_of_real Y)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   187
      ==> isLub (UNIV :: real set) Q Y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   188
apply (simp add: isLub_def leastP_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   189
apply (auto intro: hypreal_of_real_isUb_iff [THEN iffD2]
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   190
            simp add: hypreal_of_real_isUb_iff setge_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   191
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   192
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   193
lemma hypreal_of_real_isLub2:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   194
      "isLub (UNIV :: real set) Q Y
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   195
       ==> isLub Reals (hypreal_of_real ` Q) (hypreal_of_real Y)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   196
apply (simp add: isLub_def leastP_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   197
apply (auto simp add: hypreal_of_real_isUb_iff setge_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   198
apply (frule_tac x2 = x in isUbD2a [THEN SReal_iff [THEN iffD1], THEN exE])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   199
 prefer 2 apply assumption
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   200
apply (drule_tac x = xa in spec)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   201
apply (auto simp add: hypreal_of_real_isUb_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   202
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   203
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   204
lemma hypreal_of_real_isLub_iff:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   205
     "(isLub Reals (hypreal_of_real ` Q) (hypreal_of_real Y)) =
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   206
      (isLub (UNIV :: real set) Q Y)"
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   207
by (blast intro: hypreal_of_real_isLub1 hypreal_of_real_isLub2)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   208
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   209
lemma lemma_isUb_hypreal_of_real:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   210
     "isUb Reals P Y ==> \<exists>Yo. isUb Reals P (hypreal_of_real Yo)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   211
by (auto simp add: SReal_iff isUb_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   212
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   213
lemma lemma_isLub_hypreal_of_real:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   214
     "isLub Reals P Y ==> \<exists>Yo. isLub Reals P (hypreal_of_real Yo)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   215
by (auto simp add: isLub_def leastP_def isUb_def SReal_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   216
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   217
lemma lemma_isLub_hypreal_of_real2:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   218
     "\<exists>Yo. isLub Reals P (hypreal_of_real Yo) ==> \<exists>Y. isLub Reals P Y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   219
by (auto simp add: isLub_def leastP_def isUb_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   220
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   221
lemma SReal_complete:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   222
     "[| P \<subseteq> Reals;  \<exists>x. x \<in> P;  \<exists>Y. isUb Reals P Y |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   223
      ==> \<exists>t::hypreal. isLub Reals P t"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   224
apply (frule SReal_hypreal_of_real_image)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   225
apply (auto, drule lemma_isUb_hypreal_of_real)
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   226
apply (auto intro!: reals_complete lemma_isLub_hypreal_of_real2
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   227
            simp add: hypreal_of_real_isLub_iff hypreal_of_real_isUb_iff)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   228
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   229
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   230
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   231
subsection{* Set of Finite Elements is a Subring of the Extended Reals*}
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   232
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   233
lemma HFinite_add: "[|x \<in> HFinite; y \<in> HFinite|] ==> (x+y) \<in> HFinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   234
apply (simp add: HFinite_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   235
apply (blast intro!: SReal_add hrabs_add_less)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   236
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   237
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   238
lemma HFinite_mult: "[|x \<in> HFinite; y \<in> HFinite|] ==> x*y \<in> HFinite"
16924
04246269386e removed the dependence on abs_mult
paulson
parents: 16775
diff changeset
   239
apply (simp add: HFinite_def abs_mult)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   240
apply (blast intro!: SReal_mult abs_mult_less)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   241
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   242
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   243
lemma HFinite_minus_iff: "(-x \<in> HFinite) = (x \<in> HFinite)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   244
by (simp add: HFinite_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   245
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   246
lemma SReal_subset_HFinite: "Reals \<subseteq> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   247
apply (auto simp add: SReal_def HFinite_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   248
apply (rule_tac x = "1 + abs (hypreal_of_real r) " in exI)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   249
apply (rule conjI, rule_tac x = "1 + abs r" in exI)
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   250
apply simp_all
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   251
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   252
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   253
lemma HFinite_hypreal_of_real [simp]: "hypreal_of_real x \<in> HFinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   254
by (auto intro: SReal_subset_HFinite [THEN subsetD])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   255
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   256
lemma HFiniteD: "x \<in> HFinite ==> \<exists>t \<in> Reals. abs x < t"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   257
by (simp add: HFinite_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   258
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   259
lemma HFinite_hrabs_iff [iff]: "(abs x \<in> HFinite) = (x \<in> HFinite)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   260
by (simp add: HFinite_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   261
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   262
lemma HFinite_number_of [simp]: "number_of w \<in> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   263
by (rule SReal_number_of [THEN SReal_subset_HFinite [THEN subsetD]])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   264
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   265
(** As always with numerals, 0 and 1 are special cases **)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   266
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   267
lemma HFinite_0 [simp]: "0 \<in> HFinite"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14378
diff changeset
   268
apply (subst numeral_0_eq_0 [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   269
apply (rule HFinite_number_of)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   270
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   271
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   272
lemma HFinite_1 [simp]: "1 \<in> HFinite"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14378
diff changeset
   273
apply (subst numeral_1_eq_1 [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   274
apply (rule HFinite_number_of)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   275
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   276
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   277
lemma HFinite_bounded: "[|x \<in> HFinite; y \<le> x; 0 \<le> y |] ==> y \<in> HFinite"
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   278
apply (case_tac "x \<le> 0")
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   279
apply (drule_tac y = x in order_trans)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   280
apply (drule_tac [2] order_antisym)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   281
apply (auto simp add: linorder_not_le)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   282
apply (auto intro: order_le_less_trans simp add: abs_if HFinite_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   283
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   284
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   285
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   286
subsection{* Set of Infinitesimals is a Subring of the Hyperreals*}
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   287
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   288
lemma InfinitesimalD:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   289
      "x \<in> Infinitesimal ==> \<forall>r \<in> Reals. 0 < r --> abs x < r"
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   290
by (simp add: Infinitesimal_def)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   291
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   292
lemma Infinitesimal_zero [iff]: "0 \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   293
by (simp add: Infinitesimal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   294
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   295
lemma hypreal_sum_of_halves: "x/(2::hypreal) + x/(2::hypreal) = x"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   296
by auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   297
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   298
lemma Infinitesimal_add:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   299
     "[| x \<in> Infinitesimal; y \<in> Infinitesimal |] ==> (x+y) \<in> Infinitesimal"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   300
apply (auto simp add: Infinitesimal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   301
apply (rule hypreal_sum_of_halves [THEN subst])
14477
cc61fd03e589 conversion of Hyperreal/Lim to new-style
paulson
parents: 14468
diff changeset
   302
apply (drule half_gt_zero)
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
   303
apply (blast intro: hrabs_add_less SReal_divide_number_of)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   304
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   305
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   306
lemma Infinitesimal_minus_iff [simp]: "(-x:Infinitesimal) = (x:Infinitesimal)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   307
by (simp add: Infinitesimal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   308
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   309
lemma Infinitesimal_diff:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   310
     "[| x \<in> Infinitesimal;  y \<in> Infinitesimal |] ==> x-y \<in> Infinitesimal"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   311
by (simp add: diff_def Infinitesimal_add)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   312
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   313
lemma Infinitesimal_mult:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   314
     "[| x \<in> Infinitesimal; y \<in> Infinitesimal |] ==> (x * y) \<in> Infinitesimal"
16924
04246269386e removed the dependence on abs_mult
paulson
parents: 16775
diff changeset
   315
apply (auto simp add: Infinitesimal_def abs_mult)
04246269386e removed the dependence on abs_mult
paulson
parents: 16775
diff changeset
   316
apply (case_tac "y=0", simp) 
04246269386e removed the dependence on abs_mult
paulson
parents: 16775
diff changeset
   317
apply (cut_tac a = "abs x" and b = 1 and c = "abs y" and d = r 
04246269386e removed the dependence on abs_mult
paulson
parents: 16775
diff changeset
   318
       in mult_strict_mono, auto)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   319
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   320
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   321
lemma Infinitesimal_HFinite_mult:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   322
     "[| x \<in> Infinitesimal; y \<in> HFinite |] ==> (x * y) \<in> Infinitesimal"
16924
04246269386e removed the dependence on abs_mult
paulson
parents: 16775
diff changeset
   323
apply (auto dest!: HFiniteD simp add: Infinitesimal_def abs_mult)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   324
apply (frule hrabs_less_gt_zero)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   325
apply (drule_tac x = "r/t" in bspec)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   326
apply (blast intro: SReal_divide)
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15229
diff changeset
   327
apply (cut_tac a = "abs x" and b = "r/t" and c = "abs y" in mult_strict_mono)
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
   328
apply (auto simp add: zero_less_divide_iff)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   329
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   330
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   331
lemma Infinitesimal_HFinite_mult2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   332
     "[| x \<in> Infinitesimal; y \<in> HFinite |] ==> (y * x) \<in> Infinitesimal"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   333
by (auto dest: Infinitesimal_HFinite_mult simp add: mult_commute)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   334
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   335
(*** rather long proof ***)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   336
lemma HInfinite_inverse_Infinitesimal:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   337
     "x \<in> HInfinite ==> inverse x: Infinitesimal"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   338
apply (auto simp add: HInfinite_def Infinitesimal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   339
apply (erule_tac x = "inverse r" in ballE)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   340
apply (frule_tac a1 = r and z = "abs x" in positive_imp_inverse_positive [THEN order_less_trans], assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   341
apply (drule inverse_inverse_eq [symmetric, THEN subst])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   342
apply (rule inverse_less_iff_less [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   343
apply (auto simp add: SReal_inverse)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   344
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   345
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   346
lemma HInfinite_mult: "[|x \<in> HInfinite;y \<in> HInfinite|] ==> (x*y) \<in> HInfinite"
16924
04246269386e removed the dependence on abs_mult
paulson
parents: 16775
diff changeset
   347
apply (auto simp add: HInfinite_def  abs_mult)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   348
apply (erule_tac x = 1 in ballE)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   349
apply (erule_tac x = r in ballE)
16924
04246269386e removed the dependence on abs_mult
paulson
parents: 16775
diff changeset
   350
apply (case_tac "y=0", simp)
04246269386e removed the dependence on abs_mult
paulson
parents: 16775
diff changeset
   351
apply (cut_tac c = 1 and d = "abs x" and a = r and b = "abs y" in mult_strict_mono)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   352
apply (auto simp add: mult_ac)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   353
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   354
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   355
lemma hypreal_add_zero_less_le_mono: "[|r < x; (0::hypreal) \<le> y|] ==> r < x+y"
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   356
by (auto dest: add_less_le_mono)
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   357
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   358
lemma HInfinite_add_ge_zero:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   359
      "[|x \<in> HInfinite; 0 \<le> y; 0 \<le> x|] ==> (x + y): HInfinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   360
by (auto intro!: hypreal_add_zero_less_le_mono 
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   361
       simp add: abs_if add_commute add_nonneg_nonneg HInfinite_def)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   362
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   363
lemma HInfinite_add_ge_zero2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   364
     "[|x \<in> HInfinite; 0 \<le> y; 0 \<le> x|] ==> (y + x): HInfinite"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   365
by (auto intro!: HInfinite_add_ge_zero simp add: add_commute)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   366
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   367
lemma HInfinite_add_gt_zero:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   368
     "[|x \<in> HInfinite; 0 < y; 0 < x|] ==> (x + y): HInfinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   369
by (blast intro: HInfinite_add_ge_zero order_less_imp_le)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   371
lemma HInfinite_minus_iff: "(-x \<in> HInfinite) = (x \<in> HInfinite)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   372
by (simp add: HInfinite_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   373
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   374
lemma HInfinite_add_le_zero:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   375
     "[|x \<in> HInfinite; y \<le> 0; x \<le> 0|] ==> (x + y): HInfinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   376
apply (drule HInfinite_minus_iff [THEN iffD2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   377
apply (rule HInfinite_minus_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   378
apply (auto intro: HInfinite_add_ge_zero)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   379
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   380
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   381
lemma HInfinite_add_lt_zero:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   382
     "[|x \<in> HInfinite; y < 0; x < 0|] ==> (x + y): HInfinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   383
by (blast intro: HInfinite_add_le_zero order_less_imp_le)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   384
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   385
lemma HFinite_sum_squares:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   386
     "[|a: HFinite; b: HFinite; c: HFinite|]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   387
      ==> a*a + b*b + c*c \<in> HFinite"
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   388
by (auto intro: HFinite_mult HFinite_add)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   389
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   390
lemma not_Infinitesimal_not_zero: "x \<notin> Infinitesimal ==> x \<noteq> 0"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   391
by auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   392
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   393
lemma not_Infinitesimal_not_zero2: "x \<in> HFinite - Infinitesimal ==> x \<noteq> 0"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   394
by auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   395
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   396
lemma Infinitesimal_hrabs_iff [iff]:
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   397
     "(abs x \<in> Infinitesimal) = (x \<in> Infinitesimal)"
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14653
diff changeset
   398
by (auto simp add: abs_if)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   399
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   400
lemma HFinite_diff_Infinitesimal_hrabs:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   401
     "x \<in> HFinite - Infinitesimal ==> abs x \<in> HFinite - Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   402
by blast
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   403
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   404
lemma hrabs_less_Infinitesimal:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   405
      "[| e \<in> Infinitesimal; abs x < e |] ==> x \<in> Infinitesimal"
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   406
by (auto simp add: Infinitesimal_def abs_less_iff)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   407
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   408
lemma hrabs_le_Infinitesimal:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   409
     "[| e \<in> Infinitesimal; abs x \<le> e |] ==> x \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   410
by (blast dest: order_le_imp_less_or_eq intro: hrabs_less_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   411
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   412
lemma Infinitesimal_interval:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   413
      "[| e \<in> Infinitesimal; e' \<in> Infinitesimal; e' < x ; x < e |] 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   414
       ==> x \<in> Infinitesimal"
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   415
by (auto simp add: Infinitesimal_def abs_less_iff)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   416
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   417
lemma Infinitesimal_interval2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   418
     "[| e \<in> Infinitesimal; e' \<in> Infinitesimal;
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   419
         e' \<le> x ; x \<le> e |] ==> x \<in> Infinitesimal"
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   420
by (auto intro: Infinitesimal_interval simp add: order_le_less)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   421
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   422
lemma not_Infinitesimal_mult:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   423
     "[| x \<notin> Infinitesimal;  y \<notin> Infinitesimal|] ==> (x*y) \<notin>Infinitesimal"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   424
apply (unfold Infinitesimal_def, clarify)
16924
04246269386e removed the dependence on abs_mult
paulson
parents: 16775
diff changeset
   425
apply (simp add: linorder_not_less abs_mult)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   426
apply (erule_tac x = "r*ra" in ballE)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   427
prefer 2 apply (fast intro: SReal_mult)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   428
apply (auto simp add: zero_less_mult_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   429
apply (cut_tac c = ra and d = "abs y" and a = r and b = "abs x" in mult_mono, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   430
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   431
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   432
lemma Infinitesimal_mult_disj:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   433
     "x*y \<in> Infinitesimal ==> x \<in> Infinitesimal | y \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   434
apply (rule ccontr)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   435
apply (drule de_Morgan_disj [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   436
apply (fast dest: not_Infinitesimal_mult)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   437
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   438
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   439
lemma HFinite_Infinitesimal_not_zero: "x \<in> HFinite-Infinitesimal ==> x \<noteq> 0"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   440
by blast
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   441
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   442
lemma HFinite_Infinitesimal_diff_mult:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   443
     "[| x \<in> HFinite - Infinitesimal;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   444
                   y \<in> HFinite - Infinitesimal
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   445
                |] ==> (x*y) \<in> HFinite - Infinitesimal"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   446
apply clarify
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   447
apply (blast dest: HFinite_mult not_Infinitesimal_mult)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   448
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   449
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   450
lemma Infinitesimal_subset_HFinite:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   451
      "Infinitesimal \<subseteq> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   452
apply (simp add: Infinitesimal_def HFinite_def, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   453
apply (rule_tac x = 1 in bexI, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   454
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   455
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   456
lemma Infinitesimal_hypreal_of_real_mult:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   457
     "x \<in> Infinitesimal ==> x * hypreal_of_real r \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   458
by (erule HFinite_hypreal_of_real [THEN [2] Infinitesimal_HFinite_mult])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   459
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   460
lemma Infinitesimal_hypreal_of_real_mult2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   461
     "x \<in> Infinitesimal ==> hypreal_of_real r * x \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   462
by (erule HFinite_hypreal_of_real [THEN [2] Infinitesimal_HFinite_mult2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   463
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   464
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   465
subsection{*The Infinitely Close Relation*}
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   466
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   467
lemma mem_infmal_iff: "(x \<in> Infinitesimal) = (x @= 0)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   468
by (simp add: Infinitesimal_def approx_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   469
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   470
lemma approx_minus_iff: " (x @= y) = (x + -y @= 0)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   471
by (simp add: approx_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   472
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   473
lemma approx_minus_iff2: " (x @= y) = (-y + x @= 0)"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   474
by (simp add: approx_def add_commute)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   475
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   476
lemma approx_refl [iff]: "x @= x"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   477
by (simp add: approx_def Infinitesimal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   478
14477
cc61fd03e589 conversion of Hyperreal/Lim to new-style
paulson
parents: 14468
diff changeset
   479
lemma hypreal_minus_distrib1: "-(y + -(x::hypreal)) = x + -y"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   480
by (simp add: add_commute)
14477
cc61fd03e589 conversion of Hyperreal/Lim to new-style
paulson
parents: 14468
diff changeset
   481
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   482
lemma approx_sym: "x @= y ==> y @= x"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   483
apply (simp add: approx_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   484
apply (rule hypreal_minus_distrib1 [THEN subst])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   485
apply (erule Infinitesimal_minus_iff [THEN iffD2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   486
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   487
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   488
lemma approx_trans: "[| x @= y; y @= z |] ==> x @= z"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   489
apply (simp add: approx_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   490
apply (drule Infinitesimal_add, assumption, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   491
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   492
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   493
lemma approx_trans2: "[| r @= x; s @= x |] ==> r @= s"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   494
by (blast intro: approx_sym approx_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   495
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   496
lemma approx_trans3: "[| x @= r; x @= s|] ==> r @= s"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   497
by (blast intro: approx_sym approx_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   498
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   499
lemma number_of_approx_reorient: "(number_of w @= x) = (x @= number_of w)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   500
by (blast intro: approx_sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   501
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   502
lemma zero_approx_reorient: "(0 @= x) = (x @= 0)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   503
by (blast intro: approx_sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   504
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   505
lemma one_approx_reorient: "(1 @= x) = (x @= 1)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   506
by (blast intro: approx_sym)
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
   507
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
   508
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
   509
ML {*
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
   510
local
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   511
(*** re-orientation, following HOL/Integ/Bin.ML
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   512
     We re-orient x @=y where x is 0, 1 or a numeral, unless y is as well!
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   513
 ***)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   514
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   515
(*reorientation simprules using ==, for the following simproc*)
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
   516
val meta_zero_approx_reorient = thm "zero_approx_reorient" RS eq_reflection;
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
   517
val meta_one_approx_reorient = thm "one_approx_reorient" RS eq_reflection;
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
   518
val meta_number_of_approx_reorient = thm "number_of_approx_reorient" RS eq_reflection
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   519
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   520
(*reorientation simplification procedure: reorients (polymorphic)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   521
  0 = x, 1 = x, nnn = x provided x isn't 0, 1 or a numeral.*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   522
fun reorient_proc sg _ (_ $ t $ u) =
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   523
  case u of
15531
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15251
diff changeset
   524
      Const("0", _) => NONE
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15251
diff changeset
   525
    | Const("1", _) => NONE
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15251
diff changeset
   526
    | Const("Numeral.number_of", _) $ _ => NONE
08c8dad8e399 Deleted Library.option type.
skalberg
parents: 15251
diff changeset
   527
    | _ => SOME (case t of
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   528
                Const("0", _) => meta_zero_approx_reorient
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   529
              | Const("1", _) => meta_one_approx_reorient
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   530
              | Const("Numeral.number_of", _) $ _ =>
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   531
                                 meta_number_of_approx_reorient);
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   532
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
   533
in
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   534
val approx_reorient_simproc =
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   535
  Bin_Simprocs.prep_simproc
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   536
    ("reorient_simproc", ["0@=x", "1@=x", "number_of w @= x"], reorient_proc);
19765
dfe940911617 misc cleanup;
wenzelm
parents: 17431
diff changeset
   537
end;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   538
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   539
Addsimprocs [approx_reorient_simproc];
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   540
*}
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   541
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   542
lemma Infinitesimal_approx_minus: "(x-y \<in> Infinitesimal) = (x @= y)"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   543
by (auto simp add: diff_def approx_minus_iff [symmetric] mem_infmal_iff)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   544
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   545
lemma approx_monad_iff: "(x @= y) = (monad(x)=monad(y))"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   546
apply (simp add: monad_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   547
apply (auto dest: approx_sym elim!: approx_trans equalityCE)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   548
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   549
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   550
lemma Infinitesimal_approx:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   551
     "[| x \<in> Infinitesimal; y \<in> Infinitesimal |] ==> x @= y"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   552
apply (simp add: mem_infmal_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   553
apply (blast intro: approx_trans approx_sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   554
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   555
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   556
lemma approx_add: "[| a @= b; c @= d |] ==> a+c @= b+d"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   557
proof (unfold approx_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   558
  assume inf: "a + - b \<in> Infinitesimal" "c + - d \<in> Infinitesimal"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   559
  have "a + c + - (b + d) = (a + - b) + (c + - d)" by arith
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   560
  also have "... \<in> Infinitesimal" using inf by (rule Infinitesimal_add)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   561
  finally show "a + c + - (b + d) \<in> Infinitesimal" .
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   562
qed
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   563
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   564
lemma approx_minus: "a @= b ==> -a @= -b"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   565
apply (rule approx_minus_iff [THEN iffD2, THEN approx_sym])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   566
apply (drule approx_minus_iff [THEN iffD1])
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   567
apply (simp (no_asm) add: add_commute)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   568
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   569
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   570
lemma approx_minus2: "-a @= -b ==> a @= b"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   571
by (auto dest: approx_minus)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   572
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   573
lemma approx_minus_cancel [simp]: "(-a @= -b) = (a @= b)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   574
by (blast intro: approx_minus approx_minus2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   575
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   576
lemma approx_add_minus: "[| a @= b; c @= d |] ==> a + -c @= b + -d"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   577
by (blast intro!: approx_add approx_minus)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   578
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   579
lemma approx_mult1: "[| a @= b; c: HFinite|] ==> a*c @= b*c"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   580
by (simp add: approx_def Infinitesimal_HFinite_mult minus_mult_left 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   581
              left_distrib [symmetric] 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   582
         del: minus_mult_left [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   583
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   584
lemma approx_mult2: "[|a @= b; c: HFinite|] ==> c*a @= c*b"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   585
by (simp add: approx_mult1 mult_commute)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   586
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   587
lemma approx_mult_subst: "[|u @= v*x; x @= y; v \<in> HFinite|] ==> u @= v*y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   588
by (blast intro: approx_mult2 approx_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   589
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   590
lemma approx_mult_subst2: "[| u @= x*v; x @= y; v \<in> HFinite |] ==> u @= y*v"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   591
by (blast intro: approx_mult1 approx_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   592
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   593
lemma approx_mult_subst_SReal:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   594
     "[| u @= x*hypreal_of_real v; x @= y |] ==> u @= y*hypreal_of_real v"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   595
by (auto intro: approx_mult_subst2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   596
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   597
lemma approx_eq_imp: "a = b ==> a @= b"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   598
by (simp add: approx_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   599
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   600
lemma Infinitesimal_minus_approx: "x \<in> Infinitesimal ==> -x @= x"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   601
by (blast intro: Infinitesimal_minus_iff [THEN iffD2] 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   602
                    mem_infmal_iff [THEN iffD1] approx_trans2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   603
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   604
lemma bex_Infinitesimal_iff: "(\<exists>y \<in> Infinitesimal. x + -z = y) = (x @= z)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   605
by (simp add: approx_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   606
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   607
lemma bex_Infinitesimal_iff2: "(\<exists>y \<in> Infinitesimal. x = z + y) = (x @= z)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   608
by (force simp add: bex_Infinitesimal_iff [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   609
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   610
lemma Infinitesimal_add_approx: "[| y \<in> Infinitesimal; x + y = z |] ==> x @= z"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   611
apply (rule bex_Infinitesimal_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   612
apply (drule Infinitesimal_minus_iff [THEN iffD2])
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   613
apply (auto simp add: add_assoc [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   614
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   615
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   616
lemma Infinitesimal_add_approx_self: "y \<in> Infinitesimal ==> x @= x + y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   617
apply (rule bex_Infinitesimal_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   618
apply (drule Infinitesimal_minus_iff [THEN iffD2])
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   619
apply (auto simp add: add_assoc [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   620
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   621
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   622
lemma Infinitesimal_add_approx_self2: "y \<in> Infinitesimal ==> x @= y + x"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   623
by (auto dest: Infinitesimal_add_approx_self simp add: add_commute)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   624
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   625
lemma Infinitesimal_add_minus_approx_self: "y \<in> Infinitesimal ==> x @= x + -y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   626
by (blast intro!: Infinitesimal_add_approx_self Infinitesimal_minus_iff [THEN iffD2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   627
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   628
lemma Infinitesimal_add_cancel: "[| y \<in> Infinitesimal; x+y @= z|] ==> x @= z"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   629
apply (drule_tac x = x in Infinitesimal_add_approx_self [THEN approx_sym])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   630
apply (erule approx_trans3 [THEN approx_sym], assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   631
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   632
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   633
lemma Infinitesimal_add_right_cancel:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   634
     "[| y \<in> Infinitesimal; x @= z + y|] ==> x @= z"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   635
apply (drule_tac x = z in Infinitesimal_add_approx_self2 [THEN approx_sym])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   636
apply (erule approx_trans3 [THEN approx_sym])
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   637
apply (simp add: add_commute)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   638
apply (erule approx_sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   639
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   640
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   641
lemma approx_add_left_cancel: "d + b  @= d + c ==> b @= c"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   642
apply (drule approx_minus_iff [THEN iffD1])
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
   643
apply (simp add: approx_minus_iff [symmetric] add_ac)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   644
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   645
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   646
lemma approx_add_right_cancel: "b + d @= c + d ==> b @= c"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   647
apply (rule approx_add_left_cancel)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   648
apply (simp add: add_commute)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   649
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   650
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   651
lemma approx_add_mono1: "b @= c ==> d + b @= d + c"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   652
apply (rule approx_minus_iff [THEN iffD2])
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
   653
apply (simp add: approx_minus_iff [symmetric] add_ac)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   654
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   655
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   656
lemma approx_add_mono2: "b @= c ==> b + a @= c + a"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   657
by (simp add: add_commute approx_add_mono1)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   658
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   659
lemma approx_add_left_iff [simp]: "(a + b @= a + c) = (b @= c)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   660
by (fast elim: approx_add_left_cancel approx_add_mono1)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   661
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   662
lemma approx_add_right_iff [simp]: "(b + a @= c + a) = (b @= c)"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   663
by (simp add: add_commute)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   664
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   665
lemma approx_HFinite: "[| x \<in> HFinite; x @= y |] ==> y \<in> HFinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   666
apply (drule bex_Infinitesimal_iff2 [THEN iffD2], safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   667
apply (drule Infinitesimal_subset_HFinite [THEN subsetD, THEN HFinite_minus_iff [THEN iffD2]])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   668
apply (drule HFinite_add)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   669
apply (auto simp add: add_assoc)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   670
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   671
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   672
lemma approx_hypreal_of_real_HFinite: "x @= hypreal_of_real D ==> x \<in> HFinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   673
by (rule approx_sym [THEN [2] approx_HFinite], auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   674
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   675
lemma approx_mult_HFinite:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   676
     "[|a @= b; c @= d; b: HFinite; d: HFinite|] ==> a*c @= b*d"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   677
apply (rule approx_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   678
apply (rule_tac [2] approx_mult2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   679
apply (rule approx_mult1)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   680
prefer 2 apply (blast intro: approx_HFinite approx_sym, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   681
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   682
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   683
lemma approx_mult_hypreal_of_real:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   684
     "[|a @= hypreal_of_real b; c @= hypreal_of_real d |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   685
      ==> a*c @= hypreal_of_real b*hypreal_of_real d"
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   686
by (blast intro!: approx_mult_HFinite approx_hypreal_of_real_HFinite 
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   687
                  HFinite_hypreal_of_real)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   688
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   689
lemma approx_SReal_mult_cancel_zero:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   690
     "[| a \<in> Reals; a \<noteq> 0; a*x @= 0 |] ==> x @= 0"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   691
apply (drule SReal_inverse [THEN SReal_subset_HFinite [THEN subsetD]])
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   692
apply (auto dest: approx_mult2 simp add: mult_assoc [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   693
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   694
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   695
lemma approx_mult_SReal1: "[| a \<in> Reals; x @= 0 |] ==> x*a @= 0"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   696
by (auto dest: SReal_subset_HFinite [THEN subsetD] approx_mult1)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   697
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   698
lemma approx_mult_SReal2: "[| a \<in> Reals; x @= 0 |] ==> a*x @= 0"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   699
by (auto dest: SReal_subset_HFinite [THEN subsetD] approx_mult2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   700
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   701
lemma approx_mult_SReal_zero_cancel_iff [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   702
     "[|a \<in> Reals; a \<noteq> 0 |] ==> (a*x @= 0) = (x @= 0)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   703
by (blast intro: approx_SReal_mult_cancel_zero approx_mult_SReal2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   704
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   705
lemma approx_SReal_mult_cancel:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   706
     "[| a \<in> Reals; a \<noteq> 0; a* w @= a*z |] ==> w @= z"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   707
apply (drule SReal_inverse [THEN SReal_subset_HFinite [THEN subsetD]])
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   708
apply (auto dest: approx_mult2 simp add: mult_assoc [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   709
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   710
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   711
lemma approx_SReal_mult_cancel_iff1 [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   712
     "[| a \<in> Reals; a \<noteq> 0|] ==> (a* w @= a*z) = (w @= z)"
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   713
by (auto intro!: approx_mult2 SReal_subset_HFinite [THEN subsetD]
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   714
         intro: approx_SReal_mult_cancel)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   715
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   716
lemma approx_le_bound: "[| z \<le> f; f @= g; g \<le> z |] ==> f @= z"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   717
apply (simp add: bex_Infinitesimal_iff2 [symmetric], auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   718
apply (rule_tac x = "g+y-z" in bexI)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   719
apply (simp (no_asm))
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   720
apply (rule Infinitesimal_interval2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   721
apply (rule_tac [2] Infinitesimal_zero, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   722
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   723
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   724
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
   725
subsection{* Zero is the Only Infinitesimal that is also a Real*}
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   726
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   727
lemma Infinitesimal_less_SReal:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   728
     "[| x \<in> Reals; y \<in> Infinitesimal; 0 < x |] ==> y < x"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   729
apply (simp add: Infinitesimal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   730
apply (rule abs_ge_self [THEN order_le_less_trans], auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   731
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   732
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   733
lemma Infinitesimal_less_SReal2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   734
     "y \<in> Infinitesimal ==> \<forall>r \<in> Reals. 0 < r --> y < r"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   735
by (blast intro: Infinitesimal_less_SReal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   736
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   737
lemma SReal_not_Infinitesimal:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   738
     "[| 0 < y;  y \<in> Reals|] ==> y \<notin> Infinitesimal"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   739
apply (simp add: Infinitesimal_def)
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14653
diff changeset
   740
apply (auto simp add: abs_if)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   741
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   742
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   743
lemma SReal_minus_not_Infinitesimal:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   744
     "[| y < 0;  y \<in> Reals |] ==> y \<notin> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   745
apply (subst Infinitesimal_minus_iff [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   746
apply (rule SReal_not_Infinitesimal, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   747
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   748
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   749
lemma SReal_Int_Infinitesimal_zero: "Reals Int Infinitesimal = {0}"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   750
apply auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   751
apply (cut_tac x = x and y = 0 in linorder_less_linear)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   752
apply (blast dest: SReal_not_Infinitesimal SReal_minus_not_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   753
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   754
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   755
lemma SReal_Infinitesimal_zero: "[| x \<in> Reals; x \<in> Infinitesimal|] ==> x = 0"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   756
by (cut_tac SReal_Int_Infinitesimal_zero, blast)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   757
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   758
lemma SReal_HFinite_diff_Infinitesimal:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   759
     "[| x \<in> Reals; x \<noteq> 0 |] ==> x \<in> HFinite - Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   760
by (auto dest: SReal_Infinitesimal_zero SReal_subset_HFinite [THEN subsetD])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   761
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   762
lemma hypreal_of_real_HFinite_diff_Infinitesimal:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   763
     "hypreal_of_real x \<noteq> 0 ==> hypreal_of_real x \<in> HFinite - Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   764
by (rule SReal_HFinite_diff_Infinitesimal, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   765
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   766
lemma hypreal_of_real_Infinitesimal_iff_0 [iff]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   767
     "(hypreal_of_real x \<in> Infinitesimal) = (x=0)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   768
apply auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   769
apply (rule ccontr)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   770
apply (rule hypreal_of_real_HFinite_diff_Infinitesimal [THEN DiffD2], auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   771
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   772
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   773
lemma number_of_not_Infinitesimal [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   774
     "number_of w \<noteq> (0::hypreal) ==> number_of w \<notin> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   775
by (fast dest: SReal_number_of [THEN SReal_Infinitesimal_zero])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   776
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   777
(*again: 1 is a special case, but not 0 this time*)
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   778
lemma one_not_Infinitesimal [simp]: "1 \<notin> Infinitesimal"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14378
diff changeset
   779
apply (subst numeral_1_eq_1 [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   780
apply (rule number_of_not_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   781
apply (simp (no_asm))
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   782
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   783
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   784
lemma approx_SReal_not_zero: "[| y \<in> Reals; x @= y; y\<noteq> 0 |] ==> x \<noteq> 0"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   785
apply (cut_tac x = 0 and y = y in linorder_less_linear, simp)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   786
apply (blast dest: approx_sym [THEN mem_infmal_iff [THEN iffD2]] SReal_not_Infinitesimal SReal_minus_not_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   787
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   788
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   789
lemma HFinite_diff_Infinitesimal_approx:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   790
     "[| x @= y; y \<in> HFinite - Infinitesimal |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   791
      ==> x \<in> HFinite - Infinitesimal"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   792
apply (auto intro: approx_sym [THEN [2] approx_HFinite]
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   793
            simp add: mem_infmal_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   794
apply (drule approx_trans3, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   795
apply (blast dest: approx_sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   796
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   797
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   798
(*The premise y\<noteq>0 is essential; otherwise x/y =0 and we lose the
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   799
  HFinite premise.*)
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   800
lemma Infinitesimal_ratio:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   801
     "[| y \<noteq> 0;  y \<in> Infinitesimal;  x/y \<in> HFinite |] ==> x \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   802
apply (drule Infinitesimal_HFinite_mult2, assumption)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   803
apply (simp add: divide_inverse mult_assoc)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   804
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   805
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   806
lemma Infinitesimal_SReal_divide: 
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   807
  "[| x \<in> Infinitesimal; y \<in> Reals |] ==> x/y \<in> Infinitesimal"
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14420
diff changeset
   808
apply (simp add: divide_inverse)
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   809
apply (auto intro!: Infinitesimal_HFinite_mult 
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   810
            dest!: SReal_inverse [THEN SReal_subset_HFinite [THEN subsetD]])
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   811
done
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   812
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   813
(*------------------------------------------------------------------
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   814
       Standard Part Theorem: Every finite x: R* is infinitely
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   815
       close to a unique real number (i.e a member of Reals)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   816
 ------------------------------------------------------------------*)
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   817
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   818
subsection{* Uniqueness: Two Infinitely Close Reals are Equal*}
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   819
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   820
lemma SReal_approx_iff: "[|x \<in> Reals; y \<in> Reals|] ==> (x @= y) = (x = y)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   821
apply auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   822
apply (simp add: approx_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   823
apply (drule_tac x = y in SReal_minus)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   824
apply (drule SReal_add, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   825
apply (drule SReal_Infinitesimal_zero, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   826
apply (drule sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   827
apply (simp add: hypreal_eq_minus_iff [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   828
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   829
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   830
lemma number_of_approx_iff [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   831
     "(number_of v @= number_of w) = (number_of v = (number_of w :: hypreal))"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   832
by (auto simp add: SReal_approx_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   833
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   834
(*And also for 0 @= #nn and 1 @= #nn, #nn @= 0 and #nn @= 1.*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   835
lemma [simp]: "(0 @= number_of w) = ((number_of w :: hypreal) = 0)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   836
              "(number_of w @= 0) = ((number_of w :: hypreal) = 0)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   837
              "(1 @= number_of w) = ((number_of w :: hypreal) = 1)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   838
              "(number_of w @= 1) = ((number_of w :: hypreal) = 1)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   839
              "~ (0 @= 1)" "~ (1 @= 0)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   840
by (auto simp only: SReal_number_of SReal_approx_iff Reals_0 Reals_1)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   841
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   842
lemma hypreal_of_real_approx_iff [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   843
     "(hypreal_of_real k @= hypreal_of_real m) = (k = m)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   844
apply auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   845
apply (rule inj_hypreal_of_real [THEN injD])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   846
apply (rule SReal_approx_iff [THEN iffD1], auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   847
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   848
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   849
lemma hypreal_of_real_approx_number_of_iff [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   850
     "(hypreal_of_real k @= number_of w) = (k = number_of w)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   851
by (subst hypreal_of_real_approx_iff [symmetric], auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   852
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   853
(*And also for 0 and 1.*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   854
(*And also for 0 @= #nn and 1 @= #nn, #nn @= 0 and #nn @= 1.*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   855
lemma [simp]: "(hypreal_of_real k @= 0) = (k = 0)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   856
              "(hypreal_of_real k @= 1) = (k = 1)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   857
  by (simp_all add:  hypreal_of_real_approx_iff [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   858
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   859
lemma approx_unique_real:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   860
     "[| r \<in> Reals; s \<in> Reals; r @= x; s @= x|] ==> r = s"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   861
by (blast intro: SReal_approx_iff [THEN iffD1] approx_trans2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   862
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   863
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   864
subsection{* Existence of Unique Real Infinitely Close*}
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   865
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   866
(* lemma about lubs *)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   867
lemma hypreal_isLub_unique:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   868
     "[| isLub R S x; isLub R S y |] ==> x = (y::hypreal)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   869
apply (frule isLub_isUb)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   870
apply (frule_tac x = y in isLub_isUb)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   871
apply (blast intro!: order_antisym dest!: isLub_le_isUb)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   872
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   873
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   874
lemma lemma_st_part_ub:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   875
     "x \<in> HFinite ==> \<exists>u. isUb Reals {s. s \<in> Reals & s < x} u"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   876
apply (drule HFiniteD, safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   877
apply (rule exI, rule isUbI)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   878
apply (auto intro: setleI isUbI simp add: abs_less_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   879
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   880
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   881
lemma lemma_st_part_nonempty: "x \<in> HFinite ==> \<exists>y. y \<in> {s. s \<in> Reals & s < x}"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   882
apply (drule HFiniteD, safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   883
apply (drule SReal_minus)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   884
apply (rule_tac x = "-t" in exI)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   885
apply (auto simp add: abs_less_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   886
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   887
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   888
lemma lemma_st_part_subset: "{s. s \<in> Reals & s < x} \<subseteq> Reals"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   889
by auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   890
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   891
lemma lemma_st_part_lub:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   892
     "x \<in> HFinite ==> \<exists>t. isLub Reals {s. s \<in> Reals & s < x} t"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   893
by (blast intro!: SReal_complete lemma_st_part_ub lemma_st_part_nonempty lemma_st_part_subset)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   894
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   895
lemma lemma_hypreal_le_left_cancel: "((t::hypreal) + r \<le> t) = (r \<le> 0)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   896
apply safe
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   897
apply (drule_tac c = "-t" in add_left_mono)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   898
apply (drule_tac [2] c = t in add_left_mono)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   899
apply (auto simp add: add_assoc [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   900
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   901
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   902
lemma lemma_st_part_le1:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   903
     "[| x \<in> HFinite;  isLub Reals {s. s \<in> Reals & s < x} t;
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   904
         r \<in> Reals;  0 < r |] ==> x \<le> t + r"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   905
apply (frule isLubD1a)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   906
apply (rule ccontr, drule linorder_not_le [THEN iffD2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   907
apply (drule_tac x = t in SReal_add, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   908
apply (drule_tac y = "t + r" in isLubD1 [THEN setleD], auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   909
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   910
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   911
lemma hypreal_setle_less_trans:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   912
     "!!x::hypreal. [| S *<= x; x < y |] ==> S *<= y"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   913
apply (simp add: setle_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   914
apply (auto dest!: bspec order_le_less_trans intro: order_less_imp_le)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   915
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   916
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   917
lemma hypreal_gt_isUb:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   918
     "!!x::hypreal. [| isUb R S x; x < y; y \<in> R |] ==> isUb R S y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   919
apply (simp add: isUb_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   920
apply (blast intro: hypreal_setle_less_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   921
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   922
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   923
lemma lemma_st_part_gt_ub:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   924
     "[| x \<in> HFinite; x < y; y \<in> Reals |]
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   925
      ==> isUb Reals {s. s \<in> Reals & s < x} y"
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   926
by (auto dest: order_less_trans intro: order_less_imp_le intro!: isUbI setleI)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   927
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   928
lemma lemma_minus_le_zero: "t \<le> t + -r ==> r \<le> (0::hypreal)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   929
apply (drule_tac c = "-t" in add_left_mono)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
   930
apply (auto simp add: add_assoc [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   931
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   932
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   933
lemma lemma_st_part_le2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   934
     "[| x \<in> HFinite;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   935
         isLub Reals {s. s \<in> Reals & s < x} t;
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   936
         r \<in> Reals; 0 < r |]
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   937
      ==> t + -r \<le> x"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   938
apply (frule isLubD1a)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   939
apply (rule ccontr, drule linorder_not_le [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   940
apply (drule SReal_minus, drule_tac x = t in SReal_add, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   941
apply (drule lemma_st_part_gt_ub, assumption+)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   942
apply (drule isLub_le_isUb, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   943
apply (drule lemma_minus_le_zero)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   944
apply (auto dest: order_less_le_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   945
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   946
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   947
lemma lemma_st_part1a:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   948
     "[| x \<in> HFinite;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   949
         isLub Reals {s. s \<in> Reals & s < x} t;
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   950
         r \<in> Reals; 0 < r |]
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   951
      ==> x + -t \<le> r"
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   952
apply (subgoal_tac "x \<le> t+r") 
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   953
apply (auto intro: lemma_st_part_le1)
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   954
done
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   955
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   956
lemma lemma_st_part2a:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   957
     "[| x \<in> HFinite;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   958
         isLub Reals {s. s \<in> Reals & s < x} t;
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   959
         r \<in> Reals;  0 < r |]
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   960
      ==> -(x + -t) \<le> r"
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   961
apply (subgoal_tac "(t + -r \<le> x)") 
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
   962
apply (auto intro: lemma_st_part_le2)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   963
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   964
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   965
lemma lemma_SReal_ub:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   966
     "(x::hypreal) \<in> Reals ==> isUb Reals {s. s \<in> Reals & s < x} x"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   967
by (auto intro: isUbI setleI order_less_imp_le)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   968
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   969
lemma lemma_SReal_lub:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   970
     "(x::hypreal) \<in> Reals ==> isLub Reals {s. s \<in> Reals & s < x} x"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   971
apply (auto intro!: isLubI2 lemma_SReal_ub setgeI)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   972
apply (frule isUbD2a)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   973
apply (rule_tac x = x and y = y in linorder_cases)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   974
apply (auto intro!: order_less_imp_le)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   975
apply (drule SReal_dense, assumption, assumption, safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   976
apply (drule_tac y = r in isUbD)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   977
apply (auto dest: order_less_le_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   978
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   979
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   980
lemma lemma_st_part_not_eq1:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   981
     "[| x \<in> HFinite;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   982
         isLub Reals {s. s \<in> Reals & s < x} t;
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   983
         r \<in> Reals; 0 < r |]
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   984
      ==> x + -t \<noteq> r"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   985
apply auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   986
apply (frule isLubD1a [THEN SReal_minus])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   987
apply (drule SReal_add_cancel, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   988
apply (drule_tac x = x in lemma_SReal_lub)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   989
apply (drule hypreal_isLub_unique, assumption, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   990
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   991
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   992
lemma lemma_st_part_not_eq2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
   993
     "[| x \<in> HFinite;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   994
         isLub Reals {s. s \<in> Reals & s < x} t;
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   995
         r \<in> Reals; 0 < r |]
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   996
      ==> -(x + -t) \<noteq> r"
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
   997
apply (auto)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   998
apply (frule isLubD1a)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
   999
apply (drule SReal_add_cancel, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1000
apply (drule_tac x = "-x" in SReal_minus, simp)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1001
apply (drule_tac x = x in lemma_SReal_lub)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1002
apply (drule hypreal_isLub_unique, assumption, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1003
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1004
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1005
lemma lemma_st_part_major:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1006
     "[| x \<in> HFinite;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1007
         isLub Reals {s. s \<in> Reals & s < x} t;
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1008
         r \<in> Reals; 0 < r |]
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1009
      ==> abs (x + -t) < r"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1010
apply (frule lemma_st_part1a)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1011
apply (frule_tac [4] lemma_st_part2a, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1012
apply (drule order_le_imp_less_or_eq)+
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1013
apply (auto dest: lemma_st_part_not_eq1 lemma_st_part_not_eq2 simp add: abs_less_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1014
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1015
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1016
lemma lemma_st_part_major2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1017
     "[| x \<in> HFinite; isLub Reals {s. s \<in> Reals & s < x} t |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1018
      ==> \<forall>r \<in> Reals. 0 < r --> abs (x + -t) < r"
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1019
by (blast dest!: lemma_st_part_major)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1020
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1021
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1022
text{*Existence of real and Standard Part Theorem*}
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1023
lemma lemma_st_part_Ex:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1024
     "x \<in> HFinite ==> \<exists>t \<in> Reals. \<forall>r \<in> Reals. 0 < r --> abs (x + -t) < r"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1025
apply (frule lemma_st_part_lub, safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1026
apply (frule isLubD1a)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1027
apply (blast dest: lemma_st_part_major2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1028
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1029
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1030
lemma st_part_Ex:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1031
     "x \<in> HFinite ==> \<exists>t \<in> Reals. x @= t"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1032
apply (simp add: approx_def Infinitesimal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1033
apply (drule lemma_st_part_Ex, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1034
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1035
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1036
text{*There is a unique real infinitely close*}
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1037
lemma st_part_Ex1: "x \<in> HFinite ==> EX! t. t \<in> Reals & x @= t"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1038
apply (drule st_part_Ex, safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1039
apply (drule_tac [2] approx_sym, drule_tac [2] approx_sym, drule_tac [2] approx_sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1040
apply (auto intro!: approx_unique_real)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1041
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1042
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1043
subsection{* Finite, Infinite and Infinitesimal*}
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1044
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1045
lemma HFinite_Int_HInfinite_empty [simp]: "HFinite Int HInfinite = {}"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1046
apply (simp add: HFinite_def HInfinite_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1047
apply (auto dest: order_less_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1048
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1049
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1050
lemma HFinite_not_HInfinite: 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1051
  assumes x: "x \<in> HFinite" shows "x \<notin> HInfinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1052
proof
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1053
  assume x': "x \<in> HInfinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1054
  with x have "x \<in> HFinite \<inter> HInfinite" by blast
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1055
  thus False by auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1056
qed
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1057
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1058
lemma not_HFinite_HInfinite: "x\<notin> HFinite ==> x \<in> HInfinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1059
apply (simp add: HInfinite_def HFinite_def, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1060
apply (drule_tac x = "r + 1" in bspec)
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
  1061
apply (auto)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1062
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1063
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1064
lemma HInfinite_HFinite_disj: "x \<in> HInfinite | x \<in> HFinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1065
by (blast intro: not_HFinite_HInfinite)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1066
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1067
lemma HInfinite_HFinite_iff: "(x \<in> HInfinite) = (x \<notin> HFinite)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1068
by (blast dest: HFinite_not_HInfinite not_HFinite_HInfinite)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1069
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1070
lemma HFinite_HInfinite_iff: "(x \<in> HFinite) = (x \<notin> HInfinite)"
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1071
by (simp add: HInfinite_HFinite_iff)
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1072
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1073
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1074
lemma HInfinite_diff_HFinite_Infinitesimal_disj:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1075
     "x \<notin> Infinitesimal ==> x \<in> HInfinite | x \<in> HFinite - Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1076
by (fast intro: not_HFinite_HInfinite)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1077
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1078
lemma HFinite_inverse:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1079
     "[| x \<in> HFinite; x \<notin> Infinitesimal |] ==> inverse x \<in> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1080
apply (cut_tac x = "inverse x" in HInfinite_HFinite_disj)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1081
apply (auto dest!: HInfinite_inverse_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1082
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1083
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1084
lemma HFinite_inverse2: "x \<in> HFinite - Infinitesimal ==> inverse x \<in> HFinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1085
by (blast intro: HFinite_inverse)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1086
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1087
(* stronger statement possible in fact *)
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1088
lemma Infinitesimal_inverse_HFinite:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1089
     "x \<notin> Infinitesimal ==> inverse(x) \<in> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1090
apply (drule HInfinite_diff_HFinite_Infinitesimal_disj)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1091
apply (blast intro: HFinite_inverse HInfinite_inverse_Infinitesimal Infinitesimal_subset_HFinite [THEN subsetD])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1092
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1093
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1094
lemma HFinite_not_Infinitesimal_inverse:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1095
     "x \<in> HFinite - Infinitesimal ==> inverse x \<in> HFinite - Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1096
apply (auto intro: Infinitesimal_inverse_HFinite)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1097
apply (drule Infinitesimal_HFinite_mult2, assumption)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1098
apply (simp add: not_Infinitesimal_not_zero right_inverse)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1099
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1100
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1101
lemma approx_inverse:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1102
     "[| x @= y; y \<in>  HFinite - Infinitesimal |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1103
      ==> inverse x @= inverse y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1104
apply (frule HFinite_diff_Infinitesimal_approx, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1105
apply (frule not_Infinitesimal_not_zero2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1106
apply (frule_tac x = x in not_Infinitesimal_not_zero2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1107
apply (drule HFinite_inverse2)+
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1108
apply (drule approx_mult2, assumption, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1109
apply (drule_tac c = "inverse x" in approx_mult1, assumption)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1110
apply (auto intro: approx_sym simp add: mult_assoc)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1111
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1112
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1113
(*Used for NSLIM_inverse, NSLIMSEQ_inverse*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1114
lemmas hypreal_of_real_approx_inverse =  hypreal_of_real_HFinite_diff_Infinitesimal [THEN [2] approx_inverse]
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1115
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1116
lemma inverse_add_Infinitesimal_approx:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1117
     "[| x \<in> HFinite - Infinitesimal;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1118
         h \<in> Infinitesimal |] ==> inverse(x + h) @= inverse x"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1119
apply (auto intro: approx_inverse approx_sym Infinitesimal_add_approx_self)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1120
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1121
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1122
lemma inverse_add_Infinitesimal_approx2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1123
     "[| x \<in> HFinite - Infinitesimal;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1124
         h \<in> Infinitesimal |] ==> inverse(h + x) @= inverse x"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1125
apply (rule add_commute [THEN subst])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1126
apply (blast intro: inverse_add_Infinitesimal_approx)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1127
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1128
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1129
lemma inverse_add_Infinitesimal_approx_Infinitesimal:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1130
     "[| x \<in> HFinite - Infinitesimal;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1131
         h \<in> Infinitesimal |] ==> inverse(x + h) + -inverse x @= h"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1132
apply (rule approx_trans2)
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1133
apply (auto intro: inverse_add_Infinitesimal_approx 
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1134
            simp add: mem_infmal_iff approx_minus_iff [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1135
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1136
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1137
lemma Infinitesimal_square_iff: "(x \<in> Infinitesimal) = (x*x \<in> Infinitesimal)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1138
apply (auto intro: Infinitesimal_mult)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1139
apply (rule ccontr, frule Infinitesimal_inverse_HFinite)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1140
apply (frule not_Infinitesimal_not_zero)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1141
apply (auto dest: Infinitesimal_HFinite_mult simp add: mult_assoc)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1142
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1143
declare Infinitesimal_square_iff [symmetric, simp]
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1144
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1145
lemma HFinite_square_iff [simp]: "(x*x \<in> HFinite) = (x \<in> HFinite)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1146
apply (auto intro: HFinite_mult)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1147
apply (auto dest: HInfinite_mult simp add: HFinite_HInfinite_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1148
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1149
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1150
lemma HInfinite_square_iff [simp]: "(x*x \<in> HInfinite) = (x \<in> HInfinite)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1151
by (auto simp add: HInfinite_HFinite_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1152
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1153
lemma approx_HFinite_mult_cancel:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1154
     "[| a: HFinite-Infinitesimal; a* w @= a*z |] ==> w @= z"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1155
apply safe
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1156
apply (frule HFinite_inverse, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1157
apply (drule not_Infinitesimal_not_zero)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1158
apply (auto dest: approx_mult2 simp add: mult_assoc [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1159
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1160
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1161
lemma approx_HFinite_mult_cancel_iff1:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1162
     "a: HFinite-Infinitesimal ==> (a * w @= a * z) = (w @= z)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1163
by (auto intro: approx_mult2 approx_HFinite_mult_cancel)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1164
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1165
lemma HInfinite_HFinite_add_cancel:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1166
     "[| x + y \<in> HInfinite; y \<in> HFinite |] ==> x \<in> HInfinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1167
apply (rule ccontr)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1168
apply (drule HFinite_HInfinite_iff [THEN iffD2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1169
apply (auto dest: HFinite_add simp add: HInfinite_HFinite_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1170
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1171
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1172
lemma HInfinite_HFinite_add:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1173
     "[| x \<in> HInfinite; y \<in> HFinite |] ==> x + y \<in> HInfinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1174
apply (rule_tac y = "-y" in HInfinite_HFinite_add_cancel)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1175
apply (auto simp add: add_assoc HFinite_minus_iff)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1176
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1177
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1178
lemma HInfinite_ge_HInfinite:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1179
     "[| x \<in> HInfinite; x \<le> y; 0 \<le> x |] ==> y \<in> HInfinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1180
by (auto intro: HFinite_bounded simp add: HInfinite_HFinite_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1181
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1182
lemma Infinitesimal_inverse_HInfinite:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1183
     "[| x \<in> Infinitesimal; x \<noteq> 0 |] ==> inverse x \<in> HInfinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1184
apply (rule ccontr, drule HFinite_HInfinite_iff [THEN iffD2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1185
apply (auto dest: Infinitesimal_HFinite_mult2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1186
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1187
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1188
lemma HInfinite_HFinite_not_Infinitesimal_mult:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1189
     "[| x \<in> HInfinite; y \<in> HFinite - Infinitesimal |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1190
      ==> x * y \<in> HInfinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1191
apply (rule ccontr, drule HFinite_HInfinite_iff [THEN iffD2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1192
apply (frule HFinite_Infinitesimal_not_zero)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1193
apply (drule HFinite_not_Infinitesimal_inverse)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1194
apply (safe, drule HFinite_mult)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1195
apply (auto simp add: mult_assoc HFinite_HInfinite_iff)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1196
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1197
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1198
lemma HInfinite_HFinite_not_Infinitesimal_mult2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1199
     "[| x \<in> HInfinite; y \<in> HFinite - Infinitesimal |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1200
      ==> y * x \<in> HInfinite"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1201
by (auto simp add: mult_commute HInfinite_HFinite_not_Infinitesimal_mult)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1202
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1203
lemma HInfinite_gt_SReal: "[| x \<in> HInfinite; 0 < x; y \<in> Reals |] ==> y < x"
15003
6145dd7538d7 replaced monomorphic abs definitions by abs_if
paulson
parents: 14653
diff changeset
  1204
by (auto dest!: bspec simp add: HInfinite_def abs_if order_less_imp_le)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1205
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1206
lemma HInfinite_gt_zero_gt_one: "[| x \<in> HInfinite; 0 < x |] ==> 1 < x"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1207
by (auto intro: HInfinite_gt_SReal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1208
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1209
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1210
lemma not_HInfinite_one [simp]: "1 \<notin> HInfinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1211
apply (simp (no_asm) add: HInfinite_HFinite_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1212
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1213
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1214
lemma approx_hrabs_disj: "abs x @= x | abs x @= -x"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1215
by (cut_tac x = x in hrabs_disj, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1216
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1217
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1218
subsection{*Theorems about Monads*}
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1219
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1220
lemma monad_hrabs_Un_subset: "monad (abs x) \<le> monad(x) Un monad(-x)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1221
by (rule_tac x1 = x in hrabs_disj [THEN disjE], auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1222
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1223
lemma Infinitesimal_monad_eq: "e \<in> Infinitesimal ==> monad (x+e) = monad x"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1224
by (fast intro!: Infinitesimal_add_approx_self [THEN approx_sym] approx_monad_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1225
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1226
lemma mem_monad_iff: "(u \<in> monad x) = (-u \<in> monad (-x))"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1227
by (simp add: monad_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1228
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1229
lemma Infinitesimal_monad_zero_iff: "(x \<in> Infinitesimal) = (x \<in> monad 0)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1230
by (auto intro: approx_sym simp add: monad_def mem_infmal_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1231
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1232
lemma monad_zero_minus_iff: "(x \<in> monad 0) = (-x \<in> monad 0)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1233
apply (simp (no_asm) add: Infinitesimal_monad_zero_iff [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1234
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1235
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1236
lemma monad_zero_hrabs_iff: "(x \<in> monad 0) = (abs x \<in> monad 0)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1237
apply (rule_tac x1 = x in hrabs_disj [THEN disjE])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1238
apply (auto simp add: monad_zero_minus_iff [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1239
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1240
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1241
lemma mem_monad_self [simp]: "x \<in> monad x"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1242
by (simp add: monad_def)
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1243
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1244
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1245
subsection{*Proof that @{term "x @= y"} implies @{term"\<bar>x\<bar> @= \<bar>y\<bar>"}*}
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1246
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1247
lemma approx_subset_monad: "x @= y ==> {x,y} \<le> monad x"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1248
apply (simp (no_asm))
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1249
apply (simp add: approx_monad_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1250
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1251
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1252
lemma approx_subset_monad2: "x @= y ==> {x,y} \<le> monad y"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1253
apply (drule approx_sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1254
apply (fast dest: approx_subset_monad)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1255
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1256
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1257
lemma mem_monad_approx: "u \<in> monad x ==> x @= u"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1258
by (simp add: monad_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1259
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1260
lemma approx_mem_monad: "x @= u ==> u \<in> monad x"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1261
by (simp add: monad_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1262
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1263
lemma approx_mem_monad2: "x @= u ==> x \<in> monad u"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1264
apply (simp add: monad_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1265
apply (blast intro!: approx_sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1266
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1267
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1268
lemma approx_mem_monad_zero: "[| x @= y;x \<in> monad 0 |] ==> y \<in> monad 0"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1269
apply (drule mem_monad_approx)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1270
apply (fast intro: approx_mem_monad approx_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1271
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1272
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1273
lemma Infinitesimal_approx_hrabs:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1274
     "[| x @= y; x \<in> Infinitesimal |] ==> abs x @= abs y"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1275
apply (drule Infinitesimal_monad_zero_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1276
apply (blast intro: approx_mem_monad_zero monad_zero_hrabs_iff [THEN iffD1] mem_monad_approx approx_trans3)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1277
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1278
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1279
lemma less_Infinitesimal_less:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1280
     "[| 0 < x;  x \<notin>Infinitesimal;  e :Infinitesimal |] ==> e < x"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1281
apply (rule ccontr)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1282
apply (auto intro: Infinitesimal_zero [THEN [2] Infinitesimal_interval] 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1283
            dest!: order_le_imp_less_or_eq simp add: linorder_not_less)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1284
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1285
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1286
lemma Ball_mem_monad_gt_zero:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1287
     "[| 0 < x;  x \<notin> Infinitesimal; u \<in> monad x |] ==> 0 < u"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1288
apply (drule mem_monad_approx [THEN approx_sym])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1289
apply (erule bex_Infinitesimal_iff2 [THEN iffD2, THEN bexE])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1290
apply (drule_tac e = "-xa" in less_Infinitesimal_less, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1291
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1292
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1293
lemma Ball_mem_monad_less_zero:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1294
     "[| x < 0; x \<notin> Infinitesimal; u \<in> monad x |] ==> u < 0"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1295
apply (drule mem_monad_approx [THEN approx_sym])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1296
apply (erule bex_Infinitesimal_iff [THEN iffD2, THEN bexE])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1297
apply (cut_tac x = "-x" and e = xa in less_Infinitesimal_less, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1298
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1299
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1300
lemma lemma_approx_gt_zero:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1301
     "[|0 < x; x \<notin> Infinitesimal; x @= y|] ==> 0 < y"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1302
by (blast dest: Ball_mem_monad_gt_zero approx_subset_monad)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1303
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1304
lemma lemma_approx_less_zero:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1305
     "[|x < 0; x \<notin> Infinitesimal; x @= y|] ==> y < 0"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1306
by (blast dest: Ball_mem_monad_less_zero approx_subset_monad)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1307
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1308
theorem approx_hrabs: "x @= y ==> abs x @= abs y"
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1309
apply (case_tac "x \<in> Infinitesimal") 
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1310
apply (simp add: Infinitesimal_approx_hrabs)
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1311
apply (rule linorder_cases [of 0 x])  
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1312
apply (frule lemma_approx_gt_zero [of x y]) 
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 15539
diff changeset
  1313
apply (auto simp add: lemma_approx_less_zero [of x y] abs_of_neg)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1314
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1315
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1316
lemma approx_hrabs_zero_cancel: "abs(x) @= 0 ==> x @= 0"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1317
apply (cut_tac x = x in hrabs_disj)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1318
apply (auto dest: approx_minus)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1319
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1320
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1321
lemma approx_hrabs_add_Infinitesimal: "e \<in> Infinitesimal ==> abs x @= abs(x+e)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1322
by (fast intro: approx_hrabs Infinitesimal_add_approx_self)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1323
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1324
lemma approx_hrabs_add_minus_Infinitesimal:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1325
     "e \<in> Infinitesimal ==> abs x @= abs(x + -e)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1326
by (fast intro: approx_hrabs Infinitesimal_add_minus_approx_self)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1327
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1328
lemma hrabs_add_Infinitesimal_cancel:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1329
     "[| e \<in> Infinitesimal; e' \<in> Infinitesimal;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1330
         abs(x+e) = abs(y+e')|] ==> abs x @= abs y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1331
apply (drule_tac x = x in approx_hrabs_add_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1332
apply (drule_tac x = y in approx_hrabs_add_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1333
apply (auto intro: approx_trans2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1334
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1335
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1336
lemma hrabs_add_minus_Infinitesimal_cancel:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1337
     "[| e \<in> Infinitesimal; e' \<in> Infinitesimal;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1338
         abs(x + -e) = abs(y + -e')|] ==> abs x @= abs y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1339
apply (drule_tac x = x in approx_hrabs_add_minus_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1340
apply (drule_tac x = y in approx_hrabs_add_minus_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1341
apply (auto intro: approx_trans2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1342
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1343
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1344
(* interesting slightly counterintuitive theorem: necessary
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1345
   for proving that an open interval is an NS open set
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1346
*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1347
lemma Infinitesimal_add_hypreal_of_real_less:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1348
     "[| x < y;  u \<in> Infinitesimal |]
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1349
      ==> hypreal_of_real x + u < hypreal_of_real y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1350
apply (simp add: Infinitesimal_def)
17431
70311ad8bf11 fix names in hypreal_arith.ML
huffman
parents: 17429
diff changeset
  1351
apply (drule_tac x = "hypreal_of_real y + -hypreal_of_real x" in bspec, simp)
70311ad8bf11 fix names in hypreal_arith.ML
huffman
parents: 17429
diff changeset
  1352
apply (simp add: abs_less_iff)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1353
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1354
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14378
diff changeset
  1355
lemma Infinitesimal_add_hrabs_hypreal_of_real_less:
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14378
diff changeset
  1356
     "[| x \<in> Infinitesimal; abs(hypreal_of_real r) < hypreal_of_real y |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1357
      ==> abs (hypreal_of_real r + x) < hypreal_of_real y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1358
apply (drule_tac x = "hypreal_of_real r" in approx_hrabs_add_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1359
apply (drule approx_sym [THEN bex_Infinitesimal_iff2 [THEN iffD2]])
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1360
apply (auto intro!: Infinitesimal_add_hypreal_of_real_less
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1361
            simp del: star_of_abs
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1362
            simp add: hypreal_of_real_hrabs)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1363
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1364
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1365
lemma Infinitesimal_add_hrabs_hypreal_of_real_less2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1366
     "[| x \<in> Infinitesimal;  abs(hypreal_of_real r) < hypreal_of_real y |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1367
      ==> abs (x + hypreal_of_real r) < hypreal_of_real y"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1368
apply (rule add_commute [THEN subst])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1369
apply (erule Infinitesimal_add_hrabs_hypreal_of_real_less, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1370
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1371
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1372
lemma hypreal_of_real_le_add_Infininitesimal_cancel:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1373
     "[| u \<in> Infinitesimal; v \<in> Infinitesimal;
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1374
         hypreal_of_real x + u \<le> hypreal_of_real y + v |]
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1375
      ==> hypreal_of_real x \<le> hypreal_of_real y"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1376
apply (simp add: linorder_not_less [symmetric], auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1377
apply (drule_tac u = "v-u" in Infinitesimal_add_hypreal_of_real_less)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1378
apply (auto simp add: Infinitesimal_diff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1379
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1380
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1381
lemma hypreal_of_real_le_add_Infininitesimal_cancel2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1382
     "[| u \<in> Infinitesimal; v \<in> Infinitesimal;
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1383
         hypreal_of_real x + u \<le> hypreal_of_real y + v |]
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1384
      ==> x \<le> y"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1385
by (blast intro: star_of_le [THEN iffD1] 
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1386
          intro!: hypreal_of_real_le_add_Infininitesimal_cancel)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1387
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1388
lemma hypreal_of_real_less_Infinitesimal_le_zero:
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1389
    "[| hypreal_of_real x < e; e \<in> Infinitesimal |] ==> hypreal_of_real x \<le> 0"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1390
apply (rule linorder_not_less [THEN iffD1], safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1391
apply (drule Infinitesimal_interval)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1392
apply (drule_tac [4] SReal_hypreal_of_real [THEN SReal_Infinitesimal_zero], auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1393
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1394
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1395
(*used once, in Lim/NSDERIV_inverse*)
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1396
lemma Infinitesimal_add_not_zero:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1397
     "[| h \<in> Infinitesimal; x \<noteq> 0 |] ==> hypreal_of_real x + h \<noteq> 0"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1398
apply auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1399
apply (subgoal_tac "h = - hypreal_of_real x", auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1400
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1401
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1402
lemma Infinitesimal_square_cancel [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1403
     "x*x + y*y \<in> Infinitesimal ==> x*x \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1404
apply (rule Infinitesimal_interval2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1405
apply (rule_tac [3] zero_le_square, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1406
apply (auto simp add: zero_le_square)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1407
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1408
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1409
lemma HFinite_square_cancel [simp]: "x*x + y*y \<in> HFinite ==> x*x \<in> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1410
apply (rule HFinite_bounded, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1411
apply (auto simp add: zero_le_square)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1412
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1413
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1414
lemma Infinitesimal_square_cancel2 [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1415
     "x*x + y*y \<in> Infinitesimal ==> y*y \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1416
apply (rule Infinitesimal_square_cancel)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1417
apply (rule add_commute [THEN subst])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1418
apply (simp (no_asm))
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1419
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1420
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1421
lemma HFinite_square_cancel2 [simp]: "x*x + y*y \<in> HFinite ==> y*y \<in> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1422
apply (rule HFinite_square_cancel)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1423
apply (rule add_commute [THEN subst])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1424
apply (simp (no_asm))
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1425
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1426
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1427
lemma Infinitesimal_sum_square_cancel [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1428
     "x*x + y*y + z*z \<in> Infinitesimal ==> x*x \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1429
apply (rule Infinitesimal_interval2, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1430
apply (rule_tac [2] zero_le_square, simp)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1431
apply (insert zero_le_square [of y]) 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1432
apply (insert zero_le_square [of z], simp)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1433
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1434
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1435
lemma HFinite_sum_square_cancel [simp]:
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1436
     "x*x + y*y + z*z \<in> HFinite ==> x*x \<in> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1437
apply (rule HFinite_bounded, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1438
apply (rule_tac [2] zero_le_square)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1439
apply (insert zero_le_square [of y]) 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1440
apply (insert zero_le_square [of z], simp)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1441
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1442
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1443
lemma Infinitesimal_sum_square_cancel2 [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1444
     "y*y + x*x + z*z \<in> Infinitesimal ==> x*x \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1445
apply (rule Infinitesimal_sum_square_cancel)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1446
apply (simp add: add_ac)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1447
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1448
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1449
lemma HFinite_sum_square_cancel2 [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1450
     "y*y + x*x + z*z \<in> HFinite ==> x*x \<in> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1451
apply (rule HFinite_sum_square_cancel)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1452
apply (simp add: add_ac)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1453
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1454
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1455
lemma Infinitesimal_sum_square_cancel3 [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1456
     "z*z + y*y + x*x \<in> Infinitesimal ==> x*x \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1457
apply (rule Infinitesimal_sum_square_cancel)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1458
apply (simp add: add_ac)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1459
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1460
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1461
lemma HFinite_sum_square_cancel3 [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1462
     "z*z + y*y + x*x \<in> HFinite ==> x*x \<in> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1463
apply (rule HFinite_sum_square_cancel)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1464
apply (simp add: add_ac)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1465
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1466
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1467
lemma monad_hrabs_less:
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1468
     "[| y \<in> monad x; 0 < hypreal_of_real e |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1469
      ==> abs (y + -x) < hypreal_of_real e"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1470
apply (drule mem_monad_approx [THEN approx_sym])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1471
apply (drule bex_Infinitesimal_iff [THEN iffD2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1472
apply (auto dest!: InfinitesimalD)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1473
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1474
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1475
lemma mem_monad_SReal_HFinite:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1476
     "x \<in> monad (hypreal_of_real  a) ==> x \<in> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1477
apply (drule mem_monad_approx [THEN approx_sym])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1478
apply (drule bex_Infinitesimal_iff2 [THEN iffD2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1479
apply (safe dest!: Infinitesimal_subset_HFinite [THEN subsetD])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1480
apply (erule SReal_hypreal_of_real [THEN SReal_subset_HFinite [THEN subsetD], THEN HFinite_add])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1481
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1482
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1483
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1484
subsection{* Theorems about Standard Part*}
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1485
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1486
lemma st_approx_self: "x \<in> HFinite ==> st x @= x"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1487
apply (simp add: st_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1488
apply (frule st_part_Ex, safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1489
apply (rule someI2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1490
apply (auto intro: approx_sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1491
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1492
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1493
lemma st_SReal: "x \<in> HFinite ==> st x \<in> Reals"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1494
apply (simp add: st_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1495
apply (frule st_part_Ex, safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1496
apply (rule someI2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1497
apply (auto intro: approx_sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1498
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1499
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1500
lemma st_HFinite: "x \<in> HFinite ==> st x \<in> HFinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1501
by (erule st_SReal [THEN SReal_subset_HFinite [THEN subsetD]])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1502
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1503
lemma st_SReal_eq: "x \<in> Reals ==> st x = x"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1504
apply (simp add: st_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1505
apply (rule some_equality)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1506
apply (fast intro: SReal_subset_HFinite [THEN subsetD])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1507
apply (blast dest: SReal_approx_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1508
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1509
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1510
lemma st_hypreal_of_real [simp]: "st (hypreal_of_real x) = hypreal_of_real x"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1511
by (rule SReal_hypreal_of_real [THEN st_SReal_eq])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1512
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1513
lemma st_eq_approx: "[| x \<in> HFinite; y \<in> HFinite; st x = st y |] ==> x @= y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1514
by (auto dest!: st_approx_self elim!: approx_trans3)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1515
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1516
lemma approx_st_eq: 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1517
  assumes "x \<in> HFinite" and "y \<in> HFinite" and "x @= y" 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1518
  shows "st x = st y"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1519
proof -
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1520
  have "st x @= x" "st y @= y" "st x \<in> Reals" "st y \<in> Reals"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1521
    by (simp_all add: st_approx_self st_SReal prems) 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1522
  with prems show ?thesis 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1523
    by (fast elim: approx_trans approx_trans2 SReal_approx_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1524
qed
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1525
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1526
lemma st_eq_approx_iff:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1527
     "[| x \<in> HFinite; y \<in> HFinite|]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1528
                   ==> (x @= y) = (st x = st y)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1529
by (blast intro: approx_st_eq st_eq_approx)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1530
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1531
lemma st_Infinitesimal_add_SReal:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1532
     "[| x \<in> Reals; e \<in> Infinitesimal |] ==> st(x + e) = x"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1533
apply (frule st_SReal_eq [THEN subst])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1534
prefer 2 apply assumption
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1535
apply (frule SReal_subset_HFinite [THEN subsetD])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1536
apply (frule Infinitesimal_subset_HFinite [THEN subsetD])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1537
apply (drule st_SReal_eq)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1538
apply (rule approx_st_eq)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1539
apply (auto intro: HFinite_add simp add: Infinitesimal_add_approx_self [THEN approx_sym])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1540
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1541
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1542
lemma st_Infinitesimal_add_SReal2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1543
     "[| x \<in> Reals; e \<in> Infinitesimal |] ==> st(e + x) = x"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1544
apply (rule add_commute [THEN subst])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1545
apply (blast intro!: st_Infinitesimal_add_SReal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1546
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1547
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1548
lemma HFinite_st_Infinitesimal_add:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1549
     "x \<in> HFinite ==> \<exists>e \<in> Infinitesimal. x = st(x) + e"
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1550
by (blast dest!: st_approx_self [THEN approx_sym] bex_Infinitesimal_iff2 [THEN iffD2])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1551
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1552
lemma st_add: 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1553
  assumes x: "x \<in> HFinite" and y: "y \<in> HFinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1554
  shows "st (x + y) = st(x) + st(y)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1555
proof -
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1556
  from HFinite_st_Infinitesimal_add [OF x]
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1557
  obtain ex where ex: "ex \<in> Infinitesimal" "st x + ex = x" 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1558
    by (blast intro: sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1559
  from HFinite_st_Infinitesimal_add [OF y]
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1560
  obtain ey where ey: "ey \<in> Infinitesimal" "st y + ey = y" 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1561
    by (blast intro: sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1562
  have "st (x + y) = st ((st x + ex) + (st y + ey))"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1563
    by (simp add: ex ey) 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1564
  also have "... = st ((ex + ey) + (st x + st y))" by (simp add: add_ac)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1565
  also have "... = st x + st y" 
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
  1566
    by (simp add: prems st_SReal Infinitesimal_add 
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1567
                  st_Infinitesimal_add_SReal2) 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1568
  finally show ?thesis .
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1569
qed
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1570
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1571
lemma st_number_of [simp]: "st (number_of w) = number_of w"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1572
by (rule SReal_number_of [THEN st_SReal_eq])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1573
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1574
(*the theorem above for the special cases of zero and one*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1575
lemma [simp]: "st 0 = 0" "st 1 = 1"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1576
by (simp_all add: st_SReal_eq)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1577
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1578
lemma st_minus: assumes "y \<in> HFinite" shows "st(-y) = -st(y)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1579
proof -
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1580
  have "st (- y) + st y = 0"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1581
   by (simp add: prems st_add [symmetric] HFinite_minus_iff) 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1582
  thus ?thesis by arith
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1583
qed
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1584
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1585
lemma st_diff: "[| x \<in> HFinite; y \<in> HFinite |] ==> st (x-y) = st(x) - st(y)"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1586
apply (simp add: diff_def)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1587
apply (frule_tac y1 = y in st_minus [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1588
apply (drule_tac x1 = y in HFinite_minus_iff [THEN iffD2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1589
apply (simp (no_asm_simp) add: st_add)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1590
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1591
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1592
lemma lemma_st_mult:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1593
     "[| x \<in> HFinite; y \<in> HFinite; e \<in> Infinitesimal; ea \<in> Infinitesimal |]
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1594
      ==> e*y + x*ea + e*ea \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1595
apply (frule_tac x = e and y = y in Infinitesimal_HFinite_mult)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1596
apply (frule_tac [2] x = ea and y = x in Infinitesimal_HFinite_mult)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1597
apply (drule_tac [3] Infinitesimal_mult)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1598
apply (auto intro: Infinitesimal_add simp add: add_ac mult_ac)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1599
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1600
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1601
lemma st_mult: "[| x \<in> HFinite; y \<in> HFinite |] ==> st (x * y) = st(x) * st(y)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1602
apply (frule HFinite_st_Infinitesimal_add)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1603
apply (frule_tac x = y in HFinite_st_Infinitesimal_add, safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1604
apply (subgoal_tac "st (x * y) = st ((st x + e) * (st y + ea))")
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1605
apply (drule_tac [2] sym, drule_tac [2] sym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1606
 prefer 2 apply simp 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1607
apply (erule_tac V = "x = st x + e" in thin_rl)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1608
apply (erule_tac V = "y = st y + ea" in thin_rl)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1609
apply (simp add: left_distrib right_distrib)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1610
apply (drule st_SReal)+
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1611
apply (simp (no_asm_use) add: add_assoc)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1612
apply (rule st_Infinitesimal_add_SReal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1613
apply (blast intro!: SReal_mult)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1614
apply (drule SReal_subset_HFinite [THEN subsetD])+
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1615
apply (rule add_assoc [THEN subst])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1616
apply (blast intro!: lemma_st_mult)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1617
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1618
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1619
lemma st_Infinitesimal: "x \<in> Infinitesimal ==> st x = 0"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14378
diff changeset
  1620
apply (subst numeral_0_eq_0 [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1621
apply (rule st_number_of [THEN subst])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1622
apply (rule approx_st_eq)
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1623
apply (auto intro: Infinitesimal_subset_HFinite [THEN subsetD]
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1624
            simp add: mem_infmal_iff [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1625
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1626
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1627
lemma st_not_Infinitesimal: "st(x) \<noteq> 0 ==> x \<notin> Infinitesimal"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1628
by (fast intro: st_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1629
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1630
lemma st_inverse:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1631
     "[| x \<in> HFinite; st x \<noteq> 0 |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1632
      ==> st(inverse x) = inverse (st x)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1633
apply (rule_tac c1 = "st x" in hypreal_mult_left_cancel [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1634
apply (auto simp add: st_mult [symmetric] st_not_Infinitesimal HFinite_inverse)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1635
apply (subst right_inverse, auto)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1636
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1637
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1638
lemma st_divide [simp]:
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1639
     "[| x \<in> HFinite; y \<in> HFinite; st y \<noteq> 0 |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1640
      ==> st(x/y) = (st x) / (st y)"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1641
by (simp add: divide_inverse st_mult st_not_Infinitesimal HFinite_inverse st_inverse)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1642
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1643
lemma st_idempotent [simp]: "x \<in> HFinite ==> st(st(x)) = st(x)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1644
by (blast intro: st_HFinite st_approx_self approx_st_eq)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1645
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1646
lemma Infinitesimal_add_st_less:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1647
     "[| x \<in> HFinite; y \<in> HFinite; u \<in> Infinitesimal; st x < st y |] 
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1648
      ==> st x + u < st y"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1649
apply (drule st_SReal)+
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1650
apply (auto intro!: Infinitesimal_add_hypreal_of_real_less simp add: SReal_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1651
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1652
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1653
lemma Infinitesimal_add_st_le_cancel:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1654
     "[| x \<in> HFinite; y \<in> HFinite;
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1655
         u \<in> Infinitesimal; st x \<le> st y + u
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1656
      |] ==> st x \<le> st y"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1657
apply (simp add: linorder_not_less [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1658
apply (auto dest: Infinitesimal_add_st_less)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1659
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1660
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1661
lemma st_le: "[| x \<in> HFinite; y \<in> HFinite; x \<le> y |] ==> st(x) \<le> st(y)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1662
apply (frule HFinite_st_Infinitesimal_add)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1663
apply (rotate_tac 1)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1664
apply (frule HFinite_st_Infinitesimal_add, safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1665
apply (rule Infinitesimal_add_st_le_cancel)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1666
apply (rule_tac [3] x = ea and y = e in Infinitesimal_diff)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1667
apply (auto simp add: add_assoc [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1668
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1669
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1670
lemma st_zero_le: "[| 0 \<le> x;  x \<in> HFinite |] ==> 0 \<le> st x"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14378
diff changeset
  1671
apply (subst numeral_0_eq_0 [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1672
apply (rule st_number_of [THEN subst])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1673
apply (rule st_le, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1674
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1675
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1676
lemma st_zero_ge: "[| x \<le> 0;  x \<in> HFinite |] ==> st x \<le> 0"
14387
e96d5c42c4b0 Polymorphic treatment of binary arithmetic using axclasses
paulson
parents: 14378
diff changeset
  1677
apply (subst numeral_0_eq_0 [symmetric])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1678
apply (rule st_number_of [THEN subst])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1679
apply (rule st_le, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1680
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1681
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1682
lemma st_hrabs: "x \<in> HFinite ==> abs(st x) = st(abs x)"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1683
apply (simp add: linorder_not_le st_zero_le abs_if st_minus
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1684
   linorder_not_less)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1685
apply (auto dest!: st_zero_ge [OF order_less_imp_le]) 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1686
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1687
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1688
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1689
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1690
subsection{*Alternative Definitions for @{term HFinite} using Free Ultrafilter*}
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1691
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1692
lemma FreeUltrafilterNat_Rep_hypreal:
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1693
     "[| X \<in> Rep_star x; Y \<in> Rep_star x |]
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1694
      ==> {n. X n = Y n} \<in> FreeUltrafilterNat"
17429
e8d6ed3aacfe merged Transfer.thy and StarType.thy into StarDef.thy; renamed Ifun2_of to starfun2; cleaned up
huffman
parents: 17318
diff changeset
  1695
by (cases x, unfold star_n_def, auto, ultra)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1696
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1697
lemma HFinite_FreeUltrafilterNat:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1698
    "x \<in> HFinite 
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1699
     ==> \<exists>X \<in> Rep_star x. \<exists>u. {n. abs (X n) < u} \<in> FreeUltrafilterNat"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1700
apply (cases x)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1701
apply (auto simp add: HFinite_def abs_less_iff minus_less_iff [of x] 
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1702
              star_of_def
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1703
              star_n_less SReal_iff star_n_minus)
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1704
apply (rule_tac x=X in bexI)
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1705
apply (rule_tac x=y in exI, ultra)
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1706
apply simp
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1707
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1708
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1709
lemma FreeUltrafilterNat_HFinite:
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1710
     "\<exists>X \<in> Rep_star x.
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1711
       \<exists>u. {n. abs (X n) < u} \<in> FreeUltrafilterNat
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1712
       ==>  x \<in> HFinite"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1713
apply (cases x)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1714
apply (auto simp add: HFinite_def abs_less_iff minus_less_iff [of x])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1715
apply (rule_tac x = "hypreal_of_real u" in bexI)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1716
apply (auto simp add: star_n_less SReal_iff star_n_minus star_of_def)
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1717
apply ultra+
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1718
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1719
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1720
lemma HFinite_FreeUltrafilterNat_iff:
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1721
     "(x \<in> HFinite) = (\<exists>X \<in> Rep_star x.
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1722
           \<exists>u. {n. abs (X n) < u} \<in> FreeUltrafilterNat)"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1723
by (blast intro!: HFinite_FreeUltrafilterNat FreeUltrafilterNat_HFinite)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1724
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1725
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1726
subsection{*Alternative Definitions for @{term HInfinite} using Free Ultrafilter*}
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1727
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1728
lemma lemma_Compl_eq: "- {n. (u::real) < abs (xa n)} = {n. abs (xa n) \<le> u}"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1729
by auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1730
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1731
lemma lemma_Compl_eq2: "- {n. abs (xa n) < (u::real)} = {n. u \<le> abs (xa n)}"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1732
by auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1733
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1734
lemma lemma_Int_eq1:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1735
     "{n. abs (xa n) \<le> (u::real)} Int {n. u \<le> abs (xa n)}
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1736
          = {n. abs(xa n) = u}"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1737
by auto
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1738
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1739
lemma lemma_FreeUltrafilterNat_one:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1740
     "{n. abs (xa n) = u} \<le> {n. abs (xa n) < u + (1::real)}"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1741
by auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1742
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1743
(*-------------------------------------
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1744
  Exclude this type of sets from free
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1745
  ultrafilter for Infinite numbers!
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1746
 -------------------------------------*)
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1747
lemma FreeUltrafilterNat_const_Finite:
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1748
     "[| xa: Rep_star x;
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1749
                  {n. abs (xa n) = u} \<in> FreeUltrafilterNat
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1750
               |] ==> x \<in> HFinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1751
apply (rule FreeUltrafilterNat_HFinite)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1752
apply (rule_tac x = xa in bexI)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1753
apply (rule_tac x = "u + 1" in exI)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1754
apply (ultra, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1755
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1756
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1757
lemma HInfinite_FreeUltrafilterNat:
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1758
     "x \<in> HInfinite ==> \<exists>X \<in> Rep_star x.
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1759
           \<forall>u. {n. u < abs (X n)} \<in> FreeUltrafilterNat"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1760
apply (frule HInfinite_HFinite_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1761
apply (cut_tac x = x in Rep_hypreal_nonempty)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1762
apply (auto simp del: Rep_hypreal_nonempty simp add: HFinite_FreeUltrafilterNat_iff Bex_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1763
apply (drule spec)+
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1764
apply auto
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1765
apply (drule_tac x = u in spec)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1766
apply (drule FreeUltrafilterNat_Compl_mem)+
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1767
apply (drule FreeUltrafilterNat_Int, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1768
apply (simp add: lemma_Compl_eq lemma_Compl_eq2 lemma_Int_eq1)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1769
apply (auto dest: FreeUltrafilterNat_const_Finite simp
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1770
      add: HInfinite_HFinite_iff [THEN iffD1])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1771
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1772
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1773
lemma lemma_Int_HI:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1774
     "{n. abs (Xa n) < u} Int {n. X n = Xa n} \<subseteq> {n. abs (X n) < (u::real)}"
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1775
by auto
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1776
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1777
lemma lemma_Int_HIa: "{n. u < abs (X n)} Int {n. abs (X n) < (u::real)} = {}"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1778
by (auto intro: order_less_asym)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1779
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1780
lemma FreeUltrafilterNat_HInfinite:
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1781
     "\<exists>X \<in> Rep_star x. \<forall>u.
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1782
               {n. u < abs (X n)} \<in> FreeUltrafilterNat
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1783
               ==>  x \<in> HInfinite"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1784
apply (rule HInfinite_HFinite_iff [THEN iffD2])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1785
apply (safe, drule HFinite_FreeUltrafilterNat, auto)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1786
apply (drule_tac x = u in spec)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1787
apply (drule FreeUltrafilterNat_Rep_hypreal, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1788
apply (drule_tac Y = "{n. X n = Xa n}" in FreeUltrafilterNat_Int, simp) 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1789
apply (drule lemma_Int_HI [THEN [2] FreeUltrafilterNat_subset])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1790
apply (drule_tac Y = "{n. abs (X n) < u}" in FreeUltrafilterNat_Int)
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
  1791
apply (auto simp add: lemma_Int_HIa)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1792
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1793
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1794
lemma HInfinite_FreeUltrafilterNat_iff:
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1795
     "(x \<in> HInfinite) = (\<exists>X \<in> Rep_star x.
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1796
           \<forall>u. {n. u < abs (X n)} \<in> FreeUltrafilterNat)"
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1797
by (blast intro!: HInfinite_FreeUltrafilterNat FreeUltrafilterNat_HInfinite)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1798
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1799
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1800
subsection{*Alternative Definitions for @{term Infinitesimal} using Free Ultrafilter*}
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
  1801
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1802
lemma Infinitesimal_FreeUltrafilterNat:
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1803
          "x \<in> Infinitesimal ==> \<exists>X \<in> Rep_star x.
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1804
           \<forall>u. 0 < u --> {n. abs (X n) < u} \<in> FreeUltrafilterNat"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1805
apply (simp add: Infinitesimal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1806
apply (auto simp add: abs_less_iff minus_less_iff [of x])
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1807
apply (cases x)
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1808
apply (auto, rule bexI [OF _ Rep_star_star_n], safe)
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1809
apply (drule star_of_less [THEN iffD2])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1810
apply (drule_tac x = "hypreal_of_real u" in bspec, auto)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1811
apply (auto simp add: star_n_less star_n_minus star_of_def, ultra)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1812
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1813
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1814
lemma FreeUltrafilterNat_Infinitesimal:
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1815
     "\<exists>X \<in> Rep_star x.
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1816
            \<forall>u. 0 < u --> {n. abs (X n) < u} \<in> FreeUltrafilterNat
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1817
      ==> x \<in> Infinitesimal"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1818
apply (simp add: Infinitesimal_def)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1819
apply (cases x)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1820
apply (auto simp add: abs_less_iff abs_interval_iff minus_less_iff [of x])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1821
apply (auto simp add: SReal_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1822
apply (drule_tac [!] x=y in spec) 
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1823
apply (auto simp add: star_n_less star_n_minus star_of_def, ultra+)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1824
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1825
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1826
lemma Infinitesimal_FreeUltrafilterNat_iff:
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1827
     "(x \<in> Infinitesimal) = (\<exists>X \<in> Rep_star x.
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1828
           \<forall>u. 0 < u --> {n. abs (X n) < u} \<in> FreeUltrafilterNat)"
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1829
by (blast intro!: Infinitesimal_FreeUltrafilterNat FreeUltrafilterNat_Infinitesimal)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1830
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1831
(*------------------------------------------------------------------------
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1832
         Infinitesimals as smaller than 1/n for all n::nat (> 0)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1833
 ------------------------------------------------------------------------*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1834
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1835
lemma lemma_Infinitesimal:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1836
     "(\<forall>r. 0 < r --> x < r) = (\<forall>n. x < inverse(real (Suc n)))"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1837
apply (auto simp add: real_of_nat_Suc_gt_zero)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1838
apply (blast dest!: reals_Archimedean intro: order_less_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1839
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1840
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14371
diff changeset
  1841
lemma of_nat_in_Reals [simp]: "(of_nat n::hypreal) \<in> \<real>"
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14371
diff changeset
  1842
apply (induct n)
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
  1843
apply (simp_all)
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14371
diff changeset
  1844
done 
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14371
diff changeset
  1845
 
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1846
lemma lemma_Infinitesimal2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1847
     "(\<forall>r \<in> Reals. 0 < r --> x < r) =
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1848
      (\<forall>n. x < inverse(hypreal_of_nat (Suc n)))"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1849
apply safe
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1850
apply (drule_tac x = "inverse (hypreal_of_real (real (Suc n))) " in bspec)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1851
apply (simp (no_asm_use) add: SReal_inverse)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1852
apply (rule real_of_nat_Suc_gt_zero [THEN positive_imp_inverse_positive, THEN star_of_less [THEN iffD2], THEN [2] impE])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1853
prefer 2 apply assumption
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14371
diff changeset
  1854
apply (simp add: real_of_nat_Suc_gt_zero hypreal_of_nat_eq)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1855
apply (auto dest!: reals_Archimedean simp add: SReal_iff)
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  1856
apply (drule star_of_less [THEN iffD2])
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14371
diff changeset
  1857
apply (simp add: real_of_nat_Suc_gt_zero hypreal_of_nat_eq)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1858
apply (blast intro: order_less_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1859
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1860
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14371
diff changeset
  1861
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1862
lemma Infinitesimal_hypreal_of_nat_iff:
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1863
     "Infinitesimal = {x. \<forall>n. abs x < inverse (hypreal_of_nat (Suc n))}"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1864
apply (simp add: Infinitesimal_def)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1865
apply (auto simp add: lemma_Infinitesimal2)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1866
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1867
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1868
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1869
subsection{*Proof that @{term omega} is an infinite number*}
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1870
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1871
text{*It will follow that epsilon is an infinitesimal number.*}
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1872
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1873
lemma Suc_Un_eq: "{n. n < Suc m} = {n. n < m} Un {n. n = m}"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1874
by (auto simp add: less_Suc_eq)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1875
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1876
(*-------------------------------------------
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1877
  Prove that any segment is finite and
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1878
  hence cannot belong to FreeUltrafilterNat
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1879
 -------------------------------------------*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1880
lemma finite_nat_segment: "finite {n::nat. n < m}"
15251
bb6f072c8d10 converted some induct_tac to induct
paulson
parents: 15234
diff changeset
  1881
apply (induct "m")
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1882
apply (auto simp add: Suc_Un_eq)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1883
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1884
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1885
lemma finite_real_of_nat_segment: "finite {n::nat. real n < real (m::nat)}"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1886
by (auto intro: finite_nat_segment)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1887
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1888
lemma finite_real_of_nat_less_real: "finite {n::nat. real n < u}"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1889
apply (cut_tac x = u in reals_Archimedean2, safe)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1890
apply (rule finite_real_of_nat_segment [THEN [2] finite_subset])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1891
apply (auto dest: order_less_trans)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1892
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1893
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1894
lemma lemma_real_le_Un_eq:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1895
     "{n. f n \<le> u} = {n. f n < u} Un {n. u = (f n :: real)}"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1896
by (auto dest: order_le_imp_less_or_eq simp add: order_less_imp_le)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1897
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1898
lemma finite_real_of_nat_le_real: "finite {n::nat. real n \<le> u}"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1899
by (auto simp add: lemma_real_le_Un_eq lemma_finite_omega_set finite_real_of_nat_less_real)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1900
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1901
lemma finite_rabs_real_of_nat_le_real: "finite {n::nat. abs(real n) \<le> u}"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1902
apply (simp (no_asm) add: real_of_nat_Suc_gt_zero finite_real_of_nat_le_real)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1903
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1904
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1905
lemma rabs_real_of_nat_le_real_FreeUltrafilterNat:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1906
     "{n. abs(real n) \<le> u} \<notin> FreeUltrafilterNat"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1907
by (blast intro!: FreeUltrafilterNat_finite finite_rabs_real_of_nat_le_real)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1908
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1909
lemma FreeUltrafilterNat_nat_gt_real: "{n. u < real n} \<in> FreeUltrafilterNat"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1910
apply (rule ccontr, drule FreeUltrafilterNat_Compl_mem)
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1911
apply (subgoal_tac "- {n::nat. u < real n} = {n. real n \<le> u}")
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1912
prefer 2 apply force
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1913
apply (simp add: finite_real_of_nat_le_real [THEN FreeUltrafilterNat_finite])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1914
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1915
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1916
(*--------------------------------------------------------------
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1917
 The complement of {n. abs(real n) \<le> u} =
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1918
 {n. u < abs (real n)} is in FreeUltrafilterNat
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1919
 by property of (free) ultrafilters
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1920
 --------------------------------------------------------------*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1921
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1922
lemma Compl_real_le_eq: "- {n::nat. real n \<le> u} = {n. u < real n}"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1923
by (auto dest!: order_le_less_trans simp add: linorder_not_le)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1924
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1925
text{*@{term omega} is a member of @{term HInfinite}*}
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1926
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1927
lemma FreeUltrafilterNat_omega: "{n. u < real n} \<in> FreeUltrafilterNat"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1928
apply (cut_tac u = u in rabs_real_of_nat_le_real_FreeUltrafilterNat)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1929
apply (auto dest: FreeUltrafilterNat_Compl_mem simp add: Compl_real_le_eq)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1930
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1931
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1932
theorem HInfinite_omega [simp]: "omega \<in> HInfinite"
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1933
apply (simp add: omega_def star_n_def)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1934
apply (auto intro!: FreeUltrafilterNat_HInfinite)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1935
apply (rule bexI)
17298
ad73fb6144cf replace type hypreal with real star
huffman
parents: 16924
diff changeset
  1936
apply (rule_tac [2] lemma_starrel_refl, auto)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1937
apply (simp (no_asm) add: real_of_nat_Suc diff_less_eq [symmetric] FreeUltrafilterNat_omega)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1938
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1939
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1940
(*-----------------------------------------------
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1941
       Epsilon is a member of Infinitesimal
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1942
 -----------------------------------------------*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1943
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1944
lemma Infinitesimal_epsilon [simp]: "epsilon \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1945
by (auto intro!: HInfinite_inverse_Infinitesimal HInfinite_omega simp add: hypreal_epsilon_inverse_omega)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1946
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1947
lemma HFinite_epsilon [simp]: "epsilon \<in> HFinite"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1948
by (auto intro: Infinitesimal_subset_HFinite [THEN subsetD])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1949
15229
1eb23f805c06 new simprules for abs and for things like a/b<1
paulson
parents: 15140
diff changeset
  1950
lemma epsilon_approx_zero [simp]: "epsilon @= 0"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1951
apply (simp (no_asm) add: mem_infmal_iff [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1952
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1953
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1954
(*------------------------------------------------------------------------
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1955
  Needed for proof that we define a hyperreal [<X(n)] @= hypreal_of_real a given
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1956
  that \<forall>n. |X n - a| < 1/n. Used in proof of NSLIM => LIM.
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1957
 -----------------------------------------------------------------------*)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1958
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1959
lemma real_of_nat_less_inverse_iff:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1960
     "0 < u  ==> (u < inverse (real(Suc n))) = (real(Suc n) < inverse u)"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1961
apply (simp add: inverse_eq_divide)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1962
apply (subst pos_less_divide_eq, assumption)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1963
apply (subst pos_less_divide_eq)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1964
 apply (simp add: real_of_nat_Suc_gt_zero)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1965
apply (simp add: real_mult_commute)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1966
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1967
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1968
lemma finite_inverse_real_of_posnat_gt_real:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1969
     "0 < u ==> finite {n. u < inverse(real(Suc n))}"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1970
apply (simp (no_asm_simp) add: real_of_nat_less_inverse_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1971
apply (simp (no_asm_simp) add: real_of_nat_Suc less_diff_eq [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1972
apply (rule finite_real_of_nat_less_real)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1973
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1974
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1975
lemma lemma_real_le_Un_eq2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1976
     "{n. u \<le> inverse(real(Suc n))} =
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1977
     {n. u < inverse(real(Suc n))} Un {n. u = inverse(real(Suc n))}"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1978
apply (auto dest: order_le_imp_less_or_eq simp add: order_less_imp_le)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1979
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1980
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1981
lemma real_of_nat_inverse_le_iff:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1982
     "(inverse (real(Suc n)) \<le> r) = (1 \<le> r * real(Suc n))"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1983
apply (simp (no_asm) add: linorder_not_less [symmetric])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1984
apply (simp (no_asm) add: inverse_eq_divide)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1985
apply (subst pos_less_divide_eq)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1986
apply (simp (no_asm) add: real_of_nat_Suc_gt_zero)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1987
apply (simp (no_asm) add: real_mult_commute)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1988
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1989
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1990
lemma real_of_nat_inverse_eq_iff:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  1991
     "(u = inverse (real(Suc n))) = (real(Suc n) = inverse u)"
15539
333a88244569 comprehensive cleanup, replacing sumr by setsum
nipkow
parents: 15531
diff changeset
  1992
by (auto simp add: real_of_nat_Suc_gt_zero real_not_refl2 [THEN not_sym])
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1993
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1994
lemma lemma_finite_omega_set2: "finite {n::nat. u = inverse(real(Suc n))}"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1995
apply (simp (no_asm_simp) add: real_of_nat_inverse_eq_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1996
apply (cut_tac x = "inverse u - 1" in lemma_finite_omega_set)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1997
apply (simp add: real_of_nat_Suc diff_eq_eq [symmetric] eq_commute)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1998
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  1999
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2000
lemma finite_inverse_real_of_posnat_ge_real:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2001
     "0 < u ==> finite {n. u \<le> inverse(real(Suc n))}"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2002
by (auto simp add: lemma_real_le_Un_eq2 lemma_finite_omega_set2 finite_inverse_real_of_posnat_gt_real)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2003
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2004
lemma inverse_real_of_posnat_ge_real_FreeUltrafilterNat:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2005
     "0 < u ==> {n. u \<le> inverse(real(Suc n))} \<notin> FreeUltrafilterNat"
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2006
by (blast intro!: FreeUltrafilterNat_finite finite_inverse_real_of_posnat_ge_real)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2007
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2008
(*--------------------------------------------------------------
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2009
    The complement of  {n. u \<le> inverse(real(Suc n))} =
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2010
    {n. inverse(real(Suc n)) < u} is in FreeUltrafilterNat
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2011
    by property of (free) ultrafilters
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2012
 --------------------------------------------------------------*)
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2013
lemma Compl_le_inverse_eq:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2014
     "- {n. u \<le> inverse(real(Suc n))} =
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2015
      {n. inverse(real(Suc n)) < u}"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2016
apply (auto dest!: order_le_less_trans simp add: linorder_not_le)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2017
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2018
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2019
lemma FreeUltrafilterNat_inverse_real_of_posnat:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2020
     "0 < u ==>
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2021
      {n. inverse(real(Suc n)) < u} \<in> FreeUltrafilterNat"
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2022
apply (cut_tac u = u in inverse_real_of_posnat_ge_real_FreeUltrafilterNat)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2023
apply (auto dest: FreeUltrafilterNat_Compl_mem simp add: Compl_le_inverse_eq)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2024
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2025
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2026
text{* Example where we get a hyperreal from a real sequence
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2027
      for which a particular property holds. The theorem is
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2028
      used in proofs about equivalence of nonstandard and
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2029
      standard neighbourhoods. Also used for equivalence of
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2030
      nonstandard ans standard definitions of pointwise
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2031
      limit.*}
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2032
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2033
(*-----------------------------------------------------
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2034
    |X(n) - x| < 1/n ==> [<X n>] - hypreal_of_real x| \<in> Infinitesimal
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2035
 -----------------------------------------------------*)
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2036
lemma real_seq_to_hypreal_Infinitesimal:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2037
     "\<forall>n. abs(X n + -x) < inverse(real(Suc n))
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  2038
     ==> star_n X + -hypreal_of_real x \<in> Infinitesimal"
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  2039
apply (auto intro!: bexI dest: FreeUltrafilterNat_inverse_real_of_posnat FreeUltrafilterNat_all FreeUltrafilterNat_Int intro: order_less_trans FreeUltrafilterNat_subset simp add: star_n_minus star_of_def star_n_add Infinitesimal_FreeUltrafilterNat_iff star_n_inverse)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2040
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2041
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2042
lemma real_seq_to_hypreal_approx:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2043
     "\<forall>n. abs(X n + -x) < inverse(real(Suc n))
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  2044
      ==> star_n X @= hypreal_of_real x"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2045
apply (subst approx_minus_iff)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2046
apply (rule mem_infmal_iff [THEN subst])
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2047
apply (erule real_seq_to_hypreal_Infinitesimal)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2048
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2049
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2050
lemma real_seq_to_hypreal_approx2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2051
     "\<forall>n. abs(x + -X n) < inverse(real(Suc n))
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  2052
               ==> star_n X @= hypreal_of_real x"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2053
apply (simp add: abs_minus_add_cancel real_seq_to_hypreal_approx)
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2054
done
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2055
14420
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2056
lemma real_seq_to_hypreal_Infinitesimal2:
4e72cd222e0b converted Hyperreal/HTranscendental to Isar script
paulson
parents: 14387
diff changeset
  2057
     "\<forall>n. abs(X n + -Y n) < inverse(real(Suc n))
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  2058
      ==> star_n X + -star_n Y \<in> Infinitesimal"
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2059
by (auto intro!: bexI
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2060
	 dest: FreeUltrafilterNat_inverse_real_of_posnat 
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2061
	       FreeUltrafilterNat_all FreeUltrafilterNat_Int
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2062
	 intro: order_less_trans FreeUltrafilterNat_subset 
17318
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  2063
	 simp add: Infinitesimal_FreeUltrafilterNat_iff star_n_minus 
bc1c75855f3d starfun, starset, and other functions on NS types are now polymorphic;
huffman
parents: 17298
diff changeset
  2064
                   star_n_add star_n_inverse)
14370
b0064703967b simplifications in the hyperreals
paulson
parents: 12114
diff changeset
  2065
10751
a81ea5d3dd41 separation of HOL-Hyperreal from HOL-Real
paulson
parents:
diff changeset
  2066
end