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