src/HOL/Real/PReal.thy
author haftmann
Fri, 25 Jul 2008 12:03:34 +0200
changeset 27682 25aceefd4786
parent 27106 ff27dc6e7d05
child 27825 12254665fc41
permissions -rw-r--r--
added class preorder
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
7219
4e3f386c2e37 inserted Id: lines
paulson
parents: 7077
diff changeset
     1
(*  Title       : PReal.thy
4e3f386c2e37 inserted Id: lines
paulson
parents: 7077
diff changeset
     2
    ID          : $Id$
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     3
    Author      : Jacques D. Fleuriot
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     4
    Copyright   : 1998  University of Cambridge
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     5
    Description : The positive reals as Dedekind sections of positive
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
     6
         rationals. Fundamentals of Abstract Analysis [Gleason- p. 121]
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     7
                  provides some of the definitions.
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     8
*)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     9
17428
8a2de150b5f1 add header
huffman
parents: 16775
diff changeset
    10
header {* Positive real numbers *}
8a2de150b5f1 add header
huffman
parents: 16775
diff changeset
    11
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15055
diff changeset
    12
theory PReal
15140
322485b816ac import -> imports
nipkow
parents: 15131
diff changeset
    13
imports Rational
15131
c69542757a4d New theory header syntax.
nipkow
parents: 15055
diff changeset
    14
