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