src/HOL/Real/PReal.ML
author paulson
Thu, 01 Oct 1998 18:18:01 +0200
changeset 5588 a3ab526bb891
parent 5521 7970832271cc
child 7077 60b098bb8b8a
permissions -rw-r--r--
Revised version with Abelian group simprocs
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     1
(*  Title       : PReal.ML
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     2
    Author      : Jacques D. Fleuriot
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     3
    Copyright   : 1998  University of Cambridge
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     4
    Description : The positive reals as Dedekind sections of positive
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     5
                  rationals. Fundamentals of Abstract Analysis 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     6
                  [Gleason- p. 121] provides some of the definitions.
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     7
*)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
     8
5521
7970832271cc added wrapper for bspec
oheimb
parents: 5459
diff changeset
     9
claset_ref() := claset() delWrapper "bspec";
7970832271cc added wrapper for bspec
oheimb
parents: 5459
diff changeset
    10
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    11
open PReal;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    12
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    13
Goal "inj_on Abs_preal preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    14
by (rtac inj_on_inverseI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    15
by (etac Abs_preal_inverse 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    16
qed "inj_on_Abs_preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    17
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    18
Addsimps [inj_on_Abs_preal RS inj_on_iff];
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    19
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    20
Goal "inj(Rep_preal)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    21
by (rtac inj_inverseI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    22
by (rtac Rep_preal_inverse 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    23
qed "inj_Rep_preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    24
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    25
Goalw [preal_def] "{} ~: preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    26
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    27
qed "empty_not_mem_preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    28
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    29
(* {} : preal ==> P *)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    30
bind_thm ("empty_not_mem_prealE", empty_not_mem_preal RS notE);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    31
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    32
Addsimps [empty_not_mem_preal];
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    33
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    34
Goalw [preal_def] "{x::prat. x < $#Abs_pnat 1} : preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    35
by (rtac preal_1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    36
qed "one_set_mem_preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    37
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    38
Addsimps [one_set_mem_preal];
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    39
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
    40
Goalw [preal_def] "x : preal ==> {} < x";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    41
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    42
qed "preal_psubset_empty";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    43
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    44
Goal "{} < Rep_preal x";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    45
by (rtac (Rep_preal RS preal_psubset_empty) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    46
qed "Rep_preal_psubset_empty";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    47
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    48
Goal "? x. x: Rep_preal X";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    49
by (cut_inst_tac [("x","X")]  Rep_preal_psubset_empty 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    50
by (auto_tac (claset() addIs [(equals0I RS sym)],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    51
              simpset() addsimps [psubset_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    52
qed "mem_Rep_preal_Ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    53
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    54
Goalw [preal_def] 
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
    55
      "[| {} < A; A < {q::prat. True}; \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    56
\              (!y: A. ((!z. z < y --> z: A) & \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    57
\                        (? u: A. y < u))) |] ==> A : preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    58
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    59
qed "prealI1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    60
    
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    61
Goalw [preal_def] 
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
    62
      "[| {} < A; A < {q::prat. True}; \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    63
\              !y: A. (!z. z < y --> z: A); \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    64
\              !y: A. (? u: A. y < u) |] ==> A : preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    65
by (Best_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    66
qed "prealI2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    67
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    68
Goalw [preal_def] 
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
    69
      "A : preal ==> {} < A & A < {q::prat. True} & \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    70
\                         (!y: A. ((!z. z < y --> z: A) & \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    71
\                                  (? u: A. y < u)))";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    72
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    73
qed "prealE_lemma";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    74
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    75
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    76
AddSIs [prealI1,prealI2];
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    77
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    78
Addsimps [Abs_preal_inverse];
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    79
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    80
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
    81
Goalw [preal_def] "A : preal ==> {} < A";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    82
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    83
qed "prealE_lemma1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    84
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
    85
Goalw [preal_def] "A : preal ==> A < {q::prat. True}";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    86
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    87
qed "prealE_lemma2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    88
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
    89
Goalw [preal_def] "A : preal ==> !y: A. (!z. z < y --> z: A)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    90
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    91
qed "prealE_lemma3";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    92
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
    93
Goal "[| A : preal; y: A |] ==> (!z. z < y --> z: A)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    94
by (fast_tac (claset() addSDs [prealE_lemma3]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    95
qed "prealE_lemma3a";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    96
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
    97
Goal "[| A : preal; y: A; z < y |] ==> z: A";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    98
by (fast_tac (claset() addSDs [prealE_lemma3a]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
    99
qed "prealE_lemma3b";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   100
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   101
Goalw [preal_def] "A : preal ==> !y: A. (? u: A. y < u)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   102
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   103
qed "prealE_lemma4";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   104
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   105
Goal "[| A : preal; y: A |] ==> ? u: A. y < u";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   106
by (fast_tac (claset() addSDs [prealE_lemma4]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   107
qed "prealE_lemma4a";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   108
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   109
Goal "? x. x~: Rep_preal X";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   110
by (cut_inst_tac [("x","X")] Rep_preal 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   111
by (dtac prealE_lemma2 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   112
by (rtac ccontr 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   113
by (auto_tac (claset(),simpset() addsimps [psubset_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   114
by (blast_tac (claset() addIs [set_ext] addEs [swap]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   115
qed "not_mem_Rep_preal_Ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   116
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   117
(** prat_pnat: the injection from prat to preal **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   118
(** A few lemmas **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   119
Goal "{} < {xa::prat. xa < y}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   120
by (cut_facts_tac [qless_Ex] 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   121
by (auto_tac (claset() addEs [equalityCE],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   122
              simpset() addsimps [psubset_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   123
qed "lemma_prat_less_set_Ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   124
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   125
Goal "{xa::prat. xa < y} : preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   126
by (cut_facts_tac [qless_Ex] 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   127
by Safe_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   128
by (rtac lemma_prat_less_set_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   129
by (auto_tac (claset() addIs [prat_less_trans],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   130
    simpset() addsimps [psubset_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   131
by (eres_inst_tac [("c","y")] equalityCE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   132
by (auto_tac (claset() addDs [prat_less_irrefl],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   133
by (dres_inst_tac [("q1.0","ya")] prat_dense 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   134
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   135
qed "lemma_prat_less_set_mem_preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   136
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   137
Goal "!!(x::prat). {xa. xa < x} = {x. x < y} ==> x = y";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   138
by (cut_inst_tac [("q1.0","x"),("q2.0","y")] prat_linear 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   139
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   140
by (dtac prat_dense 1 THEN etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   141
by (eres_inst_tac [("c","xa")] equalityCE 1);
5459
1dbaf888f4e7 well-formed asym rules; misc. tidying
paulson
parents: 5148
diff changeset
   142
by (auto_tac (claset() addDs [prat_less_not_sym],simpset()));
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   143
by (dtac prat_dense 1 THEN etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   144
by (eres_inst_tac [("c","xa")] equalityCE 1);
5459
1dbaf888f4e7 well-formed asym rules; misc. tidying
paulson
parents: 5148
diff changeset
   145
by (auto_tac (claset() addDs [prat_less_not_sym],simpset()));
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   146
qed "lemma_prat_set_eq";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   147
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   148
Goal "inj(preal_prat)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   149
by (rtac injI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   150
by (rewtac preal_prat_def);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   151
by (dtac (inj_on_Abs_preal RS inj_onD) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   152
by (rtac lemma_prat_less_set_mem_preal 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   153
by (rtac lemma_prat_less_set_mem_preal 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   154
by (etac lemma_prat_set_eq 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   155
qed "inj_preal_prat";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   156
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   157
      (*** theorems for ordering ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   158
(* prove introduction and elimination rules for preal_less *)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   159
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   160
(* A positive fraction not in a positive real is an upper bound *)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   161
(* Gleason p. 122 - Remark (1)                                  *)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   162
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   163
Goal "x ~: Rep_preal(R) ==> !y: Rep_preal(R). y < x";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   164
by (cut_inst_tac [("x1","R")] (Rep_preal RS prealE_lemma) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   165
by (auto_tac (claset() addIs [not_less_not_eq_prat_less],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   166
qed "not_in_preal_ub";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   167
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   168
(* preal_less is a strong order i.e nonreflexive and transitive *)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   169
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   170
Goalw [preal_less_def] "~ (x::preal) < x";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   171
by (simp_tac (simpset() addsimps [psubset_def]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   172
qed "preal_less_not_refl";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   173
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   174
(*** y < y ==> P ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   175
bind_thm("preal_less_irrefl",preal_less_not_refl RS notE);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   176
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   177
Goal "!!(x::preal). x < y ==> x ~= y";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   178
by (auto_tac (claset(),simpset() addsimps [preal_less_not_refl]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   179
qed "preal_not_refl2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   180
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   181
Goalw  [preal_less_def] "!!(x::preal). [| x < y; y < z |] ==> x < z";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   182
by (auto_tac (claset() addDs [subsetD,equalityI],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   183
              simpset() addsimps [psubset_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   184
qed "preal_less_trans";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   185
5459
1dbaf888f4e7 well-formed asym rules; misc. tidying
paulson
parents: 5148
diff changeset
   186
Goal "!! (q1::preal). q1 < q2 ==> ~ q2 < q1";
1dbaf888f4e7 well-formed asym rules; misc. tidying
paulson
parents: 5148
diff changeset
   187
by (rtac notI 1);
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   188
by (dtac preal_less_trans 1 THEN assume_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   189
by (asm_full_simp_tac (simpset() addsimps [preal_less_not_refl]) 1);
5459
1dbaf888f4e7 well-formed asym rules; misc. tidying
paulson
parents: 5148
diff changeset
   190
qed "preal_less_not_sym";
1dbaf888f4e7 well-formed asym rules; misc. tidying
paulson
parents: 5148
diff changeset
   191
1dbaf888f4e7 well-formed asym rules; misc. tidying
paulson
parents: 5148
diff changeset
   192
(* [| x < y;  ~P ==> y < x |] ==> P *)
1dbaf888f4e7 well-formed asym rules; misc. tidying
paulson
parents: 5148
diff changeset
   193
bind_thm ("preal_less_asym", preal_less_not_sym RS swap);
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   194
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   195
Goalw [preal_less_def] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   196
      "(r1::preal) < r2 | r1 = r2 | r2 < r1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   197
by (auto_tac (claset() addSDs [inj_Rep_preal RS injD],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   198
              simpset() addsimps [psubset_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   199
by (rtac prealE_lemma3b 1 THEN rtac Rep_preal 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   200
by (assume_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   201
by (fast_tac (claset() addDs [not_in_preal_ub]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   202
qed "preal_linear";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   203
5459
1dbaf888f4e7 well-formed asym rules; misc. tidying
paulson
parents: 5148
diff changeset
   204
Goal "!!(r1::preal). [| r1 < r2 ==> P;  r1 = r2 ==> P; \
1dbaf888f4e7 well-formed asym rules; misc. tidying
paulson
parents: 5148
diff changeset
   205
\                       r2 < r1 ==> P |] ==> P";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   206
by (cut_inst_tac [("r1.0","r1"),("r2.0","r2")] preal_linear 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   207
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   208
qed "preal_linear_less2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   209
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   210
  (*** Properties of addition ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   211
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   212
Goalw [preal_add_def] "(x::preal) + y = y + x";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   213
by (res_inst_tac [("f","Abs_preal")] arg_cong 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   214
by (rtac set_ext 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   215
by (blast_tac (claset() addIs [prat_add_commute RS subst]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   216
qed "preal_add_commute";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   217
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   218
(** addition of two positive reals gives a positive real **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   219
(** lemmas for proving positive reals addition set in preal **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   220
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   221
(** Part 1 of Dedekind sections def **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   222
Goal "{} < {w. ? x: Rep_preal R. ? y:Rep_preal S. w = x + y}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   223
by (cut_facts_tac [mem_Rep_preal_Ex,mem_Rep_preal_Ex] 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   224
by (auto_tac (claset() addSIs [psubsetI] addEs [equalityCE],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   225
qed "preal_add_set_not_empty";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   226
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   227
(** Part 2 of Dedekind sections def **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   228
Goal "? q. q  ~: {w. ? x: Rep_preal R. ? y:Rep_preal S. w = x + y}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   229
by (cut_inst_tac [("X","R")] not_mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   230
by (cut_inst_tac [("X","S")] not_mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   231
by (REPEAT(etac exE 1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   232
by (REPEAT(dtac not_in_preal_ub 1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   233
by (res_inst_tac [("x","x+xa")] exI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   234
by (Auto_tac THEN (REPEAT(etac ballE 1)) THEN Auto_tac);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   235
by (dtac prat_add_less_mono 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   236
by (auto_tac (claset(),simpset() addsimps [prat_less_not_refl]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   237
qed "preal_not_mem_add_set_Ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   238
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   239
Goal "{w. ? x: Rep_preal R. ? y:Rep_preal S. w = x + y} < {q. True}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   240
by (auto_tac (claset() addSIs [psubsetI],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   241
by (cut_inst_tac [("R","R"),("S","S")] preal_not_mem_add_set_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   242
by (etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   243
by (eres_inst_tac [("c","q")] equalityCE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   244
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   245
qed "preal_add_set_not_prat_set";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   246
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   247
(** Part 3 of Dedekind sections def **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   248
Goal "!y: {w. ? x: Rep_preal R. ? y: Rep_preal S. w = x + y}. \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   249
\         !z. z < y --> z : {w. ? x:Rep_preal R. ? y:Rep_preal S. w = x + y}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   250
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   251
by (forward_tac [prat_mult_qinv_less_1] 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   252
by (forw_inst_tac [("x","x"),("q2.0","$#Abs_pnat 1")] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   253
    prat_mult_less2_mono1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   254
by (forw_inst_tac [("x","ya"),("q2.0","$#Abs_pnat 1")] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   255
    prat_mult_less2_mono1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   256
by (Asm_full_simp_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   257
by (REPEAT(dtac (Rep_preal RS prealE_lemma3a) 1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   258
by (REPEAT(etac allE 1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   259
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   260
by (REPEAT(rtac bexI 1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   261
by (auto_tac (claset(),simpset() addsimps [prat_add_mult_distrib2 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   262
     RS sym,prat_add_assoc RS sym,prat_mult_assoc]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   263
qed "preal_add_set_lemma3";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   264
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   265
Goal "!y: {w. ? x: Rep_preal R. ? y: Rep_preal S. w = x + y}. \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   266
\         ? u: {w. ? x: Rep_preal R. ? y: Rep_preal S. w = x + y}. y < u";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   267
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   268
by (dtac (Rep_preal RS prealE_lemma4a) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   269
by (auto_tac (claset() addIs [prat_add_less2_mono1],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   270
qed "preal_add_set_lemma4";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   271
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   272
Goal "{w. ? x: Rep_preal R. ? y: Rep_preal S. w = x + y} : preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   273
by (rtac prealI2 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   274
by (rtac preal_add_set_not_empty 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   275
by (rtac preal_add_set_not_prat_set 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   276
by (rtac preal_add_set_lemma3 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   277
by (rtac preal_add_set_lemma4 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   278
qed "preal_mem_add_set";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   279
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   280
Goalw [preal_add_def] "((x::preal) + y) + z = x + (y + z)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   281
by (res_inst_tac [("f","Abs_preal")] arg_cong 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   282
by (rtac set_ext 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   283
by (rtac (preal_mem_add_set RS Abs_preal_inverse RS ssubst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   284
by (rtac (preal_mem_add_set RS Abs_preal_inverse RS ssubst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   285
by (auto_tac (claset(),simpset() addsimps prat_add_ac));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   286
by (rtac bexI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   287
by (auto_tac (claset() addSIs [exI],simpset() addsimps prat_add_ac));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   288
qed "preal_add_assoc";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   289
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   290
qed_goal "preal_add_left_commute" thy
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   291
    "(z1::preal) + (z2 + z3) = z2 + (z1 + z3)"
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   292
 (fn _ => [rtac (preal_add_commute RS trans) 1, rtac (preal_add_assoc RS trans) 1,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   293
           rtac (preal_add_commute RS arg_cong) 1]);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   294
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   295
(* Positive Reals addition is an AC operator *)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   296
val preal_add_ac = [preal_add_assoc, preal_add_commute, preal_add_left_commute];
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   297
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   298
  (*** Properties of multiplication ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   299
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   300
(** Proofs essentially same as for addition **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   301
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   302
Goalw [preal_mult_def] "(x::preal) * y = y * x";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   303
by (res_inst_tac [("f","Abs_preal")] arg_cong 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   304
by (rtac set_ext 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   305
by (blast_tac (claset() addIs [prat_mult_commute RS subst]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   306
qed "preal_mult_commute";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   307
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   308
(** multiplication of two positive reals gives a positive real **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   309
(** lemmas for proving positive reals multiplication set in preal **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   310
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   311
(** Part 1 of Dedekind sections def **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   312
Goal "{} < {w. ? x: Rep_preal R. ? y:Rep_preal S. w = x * y}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   313
by (cut_facts_tac [mem_Rep_preal_Ex,mem_Rep_preal_Ex] 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   314
by (auto_tac (claset() addSIs [psubsetI] addEs [equalityCE],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   315
qed "preal_mult_set_not_empty";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   316
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   317
(** Part 2 of Dedekind sections def **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   318
Goal "? q. q  ~: {w. ? x: Rep_preal R. ? y:Rep_preal S. w = x * y}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   319
by (cut_inst_tac [("X","R")] not_mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   320
by (cut_inst_tac [("X","S")] not_mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   321
by (REPEAT(etac exE 1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   322
by (REPEAT(dtac not_in_preal_ub 1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   323
by (res_inst_tac [("x","x*xa")] exI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   324
by (Auto_tac  THEN (REPEAT(etac ballE 1)) THEN Auto_tac );
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   325
by (dtac prat_mult_less_mono 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   326
by (auto_tac (claset(),simpset() addsimps [prat_less_not_refl]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   327
qed "preal_not_mem_mult_set_Ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   328
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   329
Goal "{w. ? x: Rep_preal R. ? y:Rep_preal S. w = x * y} < {q. True}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   330
by (auto_tac (claset() addSIs [psubsetI],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   331
by (cut_inst_tac [("R","R"),("S","S")] preal_not_mem_mult_set_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   332
by (etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   333
by (eres_inst_tac [("c","q")] equalityCE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   334
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   335
qed "preal_mult_set_not_prat_set";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   336
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   337
(** Part 3 of Dedekind sections def **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   338
Goal "!y: {w. ? x: Rep_preal R. ? y: Rep_preal S. w = x * y}. \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   339
\         !z. z < y --> z : {w. ? x:Rep_preal R. ? y:Rep_preal S. w = x * y}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   340
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   341
by (forw_inst_tac [("x","qinv(ya)"),("q1.0","z")] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   342
    prat_mult_left_less2_mono1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   343
by (asm_full_simp_tac (simpset() addsimps prat_mult_ac) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   344
by (dtac (Rep_preal RS prealE_lemma3a) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   345
by (etac allE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   346
by (REPEAT(rtac bexI 1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   347
by (auto_tac (claset(),simpset() addsimps [prat_mult_assoc]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   348
qed "preal_mult_set_lemma3";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   349
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   350
Goal "!y: {w. ? x: Rep_preal R. ? y: Rep_preal S. w = x * y}. \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   351
\         ? u: {w. ? x: Rep_preal R. ? y: Rep_preal S. w = x * y}. y < u";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   352
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   353
by (dtac (Rep_preal RS prealE_lemma4a) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   354
by (auto_tac (claset() addIs [prat_mult_less2_mono1],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   355
qed "preal_mult_set_lemma4";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   356
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   357
Goal "{w. ? x: Rep_preal R. ? y: Rep_preal S. w = x * y} : preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   358
by (rtac prealI2 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   359
by (rtac preal_mult_set_not_empty 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   360
by (rtac preal_mult_set_not_prat_set 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   361
by (rtac preal_mult_set_lemma3 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   362
by (rtac preal_mult_set_lemma4 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   363
qed "preal_mem_mult_set";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   364
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   365
Goalw [preal_mult_def] "((x::preal) * y) * z = x * (y * z)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   366
by (res_inst_tac [("f","Abs_preal")] arg_cong 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   367
by (rtac set_ext 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   368
by (rtac (preal_mem_mult_set RS Abs_preal_inverse RS ssubst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   369
by (rtac (preal_mem_mult_set RS Abs_preal_inverse RS ssubst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   370
by (auto_tac (claset(),simpset() addsimps prat_mult_ac));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   371
by (rtac bexI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   372
by (auto_tac (claset() addSIs [exI],simpset() addsimps prat_mult_ac));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   373
qed "preal_mult_assoc";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   374
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   375
qed_goal "preal_mult_left_commute" thy
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   376
    "(z1::preal) * (z2 * z3) = z2 * (z1 * z3)"
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   377
 (fn _ => [rtac (preal_mult_commute RS trans) 1, 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   378
           rtac (preal_mult_assoc RS trans) 1,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   379
           rtac (preal_mult_commute RS arg_cong) 1]);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   380
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   381
(* Positive Reals multiplication is an AC operator *)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   382
val preal_mult_ac = [preal_mult_assoc, 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   383
                     preal_mult_commute, 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   384
                     preal_mult_left_commute];
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   385
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   386
(* Positive Real 1 is the multiplicative identity element *) 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   387
(* long *)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   388
Goalw [preal_prat_def,preal_mult_def] "(@#($#Abs_pnat 1)) * z = z";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   389
by (rtac (Rep_preal_inverse RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   390
by (res_inst_tac [("f","Abs_preal")] arg_cong 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   391
by (rtac (one_set_mem_preal RS Abs_preal_inverse RS ssubst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   392
by (rtac set_ext 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   393
by (auto_tac(claset(),simpset() addsimps [Rep_preal_inverse]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   394
by (EVERY1[dtac (Rep_preal RS prealE_lemma4a),etac bexE]);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   395
by (dtac prat_mult_less_mono 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   396
by (auto_tac (claset() addDs [Rep_preal RS prealE_lemma3a],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   397
by (EVERY1[forward_tac [Rep_preal RS prealE_lemma4a],etac bexE]);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   398
by (forw_inst_tac [("x","qinv(u)"),("q1.0","x")] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   399
    prat_mult_less2_mono1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   400
by (rtac exI 1 THEN Auto_tac THEN res_inst_tac [("x","u")] bexI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   401
by (auto_tac (claset(),simpset() addsimps [prat_mult_assoc]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   402
qed "preal_mult_1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   403
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   404
Goal "z * (@#($#Abs_pnat 1)) = z";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   405
by (rtac (preal_mult_commute RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   406
by (rtac preal_mult_1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   407
qed "preal_mult_1_right";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   408
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   409
(** Lemmas **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   410
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   411
qed_goal "preal_add_assoc_cong" thy
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   412
    "!!z. (z::preal) + v = z' + v' ==> z + (v + w) = z' + (v' + w)"
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   413
 (fn _ => [(asm_simp_tac (simpset() addsimps [preal_add_assoc RS sym]) 1)]);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   414
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   415
qed_goal "preal_add_assoc_swap" thy "(z::preal) + (v + w) = v + (z + w)"
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   416
 (fn _ => [(REPEAT (ares_tac [preal_add_commute RS preal_add_assoc_cong] 1))]);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   417
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   418
(** Distribution of multiplication across addition **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   419
(** lemmas for the proof **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   420
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   421
 (** lemmas **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   422
Goalw [preal_add_def] 
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   423
      "z: Rep_preal(R+S) ==> \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   424
\           ? x: Rep_preal(R). ? y: Rep_preal(S). z = x + y";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   425
by (dtac (preal_mem_add_set RS Abs_preal_inverse RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   426
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   427
qed "mem_Rep_preal_addD";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   428
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   429
Goalw [preal_add_def] 
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   430
      "? x: Rep_preal(R). ? y: Rep_preal(S). z = x + y \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   431
\      ==> z: Rep_preal(R+S)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   432
by (rtac (preal_mem_add_set RS Abs_preal_inverse RS ssubst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   433
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   434
qed "mem_Rep_preal_addI";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   435
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   436
Goal " z: Rep_preal(R+S) = (? x: Rep_preal(R). \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   437
\                                 ? y: Rep_preal(S). z = x + y)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   438
by (fast_tac (claset() addSIs [mem_Rep_preal_addD,mem_Rep_preal_addI]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   439
qed "mem_Rep_preal_add_iff";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   440
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   441
Goalw [preal_mult_def] 
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   442
      "z: Rep_preal(R*S) ==> \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   443
\           ? x: Rep_preal(R). ? y: Rep_preal(S). z = x * y";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   444
by (dtac (preal_mem_mult_set RS Abs_preal_inverse RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   445
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   446
qed "mem_Rep_preal_multD";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   447
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   448
Goalw [preal_mult_def] 
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   449
      "? x: Rep_preal(R). ? y: Rep_preal(S). z = x * y \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   450
\      ==> z: Rep_preal(R*S)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   451
by (rtac (preal_mem_mult_set RS Abs_preal_inverse RS ssubst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   452
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   453
qed "mem_Rep_preal_multI";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   454
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   455
Goal " z: Rep_preal(R*S) = (? x: Rep_preal(R). \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   456
\                                 ? y: Rep_preal(S). z = x * y)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   457
by (fast_tac (claset() addSIs [mem_Rep_preal_multD,mem_Rep_preal_multI]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   458
qed "mem_Rep_preal_mult_iff";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   459
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   460
(** More lemmas for preal_add_mult_distrib2 **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   461
goal PRat.thy "!!(a1::prat). a1 < a2 ==> a1 * b + a2 * c < a2 * (b + c)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   462
by (auto_tac (claset() addSIs [prat_add_less2_mono1,prat_mult_less2_mono1],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   463
              simpset() addsimps [prat_add_mult_distrib2]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   464
qed "lemma_prat_add_mult_mono";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   465
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   466
Goal "[| xb: Rep_preal z1; xc: Rep_preal z2; ya: \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   467
\                  Rep_preal w; yb: Rep_preal w |] ==> \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   468
\                  xb * ya + xc * yb: Rep_preal (z1 * w + z2 * w)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   469
by (fast_tac (claset() addIs [mem_Rep_preal_addI,mem_Rep_preal_multI]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   470
qed "lemma_add_mult_mem_Rep_preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   471
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   472
Goal "[| xb: Rep_preal z1; xc: Rep_preal z2; ya: \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   473
\                  Rep_preal w; yb: Rep_preal w |] ==> \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   474
\                  yb*(xb + xc): Rep_preal (w*(z1 + z2))";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   475
by (fast_tac (claset() addIs [mem_Rep_preal_addI,mem_Rep_preal_multI]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   476
qed "lemma_add_mult_mem_Rep_preal1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   477
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   478
Goal "x: Rep_preal (w * z1 + w * z2) ==> \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   479
\              x: Rep_preal (w * (z1 + z2))";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   480
by (auto_tac (claset() addSDs [mem_Rep_preal_addD,mem_Rep_preal_multD],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   481
              simpset()));
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   482
by (forw_inst_tac [("ya","xa"),("yb","xb"),("xb","ya"),("xc","yb")] 
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   483
                                   lemma_add_mult_mem_Rep_preal1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   484
by Auto_tac;
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   485
by (res_inst_tac [("q1.0","xa"),("q2.0","xb")] prat_linear_less2 1);
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   486
by (dres_inst_tac [("b","ya"),("c","yb")] lemma_prat_add_mult_mono 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   487
by (rtac (Rep_preal RS prealE_lemma3b) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   488
by (auto_tac (claset(),simpset() addsimps [prat_add_mult_distrib2]));
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   489
by (dres_inst_tac [("ya","xb"),("yb","xa"),("xc","ya"),("xb","yb")] 
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   490
                                   lemma_add_mult_mem_Rep_preal1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   491
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   492
by (dres_inst_tac [("b","yb"),("c","ya")] lemma_prat_add_mult_mono 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   493
by (rtac (Rep_preal RS prealE_lemma3b) 1);
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   494
by (thin_tac "xb * ya + xb * yb  : Rep_preal (w * (z1 + z2))" 1);
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   495
by (auto_tac (claset(),simpset() addsimps [prat_add_mult_distrib,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   496
              prat_add_commute] @ preal_add_ac ));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   497
qed "lemma_preal_add_mult_distrib";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   498
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   499
Goal "x: Rep_preal (w * (z1 + z2)) ==> \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   500
\              x: Rep_preal (w * z1 + w * z2)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   501
by (auto_tac (claset() addSDs [mem_Rep_preal_addD,mem_Rep_preal_multD]
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   502
              addSIs [bexI,mem_Rep_preal_addI,mem_Rep_preal_multI],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   503
              simpset() addsimps [prat_add_mult_distrib2]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   504
qed "lemma_preal_add_mult_distrib2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   505
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   506
Goal "(w * ((z1::preal) + z2)) = (w * z1) + (w * z2)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   507
by (rtac (inj_Rep_preal RS injD) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   508
by (rtac set_ext 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   509
by (fast_tac (claset() addIs [lemma_preal_add_mult_distrib,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   510
                       lemma_preal_add_mult_distrib2]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   511
qed "preal_add_mult_distrib2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   512
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   513
Goal "(((z1::preal) + z2) * w) = (z1 * w) + (z2 * w)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   514
by (simp_tac (simpset() addsimps [preal_mult_commute,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   515
                       preal_add_mult_distrib2]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   516
qed "preal_add_mult_distrib";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   517
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   518
(*** Prove existence of inverse ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   519
(*** Inverse is a positive real ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   520
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   521
Goal "? y. qinv(y) ~:  Rep_preal X";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   522
by (cut_inst_tac [("X","X")] not_mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   523
by (etac exE 1 THEN cut_inst_tac [("x","x")] prat_as_inverse_ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   524
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   525
qed "qinv_not_mem_Rep_preal_Ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   526
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   527
Goal "? q. q: {x. ? y. x < y & qinv y ~:  Rep_preal A}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   528
by (cut_inst_tac [("X","A")] qinv_not_mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   529
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   530
by (cut_inst_tac [("y","y")] qless_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   531
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   532
qed "lemma_preal_mem_inv_set_ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   533
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   534
(** Part 1 of Dedekind sections def **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   535
Goal "{} < {x. ? y. x < y & qinv y ~:  Rep_preal A}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   536
by (cut_facts_tac [lemma_preal_mem_inv_set_ex] 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   537
by (auto_tac (claset() addSIs [psubsetI] addEs [equalityCE],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   538
qed "preal_inv_set_not_empty";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   539
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   540
(** Part 2 of Dedekind sections def **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   541
Goal "? y. qinv(y) :  Rep_preal X";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   542
by (cut_inst_tac [("X","X")] mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   543
by (etac exE 1 THEN cut_inst_tac [("x","x")] prat_as_inverse_ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   544
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   545
qed "qinv_mem_Rep_preal_Ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   546
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   547
Goal "? x. x ~: {x. ? y. x < y & qinv y ~:  Rep_preal A}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   548
by (rtac ccontr 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   549
by (cut_inst_tac [("X","A")] qinv_mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   550
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   551
by (EVERY1[etac allE, etac exE, etac conjE]);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   552
by (dtac qinv_prat_less 1 THEN dtac not_in_preal_ub 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   553
by (eres_inst_tac [("x","qinv y")] ballE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   554
by (dtac prat_less_trans 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   555
by (auto_tac (claset(),simpset() addsimps [prat_less_not_refl]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   556
qed "preal_not_mem_inv_set_Ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   557
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   558
Goal "{x. ? y. x < y & qinv y ~:  Rep_preal A} < {q. True}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   559
by (auto_tac (claset() addSIs [psubsetI],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   560
by (cut_inst_tac [("A","A")]  preal_not_mem_inv_set_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   561
by (etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   562
by (eres_inst_tac [("c","x")] equalityCE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   563
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   564
qed "preal_inv_set_not_prat_set";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   565
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   566
(** Part 3 of Dedekind sections def **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   567
Goal "! y: {x. ? y. x < y & qinv y ~: Rep_preal A}. \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   568
 \      !z. z < y --> z : {x. ? y. x < y & qinv y ~: Rep_preal A}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   569
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   570
by (res_inst_tac [("x","ya")] exI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   571
by (auto_tac (claset() addIs [prat_less_trans],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   572
qed "preal_inv_set_lemma3";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   573
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   574
Goal "! y: {x. ? y. x < y & qinv y ~: Rep_preal A}. \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   575
\       Bex {x. ? y. x < y & qinv y ~: Rep_preal A} (op < y)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   576
by (blast_tac (claset() addDs [prat_dense]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   577
qed "preal_inv_set_lemma4";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   578
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   579
Goal "{x. ? y. x < y & qinv(y) ~: Rep_preal(A)} : preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   580
by (rtac prealI2 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   581
by (rtac preal_inv_set_not_empty 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   582
by (rtac preal_inv_set_not_prat_set 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   583
by (rtac preal_inv_set_lemma3 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   584
by (rtac preal_inv_set_lemma4 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   585
qed "preal_mem_inv_set";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   586
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   587
(*more lemmas for inverse *)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   588
Goal "x: Rep_preal(pinv(A)*A) ==> x: Rep_preal(@#($#Abs_pnat 1))";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   589
by (auto_tac (claset() addSDs [mem_Rep_preal_multD],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   590
              simpset() addsimps [pinv_def,preal_prat_def] ));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   591
by (dtac (preal_mem_inv_set RS Abs_preal_inverse RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   592
by (auto_tac (claset() addSDs [not_in_preal_ub],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   593
by (dtac prat_mult_less_mono 1 THEN Blast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   594
by (auto_tac (claset(),simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   595
qed "preal_mem_mult_invD";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   596
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   597
(*** Gleason's Lemma 9-3.4 p 122 ***)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   598
Goal "! xa : Rep_preal(A). xa + x : Rep_preal(A) ==> \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   599
\            ? xb : Rep_preal(A). xb + ($#p)*x : Rep_preal(A)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   600
by (cut_facts_tac [mem_Rep_preal_Ex] 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   601
by (res_inst_tac [("n","p")] pnat_induct 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   602
by (auto_tac (claset(),simpset() addsimps [pnat_one_def,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   603
    pSuc_is_plus_one,prat_add_mult_distrib,prat_pnat_add,prat_add_assoc RS sym]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   604
qed "lemma1_gleason9_34";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   605
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   606
Goal "Abs_prat (ratrel ^^ {(y, z)}) < xb + \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   607
\         Abs_prat (ratrel ^^ {(x*y, Abs_pnat 1)})*Abs_prat (ratrel ^^ {(w, x)})";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   608
by (res_inst_tac [("j","Abs_prat (ratrel ^^ {(x * y, Abs_pnat 1)}) *\
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   609
\                   Abs_prat (ratrel ^^ {(w, x)})")] prat_le_less_trans 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   610
by (rtac prat_self_less_add_right 2);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   611
by (auto_tac (claset() addIs [lemma_Abs_prat_le3],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   612
    simpset() addsimps [prat_mult,pre_lemma_gleason9_34b,pnat_mult_assoc]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   613
qed "lemma1b_gleason9_34";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   614
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   615
Goal "! xa : Rep_preal(A). xa + x : Rep_preal(A) ==> False";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   616
by (cut_inst_tac [("X","A")] not_mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   617
by (etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   618
by (dtac not_in_preal_ub 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   619
by (res_inst_tac [("z","x")] eq_Abs_prat 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   620
by (res_inst_tac [("z","xa")] eq_Abs_prat 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   621
by (dres_inst_tac [("p","y*xb")] lemma1_gleason9_34 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   622
by (etac bexE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   623
by (cut_inst_tac [("x","y"),("y","xb"),("w","xaa"),
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   624
    ("z","ya"),("xb","xba")] lemma1b_gleason9_34 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   625
by (dres_inst_tac [("x","xba + $#(y * xb) * x")]  bspec 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   626
by (auto_tac (claset() addIs [prat_less_asym],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   627
    simpset() addsimps [prat_pnat_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   628
qed "lemma_gleason9_34a";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   629
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   630
Goal "? r: Rep_preal(R). r + x ~: Rep_preal(R)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   631
by (rtac ccontr 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   632
by (blast_tac (claset() addIs [lemma_gleason9_34a]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   633
qed "lemma_gleason9_34";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   634
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   635
(*** Gleason's Lemma 9-3.6  ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   636
(*  lemmas for Gleason 9-3.6  *)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   637
(*                            *) 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   638
(******************************)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   639
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   640
Goal "r + r*qinv(xa)*Q3 = r*qinv(xa)*(xa + Q3)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   641
by (full_simp_tac (simpset() addsimps [prat_add_mult_distrib2,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   642
    prat_mult_assoc]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   643
qed "lemma1_gleason9_36";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   644
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   645
Goal "r*qinv(xa)*(xa*x) = r*x";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   646
by (full_simp_tac (simpset() addsimps prat_mult_ac) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   647
qed "lemma2_gleason9_36";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   648
(******)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   649
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   650
(*** FIXME: long! ***)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   651
Goal "$#1p < x ==> ? r: Rep_preal(A). r*x ~: Rep_preal(A)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   652
by (res_inst_tac [("X1","A")] (mem_Rep_preal_Ex RS exE) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   653
by (res_inst_tac [("Q","xa*x : Rep_preal(A)")] (excluded_middle RS disjE) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   654
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   655
by (dres_inst_tac [("x","xa")] prat_self_less_mult_right 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   656
by (etac prat_lessE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   657
by (cut_inst_tac [("R","A"),("x","Q3")] lemma_gleason9_34 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   658
by (dtac sym 1 THEN Auto_tac );
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   659
by (forward_tac [not_in_preal_ub] 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   660
by (dres_inst_tac [("x","xa + Q3")] bspec 1 THEN assume_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   661
by (dtac prat_add_right_less_cancel 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   662
by (dres_inst_tac [("x","qinv(xa)*Q3")] prat_mult_less2_mono1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   663
by (dres_inst_tac [("x","r")] prat_add_less2_mono2 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   664
by (asm_full_simp_tac (simpset() addsimps
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   665
    [prat_mult_assoc RS sym,lemma1_gleason9_36]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   666
by (dtac sym 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   667
by (auto_tac (claset(),simpset() addsimps [lemma2_gleason9_36]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   668
by (res_inst_tac [("x","r")] bexI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   669
by (rtac notI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   670
by (dres_inst_tac [("y","r*x")] (Rep_preal RS prealE_lemma3b) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   671
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   672
qed "lemma_gleason9_36";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   673
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   674
Goal "$#Abs_pnat 1 < x ==> ? r: Rep_preal(A). r*x ~: Rep_preal(A)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   675
by (rtac lemma_gleason9_36 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   676
by (asm_simp_tac (simpset() addsimps [pnat_one_def]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   677
qed "lemma_gleason9_36a";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   678
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   679
(*** Part 2 of existence of inverse ***)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   680
Goal "x: Rep_preal(@#($#Abs_pnat 1)) ==> x: Rep_preal(pinv(A)*A)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   681
by (auto_tac (claset() addSIs [mem_Rep_preal_multI],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   682
              simpset() addsimps [pinv_def,preal_prat_def] ));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   683
by (rtac (preal_mem_inv_set RS Abs_preal_inverse RS ssubst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   684
by (dtac prat_qinv_gt_1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   685
by (dres_inst_tac [("A","A")] lemma_gleason9_36a 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   686
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   687
by (dtac (Rep_preal RS prealE_lemma4a) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   688
by (Auto_tac  THEN dtac qinv_prat_less 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   689
by (res_inst_tac [("x","qinv(u)*x")] exI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   690
by (rtac conjI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   691
by (res_inst_tac [("x","qinv(r)*x")] exI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   692
by (auto_tac (claset() addIs [prat_mult_less2_mono1],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   693
    simpset() addsimps [qinv_mult_eq,qinv_qinv]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   694
by (res_inst_tac [("x","u")] bexI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   695
by (auto_tac (claset(),simpset() addsimps [prat_mult_assoc,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   696
    prat_mult_left_commute]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   697
qed "preal_mem_mult_invI";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   698
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   699
Goal "pinv(A)*A = (@#($#Abs_pnat 1))";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   700
by (rtac (inj_Rep_preal RS injD) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   701
by (rtac set_ext 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   702
by (fast_tac (claset() addDs [preal_mem_mult_invD,preal_mem_mult_invI]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   703
qed "preal_mult_inv";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   704
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   705
Goal "A*pinv(A) = (@#($#Abs_pnat 1))";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   706
by (rtac (preal_mult_commute RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   707
by (rtac preal_mult_inv 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   708
qed "preal_mult_inv_right";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   709
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   710
val [prem] = goal thy
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   711
    "(!!u. z = Abs_preal(u) ==> P) ==> P";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   712
by (cut_inst_tac [("x1","z")] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   713
    (rewrite_rule [preal_def] (Rep_preal RS Abs_preal_inverse)) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   714
by (res_inst_tac [("u","Rep_preal z")] prem 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   715
by (dtac (inj_Rep_preal RS injD) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   716
by (Asm_simp_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   717
qed "eq_Abs_preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   718
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   719
(*** Lemmas/Theorem(s) need lemma_gleason9_34 ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   720
Goal "Rep_preal (R1) <= Rep_preal(R1 + R2)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   721
by (cut_inst_tac [("X","R2")] mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   722
by (auto_tac (claset() addSIs [bexI] addIs [(Rep_preal RS prealE_lemma3b),
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   723
   prat_self_less_add_left,mem_Rep_preal_addI],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   724
qed "Rep_preal_self_subset";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   725
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   726
Goal "~ Rep_preal (R1 + R2) <= Rep_preal(R1)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   727
by (cut_inst_tac [("X","R2")] mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   728
by (etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   729
by (cut_inst_tac [("R","R1")] lemma_gleason9_34 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   730
by (auto_tac (claset() addIs [mem_Rep_preal_addI],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   731
qed "Rep_preal_sum_not_subset";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   732
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   733
Goal "Rep_preal (R1 + R2) ~= Rep_preal(R1)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   734
by (rtac notI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   735
by (etac equalityE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   736
by (asm_full_simp_tac (simpset() addsimps [Rep_preal_sum_not_subset]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   737
qed "Rep_preal_sum_not_eq";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   738
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   739
(*** at last --- Gleason prop. 9-3.5(iii) p. 123 ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   740
Goalw [preal_less_def,psubset_def] "(R1::preal) < R1 + R2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   741
by (simp_tac (simpset() addsimps [Rep_preal_self_subset,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   742
    Rep_preal_sum_not_eq RS not_sym]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   743
qed "preal_self_less_add_left";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   744
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   745
Goal "(R1::preal) < R2 + R1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   746
by (simp_tac (simpset() addsimps [preal_add_commute,preal_self_less_add_left]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   747
qed "preal_self_less_add_right";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   748
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   749
(*** Properties of <= ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   750
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   751
Goalw [preal_le_def,psubset_def,preal_less_def] 
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   752
                     "z<=w ==> ~(w<(z::preal))";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   753
by (auto_tac  (claset() addDs [equalityI],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   754
qed "preal_leD";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   755
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   756
val preal_leE = make_elim preal_leD;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   757
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   758
Goalw [preal_le_def,psubset_def,preal_less_def]
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   759
                   "~ z <= w ==> w<(z::preal)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   760
by (cut_inst_tac [("r1.0","w"),("r2.0","z")] preal_linear 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   761
by (auto_tac  (claset(),simpset() addsimps [preal_less_def,psubset_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   762
qed "not_preal_leE";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   763
		       
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   764
Goal "~(w < z) ==> z <= (w::preal)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   765
by (fast_tac (claset() addIs [not_preal_leE]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   766
qed "preal_leI";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   767
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   768
Goal "(~(w < z)) = (z <= (w::preal))";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   769
by (fast_tac (claset() addSIs [preal_leI,preal_leD]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   770
qed "preal_less_le_iff";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   771
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   772
Goalw [preal_le_def,preal_less_def,psubset_def] 
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   773
                  "z < w ==> z <= (w::preal)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   774
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   775
qed "preal_less_imp_le";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   776
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   777
Goalw [preal_le_def,preal_less_def,psubset_def] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   778
                      "!!(x::preal). x <= y ==> x < y | x = y";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   779
by (auto_tac (claset() addIs [inj_Rep_preal RS injD],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   780
qed "preal_le_imp_less_or_eq";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   781
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   782
Goalw [preal_le_def,preal_less_def,psubset_def] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   783
                       "!!(x::preal). x < y | x = y ==> x <=y";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   784
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   785
qed "preal_less_or_eq_imp_le";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   786
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   787
Goalw [preal_le_def] "w <= (w::preal)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   788
by (Simp_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   789
qed "preal_le_refl";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   790
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   791
val prems = goal thy "!!i. [| i <= j; j < k |] ==> i < (k::preal)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   792
by (dtac preal_le_imp_less_or_eq 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   793
by (fast_tac (claset() addIs [preal_less_trans]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   794
qed "preal_le_less_trans";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   795
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   796
val prems = goal thy "!!i. [| i < j; j <= k |] ==> i < (k::preal)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   797
by (dtac preal_le_imp_less_or_eq 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   798
by (fast_tac (claset() addIs [preal_less_trans]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   799
qed "preal_less_le_trans";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   800
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   801
Goal "[| i <= j; j <= k |] ==> i <= (k::preal)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   802
by (EVERY1 [dtac preal_le_imp_less_or_eq, dtac preal_le_imp_less_or_eq,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   803
            rtac preal_less_or_eq_imp_le, fast_tac (claset() addIs [preal_less_trans])]);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   804
qed "preal_le_trans";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   805
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   806
Goal "[| z <= w; w <= z |] ==> z = (w::preal)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   807
by (EVERY1 [dtac preal_le_imp_less_or_eq, dtac preal_le_imp_less_or_eq,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   808
            fast_tac (claset() addEs [preal_less_irrefl,preal_less_asym])]);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   809
qed "preal_le_anti_sym";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   810
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   811
Goal "[| ~ y < x; y ~= x |] ==> x < (y::preal)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   812
by (rtac not_preal_leE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   813
by (fast_tac (claset() addDs [preal_le_imp_less_or_eq]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   814
qed "not_less_not_eq_preal_less";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   815
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   816
(****)(****)(****)(****)(****)(****)(****)(****)(****)(****)(****)(****)(****)(****)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   817
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   818
(**** Set up all lemmas for proving A < B ==> ?D. A + D = B ****)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   819
(**** Gleason prop. 9-3.5(iv) p. 123 ****)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   820
(**** Define the D required and show that it is a positive real ****)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   821
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   822
(* useful lemmas - proved elsewhere? *)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   823
Goalw [psubset_def] "A < B ==> ? x. x ~: A & x : B";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   824
by (etac conjE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   825
by (etac swap 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   826
by (etac equalityI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   827
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   828
qed "lemma_psubset_mem";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   829
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   830
Goalw [psubset_def] "~ (A::'a set) < A";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   831
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   832
qed "lemma_psubset_not_refl";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   833
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   834
Goalw [psubset_def] "!!(A::'a set). [| A < B; B < C |] ==> A < C";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   835
by (auto_tac (claset() addDs [subset_antisym],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   836
qed "psubset_trans";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   837
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   838
Goalw [psubset_def] "!!(A::'a set). [| A <= B; B < C |] ==> A < C";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   839
by (auto_tac (claset() addDs [subset_antisym],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   840
qed "subset_psubset_trans";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   841
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   842
Goalw [psubset_def] "!!(A::'a set). [| A < B; B <= C |] ==> A < C";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   843
by (auto_tac (claset() addDs [subset_antisym],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   844
qed "subset_psubset_trans2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   845
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   846
Goalw [psubset_def] "!!(A::'a set). [| A < B; c : A |] ==> c : B";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   847
by (auto_tac (claset() addDs [subsetD],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   848
qed "psubsetD";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   849
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   850
(** Part 1 of Dedekind sections def **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   851
Goalw [preal_less_def]
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   852
     "A < B ==> \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   853
\     ? q. q : {d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   854
by (EVERY1[dtac lemma_psubset_mem, etac exE, etac conjE]);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   855
by (dres_inst_tac [("x1","B")] (Rep_preal RS prealE_lemma4a) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   856
by (auto_tac (claset(),simpset() addsimps [prat_less_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   857
qed "lemma_ex_mem_less_left_add1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   858
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   859
Goal
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
   860
     "A < B ==> \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   861
\       {} < {d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   862
by (dtac lemma_ex_mem_less_left_add1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   863
by (auto_tac (claset() addSIs [psubsetI] addEs [equalityCE],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   864
qed "preal_less_set_not_empty";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   865
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   866
(** Part 2 of Dedekind sections def **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   867
Goal "? q. q ~: {d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   868
by (cut_inst_tac [("X","B")] not_mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   869
by (etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   870
by (res_inst_tac [("x","x")] exI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   871
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   872
by (cut_inst_tac [("x","x"),("y","n")] prat_self_less_add_right 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   873
by (auto_tac (claset() addDs [Rep_preal RS prealE_lemma3b],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   874
qed "lemma_ex_not_mem_less_left_add1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   875
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   876
Goal "{d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)} < {q. True}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   877
by (auto_tac (claset() addSIs [psubsetI],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   878
by (cut_inst_tac [("A","A"),("B","B")] lemma_ex_not_mem_less_left_add1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   879
by (etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   880
by (eres_inst_tac [("c","q")] equalityCE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   881
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   882
qed "preal_less_set_not_prat_set";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   883
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   884
(** Part 3 of Dedekind sections def **)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   885
Goal "A < B ==> ! y: {d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)}. \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   886
 \      !z. z < y --> z : {d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   887
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   888
by (dres_inst_tac [("x","n")] prat_add_less2_mono2 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   889
by (dtac (Rep_preal RS prealE_lemma3b) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   890
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   891
qed "preal_less_set_lemma3";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   892
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   893
Goal "A < B ==> ! y: {d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)}. \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   894
\       Bex {d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)} (op < y)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   895
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   896
by (dtac (Rep_preal RS prealE_lemma4a) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   897
by (auto_tac (claset(),simpset() addsimps [prat_less_def,prat_add_assoc]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   898
qed "preal_less_set_lemma4";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   899
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   900
Goal 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   901
     "!! (A::preal). A < B ==> \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   902
\     {d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)}: preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   903
by (rtac prealI2 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   904
by (rtac preal_less_set_not_empty 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   905
by (rtac preal_less_set_not_prat_set 2);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   906
by (rtac preal_less_set_lemma3 2);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   907
by (rtac preal_less_set_lemma4 3);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   908
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   909
qed "preal_mem_less_set";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   910
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   911
(** proving that A + D <= B **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   912
Goalw [preal_le_def] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   913
       "!! (A::preal). A < B ==> \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   914
\         A + Abs_preal({d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)}) <= B";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   915
by (rtac subsetI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   916
by (dtac mem_Rep_preal_addD 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   917
by (auto_tac (claset(),simpset() addsimps [
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   918
    preal_mem_less_set RS Abs_preal_inverse]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   919
by (dtac not_in_preal_ub 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   920
by (dtac bspec 1 THEN assume_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   921
by (dres_inst_tac [("x","y")] prat_add_less2_mono1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   922
by (dres_inst_tac [("x1","B")] (Rep_preal RS prealE_lemma3b) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   923
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   924
qed "preal_less_add_left_subsetI";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   925
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   926
(** proving that B <= A + D  --- trickier **)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   927
(** lemma **)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
   928
Goal "x : Rep_preal(B) ==> ? e. x + e : Rep_preal(B)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   929
by (dtac (Rep_preal RS prealE_lemma4a) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   930
by (auto_tac (claset(),simpset() addsimps [prat_less_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   931
qed "lemma_sum_mem_Rep_preal_ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   932
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   933
Goalw [preal_le_def] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   934
       "!! (A::preal). A < B ==> \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   935
\         B <= A + Abs_preal({d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)})";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   936
by (rtac subsetI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   937
by (res_inst_tac [("Q","x: Rep_preal(A)")] (excluded_middle RS disjE) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   938
by (rtac mem_Rep_preal_addI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   939
by (dtac lemma_sum_mem_Rep_preal_ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   940
by (etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   941
by (cut_inst_tac [("R","A"),("x","e")] lemma_gleason9_34 1 THEN etac bexE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   942
by (dtac not_in_preal_ub 1 THEN dtac bspec 1 THEN assume_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   943
by (etac prat_lessE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   944
by (res_inst_tac [("x","r")] bexI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   945
by (res_inst_tac [("x","Q3")] bexI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   946
by (cut_facts_tac [Rep_preal_self_subset] 4);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   947
by (auto_tac (claset(),simpset() addsimps [
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   948
    preal_mem_less_set RS Abs_preal_inverse]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   949
by (res_inst_tac [("x","r+e")] exI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   950
by (asm_full_simp_tac (simpset() addsimps prat_add_ac) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   951
qed "preal_less_add_left_subsetI2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   952
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   953
(*** required proof ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   954
Goal "!! (A::preal). A < B ==> \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   955
\         A + Abs_preal({d. ? n. n ~: Rep_preal(A) & n + d : Rep_preal(B)}) = B";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   956
by (blast_tac (claset() addIs [preal_le_anti_sym,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   957
                preal_less_add_left_subsetI,preal_less_add_left_subsetI2]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   958
qed "preal_less_add_left";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   959
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   960
Goal "!! (A::preal). A < B ==> ? D. A + D = B";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   961
by (fast_tac (claset() addDs [preal_less_add_left]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   962
qed "preal_less_add_left_Ex";        
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   963
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   964
Goal "!!(A::preal). A < B ==> A + C < B + C";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   965
by (auto_tac (claset() addSDs [preal_less_add_left_Ex],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   966
    simpset() addsimps [preal_add_assoc]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   967
by (res_inst_tac [("y1","D")] (preal_add_commute RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   968
by (auto_tac (claset() addIs [preal_self_less_add_left],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   969
          simpset() addsimps [preal_add_assoc RS sym]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   970
qed "preal_add_less2_mono1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   971
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   972
Goal "!!(A::preal). A < B ==> C + A < C + B";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   973
by (auto_tac (claset() addIs [preal_add_less2_mono1],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   974
    simpset() addsimps [preal_add_commute]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   975
qed "preal_add_less2_mono2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   976
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   977
Goal 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   978
      "!!(q1::preal). q1 < q2 ==> q1 * x < q2 * x";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   979
by (dtac preal_less_add_left_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   980
by (auto_tac (claset(),simpset() addsimps [preal_add_mult_distrib,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   981
    preal_self_less_add_left]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   982
qed "preal_mult_less_mono1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   983
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   984
Goal "!!(q1::preal). q1 < q2  ==> x * q1 < x * q2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   985
by (auto_tac (claset() addDs [preal_mult_less_mono1],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   986
    simpset() addsimps [preal_mult_commute]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   987
qed "preal_mult_left_less_mono1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   988
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   989
Goal "!!(q1::preal). q1 <= q2  ==> x * q1 <= x * q2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   990
by (dtac preal_le_imp_less_or_eq 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   991
by (Step_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   992
by (auto_tac (claset() addSIs [preal_le_refl,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   993
    preal_less_imp_le,preal_mult_left_less_mono1],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   994
qed "preal_mult_left_le_mono1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   995
 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   996
Goal "!!(q1::preal). q1 <= q2  ==> q1 * x <= q2 * x";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   997
by (auto_tac (claset() addDs [preal_mult_left_le_mono1],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   998
    simpset() addsimps [preal_mult_commute]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
   999
qed "preal_mult_le_mono1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1000
 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1001
Goal "!!(q1::preal). q1 <= q2  ==> x + q1 <= x + q2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1002
by (dtac preal_le_imp_less_or_eq 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1003
by (Step_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1004
by (auto_tac (claset() addSIs [preal_le_refl,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1005
    preal_less_imp_le,preal_add_less2_mono1],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1006
    simpset() addsimps [preal_add_commute]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1007
qed "preal_add_left_le_mono1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1008
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1009
Goal "!!(q1::preal). q1 <= q2  ==> q1 + x <= q2 + x";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1010
by (auto_tac (claset() addDs [preal_add_left_le_mono1],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1011
    simpset() addsimps [preal_add_commute]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1012
qed "preal_add_le_mono1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1013
 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1014
Goal "!!(A::preal). A + C < B + C ==> A < B";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1015
by (cut_facts_tac [preal_linear] 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1016
by (auto_tac (claset() addEs [preal_less_irrefl],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1017
by (dres_inst_tac [("A","B"),("C","C")] preal_add_less2_mono1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1018
by (fast_tac (claset() addDs [preal_less_trans] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1019
                addEs [preal_less_irrefl]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1020
qed "preal_add_right_less_cancel";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1021
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1022
Goal "!!(A::preal). C + A < C + B ==> A < B";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1023
by (auto_tac (claset() addEs [preal_add_right_less_cancel],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1024
              simpset() addsimps [preal_add_commute]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1025
qed "preal_add_left_less_cancel";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1026
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1027
Goal "((A::preal) + C < B + C) = (A < B)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1028
by (REPEAT(ares_tac [iffI,preal_add_less2_mono1,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1029
    preal_add_right_less_cancel] 1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1030
qed "preal_add_less_iff1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1031
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1032
Addsimps [preal_add_less_iff1];
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1033
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1034
Goal "(C + (A::preal) < C + B) = (A < B)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1035
by (REPEAT(ares_tac [iffI,preal_add_less2_mono2,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1036
    preal_add_left_less_cancel] 1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1037
qed "preal_add_less_iff2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1038
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1039
Addsimps [preal_add_less_iff2];
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1040
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
  1041
Goal "[| x1 < y1; x2 < y2 |] ==> x1 + x2 < y1 + (y2::preal)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1042
by (auto_tac (claset() addSDs [preal_less_add_left_Ex],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1043
    simpset() addsimps  preal_add_ac));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1044
by (rtac (preal_add_assoc RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1045
by (rtac preal_self_less_add_right 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1046
qed "preal_add_less_mono";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1047
5148
74919e8f221c More tidying and removal of "\!\!... from Goal commands
paulson
parents: 5143
diff changeset
  1048
Goal "[| x1 < y1; x2 < y2 |] ==> x1 * x2 < y1 * (y2::preal)";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1049
by (auto_tac (claset() addSDs [preal_less_add_left_Ex],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1050
              simpset() addsimps [preal_add_mult_distrib,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1051
              preal_add_mult_distrib2,preal_self_less_add_left,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1052
              preal_add_assoc] @ preal_mult_ac));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1053
qed "preal_mult_less_mono";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1054
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1055
Goal "!!(A::preal). A + C = B + C ==> A = B";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1056
by (cut_facts_tac [preal_linear] 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1057
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1058
by (ALLGOALS(dres_inst_tac [("C","C")] preal_add_less2_mono1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1059
by (auto_tac (claset() addEs [preal_less_irrefl],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1060
qed "preal_add_right_cancel";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1061
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1062
Goal "!!(A::preal). C + A = C + B ==> A = B";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1063
by (auto_tac (claset() addIs [preal_add_right_cancel],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1064
              simpset() addsimps [preal_add_commute]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1065
qed "preal_add_left_cancel";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1066
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1067
Goal "(C + A = C + B) = ((A::preal) = B)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1068
by (fast_tac (claset() addIs [preal_add_left_cancel]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1069
qed "preal_add_left_cancel_iff";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1070
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1071
Goal "(A + C = B + C) = ((A::preal) = B)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1072
by (fast_tac (claset() addIs [preal_add_right_cancel]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1073
qed "preal_add_right_cancel_iff";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1074
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1075
Addsimps [preal_add_left_cancel_iff,preal_add_right_cancel_iff];
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1076
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1077
(*** Completeness of preal ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1079
(*** prove that supremum is a cut ***)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1080
Goal "? (X::preal). X: P ==> \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1081
\         ? q.  q: {w. ? X. X : P & w : Rep_preal X}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1082
by Safe_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1083
by (cut_inst_tac [("X","X")] mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1084
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1085
qed "preal_sup_mem_Ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1086
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1087
(** Part 1 of Dedekind def **)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1088
Goal "? (X::preal). X: P ==> \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1089
\         {} < {w. ? X : P. w : Rep_preal X}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1090
by (dtac preal_sup_mem_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1091
by (auto_tac (claset() addSIs [psubsetI] addEs [equalityCE],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1092
qed "preal_sup_set_not_empty";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1093
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1094
(** Part 2 of Dedekind sections def **) 
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1095
Goalw [preal_less_def] "? Y. (! X: P. X < Y)  \             
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1096
\         ==> ? q. q ~: {w. ? X. X: P & w: Rep_preal(X)}"; (**)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1097
by (auto_tac (claset(),simpset() addsimps [psubset_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1098
by (cut_inst_tac [("X","Y")] not_mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1099
by (etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1100
by (res_inst_tac [("x","x")] exI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1101
by (auto_tac (claset() addSDs [bspec],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1102
qed "preal_sup_not_mem_Ex";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1103
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1104
Goalw [preal_le_def] "? Y. (! X: P. X <= Y)  \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1105
\         ==> ? q. q ~: {w. ? X. X: P & w: Rep_preal(X)}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1106
by (Step_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1107
by (cut_inst_tac [("X","Y")] not_mem_Rep_preal_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1108
by (etac exE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1109
by (res_inst_tac [("x","x")] exI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1110
by (auto_tac (claset() addSDs [bspec],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1111
qed "preal_sup_not_mem_Ex1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1112
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1113
Goal "? Y. (! X: P. X < Y)  \                                    
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1114
\         ==> {w. ? X: P. w: Rep_preal(X)} < {q. True}";       (**)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1115
by (dtac preal_sup_not_mem_Ex 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1116
by (auto_tac (claset() addSIs [psubsetI],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1117
by (eres_inst_tac [("c","q")] equalityCE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1118
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1119
qed "preal_sup_set_not_prat_set";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1120
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1121
Goal "? Y. (! X: P. X <= Y)  \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1122
\         ==> {w. ? X: P. w: Rep_preal(X)} < {q. True}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1123
by (dtac preal_sup_not_mem_Ex1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1124
by (auto_tac (claset() addSIs [psubsetI],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1125
by (eres_inst_tac [("c","q")] equalityCE 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1126
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1127
qed "preal_sup_set_not_prat_set1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1128
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1129
(** Part 3 of Dedekind sections def **)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1130
Goal "[|? (X::preal). X: P; ? Y. (! X:P. X < Y) |] \              
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1131
\         ==> ! y: {w. ? X: P. w: Rep_preal X}. \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1132
\             !z. z < y --> z: {w. ? X: P. w: Rep_preal X}";         (**)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1133
by (auto_tac(claset() addEs [Rep_preal RS prealE_lemma3b],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1134
qed "preal_sup_set_lemma3";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1135
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1136
Goal "[|? (X::preal). X: P; ? Y. (! X:P. X <= Y) |] \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1137
\         ==> ! y: {w. ? X: P. w: Rep_preal X}. \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1138
\             !z. z < y --> z: {w. ? X: P. w: Rep_preal X}";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1139
by (auto_tac(claset() addEs [Rep_preal RS prealE_lemma3b],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1140
qed "preal_sup_set_lemma3_1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1141
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1142
Goal "[|? (X::preal). X: P; ? Y. (! X:P. X < Y) |] \              
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1143
\         ==>  !y: {w. ? X: P. w: Rep_preal X}. \                        
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1144
\             Bex {w. ? X: P. w: Rep_preal X} (op < y)";                (**)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1145
by (blast_tac (claset() addDs [(Rep_preal RS prealE_lemma4a)]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1146
qed "preal_sup_set_lemma4";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1147
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1148
Goal "[|? (X::preal). X: P; ? Y. (! X:P. X <= Y) |] \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1149
\         ==>  !y: {w. ? X: P. w: Rep_preal X}. \
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1150
\             Bex {w. ? X: P. w: Rep_preal X} (op < y)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1151
by (blast_tac (claset() addDs [(Rep_preal RS prealE_lemma4a)]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1152
qed "preal_sup_set_lemma4_1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1153
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1154
Goal "[|? (X::preal). X: P; ? Y. (! X:P. X < Y) |] \            
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1155
\         ==> {w. ? X: P. w: Rep_preal(X)}: preal";                      (**)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1156
by (rtac prealI2 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1157
by (rtac preal_sup_set_not_empty 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1158
by (rtac preal_sup_set_not_prat_set 2);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1159
by (rtac preal_sup_set_lemma3 3);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1160
by (rtac preal_sup_set_lemma4 5);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1161
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1162
qed "preal_sup";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1163
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1164
Goal "[|? (X::preal). X: P; ? Y. (! X:P. X <= Y) |] \
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1165
\         ==> {w. ? X: P. w: Rep_preal(X)}: preal";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1166
by (rtac prealI2 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1167
by (rtac preal_sup_set_not_empty 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1168
by (rtac preal_sup_set_not_prat_set1 2);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1169
by (rtac preal_sup_set_lemma3_1 3);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1170
by (rtac preal_sup_set_lemma4_1 5);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1171
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1172
qed "preal_sup1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1173
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1174
Goalw [psup_def] "? Y. (! X:P. X < Y) ==> ! x: P. x <= psup P";      (**) 
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1175
by (auto_tac (claset(),simpset() addsimps [preal_le_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1176
by (rtac (preal_sup RS Abs_preal_inverse RS ssubst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1177
by Auto_tac;
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1178
qed "preal_psup_leI";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1179
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1180
Goalw [psup_def] "? Y. (! X:P. X <= Y) ==> ! x: P. x <= psup P";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1181
by (auto_tac (claset(),simpset() addsimps [preal_le_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1182
by (rtac (preal_sup1 RS Abs_preal_inverse RS ssubst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1183
by (auto_tac (claset(),simpset() addsimps [preal_le_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1184
qed "preal_psup_leI2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1185
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1186
Goal "[| ? Y. (! X:P. X < Y); x : P |] ==> x <= psup P";              (**)
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1187
by (blast_tac (claset() addSDs [preal_psup_leI]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1188
qed "preal_psup_leI2b";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1189
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1190
Goal "[| ? Y. (! X:P. X <= Y); x : P |] ==> x <= psup P";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1191
by (blast_tac (claset() addSDs [preal_psup_leI2]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1192
qed "preal_psup_leI2a";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1193
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1194
Goalw [psup_def] "[| ? X. X : P; ! X:P. X < Y |] ==> psup P <= Y";   (**)
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1195
by (auto_tac (claset(),simpset() addsimps [preal_le_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1196
by (dtac (([exI,exI] MRS preal_sup) RS Abs_preal_inverse RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1197
by (rotate_tac 1 2);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1198
by (assume_tac 2);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1199
by (auto_tac (claset() addSDs [bspec],simpset() addsimps [preal_less_def,psubset_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1200
qed "psup_le_ub";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1201
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1202
Goalw [psup_def] "[| ? X. X : P; ! X:P. X <= Y |] ==> psup P <= Y";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1203
by (auto_tac (claset(),simpset() addsimps [preal_le_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1204
by (dtac (([exI,exI] MRS preal_sup1) RS Abs_preal_inverse RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1205
by (rotate_tac 1 2);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1206
by (assume_tac 2);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1207
by (auto_tac (claset() addSDs [bspec],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1208
    simpset() addsimps [preal_less_def,psubset_def,preal_le_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1209
qed "psup_le_ub1";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1210
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1211
(** supremum property **)
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1212
Goal "[|? (X::preal). X: P; ? Y. (! X:P. X < Y) |] \                  
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1213
\         ==> (!Y. (? X: P. Y < X) = (Y < psup P))";              
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1214
by (forward_tac [preal_sup RS Abs_preal_inverse] 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1215
by (Fast_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1216
by (auto_tac (claset() addSIs [psubsetI],simpset() addsimps [psup_def,preal_less_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1217
by (blast_tac (claset() addDs [psubset_def RS meta_eq_to_obj_eq RS iffD1]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1218
by (rotate_tac 4 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1219
by (asm_full_simp_tac (simpset() addsimps [psubset_def]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1220
by (dtac bspec 1 THEN assume_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1221
by (REPEAT(etac conjE 1));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1222
by (EVERY1[rtac swap, assume_tac, rtac set_ext]);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1223
by (auto_tac (claset() addSDs [lemma_psubset_mem],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1224
by (cut_inst_tac [("r1.0","Xa"),("r2.0","Ya")] preal_linear 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1225
by (auto_tac (claset() addDs [psubsetD],simpset() addsimps [preal_less_def]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1226
qed "preal_complete";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1227
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1228
(****)(****)(****)(****)(****)(****)(****)(****)(****)(****)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1229
    (****** Embedding ******)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1230
(*** mapping from prat into preal ***)
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1231
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1232
Goal "x < z1 + z2 ==> x * z1 * qinv (z1 + z2) < z1";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1233
by (dres_inst_tac [("x","z1 * qinv (z1 + z2)")] prat_mult_less2_mono1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1234
by (asm_full_simp_tac (simpset() addsimps prat_mult_ac) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1235
qed "lemma_preal_rat_less";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1236
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1237
Goal "x < z1 + z2 ==> x * z2 * qinv (z1 + z2) < z2";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1238
by (stac prat_add_commute 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1239
by (dtac (prat_add_commute RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1240
by (etac lemma_preal_rat_less 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1241
qed "lemma_preal_rat_less2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1242
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1243
Goalw [preal_prat_def,preal_add_def] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1244
            "@#((z1::prat) + z2) = @#z1 + @#z2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1245
by (res_inst_tac [("f","Abs_preal")] arg_cong 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1246
by (auto_tac (claset() addIs [prat_add_less_mono] addSIs [set_ext],simpset() addsimps 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1247
    [lemma_prat_less_set_mem_preal RS Abs_preal_inverse]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1248
by (res_inst_tac [("x","x*z1*qinv(z1+z2)")] exI 1 THEN rtac conjI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1249
by (etac lemma_preal_rat_less 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1250
by (res_inst_tac [("x","x*z2*qinv(z1+z2)")] exI 1 THEN rtac conjI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1251
by (etac lemma_preal_rat_less2 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1252
by (asm_full_simp_tac (simpset() addsimps [prat_add_mult_distrib RS sym,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1253
     prat_add_mult_distrib2 RS sym] @ prat_mult_ac) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1254
qed "preal_prat_add";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1255
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1256
Goal "x < xa ==> x*z1*qinv(xa) < z1";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1257
by (dres_inst_tac [("x","z1 * qinv xa")] prat_mult_less2_mono1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1258
by (dtac (prat_mult_left_commute RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1259
by (asm_full_simp_tac (simpset() addsimps prat_mult_ac) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1260
qed "lemma_preal_rat_less3";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1261
5143
b94cd208f073 Removal of leading "\!\!..." from most Goal commands
paulson
parents: 5078
diff changeset
  1262
Goal "xa < z1 * z2 ==> xa*z2*qinv(z1*z2) < z2";
5078
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1263
by (dres_inst_tac [("x","z2 * qinv(z1*z2)")] prat_mult_less2_mono1 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1264
by (dtac (prat_mult_left_commute RS subst) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1265
by (asm_full_simp_tac (simpset() addsimps prat_mult_ac) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1266
qed "lemma_preal_rat_less4";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1267
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1268
Goalw [preal_prat_def,preal_mult_def] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1269
            "@#((z1::prat) * z2) = @#z1 * @#z2";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1270
by (res_inst_tac [("f","Abs_preal")] arg_cong 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1271
by (auto_tac (claset() addIs [prat_mult_less_mono] addSIs [set_ext],simpset() addsimps 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1272
    [lemma_prat_less_set_mem_preal RS Abs_preal_inverse]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1273
by (dtac prat_dense 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1274
by (Step_tac 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1275
by (res_inst_tac [("x","x*z1*qinv(xa)")] exI 1 THEN rtac conjI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1276
by (etac lemma_preal_rat_less3 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1277
by (res_inst_tac [("x"," xa*z2*qinv(z1*z2)")] exI 1 THEN rtac conjI 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1278
by (etac lemma_preal_rat_less4 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1279
by (asm_full_simp_tac (simpset() 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1280
    addsimps [qinv_mult_eq RS sym] @ prat_mult_ac) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1281
by (asm_full_simp_tac (simpset() 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1282
    addsimps [prat_mult_assoc RS sym]) 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1283
qed "preal_prat_mult";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1284
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1285
Goalw [preal_prat_def,preal_less_def] 
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1286
      "(@#p < @#q) = (p < q)";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1287
by (auto_tac (claset() addSDs [lemma_prat_set_eq] addEs [prat_less_trans],
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1288
    simpset() addsimps [lemma_prat_less_set_mem_preal,
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1289
    psubset_def,prat_less_not_refl]));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1290
by (res_inst_tac [("q1.0","p"),("q2.0","q")] prat_linear_less2 1);
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1291
by (auto_tac (claset() addIs [prat_less_irrefl],simpset()));
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1292
qed "preal_prat_less_iff";
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1293
7b5ea59c0275 Installation of target HOL-Real
paulson
parents:
diff changeset
  1294
Addsimps [preal_prat_less_iff];