begin
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    15
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    16
text{*Could be generalized and moved to @{text Ring_and_Field}*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    17
lemma add_eq_exists: "\<exists>x. a+x = (b::rat)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    18
by (rule_tac x="b-a" in exI, simp)
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    19
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
    20
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    21
  cut :: "rat set => bool" where
27106
ff27dc6e7d05 removed some dubious code lemmas
haftmann
parents: 26806
diff changeset
    22
  [code func del]: "cut A = ({} \<subset> A &
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
    23
            A < {r. 0 < r} &
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
    24
            (\<forall>y \<in> A. ((\<forall>z. 0<z & z < y --> z \<in> A) & (\<exists>u \<in> A. y < u))))"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    25
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    26
lemma cut_of_rat: 
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
    27
  assumes q: "0 < q" shows "cut {r::rat. 0 < r & r < q}" (is "cut ?A")
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    28
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    29
  from q have pos: "?A < {r. 0 < r}" by force
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    30
  have nonempty: "{} \<subset> ?A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    31
  proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    32
    show "{} \<subseteq> ?A" by simp
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    33
    show "{} \<noteq> ?A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    34
      by (force simp only: q eq_commute [of "{}"] interval_empty_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    35
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    36
  show ?thesis
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    37
    by (simp add: cut_def pos nonempty,
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    38
        blast dest: dense intro: order_less_trans)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    39
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    40
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    41
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    42
typedef preal = "{A. cut A}"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    43
  by (blast intro: cut_of_rat [OF zero_less_one])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    44
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
    45
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    46
  preal_of_rat :: "rat => preal" where
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
    47
  "preal_of_rat q = Abs_preal {x::rat. 0 < x & x < q}"
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    48
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    49
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    50
  psup :: "preal set => preal" where
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
    51
  "psup P = Abs_preal (\<Union>X \<in> P. Rep_preal X)"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    52
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    53
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    54
  add_set :: "[rat set,rat set] => rat set" where
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
    55
  "add_set A B = {w. \<exists>x \<in> A. \<exists>y \<in> B. w = x + y}"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    56
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    57
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    58
  diff_set :: "[rat set,rat set] => rat set" where
27106
ff27dc6e7d05 removed some dubious code lemmas
haftmann
parents: 26806
diff changeset
    59
  [code func del]: "diff_set A B = {w. \<exists>x. 0 < w & 0 < x & x \<notin> B & x + w \<in> A}"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    60
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    61
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    62
  mult_set :: "[rat set,rat set] => rat set" where
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
    63
  "mult_set A B = {w. \<exists>x \<in> A. \<exists>y \<in> B. w = x * y}"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    64
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    65
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 20495
diff changeset
    66
  inverse_set :: "rat set => rat set" where
27106
ff27dc6e7d05 removed some dubious code lemmas
haftmann
parents: 26806
diff changeset
    67
  [code func del]: "inverse_set A = {x. \<exists>y. 0 < x & x < y & inverse y \<notin> A}"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    68
26511
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
    69
instantiation preal :: "{ord, plus, minus, times, inverse, one}"
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
    70
begin
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    71
26511
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
    72
definition
27106
ff27dc6e7d05 removed some dubious code lemmas
haftmann
parents: 26806
diff changeset
    73
  preal_less_def [code func del]:
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
    74
    "R < S == Rep_preal R < Rep_preal S"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    75
26511
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
    76
definition
27106
ff27dc6e7d05 removed some dubious code lemmas
haftmann
parents: 26806
diff changeset
    77
  preal_le_def [code func del]:
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
    78
    "R \<le> S == Rep_preal R \<subseteq> Rep_preal S"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    79
26511
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
    80
definition
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
    81
  preal_add_def:
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    82
    "R + S == Abs_preal (add_set (Rep_preal R) (Rep_preal S))"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    83
26511
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
    84
definition
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    85
  preal_diff_def:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    86
    "R - S == Abs_preal (diff_set (Rep_preal R) (Rep_preal S))"
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    87
26511
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
    88
definition
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
    89
  preal_mult_def:
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
    90
    "R * S == Abs_preal (mult_set (Rep_preal R) (Rep_preal S))"
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    91
26511
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
    92
definition
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
    93
  preal_inverse_def:
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
    94
    "inverse R == Abs_preal (inverse_set (Rep_preal R))"
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
    95
26564
631ce7f6bdc6 explicit definition for "/"
haftmann
parents: 26511
diff changeset
    96
definition "R / S = R * inverse (S\<Colon>preal)"
631ce7f6bdc6 explicit definition for "/"
haftmann
parents: 26511
diff changeset
    97
26511
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
    98
definition
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
    99
  preal_one_def:
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   100
    "1 == preal_of_rat 1"
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   101
26511
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
   102
instance ..
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
   103
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
   104
end
dba7125d0fef explicit instantiation
haftmann
parents: 25571
diff changeset
   105
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   106
15413
901d1bfedf09 removal of archaic Abs/Rep proofs
paulson
parents: 15234
diff changeset
   107
text{*Reduces equality on abstractions to equality on representatives*}
901d1bfedf09 removal of archaic Abs/Rep proofs
paulson
parents: 15234
diff changeset
   108
declare Abs_preal_inject [simp]
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   109
declare Abs_preal_inverse [simp]
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   110
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   111
lemma rat_mem_preal: "0 < q ==> {r::rat. 0 < r & r < q} \<in> preal"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   112
by (simp add: preal_def cut_of_rat)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   113
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   114
lemma preal_nonempty: "A \<in> preal ==> \<exists>x\<in>A. 0 < x"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   115
by (unfold preal_def cut_def, blast)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   116
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   117
lemma preal_Ex_mem: "A \<in> preal \<Longrightarrow> \<exists>x. x \<in> A"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   118
by (drule preal_nonempty, fast)
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   119
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   120
lemma preal_imp_psubset_positives: "A \<in> preal ==> A < {r. 0 < r}"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   121
by (force simp add: preal_def cut_def)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   122
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   123
lemma preal_exists_bound: "A \<in> preal ==> \<exists>x. 0 < x & x \<notin> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   124
by (drule preal_imp_psubset_positives, auto)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   125
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   126
lemma preal_exists_greater: "[| A \<in> preal; y \<in> A |] ==> \<exists>u \<in> A. y < u"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   127
by (unfold preal_def cut_def, blast)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   128
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   129
lemma preal_downwards_closed: "[| A \<in> preal; y \<in> A; 0 < z; z < y |] ==> z \<in> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   130
by (unfold preal_def cut_def, blast)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   131
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   132
text{*Relaxing the final premise*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   133
lemma preal_downwards_closed':
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   134
     "[| A \<in> preal; y \<in> A; 0 < z; z \<le> y |] ==> z \<in> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   135
apply (simp add: order_le_less)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   136
apply (blast intro: preal_downwards_closed)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   137
done
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   138
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   139
text{*A positive fraction not in a positive real is an upper bound.
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   140
 Gleason p. 122 - Remark (1)*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   141
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   142
lemma not_in_preal_ub:
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   143
  assumes A: "A \<in> preal"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   144
    and notx: "x \<notin> A"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   145
    and y: "y \<in> A"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   146
    and pos: "0 < x"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   147
  shows "y < x"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   148
proof (cases rule: linorder_cases)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   149
  assume "x<y"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   150
  with notx show ?thesis
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   151
    by (simp add:  preal_downwards_closed [OF A y] pos)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   152
next
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   153
  assume "x=y"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   154
  with notx and y show ?thesis by simp
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   155
next
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   156
  assume "y<x"
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   157
  thus ?thesis .
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   158
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   159
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   160
text {* preal lemmas instantiated to @{term "Rep_preal X"} *}
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   161
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   162
lemma mem_Rep_preal_Ex: "\<exists>x. x \<in> Rep_preal X"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   163
by (rule preal_Ex_mem [OF Rep_preal])
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   164
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   165
lemma Rep_preal_exists_bound: "\<exists>x>0. x \<notin> Rep_preal X"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   166
by (rule preal_exists_bound [OF Rep_preal])
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   167
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   168
lemmas not_in_Rep_preal_ub = not_in_preal_ub [OF Rep_preal]
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   169
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   170
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   171
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   172
subsection{*@{term preal_of_prat}: the Injection from prat to preal*}
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   173
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   174
lemma rat_less_set_mem_preal: "0 < y ==> {u::rat. 0 < u & u < y} \<in> preal"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   175
by (simp add: preal_def cut_of_rat)
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   176
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   177
lemma rat_subset_imp_le:
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   178
     "[|{u::rat. 0 < u & u < x} \<subseteq> {u. 0 < u & u < y}; 0<x|] ==> x \<le> y"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   179
apply (simp add: linorder_not_less [symmetric])
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   180
apply (blast dest: dense intro: order_less_trans)
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   181
done
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   182
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   183
lemma rat_set_eq_imp_eq:
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   184
     "[|{u::rat. 0 < u & u < x} = {u. 0 < u & u < y};
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   185
        0 < x; 0 < y|] ==> x = y"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   186
by (blast intro: rat_subset_imp_le order_antisym)
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   187
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   188
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   189
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   190
subsection{*Properties of Ordering*}
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   191
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   192
instance preal :: order
27682
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   193
proof
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   194
  fix w :: preal
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   195
  show "w \<le> w" by (simp add: preal_le_def)
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   196
next
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   197
  fix i j k :: preal
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   198
  assume "i \<le> j" and "j \<le> k"
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   199
  then show "i \<le> k" by (simp add: preal_le_def)
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   200
next
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   201
  fix z w :: preal
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   202
  assume "z \<le> w" and "w \<le> z"
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   203
  then show "z = w" by (simp add: preal_le_def Rep_preal_inject)
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   204
next
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   205
  fix z w :: preal
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   206
  show "z < w \<longleftrightarrow> z \<le> w \<and> \<not> w \<le> z"
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   207
  by (auto simp add: preal_le_def preal_less_def Rep_preal_inject)
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   208
qed  
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   209
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   210
lemma preal_imp_pos: "[|A \<in> preal; r \<in> A|] ==> 0 < r"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   211
by (insert preal_imp_psubset_positives, blast)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   212
27682
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   213
instance preal :: linorder
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   214
proof
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   215
  fix x y :: preal
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   216
  show "x <= y | y <= x"
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   217
    apply (auto simp add: preal_le_def)
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   218
    apply (rule ccontr)
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   219
    apply (blast dest: not_in_Rep_preal_ub intro: preal_imp_pos [OF Rep_preal]
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   220
             elim: order_less_asym)
27682
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   221
    done
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
   222
qed
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   223
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   224
instantiation preal :: distrib_lattice
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   225
begin
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   226
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   227
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   228
  "(inf \<Colon> preal \<Rightarrow> preal \<Rightarrow> preal) = min"
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   229
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   230
definition
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   231
  "(sup \<Colon> preal \<Rightarrow> preal \<Rightarrow> preal) = max"
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   232
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   233
instance
22483
86064f2f2188 added instance for lattice
haftmann
parents: 21404
diff changeset
   234
  by intro_classes
86064f2f2188 added instance for lattice
haftmann
parents: 21404
diff changeset
   235
    (auto simp add: inf_preal_def sup_preal_def min_max.sup_inf_distrib1)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   236
25571
c9e39eafc7a0 instantiation target rather than legacy instance
haftmann
parents: 25502
diff changeset
   237
end
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   238
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   239
subsection{*Properties of Addition*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   240
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   241
lemma preal_add_commute: "(x::preal) + y = y + x"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   242
apply (unfold preal_add_def add_set_def)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   243
apply (rule_tac f = Abs_preal in arg_cong)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   244
apply (force simp add: add_commute)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   245
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   246
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   247
text{*Lemmas for proving that addition of two positive reals gives
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   248
 a positive real*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   249
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   250
lemma empty_psubset_nonempty: "a \<in> A ==> {} \<subset> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   251
by blast
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   252
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   253
text{*Part 1 of Dedekind sections definition*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   254
lemma add_set_not_empty:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   255
     "[|A \<in> preal; B \<in> preal|] ==> {} \<subset> add_set A B"
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   256
apply (drule preal_nonempty)+
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   257
apply (auto simp add: add_set_def)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   258
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   259
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   260
text{*Part 2 of Dedekind sections definition.  A structured version of
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   261
this proof is @{text preal_not_mem_mult_set_Ex} below.*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   262
lemma preal_not_mem_add_set_Ex:
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   263
     "[|A \<in> preal; B \<in> preal|] ==> \<exists>q>0. q \<notin> add_set A B"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   264
apply (insert preal_exists_bound [of A] preal_exists_bound [of B], auto) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   265
apply (rule_tac x = "x+xa" in exI)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   266
apply (simp add: add_set_def, clarify)
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   267
apply (drule (3) not_in_preal_ub)+
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   268
apply (force dest: add_strict_mono)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   269
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   270
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   271
lemma add_set_not_rat_set:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   272
   assumes A: "A \<in> preal" 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   273
       and B: "B \<in> preal"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   274
     shows "add_set A B < {r. 0 < r}"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   275
proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   276
  from preal_imp_pos [OF A] preal_imp_pos [OF B]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   277
  show "add_set A B \<subseteq> {r. 0 < r}" by (force simp add: add_set_def) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   278
next
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   279
  show "add_set A B \<noteq> {r. 0 < r}"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   280
    by (insert preal_not_mem_add_set_Ex [OF A B], blast) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   281
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   282
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   283
text{*Part 3 of Dedekind sections definition*}
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   284
lemma add_set_lemma3:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   285
     "[|A \<in> preal; B \<in> preal; u \<in> add_set A B; 0 < z; z < u|] 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   286
      ==> z \<in> add_set A B"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   287
proof (unfold add_set_def, clarify)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   288
  fix x::rat and y::rat
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   289
  assume A: "A \<in> preal" 
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   290
    and B: "B \<in> preal"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   291
    and [simp]: "0 < z"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   292
    and zless: "z < x + y"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   293
    and x:  "x \<in> A"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   294
    and y:  "y \<in> B"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   295
  have xpos [simp]: "0<x" by (rule preal_imp_pos [OF A x])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   296
  have ypos [simp]: "0<y" by (rule preal_imp_pos [OF B y])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   297
  have xypos [simp]: "0 < x+y" by (simp add: pos_add_strict)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   298
  let ?f = "z/(x+y)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   299
  have fless: "?f < 1" by (simp add: zless pos_divide_less_eq)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   300
  show "\<exists>x' \<in> A. \<exists>y'\<in>B. z = x' + y'"
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   301
  proof (intro bexI)
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   302
    show "z = x*?f + y*?f"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   303
      by (simp add: left_distrib [symmetric] divide_inverse mult_ac
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   304
          order_less_imp_not_eq2)
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   305
  next
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   306
    show "y * ?f \<in> B"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   307
    proof (rule preal_downwards_closed [OF B y])
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   308
      show "0 < y * ?f"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   309
        by (simp add: divide_inverse zero_less_mult_iff)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   310
    next
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   311
      show "y * ?f < y"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   312
        by (insert mult_strict_left_mono [OF fless ypos], simp)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   313
    qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   314
  next
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   315
    show "x * ?f \<in> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   316
    proof (rule preal_downwards_closed [OF A x])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   317
      show "0 < x * ?f"
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14387
diff changeset
   318
	by (simp add: divide_inverse zero_less_mult_iff)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   319
    next
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   320
      show "x * ?f < x"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   321
	by (insert mult_strict_left_mono [OF fless xpos], simp)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   322
    qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   323
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   324
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   325
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   326
text{*Part 4 of Dedekind sections definition*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   327
lemma add_set_lemma4:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   328
     "[|A \<in> preal; B \<in> preal; y \<in> add_set A B|] ==> \<exists>u \<in> add_set A B. y < u"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   329
apply (auto simp add: add_set_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   330
apply (frule preal_exists_greater [of A], auto) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   331
apply (rule_tac x="u + y" in exI)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   332
apply (auto intro: add_strict_left_mono)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   333
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   334
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   335
lemma mem_add_set:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   336
     "[|A \<in> preal; B \<in> preal|] ==> add_set A B \<in> preal"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   337
apply (simp (no_asm_simp) add: preal_def cut_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   338
apply (blast intro!: add_set_not_empty add_set_not_rat_set
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   339
                     add_set_lemma3 add_set_lemma4)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   340
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   341
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   342
lemma preal_add_assoc: "((x::preal) + y) + z = x + (y + z)"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   343
apply (simp add: preal_add_def mem_add_set Rep_preal)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   344
apply (force simp add: add_set_def add_ac)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   345
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   346
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   347
instance preal :: ab_semigroup_add
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   348
proof
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   349
  fix a b c :: preal
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   350
  show "(a + b) + c = a + (b + c)" by (rule preal_add_assoc)
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   351
  show "a + b = b + a" by (rule preal_add_commute)
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   352
qed
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   353
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   354
lemma preal_add_left_commute: "x + (y + z) = y + ((x + z)::preal)"
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   355
by (rule add_left_commute)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   356
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   357
text{* Positive Real addition is an AC operator *}
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   358
lemmas preal_add_ac = preal_add_assoc preal_add_commute preal_add_left_commute
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   359
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   360
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   361
subsection{*Properties of Multiplication*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   362
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   363
text{*Proofs essentially same as for addition*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   364
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   365
lemma preal_mult_commute: "(x::preal) * y = y * x"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   366
apply (unfold preal_mult_def mult_set_def)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   367
apply (rule_tac f = Abs_preal in arg_cong)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   368
apply (force simp add: mult_commute)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   369
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   370
15055
aed573241bea Corrected TeX problem.
nipkow
parents: 15013
diff changeset
   371
text{*Multiplication of two positive reals gives a positive real.*}
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   372
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   373
text{*Lemmas for proving positive reals multiplication set in @{typ preal}*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   374
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   375
text{*Part 1 of Dedekind sections definition*}
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   376
lemma mult_set_not_empty:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   377
     "[|A \<in> preal; B \<in> preal|] ==> {} \<subset> mult_set A B"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   378
apply (insert preal_nonempty [of A] preal_nonempty [of B]) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   379
apply (auto simp add: mult_set_def)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   380
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   381
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   382
text{*Part 2 of Dedekind sections definition*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   383
lemma preal_not_mem_mult_set_Ex:
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   384
   assumes A: "A \<in> preal" 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   385
       and B: "B \<in> preal"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   386
     shows "\<exists>q. 0 < q & q \<notin> mult_set A B"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   387
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   388
  from preal_exists_bound [OF A]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   389
  obtain x where [simp]: "0 < x" "x \<notin> A" by blast
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   390
  from preal_exists_bound [OF B]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   391
  obtain y where [simp]: "0 < y" "y \<notin> B" by blast
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   392
  show ?thesis
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   393
  proof (intro exI conjI)
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 15413
diff changeset
   394
    show "0 < x*y" by (simp add: mult_pos_pos)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   395
    show "x * y \<notin> mult_set A B"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   396
    proof -
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   397
      { fix u::rat and v::rat
14550
b13da5649bf9 hence -> from calculation have
kleing
parents: 14430
diff changeset
   398
	      assume "u \<in> A" and "v \<in> B" and "x*y = u*v"
b13da5649bf9 hence -> from calculation have
kleing
parents: 14430
diff changeset
   399
	      moreover
b13da5649bf9 hence -> from calculation have
kleing
parents: 14430
diff changeset
   400
	      with prems have "u<x" and "v<y" by (blast dest: not_in_preal_ub)+
b13da5649bf9 hence -> from calculation have
kleing
parents: 14430
diff changeset
   401
	      moreover
b13da5649bf9 hence -> from calculation have
kleing
parents: 14430
diff changeset
   402
	      with prems have "0\<le>v"
b13da5649bf9 hence -> from calculation have
kleing
parents: 14430
diff changeset
   403
	        by (blast intro: preal_imp_pos [OF B]  order_less_imp_le prems)
b13da5649bf9 hence -> from calculation have
kleing
parents: 14430
diff changeset
   404
	      moreover
b13da5649bf9 hence -> from calculation have
kleing
parents: 14430
diff changeset
   405
        from calculation
b13da5649bf9 hence -> from calculation have
kleing
parents: 14430
diff changeset
   406
	      have "u*v < x*y" by (blast intro: mult_strict_mono prems)
b13da5649bf9 hence -> from calculation have
kleing
parents: 14430
diff changeset
   407
	      ultimately have False by force }
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   408
      thus ?thesis by (auto simp add: mult_set_def)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   409
    qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   410
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   411
qed
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   412
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   413
lemma mult_set_not_rat_set:
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   414
  assumes A: "A \<in> preal" 
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   415
    and B: "B \<in> preal"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   416
  shows "mult_set A B < {r. 0 < r}"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   417
proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   418
  show "mult_set A B \<subseteq> {r. 0 < r}"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   419
    by (force simp add: mult_set_def
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   420
      intro: preal_imp_pos [OF A] preal_imp_pos [OF B] mult_pos_pos)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   421
  show "mult_set A B \<noteq> {r. 0 < r}"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   422
    using preal_not_mem_mult_set_Ex [OF A B] by blast
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   423
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   424
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   425
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   426
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   427
text{*Part 3 of Dedekind sections definition*}
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   428
lemma mult_set_lemma3:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   429
     "[|A \<in> preal; B \<in> preal; u \<in> mult_set A B; 0 < z; z < u|] 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   430
      ==> z \<in> mult_set A B"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   431
proof (unfold mult_set_def, clarify)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   432
  fix x::rat and y::rat
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   433
  assume A: "A \<in> preal" 
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   434
    and B: "B \<in> preal"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   435
    and [simp]: "0 < z"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   436
    and zless: "z < x * y"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   437
    and x:  "x \<in> A"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   438
    and y:  "y \<in> B"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   439
  have [simp]: "0<y" by (rule preal_imp_pos [OF B y])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   440
  show "\<exists>x' \<in> A. \<exists>y' \<in> B. z = x' * y'"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   441
  proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   442
    show "\<exists>y'\<in>B. z = (z/y) * y'"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   443
    proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   444
      show "z = (z/y)*y"
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14387
diff changeset
   445
	by (simp add: divide_inverse mult_commute [of y] mult_assoc
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   446
		      order_less_imp_not_eq2)
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23287
diff changeset
   447
      show "y \<in> B" by fact
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   448
    qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   449
  next
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   450
    show "z/y \<in> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   451
    proof (rule preal_downwards_closed [OF A x])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   452
      show "0 < z/y"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   453
	by (simp add: zero_less_divide_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   454
      show "z/y < x" by (simp add: pos_divide_less_eq zless)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   455
    qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   456
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   457
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   458
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   459
text{*Part 4 of Dedekind sections definition*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   460
lemma mult_set_lemma4:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   461
     "[|A \<in> preal; B \<in> preal; y \<in> mult_set A B|] ==> \<exists>u \<in> mult_set A B. y < u"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   462
apply (auto simp add: mult_set_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   463
apply (frule preal_exists_greater [of A], auto) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   464
apply (rule_tac x="u * y" in exI)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   465
apply (auto intro: preal_imp_pos [of A] preal_imp_pos [of B] 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   466
                   mult_strict_right_mono)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   467
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   468
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   469
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   470
lemma mem_mult_set:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   471
     "[|A \<in> preal; B \<in> preal|] ==> mult_set A B \<in> preal"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   472
apply (simp (no_asm_simp) add: preal_def cut_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   473
apply (blast intro!: mult_set_not_empty mult_set_not_rat_set
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   474
                     mult_set_lemma3 mult_set_lemma4)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   475
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   476
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   477
lemma preal_mult_assoc: "((x::preal) * y) * z = x * (y * z)"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   478
apply (simp add: preal_mult_def mem_mult_set Rep_preal)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   479
apply (force simp add: mult_set_def mult_ac)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   480
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   481
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   482
instance preal :: ab_semigroup_mult
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   483
proof
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   484
  fix a b c :: preal
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   485
  show "(a * b) * c = a * (b * c)" by (rule preal_mult_assoc)
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   486
  show "a * b = b * a" by (rule preal_mult_commute)
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   487
qed
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   488
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   489
lemma preal_mult_left_commute: "x * (y * z) = y * ((x * z)::preal)"
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   490
by (rule mult_left_commute)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   491
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   492
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   493
text{* Positive Real multiplication is an AC operator *}
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   494
lemmas preal_mult_ac =
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   495
       preal_mult_assoc preal_mult_commute preal_mult_left_commute
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   496
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   497
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   498
text{* Positive real 1 is the multiplicative identity element *}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   499
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   500
lemma preal_mult_1: "(1::preal) * z = z"
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   501
unfolding preal_one_def
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   502
proof (induct z)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   503
  fix A :: "rat set"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   504
  assume A: "A \<in> preal"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   505
  have "{w. \<exists>u. 0 < u \<and> u < 1 & (\<exists>v \<in> A. w = u * v)} = A" (is "?lhs = A")
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   506
  proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   507
    show "?lhs \<subseteq> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   508
    proof clarify
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   509
      fix x::rat and u::rat and v::rat
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   510
      assume upos: "0<u" and "u<1" and v: "v \<in> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   511
      have vpos: "0<v" by (rule preal_imp_pos [OF A v])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   512
      hence "u*v < 1*v" by (simp only: mult_strict_right_mono prems)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   513
      thus "u * v \<in> A"
16775
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 15413
diff changeset
   514
        by (force intro: preal_downwards_closed [OF A v] mult_pos_pos 
c1b87ef4a1c3 added lemmas to OrderedGroup.thy (reasoning about signs, absolute value, triangle inequalities)
avigad
parents: 15413
diff changeset
   515
          upos vpos)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   516
    qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   517
  next
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   518
    show "A \<subseteq> ?lhs"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   519
    proof clarify
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   520
      fix x::rat
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   521
      assume x: "x \<in> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   522
      have xpos: "0<x" by (rule preal_imp_pos [OF A x])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   523
      from preal_exists_greater [OF A x]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   524
      obtain v where v: "v \<in> A" and xlessv: "x < v" ..
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   525
      have vpos: "0<v" by (rule preal_imp_pos [OF A v])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   526
      show "\<exists>u. 0 < u \<and> u < 1 \<and> (\<exists>v\<in>A. x = u * v)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   527
      proof (intro exI conjI)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   528
        show "0 < x/v"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   529
          by (simp add: zero_less_divide_iff xpos vpos)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   530
	show "x / v < 1"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   531
          by (simp add: pos_divide_less_eq vpos xlessv)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   532
        show "\<exists>v'\<in>A. x = (x / v) * v'"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   533
        proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   534
          show "x = (x/v)*v"
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14387
diff changeset
   535
	    by (simp add: divide_inverse mult_assoc vpos
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   536
                          order_less_imp_not_eq2)
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23287
diff changeset
   537
          show "v \<in> A" by fact
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   538
        qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   539
      qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   540
    qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   541
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   542
  thus "preal_of_rat 1 * Abs_preal A = Abs_preal A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   543
    by (simp add: preal_of_rat_def preal_mult_def mult_set_def 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   544
                  rat_mem_preal A)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   545
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   546
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   547
instance preal :: comm_monoid_mult
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   548
by intro_classes (rule preal_mult_1)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   549
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   550
lemma preal_mult_1_right: "z * (1::preal) = z"
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   551
by (rule mult_1_right)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   552
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   553
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   554
subsection{*Distribution of Multiplication across Addition*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   555
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   556
lemma mem_Rep_preal_add_iff:
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   557
      "(z \<in> Rep_preal(R+S)) = (\<exists>x \<in> Rep_preal R. \<exists>y \<in> Rep_preal S. z = x + y)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   558
apply (simp add: preal_add_def mem_add_set Rep_preal)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   559
apply (simp add: add_set_def) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   560
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   561
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   562
lemma mem_Rep_preal_mult_iff:
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   563
      "(z \<in> Rep_preal(R*S)) = (\<exists>x \<in> Rep_preal R. \<exists>y \<in> Rep_preal S. z = x * y)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   564
apply (simp add: preal_mult_def mem_mult_set Rep_preal)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   565
apply (simp add: mult_set_def) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   566
done
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   567
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   568
lemma distrib_subset1:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   569
     "Rep_preal (w * (x + y)) \<subseteq> Rep_preal (w * x + w * y)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   570
apply (auto simp add: Bex_def mem_Rep_preal_add_iff mem_Rep_preal_mult_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   571
apply (force simp add: right_distrib)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   572
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   573
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   574
lemma preal_add_mult_distrib_mean:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   575
  assumes a: "a \<in> Rep_preal w"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   576
    and b: "b \<in> Rep_preal w"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   577
    and d: "d \<in> Rep_preal x"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   578
    and e: "e \<in> Rep_preal y"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   579
  shows "\<exists>c \<in> Rep_preal w. a * d + b * e = c * (d + e)"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   580
proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   581
  let ?c = "(a*d + b*e)/(d+e)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   582
  have [simp]: "0<a" "0<b" "0<d" "0<e" "0<d+e"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   583
    by (blast intro: preal_imp_pos [OF Rep_preal] a b d e pos_add_strict)+
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   584
  have cpos: "0 < ?c"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   585
    by (simp add: zero_less_divide_iff zero_less_mult_iff pos_add_strict)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   586
  show "a * d + b * e = ?c * (d + e)"
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14387
diff changeset
   587
    by (simp add: divide_inverse mult_assoc order_less_imp_not_eq2)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   588
  show "?c \<in> Rep_preal w"
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   589
  proof (cases rule: linorder_le_cases)
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   590
    assume "a \<le> b"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   591
    hence "?c \<le> b"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   592
      by (simp add: pos_divide_le_eq right_distrib mult_right_mono
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   593
                    order_less_imp_le)
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   594
    thus ?thesis by (rule preal_downwards_closed' [OF Rep_preal b cpos])
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   595
  next
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   596
    assume "b \<le> a"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   597
    hence "?c \<le> a"
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   598
      by (simp add: pos_divide_le_eq right_distrib mult_right_mono
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   599
                    order_less_imp_le)
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   600
    thus ?thesis by (rule preal_downwards_closed' [OF Rep_preal a cpos])
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   601
  qed
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
   602
qed
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   603
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   604
lemma distrib_subset2:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   605
     "Rep_preal (w * x + w * y) \<subseteq> Rep_preal (w * (x + y))"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   606
apply (auto simp add: Bex_def mem_Rep_preal_add_iff mem_Rep_preal_mult_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   607
apply (drule_tac w=w and x=x and y=y in preal_add_mult_distrib_mean, auto)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   608
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   609
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   610
lemma preal_add_mult_distrib2: "(w * ((x::preal) + y)) = (w * x) + (w * y)"
15413
901d1bfedf09 removal of archaic Abs/Rep proofs
paulson
parents: 15234
diff changeset
   611
apply (rule Rep_preal_inject [THEN iffD1])
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   612
apply (rule equalityI [OF distrib_subset1 distrib_subset2])
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   613
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   614
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   615
lemma preal_add_mult_distrib: "(((x::preal) + y) * w) = (x * w) + (y * w)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   616
by (simp add: preal_mult_commute preal_add_mult_distrib2)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   617
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   618
instance preal :: comm_semiring
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   619
by intro_classes (rule preal_add_mult_distrib)
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   620
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   621
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   622
subsection{*Existence of Inverse, a Positive Real*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   623
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   624
lemma mem_inv_set_ex:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   625
  assumes A: "A \<in> preal" shows "\<exists>x y. 0 < x & x < y & inverse y \<notin> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   626
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   627
  from preal_exists_bound [OF A]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   628
  obtain x where [simp]: "0<x" "x \<notin> A" by blast
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   629
  show ?thesis
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   630
  proof (intro exI conjI)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   631
    show "0 < inverse (x+1)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   632
      by (simp add: order_less_trans [OF _ less_add_one]) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   633
    show "inverse(x+1) < inverse x"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   634
      by (simp add: less_imp_inverse_less less_add_one)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   635
    show "inverse (inverse x) \<notin> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   636
      by (simp add: order_less_imp_not_eq2)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   637
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   638
qed
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   639
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   640
text{*Part 1 of Dedekind sections definition*}
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   641
lemma inverse_set_not_empty:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   642
     "A \<in> preal ==> {} \<subset> inverse_set A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   643
apply (insert mem_inv_set_ex [of A])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   644
apply (auto simp add: inverse_set_def)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   645
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   646
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   647
text{*Part 2 of Dedekind sections definition*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   648
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   649
lemma preal_not_mem_inverse_set_Ex:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   650
   assumes A: "A \<in> preal"  shows "\<exists>q. 0 < q & q \<notin> inverse_set A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   651
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   652
  from preal_nonempty [OF A]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   653
  obtain x where x: "x \<in> A" and  xpos [simp]: "0<x" ..
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   654
  show ?thesis
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   655
  proof (intro exI conjI)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   656
    show "0 < inverse x" by simp
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   657
    show "inverse x \<notin> inverse_set A"
14377
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   658
    proof -
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   659
      { fix y::rat 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   660
	assume ygt: "inverse x < y"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   661
	have [simp]: "0 < y" by (simp add: order_less_trans [OF _ ygt])
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   662
	have iyless: "inverse y < x" 
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   663
	  by (simp add: inverse_less_imp_less [of x] ygt)
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   664
	have "inverse y \<in> A"
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   665
	  by (simp add: preal_downwards_closed [OF A x] iyless)}
f454b3004f8f tidying up, especially the Complex numbers
paulson
parents: 14369
diff changeset
   666
     thus ?thesis by (auto simp add: inverse_set_def)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   667
    qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   668
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   669
qed
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   670
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   671
lemma inverse_set_not_rat_set:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   672
   assumes A: "A \<in> preal"  shows "inverse_set A < {r. 0 < r}"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   673
proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   674
  show "inverse_set A \<subseteq> {r. 0 < r}"  by (force simp add: inverse_set_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   675
next
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   676
  show "inverse_set A \<noteq> {r. 0 < r}"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   677
    by (insert preal_not_mem_inverse_set_Ex [OF A], blast)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   678
qed
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   679
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   680
text{*Part 3 of Dedekind sections definition*}
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   681
lemma inverse_set_lemma3:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   682
     "[|A \<in> preal; u \<in> inverse_set A; 0 < z; z < u|] 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   683
      ==> z \<in> inverse_set A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   684
apply (auto simp add: inverse_set_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   685
apply (auto intro: order_less_trans)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   686
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   687
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   688
text{*Part 4 of Dedekind sections definition*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   689
lemma inverse_set_lemma4:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   690
     "[|A \<in> preal; y \<in> inverse_set A|] ==> \<exists>u \<in> inverse_set A. y < u"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   691
apply (auto simp add: inverse_set_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   692
apply (drule dense [of y]) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   693
apply (blast intro: order_less_trans)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   694
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   695
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   696
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   697
lemma mem_inverse_set:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   698
     "A \<in> preal ==> inverse_set A \<in> preal"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   699
apply (simp (no_asm_simp) add: preal_def cut_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   700
apply (blast intro!: inverse_set_not_empty inverse_set_not_rat_set
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   701
                     inverse_set_lemma3 inverse_set_lemma4)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   702
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   703
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   704
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   705
subsection{*Gleason's Lemma 9-3.4, page 122*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   706
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   707
lemma Gleason9_34_exists:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   708
  assumes A: "A \<in> preal"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   709
    and "\<forall>x\<in>A. x + u \<in> A"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   710
    and "0 \<le> z"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   711
  shows "\<exists>b\<in>A. b + (of_int z) * u \<in> A"
14369
c50188fe6366 tidying up arithmetic for the hyperreals
paulson
parents: 14365
diff changeset
   712
proof (cases z rule: int_cases)
c50188fe6366 tidying up arithmetic for the hyperreals
paulson
parents: 14365
diff changeset
   713
  case (nonneg n)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   714
  show ?thesis
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   715
  proof (simp add: prems, induct n)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   716
    case 0
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   717
      from preal_nonempty [OF A]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   718
      show ?case  by force 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   719
    case (Suc k)
15013
34264f5e4691 new treatment of binary numerals
paulson
parents: 14738
diff changeset
   720
      from this obtain b where "b \<in> A" "b + of_nat k * u \<in> A" ..
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14377
diff changeset
   721
      hence "b + of_int (int k)*u + u \<in> A" by (simp add: prems)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   722
      thus ?case by (force simp add: left_distrib add_ac prems) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   723
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   724
next
14369
c50188fe6366 tidying up arithmetic for the hyperreals
paulson
parents: 14365
diff changeset
   725
  case (neg n)
c50188fe6366 tidying up arithmetic for the hyperreals
paulson
parents: 14365
diff changeset
   726
  with prems show ?thesis by simp
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   727
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   728
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   729
lemma Gleason9_34_contra:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   730
  assumes A: "A \<in> preal"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   731
    shows "[|\<forall>x\<in>A. x + u \<in> A; 0 < u; 0 < y; y \<notin> A|] ==> False"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   732
proof (induct u, induct y)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   733
  fix a::int and b::int
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   734
  fix c::int and d::int
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   735
  assume bpos [simp]: "0 < b"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   736
    and dpos [simp]: "0 < d"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   737
    and closed: "\<forall>x\<in>A. x + (Fract c d) \<in> A"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   738
    and upos: "0 < Fract c d"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   739
    and ypos: "0 < Fract a b"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   740
    and notin: "Fract a b \<notin> A"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   741
  have cpos [simp]: "0 < c" 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   742
    by (simp add: zero_less_Fract_iff [OF dpos, symmetric] upos) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   743
  have apos [simp]: "0 < a" 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   744
    by (simp add: zero_less_Fract_iff [OF bpos, symmetric] ypos) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   745
  let ?k = "a*d"
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14377
diff changeset
   746
  have frle: "Fract a b \<le> Fract ?k 1 * (Fract c d)" 
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   747
  proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   748
    have "?thesis = ((a * d * b * d) \<le> c * b * (a * d * b * d))"
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14377
diff changeset
   749
      by (simp add: mult_rat le_rat order_less_imp_not_eq2 mult_ac) 
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   750
    moreover
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   751
    have "(1 * (a * d * b * d)) \<le> c * b * (a * d * b * d)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   752
      by (rule mult_mono, 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   753
          simp_all add: int_one_le_iff_zero_less zero_less_mult_iff 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   754
                        order_less_imp_le)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   755
    ultimately
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   756
    show ?thesis by simp
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   757
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   758
  have k: "0 \<le> ?k" by (simp add: order_less_imp_le zero_less_mult_iff)  
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   759
  from Gleason9_34_exists [OF A closed k]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   760
  obtain z where z: "z \<in> A" 
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14377
diff changeset
   761
             and mem: "z + of_int ?k * Fract c d \<in> A" ..
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14377
diff changeset
   762
  have less: "z + of_int ?k * Fract c d < Fract a b"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   763
    by (rule not_in_preal_ub [OF A notin mem ypos])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   764
  have "0<z" by (rule preal_imp_pos [OF A z])
14378
69c4d5997669 generic of_nat and of_int functions, and generalization of iszero
paulson
parents: 14377
diff changeset
   765
  with frle and less show False by (simp add: Fract_of_int_eq) 
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   766
qed
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   767
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   768
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   769
lemma Gleason9_34:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   770
  assumes A: "A \<in> preal"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   771
    and upos: "0 < u"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   772
  shows "\<exists>r \<in> A. r + u \<notin> A"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   773
proof (rule ccontr, simp)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   774
  assume closed: "\<forall>r\<in>A. r + u \<in> A"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   775
  from preal_exists_bound [OF A]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   776
  obtain y where y: "y \<notin> A" and ypos: "0 < y" by blast
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   777
  show False
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   778
    by (rule Gleason9_34_contra [OF A closed upos ypos y])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   779
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   780
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   781
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   782
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   783
subsection{*Gleason's Lemma 9-3.6*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   784
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   785
lemma lemma_gleason9_36:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   786
  assumes A: "A \<in> preal"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   787
    and x: "1 < x"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   788
  shows "\<exists>r \<in> A. r*x \<notin> A"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   789
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   790
  from preal_nonempty [OF A]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   791
  obtain y where y: "y \<in> A" and  ypos: "0<y" ..
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   792
  show ?thesis 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   793
  proof (rule classical)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   794
    assume "~(\<exists>r\<in>A. r * x \<notin> A)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   795
    with y have ymem: "y * x \<in> A" by blast 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   796
    from ypos mult_strict_left_mono [OF x]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   797
    have yless: "y < y*x" by simp 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   798
    let ?d = "y*x - y"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   799
    from yless have dpos: "0 < ?d" and eq: "y + ?d = y*x" by auto
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   800
    from Gleason9_34 [OF A dpos]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   801
    obtain r where r: "r\<in>A" and notin: "r + ?d \<notin> A" ..
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   802
    have rpos: "0<r" by (rule preal_imp_pos [OF A r])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   803
    with dpos have rdpos: "0 < r + ?d" by arith
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   804
    have "~ (r + ?d \<le> y + ?d)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   805
    proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   806
      assume le: "r + ?d \<le> y + ?d" 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   807
      from ymem have yd: "y + ?d \<in> A" by (simp add: eq)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   808
      have "r + ?d \<in> A" by (rule preal_downwards_closed' [OF A yd rdpos le])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   809
      with notin show False by simp
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   810
    qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   811
    hence "y < r" by simp
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   812
    with ypos have  dless: "?d < (r * ?d)/y"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   813
      by (simp add: pos_less_divide_eq mult_commute [of ?d]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   814
                    mult_strict_right_mono dpos)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   815
    have "r + ?d < r*x"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   816
    proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   817
      have "r + ?d < r + (r * ?d)/y" by (simp add: dless)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   818
      also with ypos have "... = (r/y) * (y + ?d)"
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14387
diff changeset
   819
	by (simp only: right_distrib divide_inverse mult_ac, simp)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   820
      also have "... = r*x" using ypos
15234
ec91a90c604e simplification tweaks for better arithmetic reasoning
paulson
parents: 15140
diff changeset
   821
	by (simp add: times_divide_eq_left) 
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   822
      finally show "r + ?d < r*x" .
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   823
    qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   824
    with r notin rdpos
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   825
    show "\<exists>r\<in>A. r * x \<notin> A" by (blast dest:  preal_downwards_closed [OF A])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   826
  qed  
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   827
qed
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   828
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   829
subsection{*Existence of Inverse: Part 2*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   830
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   831
lemma mem_Rep_preal_inverse_iff:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   832
      "(z \<in> Rep_preal(inverse R)) = 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   833
       (0 < z \<and> (\<exists>y. z < y \<and> inverse y \<notin> Rep_preal R))"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   834
apply (simp add: preal_inverse_def mem_inverse_set Rep_preal)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   835
apply (simp add: inverse_set_def) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   836
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   837
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   838
lemma Rep_preal_of_rat:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   839
     "0 < q ==> Rep_preal (preal_of_rat q) = {x. 0 < x \<and> x < q}"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   840
by (simp add: preal_of_rat_def rat_mem_preal) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   841
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   842
lemma subset_inverse_mult_lemma:
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   843
  assumes xpos: "0 < x" and xless: "x < 1"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   844
  shows "\<exists>r u y. 0 < r & r < y & inverse y \<notin> Rep_preal R & 
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   845
    u \<in> Rep_preal R & x = r * u"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   846
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   847
  from xpos and xless have "1 < inverse x" by (simp add: one_less_inverse_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   848
  from lemma_gleason9_36 [OF Rep_preal this]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   849
  obtain r where r: "r \<in> Rep_preal R" 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   850
             and notin: "r * (inverse x) \<notin> Rep_preal R" ..
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   851
  have rpos: "0<r" by (rule preal_imp_pos [OF Rep_preal r])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   852
  from preal_exists_greater [OF Rep_preal r]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   853
  obtain u where u: "u \<in> Rep_preal R" and rless: "r < u" ..
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   854
  have upos: "0<u" by (rule preal_imp_pos [OF Rep_preal u])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   855
  show ?thesis
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   856
  proof (intro exI conjI)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   857
    show "0 < x/u" using xpos upos
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   858
      by (simp add: zero_less_divide_iff)  
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   859
    show "x/u < x/r" using xpos upos rpos
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14387
diff changeset
   860
      by (simp add: divide_inverse mult_less_cancel_left rless) 
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   861
    show "inverse (x / r) \<notin> Rep_preal R" using notin
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14387
diff changeset
   862
      by (simp add: divide_inverse mult_commute) 
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   863
    show "u \<in> Rep_preal R" by (rule u) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   864
    show "x = x / u * u" using upos 
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14387
diff changeset
   865
      by (simp add: divide_inverse mult_commute) 
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   866
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   867
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   868
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   869
lemma subset_inverse_mult: 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   870
     "Rep_preal(preal_of_rat 1) \<subseteq> Rep_preal(inverse R * R)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   871
apply (auto simp add: Bex_def Rep_preal_of_rat mem_Rep_preal_inverse_iff 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   872
                      mem_Rep_preal_mult_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   873
apply (blast dest: subset_inverse_mult_lemma) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   874
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   875
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   876
lemma inverse_mult_subset_lemma:
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   877
  assumes rpos: "0 < r" 
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   878
    and rless: "r < y"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   879
    and notin: "inverse y \<notin> Rep_preal R"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   880
    and q: "q \<in> Rep_preal R"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   881
  shows "r*q < 1"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   882
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   883
  have "q < inverse y" using rpos rless
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   884
    by (simp add: not_in_preal_ub [OF Rep_preal notin] q)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   885
  hence "r * q < r/y" using rpos
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14387
diff changeset
   886
    by (simp add: divide_inverse mult_less_cancel_left)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   887
  also have "... \<le> 1" using rpos rless
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   888
    by (simp add: pos_divide_le_eq)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   889
  finally show ?thesis .
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   890
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   891
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   892
lemma inverse_mult_subset:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   893
     "Rep_preal(inverse R * R) \<subseteq> Rep_preal(preal_of_rat 1)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   894
apply (auto simp add: Bex_def Rep_preal_of_rat mem_Rep_preal_inverse_iff 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   895
                      mem_Rep_preal_mult_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   896
apply (simp add: zero_less_mult_iff preal_imp_pos [OF Rep_preal]) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   897
apply (blast intro: inverse_mult_subset_lemma) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   898
done
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   899
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   900
lemma preal_mult_inverse: "inverse R * R = (1::preal)"
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   901
unfolding preal_one_def
15413
901d1bfedf09 removal of archaic Abs/Rep proofs
paulson
parents: 15234
diff changeset
   902
apply (rule Rep_preal_inject [THEN iffD1])
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   903
apply (rule equalityI [OF inverse_mult_subset subset_inverse_mult]) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   904
done
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   905
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
   906
lemma preal_mult_inverse_right: "R * inverse R = (1::preal)"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   907
apply (rule preal_mult_commute [THEN subst])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   908
apply (rule preal_mult_inverse)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   909
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   910
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   911
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   912
text{*Theorems needing @{text Gleason9_34}*}
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   913
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   914
lemma Rep_preal_self_subset: "Rep_preal (R) \<subseteq> Rep_preal(R + S)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   915
proof 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   916
  fix r
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   917
  assume r: "r \<in> Rep_preal R"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   918
  have rpos: "0<r" by (rule preal_imp_pos [OF Rep_preal r])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   919
  from mem_Rep_preal_Ex 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   920
  obtain y where y: "y \<in> Rep_preal S" ..
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   921
  have ypos: "0<y" by (rule preal_imp_pos [OF Rep_preal y])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   922
  have ry: "r+y \<in> Rep_preal(R + S)" using r y
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   923
    by (auto simp add: mem_Rep_preal_add_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   924
  show "r \<in> Rep_preal(R + S)" using r ypos rpos 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   925
    by (simp add:  preal_downwards_closed [OF Rep_preal ry]) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   926
qed
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   927
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   928
lemma Rep_preal_sum_not_subset: "~ Rep_preal (R + S) \<subseteq> Rep_preal(R)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   929
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   930
  from mem_Rep_preal_Ex 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   931
  obtain y where y: "y \<in> Rep_preal S" ..
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   932
  have ypos: "0<y" by (rule preal_imp_pos [OF Rep_preal y])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   933
  from  Gleason9_34 [OF Rep_preal ypos]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   934
  obtain r where r: "r \<in> Rep_preal R" and notin: "r + y \<notin> Rep_preal R" ..
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   935
  have "r + y \<in> Rep_preal (R + S)" using r y
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   936
    by (auto simp add: mem_Rep_preal_add_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   937
  thus ?thesis using notin by blast
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   938
qed
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   939
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   940
lemma Rep_preal_sum_not_eq: "Rep_preal (R + S) \<noteq> Rep_preal(R)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   941
by (insert Rep_preal_sum_not_subset, blast)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   942
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   943
text{*at last, Gleason prop. 9-3.5(iii) page 123*}
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   944
lemma preal_self_less_add_left: "(R::preal) < R + S"
26806
40b411ec05aa Adapted to encoding of sets as predicates
berghofe
parents: 26564
diff changeset
   945
apply (unfold preal_less_def less_le)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   946
apply (simp add: Rep_preal_self_subset Rep_preal_sum_not_eq [THEN not_sym])
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   947
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   948
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   949
lemma preal_self_less_add_right: "(R::preal) < S + R"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   950
by (simp add: preal_add_commute preal_self_less_add_left)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   951
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   952
lemma preal_not_eq_self: "x \<noteq> x + (y::preal)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   953
by (insert preal_self_less_add_left [of x y], auto)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   954
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   955
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   956
subsection{*Subtraction for Positive Reals*}
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   957
22710
f44439cdce77 read prop as prop, not term;
wenzelm
parents: 22483
diff changeset
   958
text{*Gleason prop. 9-3.5(iv), page 123: proving @{prop "A < B ==> \<exists>D. A + D =
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   959
B"}. We define the claimed @{term D} and show that it is a positive real*}
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   960
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   961
text{*Part 1 of Dedekind sections definition*}
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   962
lemma diff_set_not_empty:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   963
     "R < S ==> {} \<subset> diff_set (Rep_preal S) (Rep_preal R)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   964
apply (auto simp add: preal_less_def diff_set_def elim!: equalityE) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   965
apply (frule_tac x1 = S in Rep_preal [THEN preal_exists_greater])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   966
apply (drule preal_imp_pos [OF Rep_preal], clarify)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   967
apply (cut_tac a=x and b=u in add_eq_exists, force) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   968
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   969
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   970
text{*Part 2 of Dedekind sections definition*}
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   971
lemma diff_set_nonempty:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   972
     "\<exists>q. 0 < q & q \<notin> diff_set (Rep_preal S) (Rep_preal R)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   973
apply (cut_tac X = S in Rep_preal_exists_bound)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   974
apply (erule exE)
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   975
apply (rule_tac x = x in exI, auto)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   976
apply (simp add: diff_set_def) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   977
apply (auto dest: Rep_preal [THEN preal_downwards_closed])
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   978
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   979
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   980
lemma diff_set_not_rat_set:
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
   981
  "diff_set (Rep_preal S) (Rep_preal R) < {r. 0 < r}" (is "?lhs < ?rhs")
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   982
proof
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   983
  show "?lhs \<subseteq> ?rhs" by (auto simp add: diff_set_def) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   984
  show "?lhs \<noteq> ?rhs" using diff_set_nonempty by blast
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   985
qed
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   986
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   987
text{*Part 3 of Dedekind sections definition*}
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   988
lemma diff_set_lemma3:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   989
     "[|R < S; u \<in> diff_set (Rep_preal S) (Rep_preal R); 0 < z; z < u|] 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   990
      ==> z \<in> diff_set (Rep_preal S) (Rep_preal R)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   991
apply (auto simp add: diff_set_def) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   992
apply (rule_tac x=x in exI) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   993
apply (drule Rep_preal [THEN preal_downwards_closed], auto)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   994
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
   995
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   996
text{*Part 4 of Dedekind sections definition*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   997
lemma diff_set_lemma4:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   998
     "[|R < S; y \<in> diff_set (Rep_preal S) (Rep_preal R)|] 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
   999
      ==> \<exists>u \<in> diff_set (Rep_preal S) (Rep_preal R). y < u"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1000
apply (auto simp add: diff_set_def) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1001
apply (drule Rep_preal [THEN preal_exists_greater], clarify) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1002
apply (cut_tac a="x+y" and b=u in add_eq_exists, clarify)  
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1003
apply (rule_tac x="y+xa" in exI) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1004
apply (auto simp add: add_ac)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1005
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1006
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1007
lemma mem_diff_set:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1008
     "R < S ==> diff_set (Rep_preal S) (Rep_preal R) \<in> preal"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1009
apply (unfold preal_def cut_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1010
apply (blast intro!: diff_set_not_empty diff_set_not_rat_set
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1011
                     diff_set_lemma3 diff_set_lemma4)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1012
done
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1013
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1014
lemma mem_Rep_preal_diff_iff:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1015
      "R < S ==>
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1016
       (z \<in> Rep_preal(S-R)) = 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1017
       (\<exists>x. 0 < x & 0 < z & x \<notin> Rep_preal R & x + z \<in> Rep_preal S)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1018
apply (simp add: preal_diff_def mem_diff_set Rep_preal)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1019
apply (force simp add: diff_set_def) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1020
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1021
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1022
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1023
text{*proving that @{term "R + D \<le> S"}*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1024
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1025
lemma less_add_left_lemma:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1026
  assumes Rless: "R < S"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1027
    and a: "a \<in> Rep_preal R"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1028
    and cb: "c + b \<in> Rep_preal S"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1029
    and "c \<notin> Rep_preal R"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1030
    and "0 < b"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1031
    and "0 < c"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1032
  shows "a + b \<in> Rep_preal S"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1033
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1034
  have "0<a" by (rule preal_imp_pos [OF Rep_preal a])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1035
  moreover
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1036
  have "a < c" using prems
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1037
    by (blast intro: not_in_Rep_preal_ub ) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1038
  ultimately show ?thesis using prems
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1039
    by (simp add: preal_downwards_closed [OF Rep_preal cb]) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1040
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1041
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1042
lemma less_add_left_le1:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1043
       "R < (S::preal) ==> R + (S-R) \<le> S"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1044
apply (auto simp add: Bex_def preal_le_def mem_Rep_preal_add_iff 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1045
                      mem_Rep_preal_diff_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1046
apply (blast intro: less_add_left_lemma) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1047
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1048
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1049
subsection{*proving that @{term "S \<le> R + D"} --- trickier*}
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1050
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1051
lemma lemma_sum_mem_Rep_preal_ex:
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1052
     "x \<in> Rep_preal S ==> \<exists>e. 0 < e & x + e \<in> Rep_preal S"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1053
apply (drule Rep_preal [THEN preal_exists_greater], clarify) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1054
apply (cut_tac a=x and b=u in add_eq_exists, auto) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1055
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1056
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1057
lemma less_add_left_lemma2:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1058
  assumes Rless: "R < S"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1059
    and x:     "x \<in> Rep_preal S"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1060
    and xnot: "x \<notin>  Rep_preal R"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1061
  shows "\<exists>u v z. 0 < v & 0 < z & u \<in> Rep_preal R & z \<notin> Rep_preal R & 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1062
                     z + v \<in> Rep_preal S & x = u + v"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1063
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1064
  have xpos: "0<x" by (rule preal_imp_pos [OF Rep_preal x])
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1065
  from lemma_sum_mem_Rep_preal_ex [OF x]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1066
  obtain e where epos: "0 < e" and xe: "x + e \<in> Rep_preal S" by blast
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1067
  from  Gleason9_34 [OF Rep_preal epos]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1068
  obtain r where r: "r \<in> Rep_preal R" and notin: "r + e \<notin> Rep_preal R" ..
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1069
  with x xnot xpos have rless: "r < x" by (blast intro: not_in_Rep_preal_ub)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1070
  from add_eq_exists [of r x]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1071
  obtain y where eq: "x = r+y" by auto
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1072
  show ?thesis 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1073
  proof (intro exI conjI)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1074
    show "r \<in> Rep_preal R" by (rule r)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1075
    show "r + e \<notin> Rep_preal R" by (rule notin)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1076
    show "r + e + y \<in> Rep_preal S" using xe eq by (simp add: add_ac)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1077
    show "x = r + y" by (simp add: eq)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1078
    show "0 < r + e" using epos preal_imp_pos [OF Rep_preal r]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1079
      by simp
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1080
    show "0 < y" using rless eq by arith
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1081
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1082
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1083
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1084
lemma less_add_left_le2: "R < (S::preal) ==> S \<le> R + (S-R)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1085
apply (auto simp add: preal_le_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1086
apply (case_tac "x \<in> Rep_preal R")
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1087
apply (cut_tac Rep_preal_self_subset [of R], force)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1088
apply (auto simp add: Bex_def mem_Rep_preal_add_iff mem_Rep_preal_diff_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1089
apply (blast dest: less_add_left_lemma2)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1090
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1091
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1092
lemma less_add_left: "R < (S::preal) ==> R + (S-R) = S"
27682
25aceefd4786 added class preorder
haftmann
parents: 27106
diff changeset
  1093
by (blast intro: antisym [OF less_add_left_le1 less_add_left_le2])
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1094
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1095
lemma less_add_left_Ex: "R < (S::preal) ==> \<exists>D. R + D = S"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1096
by (fast dest: less_add_left)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1097
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1098
lemma preal_add_less2_mono1: "R < (S::preal) ==> R + T < S + T"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1099
apply (auto dest!: less_add_left_Ex simp add: preal_add_assoc)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1100
apply (rule_tac y1 = D in preal_add_commute [THEN subst])
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1101
apply (auto intro: preal_self_less_add_left simp add: preal_add_assoc [symmetric])
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1102
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1103
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1104
lemma preal_add_less2_mono2: "R < (S::preal) ==> T + R < T + S"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1105
by (auto intro: preal_add_less2_mono1 simp add: preal_add_commute [of T])
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1106
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1107
lemma preal_add_right_less_cancel: "R + T < S + T ==> R < (S::preal)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1108
apply (insert linorder_less_linear [of R S], auto)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1109
apply (drule_tac R = S and T = T in preal_add_less2_mono1)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1110
apply (blast dest: order_less_trans) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1111
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1112
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1113
lemma preal_add_left_less_cancel: "T + R < T + S ==> R <  (S::preal)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1114
by (auto elim: preal_add_right_less_cancel simp add: preal_add_commute [of T])
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1115
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1116
lemma preal_add_less_cancel_right: "((R::preal) + T < S + T) = (R < S)"
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1117
by (blast intro: preal_add_less2_mono1 preal_add_right_less_cancel)
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1118
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1119
lemma preal_add_less_cancel_left: "(T + (R::preal) < T + S) = (R < S)"
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1120
by (blast intro: preal_add_less2_mono2 preal_add_left_less_cancel)
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1121
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1122
lemma preal_add_le_cancel_right: "((R::preal) + T \<le> S + T) = (R \<le> S)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1123
by (simp add: linorder_not_less [symmetric] preal_add_less_cancel_right) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1124
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1125
lemma preal_add_le_cancel_left: "(T + (R::preal) \<le> T + S) = (R \<le> S)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1126
by (simp add: linorder_not_less [symmetric] preal_add_less_cancel_left) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1127
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1128
lemma preal_add_less_mono:
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1129
     "[| x1 < y1; x2 < y2 |] ==> x1 + x2 < y1 + (y2::preal)"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1130
apply (auto dest!: less_add_left_Ex simp add: preal_add_ac)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1131
apply (rule preal_add_assoc [THEN subst])
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1132
apply (rule preal_self_less_add_right)
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1133
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1134
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1135
lemma preal_add_right_cancel: "(R::preal) + T = S + T ==> R = S"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1136
apply (insert linorder_less_linear [of R S], safe)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1137
apply (drule_tac [!] T = T in preal_add_less2_mono1, auto)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1138
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1139
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1140
lemma preal_add_left_cancel: "C + A = C + B ==> A = (B::preal)"
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1141
by (auto intro: preal_add_right_cancel simp add: preal_add_commute)
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1142
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1143
lemma preal_add_left_cancel_iff: "(C + A = C + B) = ((A::preal) = B)"
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1144
by (fast intro: preal_add_left_cancel)
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1145
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1146
lemma preal_add_right_cancel_iff: "(A + C = B + C) = ((A::preal) = B)"
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1147
by (fast intro: preal_add_right_cancel)
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1148
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1149
lemmas preal_cancels =
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1150
    preal_add_less_cancel_right preal_add_less_cancel_left
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1151
    preal_add_le_cancel_right preal_add_le_cancel_left
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1152
    preal_add_left_cancel_iff preal_add_right_cancel_iff
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1153
23285
c95a4f6b3881 instance preal :: ordered_cancel_ab_semigroup_add
huffman
parents: 22710
diff changeset
  1154
instance preal :: ordered_cancel_ab_semigroup_add
c95a4f6b3881 instance preal :: ordered_cancel_ab_semigroup_add
huffman
parents: 22710
diff changeset
  1155
proof
c95a4f6b3881 instance preal :: ordered_cancel_ab_semigroup_add
huffman
parents: 22710
diff changeset
  1156
  fix a b c :: preal
c95a4f6b3881 instance preal :: ordered_cancel_ab_semigroup_add
huffman
parents: 22710
diff changeset
  1157
  show "a + b = a + c \<Longrightarrow> b = c" by (rule preal_add_left_cancel)
23287
063039db59dd define (1::preal); clean up instance declarations
huffman
parents: 23285
diff changeset
  1158
  show "a \<le> b \<Longrightarrow> c + a \<le> c + b" by (simp only: preal_add_le_cancel_left)
23285
c95a4f6b3881 instance preal :: ordered_cancel_ab_semigroup_add
huffman
parents: 22710
diff changeset
  1159
qed
c95a4f6b3881 instance preal :: ordered_cancel_ab_semigroup_add
huffman
parents: 22710
diff changeset
  1160
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1161
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1162
subsection{*Completeness of type @{typ preal}*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1163
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1164
text{*Prove that supremum is a cut*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1165
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1166
text{*Part 1 of Dedekind sections definition*}
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1167
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1168
lemma preal_sup_set_not_empty:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1169
     "P \<noteq> {} ==> {} \<subset> (\<Union>X \<in> P. Rep_preal(X))"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1170
apply auto
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1171
apply (cut_tac X = x in mem_Rep_preal_Ex, auto)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1172
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1173
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1174
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1175
text{*Part 2 of Dedekind sections definition*}
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1176
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1177
lemma preal_sup_not_exists:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1178
     "\<forall>X \<in> P. X \<le> Y ==> \<exists>q. 0 < q & q \<notin> (\<Union>X \<in> P. Rep_preal(X))"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1179
apply (cut_tac X = Y in Rep_preal_exists_bound)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1180
apply (auto simp add: preal_le_def)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1181
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1182
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1183
lemma preal_sup_set_not_rat_set:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1184
     "\<forall>X \<in> P. X \<le> Y ==> (\<Union>X \<in> P. Rep_preal(X)) < {r. 0 < r}"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1185
apply (drule preal_sup_not_exists)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1186
apply (blast intro: preal_imp_pos [OF Rep_preal])  
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1187
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1188
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1189
text{*Part 3 of Dedekind sections definition*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1190
lemma preal_sup_set_lemma3:
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1191
     "[|P \<noteq> {}; \<forall>X \<in> P. X \<le> Y; u \<in> (\<Union>X \<in> P. Rep_preal(X)); 0 < z; z < u|]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1192
      ==> z \<in> (\<Union>X \<in> P. Rep_preal(X))"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1193
by (auto elim: Rep_preal [THEN preal_downwards_closed])
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1194
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1195
text{*Part 4 of Dedekind sections definition*}
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1196
lemma preal_sup_set_lemma4:
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1197
     "[|P \<noteq> {}; \<forall>X \<in> P. X \<le> Y; y \<in> (\<Union>X \<in> P. Rep_preal(X)) |]
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1198
          ==> \<exists>u \<in> (\<Union>X \<in> P. Rep_preal(X)). y < u"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1199
by (blast dest: Rep_preal [THEN preal_exists_greater])
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1200
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1201
lemma preal_sup:
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1202
     "[|P \<noteq> {}; \<forall>X \<in> P. X \<le> Y|] ==> (\<Union>X \<in> P. Rep_preal(X)) \<in> preal"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1203
apply (unfold preal_def cut_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1204
apply (blast intro!: preal_sup_set_not_empty preal_sup_set_not_rat_set
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1205
                     preal_sup_set_lemma3 preal_sup_set_lemma4)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1206
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1207
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1208
lemma preal_psup_le:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1209
     "[| \<forall>X \<in> P. X \<le> Y;  x \<in> P |] ==> x \<le> psup P"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1210
apply (simp (no_asm_simp) add: preal_le_def) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1211
apply (subgoal_tac "P \<noteq> {}") 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1212
apply (auto simp add: psup_def preal_sup) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1213
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1214
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1215
lemma psup_le_ub: "[| P \<noteq> {}; \<forall>X \<in> P. X \<le> Y |] ==> psup P \<le> Y"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1216
apply (simp (no_asm_simp) add: preal_le_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1217
apply (simp add: psup_def preal_sup) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1218
apply (auto simp add: preal_le_def)
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1219
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1220
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1221
text{*Supremum property*}
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1222
lemma preal_complete:
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1223
     "[| P \<noteq> {}; \<forall>X \<in> P. X \<le> Y |] ==> (\<exists>X \<in> P. Z < X) = (Z < psup P)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1224
apply (simp add: preal_less_def psup_def preal_sup)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1225
apply (auto simp add: preal_le_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1226
apply (rename_tac U) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1227
apply (cut_tac x = U and y = Z in linorder_less_linear)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1228
apply (auto simp add: preal_less_def)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1229
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1230
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1231
20495
73c8ce86eb21 cleaned up
huffman
parents: 19765
diff changeset
  1232
subsection{*The Embedding from @{typ rat} into @{typ preal}*}
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1233
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1234
lemma preal_of_rat_add_lemma1:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1235
     "[|x < y + z; 0 < x; 0 < y|] ==> x * y * inverse (y + z) < (y::rat)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1236
apply (frule_tac c = "y * inverse (y + z) " in mult_strict_right_mono)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1237
apply (simp add: zero_less_mult_iff) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1238
apply (simp add: mult_ac)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1239
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1240
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1241
lemma preal_of_rat_add_lemma2:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1242
  assumes "u < x + y"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1243
    and "0 < x"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1244
    and "0 < y"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1245
    and "0 < u"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1246
  shows "\<exists>v w::rat. w < y & 0 < v & v < x & 0 < w & u = v + w"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1247
proof (intro exI conjI)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1248
  show "u * x * inverse(x+y) < x" using prems 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1249
    by (simp add: preal_of_rat_add_lemma1) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1250
  show "u * y * inverse(x+y) < y" using prems 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1251
    by (simp add: preal_of_rat_add_lemma1 add_commute [of x]) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1252
  show "0 < u * x * inverse (x + y)" using prems
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1253
    by (simp add: zero_less_mult_iff) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1254
  show "0 < u * y * inverse (x + y)" using prems
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1255
    by (simp add: zero_less_mult_iff) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1256
  show "u = u * x * inverse (x + y) + u * y * inverse (x + y)" using prems
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1257
    by (simp add: left_distrib [symmetric] right_distrib [symmetric] mult_ac)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1258
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1259
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1260
lemma preal_of_rat_add:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1261
     "[| 0 < x; 0 < y|] 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1262
      ==> preal_of_rat ((x::rat) + y) = preal_of_rat x + preal_of_rat y"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1263
apply (unfold preal_of_rat_def preal_add_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1264
apply (simp add: rat_mem_preal) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1265
apply (rule_tac f = Abs_preal in arg_cong)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1266
apply (auto simp add: add_set_def) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1267
apply (blast dest: preal_of_rat_add_lemma2) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1268
done
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1269
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1270
lemma preal_of_rat_mult_lemma1:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1271
     "[|x < y; 0 < x; 0 < z|] ==> x * z * inverse y < (z::rat)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1272
apply (frule_tac c = "z * inverse y" in mult_strict_right_mono)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1273
apply (simp add: zero_less_mult_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1274
apply (subgoal_tac "y * (z * inverse y) = z * (y * inverse y)")
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1275
apply (simp_all add: mult_ac)
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1276
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1277
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1278
lemma preal_of_rat_mult_lemma2: 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1279
  assumes xless: "x < y * z"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1280
    and xpos: "0 < x"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1281
    and ypos: "0 < y"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1282
  shows "x * z * inverse y * inverse z < (z::rat)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1283
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1284
  have "0 < y * z" using prems by simp
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1285
  hence zpos:  "0 < z" using prems by (simp add: zero_less_mult_iff)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1286
  have "x * z * inverse y * inverse z = x * inverse y * (z * inverse z)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1287
    by (simp add: mult_ac)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1288
  also have "... = x/y" using zpos
14430
5cb24165a2e1 new material from Avigad, and simplified treatment of division by 0
paulson
parents: 14387
diff changeset
  1289
    by (simp add: divide_inverse)
23389
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23287
diff changeset
  1290
  also from xless have "... < z"
aaca6a8e5414 tuned proofs: avoid implicit prems;
wenzelm
parents: 23287
diff changeset
  1291
    by (simp add: pos_divide_less_eq [OF ypos] mult_commute)
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1292
  finally show ?thesis .
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1293
qed
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1294
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1295
lemma preal_of_rat_mult_lemma3:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1296
  assumes uless: "u < x * y"
19765
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1297
    and "0 < x"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1298
    and "0 < y"
dfe940911617 misc cleanup;
wenzelm
parents: 18433
diff changeset
  1299
    and "0 < u"
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1300
  shows "\<exists>v w::rat. v < x & w < y & 0 < v & 0 < w & u = v * w"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1301
proof -
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1302
  from dense [OF uless] 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1303
  obtain r where "u < r" "r < x * y" by blast
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1304
  thus ?thesis
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1305
  proof (intro exI conjI)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1306
  show "u * x * inverse r < x" using prems 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1307
    by (simp add: preal_of_rat_mult_lemma1) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1308
  show "r * y * inverse x * inverse y < y" using prems
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1309
    by (simp add: preal_of_rat_mult_lemma2)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1310
  show "0 < u * x * inverse r" using prems
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1311
    by (simp add: zero_less_mult_iff) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1312
  show "0 < r * y * inverse x * inverse y" using prems
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1313
    by (simp add: zero_less_mult_iff) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1314
  have "u * x * inverse r * (r * y * inverse x * inverse y) =
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1315
        u * (r * inverse r) * (x * inverse x) * (y * inverse y)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1316
    by (simp only: mult_ac)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1317
  thus "u = u * x * inverse r * (r * y * inverse x * inverse y)" using prems
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1318
    by simp
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1319
  qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1320
qed
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1321
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1322
lemma preal_of_rat_mult:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1323
     "[| 0 < x; 0 < y|] 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1324
      ==> preal_of_rat ((x::rat) * y) = preal_of_rat x * preal_of_rat y"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1325
apply (unfold preal_of_rat_def preal_mult_def)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1326
apply (simp add: rat_mem_preal) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1327
apply (rule_tac f = Abs_preal in arg_cong)
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1328
apply (auto simp add: zero_less_mult_iff mult_strict_mono mult_set_def) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1329
apply (blast dest: preal_of_rat_mult_lemma3) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1330
done
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1331
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1332
lemma preal_of_rat_less_iff:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1333
      "[| 0 < x; 0 < y|] ==> (preal_of_rat x < preal_of_rat y) = (x < y)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1334
by (force simp add: preal_of_rat_def preal_less_def rat_mem_preal) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1335
14365
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1336
lemma preal_of_rat_le_iff:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1337
      "[| 0 < x; 0 < y|] ==> (preal_of_rat x \<le> preal_of_rat y) = (x \<le> y)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1338
by (simp add: preal_of_rat_less_iff linorder_not_less [symmetric]) 
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1339
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1340
lemma preal_of_rat_eq_iff:
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1341
      "[| 0 < x; 0 < y|] ==> (preal_of_rat x = preal_of_rat y) = (x = y)"
3d4df8c166ae replacing HOL/Real/PRat, PNat by the rational number development
paulson
parents: 14335
diff changeset
  1342
by (simp add: preal_of_rat_le_iff order_eq_iff) 
14335
9c0b5e081037 conversion of Real/PReal to Isar script;
paulson
parents: 12018
diff changeset
  1343
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1344
end