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