| author | wenzelm | 
| Sat, 25 May 2013 15:37:53 +0200 | |
| changeset 52143 | 36ffe23b25f8 | 
| parent 51717 | 9e7d1c139569 | 
| child 52729 | 412c9e0381a1 | 
| permissions | -rw-r--r-- | 
| 28685 | 1  | 
(* Title: HOL/Orderings.thy  | 
| 15524 | 2  | 
Author: Tobias Nipkow, Markus Wenzel, and Larry Paulson  | 
3  | 
*)  | 
|
4  | 
||
| 25614 | 5  | 
header {* Abstract orderings *}
 | 
| 15524 | 6  | 
|
7  | 
theory Orderings  | 
|
| 
35301
 
90e42f9ba4d1
distributed theory Algebras to theories Groups and Lattices
 
haftmann 
parents: 
35115 
diff
changeset
 | 
8  | 
imports HOL  | 
| 
46950
 
d0181abdbdac
declare command keywords via theory header, including strict checking outside Pure;
 
wenzelm 
parents: 
46884 
diff
changeset
 | 
9  | 
keywords "print_orders" :: diag  | 
| 15524 | 10  | 
begin  | 
11  | 
||
| 48891 | 12  | 
ML_file "~~/src/Provers/order.ML"  | 
13  | 
ML_file "~~/src/Provers/quasi.ML" (* FIXME unused? *)  | 
|
14  | 
||
| 51487 | 15  | 
subsection {* Abstract ordering *}
 | 
16  | 
||
17  | 
locale ordering =  | 
|
18  | 
fixes less_eq :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (infix "\<preceq>" 50)  | 
|
19  | 
and less :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (infix "\<prec>" 50)  | 
|
20  | 
assumes strict_iff_order: "a \<prec> b \<longleftrightarrow> a \<preceq> b \<and> a \<noteq> b"  | 
|
21  | 
  assumes refl: "a \<preceq> a" -- {* not @{text iff}: makes problems due to multiple (dual) interpretations *}
 | 
|
22  | 
and antisym: "a \<preceq> b \<Longrightarrow> b \<preceq> a \<Longrightarrow> a = b"  | 
|
23  | 
and trans: "a \<preceq> b \<Longrightarrow> b \<preceq> c \<Longrightarrow> a \<preceq> c"  | 
|
24  | 
begin  | 
|
25  | 
||
26  | 
lemma strict_implies_order:  | 
|
27  | 
"a \<prec> b \<Longrightarrow> a \<preceq> b"  | 
|
28  | 
by (simp add: strict_iff_order)  | 
|
29  | 
||
30  | 
lemma strict_implies_not_eq:  | 
|
31  | 
"a \<prec> b \<Longrightarrow> a \<noteq> b"  | 
|
32  | 
by (simp add: strict_iff_order)  | 
|
33  | 
||
34  | 
lemma not_eq_order_implies_strict:  | 
|
35  | 
"a \<noteq> b \<Longrightarrow> a \<preceq> b \<Longrightarrow> a \<prec> b"  | 
|
36  | 
by (simp add: strict_iff_order)  | 
|
37  | 
||
38  | 
lemma order_iff_strict:  | 
|
39  | 
"a \<preceq> b \<longleftrightarrow> a \<prec> b \<or> a = b"  | 
|
40  | 
by (auto simp add: strict_iff_order refl)  | 
|
41  | 
||
42  | 
lemma irrefl: -- {* not @{text iff}: makes problems due to multiple (dual) interpretations *}
 | 
|
43  | 
"\<not> a \<prec> a"  | 
|
44  | 
by (simp add: strict_iff_order)  | 
|
45  | 
||
46  | 
lemma asym:  | 
|
47  | 
"a \<prec> b \<Longrightarrow> b \<prec> a \<Longrightarrow> False"  | 
|
48  | 
by (auto simp add: strict_iff_order intro: antisym)  | 
|
49  | 
||
50  | 
lemma strict_trans1:  | 
|
51  | 
"a \<preceq> b \<Longrightarrow> b \<prec> c \<Longrightarrow> a \<prec> c"  | 
|
52  | 
by (auto simp add: strict_iff_order intro: trans antisym)  | 
|
53  | 
||
54  | 
lemma strict_trans2:  | 
|
55  | 
"a \<prec> b \<Longrightarrow> b \<preceq> c \<Longrightarrow> a \<prec> c"  | 
|
56  | 
by (auto simp add: strict_iff_order intro: trans antisym)  | 
|
57  | 
||
58  | 
lemma strict_trans:  | 
|
59  | 
"a \<prec> b \<Longrightarrow> b \<prec> c \<Longrightarrow> a \<prec> c"  | 
|
60  | 
by (auto intro: strict_trans1 strict_implies_order)  | 
|
61  | 
||
62  | 
end  | 
|
63  | 
||
64  | 
locale ordering_top = ordering +  | 
|
65  | 
fixes top :: "'a"  | 
|
66  | 
assumes extremum [simp]: "a \<preceq> top"  | 
|
67  | 
begin  | 
|
68  | 
||
69  | 
lemma extremum_uniqueI:  | 
|
70  | 
"top \<preceq> a \<Longrightarrow> a = top"  | 
|
71  | 
by (rule antisym) auto  | 
|
72  | 
||
73  | 
lemma extremum_unique:  | 
|
74  | 
"top \<preceq> a \<longleftrightarrow> a = top"  | 
|
75  | 
by (auto intro: antisym)  | 
|
76  | 
||
77  | 
lemma extremum_strict [simp]:  | 
|
78  | 
"\<not> (top \<prec> a)"  | 
|
79  | 
using extremum [of a] by (auto simp add: order_iff_strict intro: asym irrefl)  | 
|
80  | 
||
81  | 
lemma not_eq_extremum:  | 
|
82  | 
"a \<noteq> top \<longleftrightarrow> a \<prec> top"  | 
|
83  | 
by (auto simp add: order_iff_strict intro: not_eq_order_implies_strict extremum)  | 
|
84  | 
||
85  | 
end  | 
|
86  | 
||
87  | 
||
| 
35092
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
88  | 
subsection {* Syntactic orders *}
 | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
89  | 
|
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
90  | 
class ord =  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
91  | 
fixes less_eq :: "'a \<Rightarrow> 'a \<Rightarrow> bool"  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
92  | 
and less :: "'a \<Rightarrow> 'a \<Rightarrow> bool"  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
93  | 
begin  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
94  | 
|
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
95  | 
notation  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
96  | 
  less_eq  ("op <=") and
 | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
97  | 
  less_eq  ("(_/ <= _)" [51, 51] 50) and
 | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
98  | 
  less  ("op <") and
 | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
99  | 
  less  ("(_/ < _)"  [51, 51] 50)
 | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
100  | 
|
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
101  | 
notation (xsymbols)  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
102  | 
  less_eq  ("op \<le>") and
 | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
103  | 
  less_eq  ("(_/ \<le> _)"  [51, 51] 50)
 | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
104  | 
|
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
105  | 
notation (HTML output)  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
106  | 
  less_eq  ("op \<le>") and
 | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
107  | 
  less_eq  ("(_/ \<le> _)"  [51, 51] 50)
 | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
108  | 
|
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
109  | 
abbreviation (input)  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
110  | 
greater_eq (infix ">=" 50) where  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
111  | 
"x >= y \<equiv> y <= x"  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
112  | 
|
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
113  | 
notation (input)  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
114  | 
greater_eq (infix "\<ge>" 50)  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
115  | 
|
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
116  | 
abbreviation (input)  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
117  | 
greater (infix ">" 50) where  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
118  | 
"x > y \<equiv> y < x"  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
119  | 
|
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
120  | 
end  | 
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
121  | 
|
| 
 
cfe605c54e50
moved less_eq, less to Orderings.thy; moved abs, sgn to Groups.thy
 
haftmann 
parents: 
35028 
diff
changeset
 | 
122  | 
|
| 27682 | 123  | 
subsection {* Quasi orders *}
 | 
| 15524 | 124  | 
|
| 27682 | 125  | 
class preorder = ord +  | 
126  | 
assumes less_le_not_le: "x < y \<longleftrightarrow> x \<le> y \<and> \<not> (y \<le> x)"  | 
|
| 25062 | 127  | 
and order_refl [iff]: "x \<le> x"  | 
128  | 
and order_trans: "x \<le> y \<Longrightarrow> y \<le> z \<Longrightarrow> x \<le> z"  | 
|
| 21248 | 129  | 
begin  | 
130  | 
||
| 15524 | 131  | 
text {* Reflexivity. *}
 | 
132  | 
||
| 25062 | 133  | 
lemma eq_refl: "x = y \<Longrightarrow> x \<le> y"  | 
| 15524 | 134  | 
    -- {* This form is useful with the classical reasoner. *}
 | 
| 23212 | 135  | 
by (erule ssubst) (rule order_refl)  | 
| 15524 | 136  | 
|
| 25062 | 137  | 
lemma less_irrefl [iff]: "\<not> x < x"  | 
| 27682 | 138  | 
by (simp add: less_le_not_le)  | 
139  | 
||
140  | 
lemma less_imp_le: "x < y \<Longrightarrow> x \<le> y"  | 
|
141  | 
unfolding less_le_not_le by blast  | 
|
142  | 
||
143  | 
||
144  | 
text {* Asymmetry. *}
 | 
|
145  | 
||
146  | 
lemma less_not_sym: "x < y \<Longrightarrow> \<not> (y < x)"  | 
|
147  | 
by (simp add: less_le_not_le)  | 
|
148  | 
||
149  | 
lemma less_asym: "x < y \<Longrightarrow> (\<not> P \<Longrightarrow> y < x) \<Longrightarrow> P"  | 
|
150  | 
by (drule less_not_sym, erule contrapos_np) simp  | 
|
151  | 
||
152  | 
||
153  | 
text {* Transitivity. *}
 | 
|
154  | 
||
155  | 
lemma less_trans: "x < y \<Longrightarrow> y < z \<Longrightarrow> x < z"  | 
|
156  | 
by (auto simp add: less_le_not_le intro: order_trans)  | 
|
157  | 
||
158  | 
lemma le_less_trans: "x \<le> y \<Longrightarrow> y < z \<Longrightarrow> x < z"  | 
|
159  | 
by (auto simp add: less_le_not_le intro: order_trans)  | 
|
160  | 
||
161  | 
lemma less_le_trans: "x < y \<Longrightarrow> y \<le> z \<Longrightarrow> x < z"  | 
|
162  | 
by (auto simp add: less_le_not_le intro: order_trans)  | 
|
163  | 
||
164  | 
||
165  | 
text {* Useful for simplification, but too risky to include by default. *}
 | 
|
166  | 
||
167  | 
lemma less_imp_not_less: "x < y \<Longrightarrow> (\<not> y < x) \<longleftrightarrow> True"  | 
|
168  | 
by (blast elim: less_asym)  | 
|
169  | 
||
170  | 
lemma less_imp_triv: "x < y \<Longrightarrow> (y < x \<longrightarrow> P) \<longleftrightarrow> True"  | 
|
171  | 
by (blast elim: less_asym)  | 
|
172  | 
||
173  | 
||
174  | 
text {* Transitivity rules for calculational reasoning *}
 | 
|
175  | 
||
176  | 
lemma less_asym': "a < b \<Longrightarrow> b < a \<Longrightarrow> P"  | 
|
177  | 
by (rule less_asym)  | 
|
178  | 
||
179  | 
||
180  | 
text {* Dual order *}
 | 
|
181  | 
||
182  | 
lemma dual_preorder:  | 
|
| 
36635
 
080b755377c0
locale predicates of classes carry a mandatory "class" prefix
 
haftmann 
parents: 
35828 
diff
changeset
 | 
183  | 
"class.preorder (op \<ge>) (op >)"  | 
| 28823 | 184  | 
proof qed (auto simp add: less_le_not_le intro: order_trans)  | 
| 27682 | 185  | 
|
186  | 
end  | 
|
187  | 
||
188  | 
||
189  | 
subsection {* Partial orders *}
 | 
|
190  | 
||
191  | 
class order = preorder +  | 
|
192  | 
assumes antisym: "x \<le> y \<Longrightarrow> y \<le> x \<Longrightarrow> x = y"  | 
|
193  | 
begin  | 
|
194  | 
||
| 51487 | 195  | 
lemma less_le: "x < y \<longleftrightarrow> x \<le> y \<and> x \<noteq> y"  | 
196  | 
by (auto simp add: less_le_not_le intro: antisym)  | 
|
197  | 
||
198  | 
end  | 
|
199  | 
||
| 
51546
 
2e26df807dc7
more uniform style for interpretation and sublocale declarations
 
haftmann 
parents: 
51487 
diff
changeset
 | 
200  | 
sublocale order < order!: ordering less_eq less + dual_order!: ordering greater_eq greater  | 
| 51487 | 201  | 
by default (auto intro: antisym order_trans simp add: less_le)  | 
202  | 
||
203  | 
context order  | 
|
204  | 
begin  | 
|
205  | 
||
206  | 
text {* Reflexivity. *}
 | 
|
| 15524 | 207  | 
|
| 25062 | 208  | 
lemma le_less: "x \<le> y \<longleftrightarrow> x < y \<or> x = y"  | 
| 15524 | 209  | 
    -- {* NOT suitable for iff, since it can cause PROOF FAILED. *}
 | 
| 
51546
 
2e26df807dc7
more uniform style for interpretation and sublocale declarations
 
haftmann 
parents: 
51487 
diff
changeset
 | 
210  | 
by (fact order.order_iff_strict)  | 
| 15524 | 211  | 
|
| 25062 | 212  | 
lemma le_imp_less_or_eq: "x \<le> y \<Longrightarrow> x < y \<or> x = y"  | 
| 23212 | 213  | 
unfolding less_le by blast  | 
| 15524 | 214  | 
|
| 21329 | 215  | 
|
216  | 
text {* Useful for simplification, but too risky to include by default. *}
 | 
|
217  | 
||
| 25062 | 218  | 
lemma less_imp_not_eq: "x < y \<Longrightarrow> (x = y) \<longleftrightarrow> False"  | 
| 23212 | 219  | 
by auto  | 
| 21329 | 220  | 
|
| 25062 | 221  | 
lemma less_imp_not_eq2: "x < y \<Longrightarrow> (y = x) \<longleftrightarrow> False"  | 
| 23212 | 222  | 
by auto  | 
| 21329 | 223  | 
|
224  | 
||
225  | 
text {* Transitivity rules for calculational reasoning *}
 | 
|
226  | 
||
| 25062 | 227  | 
lemma neq_le_trans: "a \<noteq> b \<Longrightarrow> a \<le> b \<Longrightarrow> a < b"  | 
| 
51546
 
2e26df807dc7
more uniform style for interpretation and sublocale declarations
 
haftmann 
parents: 
51487 
diff
changeset
 | 
228  | 
by (fact order.not_eq_order_implies_strict)  | 
| 21329 | 229  | 
|
| 25062 | 230  | 
lemma le_neq_trans: "a \<le> b \<Longrightarrow> a \<noteq> b \<Longrightarrow> a < b"  | 
| 
51546
 
2e26df807dc7
more uniform style for interpretation and sublocale declarations
 
haftmann 
parents: 
51487 
diff
changeset
 | 
231  | 
by (rule order.not_eq_order_implies_strict)  | 
| 21329 | 232  | 
|
| 15524 | 233  | 
|
234  | 
text {* Asymmetry. *}
 | 
|
235  | 
||
| 25062 | 236  | 
lemma eq_iff: "x = y \<longleftrightarrow> x \<le> y \<and> y \<le> x"  | 
| 23212 | 237  | 
by (blast intro: antisym)  | 
| 15524 | 238  | 
|
| 25062 | 239  | 
lemma antisym_conv: "y \<le> x \<Longrightarrow> x \<le> y \<longleftrightarrow> x = y"  | 
| 23212 | 240  | 
by (blast intro: antisym)  | 
| 15524 | 241  | 
|
| 25062 | 242  | 
lemma less_imp_neq: "x < y \<Longrightarrow> x \<noteq> y"  | 
| 
51546
 
2e26df807dc7
more uniform style for interpretation and sublocale declarations
 
haftmann 
parents: 
51487 
diff
changeset
 | 
243  | 
by (fact order.strict_implies_not_eq)  | 
| 21248 | 244  | 
|
| 21083 | 245  | 
|
| 27107 | 246  | 
text {* Least value operator *}
 | 
247  | 
||
| 27299 | 248  | 
definition (in ord)  | 
| 27107 | 249  | 
  Least :: "('a \<Rightarrow> bool) \<Rightarrow> 'a" (binder "LEAST " 10) where
 | 
250  | 
"Least P = (THE x. P x \<and> (\<forall>y. P y \<longrightarrow> x \<le> y))"  | 
|
251  | 
||
252  | 
lemma Least_equality:  | 
|
253  | 
assumes "P x"  | 
|
254  | 
and "\<And>y. P y \<Longrightarrow> x \<le> y"  | 
|
255  | 
shows "Least P = x"  | 
|
256  | 
unfolding Least_def by (rule the_equality)  | 
|
257  | 
(blast intro: assms antisym)+  | 
|
258  | 
||
259  | 
lemma LeastI2_order:  | 
|
260  | 
assumes "P x"  | 
|
261  | 
and "\<And>y. P y \<Longrightarrow> x \<le> y"  | 
|
262  | 
and "\<And>x. P x \<Longrightarrow> \<forall>y. P y \<longrightarrow> x \<le> y \<Longrightarrow> Q x"  | 
|
263  | 
shows "Q (Least P)"  | 
|
264  | 
unfolding Least_def by (rule theI2)  | 
|
265  | 
(blast intro: assms antisym)+  | 
|
266  | 
||
267  | 
||
| 26014 | 268  | 
text {* Dual order *}
 | 
| 22916 | 269  | 
|
| 26014 | 270  | 
lemma dual_order:  | 
| 
36635
 
080b755377c0
locale predicates of classes carry a mandatory "class" prefix
 
haftmann 
parents: 
35828 
diff
changeset
 | 
271  | 
"class.order (op \<ge>) (op >)"  | 
| 27682 | 272  | 
by (intro_locales, rule dual_preorder) (unfold_locales, rule antisym)  | 
| 22916 | 273  | 
|
| 21248 | 274  | 
end  | 
| 15524 | 275  | 
|
| 21329 | 276  | 
|
277  | 
subsection {* Linear (total) orders *}
 | 
|
278  | 
||
| 22316 | 279  | 
class linorder = order +  | 
| 25207 | 280  | 
assumes linear: "x \<le> y \<or> y \<le> x"  | 
| 21248 | 281  | 
begin  | 
282  | 
||
| 25062 | 283  | 
lemma less_linear: "x < y \<or> x = y \<or> y < x"  | 
| 23212 | 284  | 
unfolding less_le using less_le linear by blast  | 
| 21248 | 285  | 
|
| 25062 | 286  | 
lemma le_less_linear: "x \<le> y \<or> y < x"  | 
| 23212 | 287  | 
by (simp add: le_less less_linear)  | 
| 21248 | 288  | 
|
289  | 
lemma le_cases [case_names le ge]:  | 
|
| 25062 | 290  | 
"(x \<le> y \<Longrightarrow> P) \<Longrightarrow> (y \<le> x \<Longrightarrow> P) \<Longrightarrow> P"  | 
| 23212 | 291  | 
using linear by blast  | 
| 21248 | 292  | 
|
| 
22384
 
33a46e6c7f04
prefix of class interpretation not mandatory any longer
 
haftmann 
parents: 
22377 
diff
changeset
 | 
293  | 
lemma linorder_cases [case_names less equal greater]:  | 
| 25062 | 294  | 
"(x < y \<Longrightarrow> P) \<Longrightarrow> (x = y \<Longrightarrow> P) \<Longrightarrow> (y < x \<Longrightarrow> P) \<Longrightarrow> P"  | 
| 23212 | 295  | 
using less_linear by blast  | 
| 21248 | 296  | 
|
| 25062 | 297  | 
lemma not_less: "\<not> x < y \<longleftrightarrow> y \<le> x"  | 
| 23212 | 298  | 
apply (simp add: less_le)  | 
299  | 
using linear apply (blast intro: antisym)  | 
|
300  | 
done  | 
|
301  | 
||
302  | 
lemma not_less_iff_gr_or_eq:  | 
|
| 25062 | 303  | 
"\<not>(x < y) \<longleftrightarrow> (x > y | x = y)"  | 
| 23212 | 304  | 
apply(simp add:not_less le_less)  | 
305  | 
apply blast  | 
|
306  | 
done  | 
|
| 15524 | 307  | 
|
| 25062 | 308  | 
lemma not_le: "\<not> x \<le> y \<longleftrightarrow> y < x"  | 
| 23212 | 309  | 
apply (simp add: less_le)  | 
310  | 
using linear apply (blast intro: antisym)  | 
|
311  | 
done  | 
|
| 15524 | 312  | 
|
| 25062 | 313  | 
lemma neq_iff: "x \<noteq> y \<longleftrightarrow> x < y \<or> y < x"  | 
| 23212 | 314  | 
by (cut_tac x = x and y = y in less_linear, auto)  | 
| 15524 | 315  | 
|
| 25062 | 316  | 
lemma neqE: "x \<noteq> y \<Longrightarrow> (x < y \<Longrightarrow> R) \<Longrightarrow> (y < x \<Longrightarrow> R) \<Longrightarrow> R"  | 
| 23212 | 317  | 
by (simp add: neq_iff) blast  | 
| 15524 | 318  | 
|
| 25062 | 319  | 
lemma antisym_conv1: "\<not> x < y \<Longrightarrow> x \<le> y \<longleftrightarrow> x = y"  | 
| 23212 | 320  | 
by (blast intro: antisym dest: not_less [THEN iffD1])  | 
| 15524 | 321  | 
|
| 25062 | 322  | 
lemma antisym_conv2: "x \<le> y \<Longrightarrow> \<not> x < y \<longleftrightarrow> x = y"  | 
| 23212 | 323  | 
by (blast intro: antisym dest: not_less [THEN iffD1])  | 
| 15524 | 324  | 
|
| 25062 | 325  | 
lemma antisym_conv3: "\<not> y < x \<Longrightarrow> \<not> x < y \<longleftrightarrow> x = y"  | 
| 23212 | 326  | 
by (blast intro: antisym dest: not_less [THEN iffD1])  | 
| 15524 | 327  | 
|
| 25062 | 328  | 
lemma leI: "\<not> x < y \<Longrightarrow> y \<le> x"  | 
| 23212 | 329  | 
unfolding not_less .  | 
| 16796 | 330  | 
|
| 25062 | 331  | 
lemma leD: "y \<le> x \<Longrightarrow> \<not> x < y"  | 
| 23212 | 332  | 
unfolding not_less .  | 
| 16796 | 333  | 
|
334  | 
(*FIXME inappropriate name (or delete altogether)*)  | 
|
| 25062 | 335  | 
lemma not_leE: "\<not> y \<le> x \<Longrightarrow> x < y"  | 
| 23212 | 336  | 
unfolding not_le .  | 
| 21248 | 337  | 
|
| 22916 | 338  | 
|
| 26014 | 339  | 
text {* Dual order *}
 | 
| 22916 | 340  | 
|
| 26014 | 341  | 
lemma dual_linorder:  | 
| 
36635
 
080b755377c0
locale predicates of classes carry a mandatory "class" prefix
 
haftmann 
parents: 
35828 
diff
changeset
 | 
342  | 
"class.linorder (op \<ge>) (op >)"  | 
| 
 
080b755377c0
locale predicates of classes carry a mandatory "class" prefix
 
haftmann 
parents: 
35828 
diff
changeset
 | 
343  | 
by (rule class.linorder.intro, rule dual_order) (unfold_locales, rule linear)  | 
| 22916 | 344  | 
|
345  | 
||
| 23881 | 346  | 
text {* min/max *}
 | 
347  | 
||
| 27299 | 348  | 
definition (in ord) min :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" where  | 
| 37767 | 349  | 
"min a b = (if a \<le> b then a else b)"  | 
| 23881 | 350  | 
|
| 27299 | 351  | 
definition (in ord) max :: "'a \<Rightarrow> 'a \<Rightarrow> 'a" where  | 
| 37767 | 352  | 
"max a b = (if a \<le> b then b else a)"  | 
| 
22384
 
33a46e6c7f04
prefix of class interpretation not mandatory any longer
 
haftmann 
parents: 
22377 
diff
changeset
 | 
353  | 
|
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
354  | 
lemma min_le_iff_disj:  | 
| 25062 | 355  | 
"min x y \<le> z \<longleftrightarrow> x \<le> z \<or> y \<le> z"  | 
| 23212 | 356  | 
unfolding min_def using linear by (auto intro: order_trans)  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
357  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
358  | 
lemma le_max_iff_disj:  | 
| 25062 | 359  | 
"z \<le> max x y \<longleftrightarrow> z \<le> x \<or> z \<le> y"  | 
| 23212 | 360  | 
unfolding max_def using linear by (auto intro: order_trans)  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
361  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
362  | 
lemma min_less_iff_disj:  | 
| 25062 | 363  | 
"min x y < z \<longleftrightarrow> x < z \<or> y < z"  | 
| 23212 | 364  | 
unfolding min_def le_less using less_linear by (auto intro: less_trans)  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
365  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
366  | 
lemma less_max_iff_disj:  | 
| 25062 | 367  | 
"z < max x y \<longleftrightarrow> z < x \<or> z < y"  | 
| 23212 | 368  | 
unfolding max_def le_less using less_linear by (auto intro: less_trans)  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
369  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
370  | 
lemma min_less_iff_conj [simp]:  | 
| 25062 | 371  | 
"z < min x y \<longleftrightarrow> z < x \<and> z < y"  | 
| 23212 | 372  | 
unfolding min_def le_less using less_linear by (auto intro: less_trans)  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
373  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
374  | 
lemma max_less_iff_conj [simp]:  | 
| 25062 | 375  | 
"max x y < z \<longleftrightarrow> x < z \<and> y < z"  | 
| 23212 | 376  | 
unfolding max_def le_less using less_linear by (auto intro: less_trans)  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
377  | 
|
| 
35828
 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 
blanchet 
parents: 
35579 
diff
changeset
 | 
378  | 
lemma split_min [no_atp]:  | 
| 25062 | 379  | 
"P (min i j) \<longleftrightarrow> (i \<le> j \<longrightarrow> P i) \<and> (\<not> i \<le> j \<longrightarrow> P j)"  | 
| 23212 | 380  | 
by (simp add: min_def)  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
381  | 
|
| 
35828
 
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
 
blanchet 
parents: 
35579 
diff
changeset
 | 
382  | 
lemma split_max [no_atp]:  | 
| 25062 | 383  | 
"P (max i j) \<longleftrightarrow> (i \<le> j \<longrightarrow> P j) \<and> (\<not> i \<le> j \<longrightarrow> P i)"  | 
| 23212 | 384  | 
by (simp add: max_def)  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
385  | 
|
| 21248 | 386  | 
end  | 
387  | 
||
| 23948 | 388  | 
|
| 21083 | 389  | 
subsection {* Reasoning tools setup *}
 | 
390  | 
||
| 21091 | 391  | 
ML {*
 | 
392  | 
||
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
393  | 
signature ORDERS =  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
394  | 
sig  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
395  | 
val print_structures: Proof.context -> unit  | 
| 47432 | 396  | 
val attrib_setup: theory -> theory  | 
| 32215 | 397  | 
val order_tac: Proof.context -> thm list -> int -> tactic  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
398  | 
end;  | 
| 21091 | 399  | 
|
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
400  | 
structure Orders: ORDERS =  | 
| 21248 | 401  | 
struct  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
402  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
403  | 
(** Theory and context data **)  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
404  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
405  | 
fun struct_eq ((s1: string, ts1), (s2, ts2)) =  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
406  | 
(s1 = s2) andalso eq_list (op aconv) (ts1, ts2);  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
407  | 
|
| 33519 | 408  | 
structure Data = Generic_Data  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
409  | 
(  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
410  | 
type T = ((string * term list) * Order_Tac.less_arith) list;  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
411  | 
(* Order structures:  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
412  | 
identifier of the structure, list of operations and record of theorems  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
413  | 
needed to set up the transitivity reasoner,  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
414  | 
identifier and operations identify the structure uniquely. *)  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
415  | 
val empty = [];  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
416  | 
val extend = I;  | 
| 33519 | 417  | 
fun merge data = AList.join struct_eq (K fst) data;  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
418  | 
);  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
419  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
420  | 
fun print_structures ctxt =  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
421  | 
let  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
422  | 
val structs = Data.get (Context.Proof ctxt);  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
423  | 
fun pretty_term t = Pretty.block  | 
| 24920 | 424  | 
[Pretty.quote (Syntax.pretty_term ctxt t), Pretty.brk 1,  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
425  | 
Pretty.str "::", Pretty.brk 1,  | 
| 24920 | 426  | 
Pretty.quote (Syntax.pretty_typ ctxt (type_of t))];  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
427  | 
fun pretty_struct ((s, ts), _) = Pretty.block  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
428  | 
[Pretty.str s, Pretty.str ":", Pretty.brk 1,  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
429  | 
       Pretty.enclose "(" ")" (Pretty.breaks (map pretty_term ts))];
 | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
430  | 
in  | 
| 51579 | 431  | 
Pretty.writeln (Pretty.big_list "order structures:" (map pretty_struct structs))  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
432  | 
end;  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
433  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
434  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
435  | 
(** Method **)  | 
| 21091 | 436  | 
|
| 32215 | 437  | 
fun struct_tac ((s, [eq, le, less]), thms) ctxt prems =  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
438  | 
let  | 
| 
30107
 
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
 
berghofe 
parents: 
29823 
diff
changeset
 | 
439  | 
    fun decomp thy (@{const Trueprop} $ t) =
 | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
440  | 
let  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
441  | 
fun excluded t =  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
442  | 
(* exclude numeric types: linear arithmetic subsumes transitivity *)  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
443  | 
let val T = type_of t  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
444  | 
in  | 
| 
32960
 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 
wenzelm 
parents: 
32899 
diff
changeset
 | 
445  | 
T = HOLogic.natT orelse T = HOLogic.intT orelse T = HOLogic.realT  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
446  | 
end;  | 
| 
32960
 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 
wenzelm 
parents: 
32899 
diff
changeset
 | 
447  | 
fun rel (bin_op $ t1 $ t2) =  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
448  | 
if excluded t1 then NONE  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
449  | 
else if Pattern.matches thy (eq, bin_op) then SOME (t1, "=", t2)  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
450  | 
else if Pattern.matches thy (le, bin_op) then SOME (t1, "<=", t2)  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
451  | 
else if Pattern.matches thy (less, bin_op) then SOME (t1, "<", t2)  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
452  | 
else NONE  | 
| 
32960
 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 
wenzelm 
parents: 
32899 
diff
changeset
 | 
453  | 
| rel _ = NONE;  | 
| 
 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 
wenzelm 
parents: 
32899 
diff
changeset
 | 
454  | 
        fun dec (Const (@{const_name Not}, _) $ t) = (case rel t
 | 
| 
 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 
wenzelm 
parents: 
32899 
diff
changeset
 | 
455  | 
of NONE => NONE  | 
| 
 
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
 
wenzelm 
parents: 
32899 
diff
changeset
 | 
456  | 
| SOME (t1, rel, t2) => SOME (t1, "~" ^ rel, t2))  | 
| 
24741
 
a53f5db5acbb
Fixed setup of transitivity reasoner (function decomp).
 
ballarin 
parents: 
24704 
diff
changeset
 | 
457  | 
| dec x = rel x;  | 
| 
30107
 
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
 
berghofe 
parents: 
29823 
diff
changeset
 | 
458  | 
in dec t end  | 
| 
 
f3b3b0e3d184
Fixed nonexhaustive match problem in decomp, to make it fail more gracefully
 
berghofe 
parents: 
29823 
diff
changeset
 | 
459  | 
| decomp thy _ = NONE;  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
460  | 
in  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
461  | 
case s of  | 
| 32215 | 462  | 
"order" => Order_Tac.partial_tac decomp thms ctxt prems  | 
463  | 
| "linorder" => Order_Tac.linear_tac decomp thms ctxt prems  | 
|
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
464  | 
    | _ => error ("Unknown kind of order `" ^ s ^ "' encountered in transitivity reasoner.")
 | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
465  | 
end  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
466  | 
|
| 32215 | 467  | 
fun order_tac ctxt prems =  | 
468  | 
FIRST' (map (fn s => CHANGED o struct_tac s ctxt prems) (Data.get (Context.Proof ctxt)));  | 
|
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
469  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
470  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
471  | 
(** Attribute **)  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
472  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
473  | 
fun add_struct_thm s tag =  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
474  | 
Thm.declaration_attribute  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
475  | 
(fn thm => Data.map (AList.map_default struct_eq (s, Order_Tac.empty TrueI) (Order_Tac.update tag thm)));  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
476  | 
fun del_struct s =  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
477  | 
Thm.declaration_attribute  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
478  | 
(fn _ => Data.map (AList.delete struct_eq s));  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
479  | 
|
| 
30722
 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 
wenzelm 
parents: 
30528 
diff
changeset
 | 
480  | 
val attrib_setup =  | 
| 
 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 
wenzelm 
parents: 
30528 
diff
changeset
 | 
481  | 
  Attrib.setup @{binding order}
 | 
| 
 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 
wenzelm 
parents: 
30528 
diff
changeset
 | 
482  | 
(Scan.lift ((Args.add -- Args.name >> (fn (_, s) => SOME s) || Args.del >> K NONE) --|  | 
| 
 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 
wenzelm 
parents: 
30528 
diff
changeset
 | 
483  | 
Args.colon (* FIXME || Scan.succeed true *) ) -- Scan.lift Args.name --  | 
| 
 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 
wenzelm 
parents: 
30528 
diff
changeset
 | 
484  | 
Scan.repeat Args.term  | 
| 
 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 
wenzelm 
parents: 
30528 
diff
changeset
 | 
485  | 
>> (fn ((SOME tag, n), ts) => add_struct_thm (n, ts) tag  | 
| 
 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 
wenzelm 
parents: 
30528 
diff
changeset
 | 
486  | 
| ((NONE, n), ts) => del_struct (n, ts)))  | 
| 
 
623d4831c8cf
simplified attribute and method setup: eliminating bottom-up styles makes it easier to keep things in one place, and also SML/NJ happy;
 
wenzelm 
parents: 
30528 
diff
changeset
 | 
487  | 
"theorems controlling transitivity reasoner";  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
488  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
489  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
490  | 
(** Diagnostic command **)  | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
491  | 
|
| 24867 | 492  | 
val _ =  | 
| 
46961
 
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
 
wenzelm 
parents: 
46950 
diff
changeset
 | 
493  | 
  Outer_Syntax.improper_command @{command_spec "print_orders"}
 | 
| 
 
5c6955f487e5
outer syntax command definitions based on formal command_spec derived from theory header declarations;
 
wenzelm 
parents: 
46950 
diff
changeset
 | 
494  | 
"print order structures available to transitivity reasoner"  | 
| 
51658
 
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
 
wenzelm 
parents: 
51579 
diff
changeset
 | 
495  | 
(Scan.succeed (Toplevel.unknown_context o  | 
| 
 
21c10672633b
discontinued Toplevel.no_timing complication -- also recovers timing of diagnostic commands, e.g. 'find_theorems';
 
wenzelm 
parents: 
51579 
diff
changeset
 | 
496  | 
Toplevel.keep (print_structures o Toplevel.context_of)));  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
497  | 
|
| 21091 | 498  | 
end;  | 
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
499  | 
|
| 21091 | 500  | 
*}  | 
501  | 
||
| 47432 | 502  | 
setup Orders.attrib_setup  | 
503  | 
||
504  | 
method_setup order = {*
 | 
|
505  | 
Scan.succeed (fn ctxt => SIMPLE_METHOD' (Orders.order_tac ctxt []))  | 
|
506  | 
*} "transitivity reasoner"  | 
|
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
507  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
508  | 
|
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
509  | 
text {* Declarations to set up transitivity reasoner of partial and linear orders. *}
 | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
510  | 
|
| 25076 | 511  | 
context order  | 
512  | 
begin  | 
|
513  | 
||
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
514  | 
(* The type constraint on @{term op =} below is necessary since the operation
 | 
| 
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
515  | 
is not a parameter of the locale. *)  | 
| 25076 | 516  | 
|
| 27689 | 517  | 
declare less_irrefl [THEN notE, order add less_reflE: order "op = :: 'a \<Rightarrow> 'a \<Rightarrow> bool" "op <=" "op <"]  | 
518  | 
||
519  | 
declare order_refl [order add le_refl: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
520  | 
||
521  | 
declare less_imp_le [order add less_imp_le: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
522  | 
||
523  | 
declare antisym [order add eqI: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
524  | 
||
525  | 
declare eq_refl [order add eqD1: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
526  | 
||
527  | 
declare sym [THEN eq_refl, order add eqD2: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
528  | 
||
529  | 
declare less_trans [order add less_trans: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
530  | 
||
531  | 
declare less_le_trans [order add less_le_trans: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
532  | 
||
533  | 
declare le_less_trans [order add le_less_trans: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
534  | 
||
535  | 
declare order_trans [order add le_trans: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
536  | 
||
537  | 
declare le_neq_trans [order add le_neq_trans: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
538  | 
||
539  | 
declare neq_le_trans [order add neq_le_trans: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
540  | 
||
541  | 
declare less_imp_neq [order add less_imp_neq: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
542  | 
||
543  | 
declare eq_neq_eq_imp_neq [order add eq_neq_eq_imp_neq: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
544  | 
||
545  | 
declare not_sym [order add not_sym: order "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
546  | 
|
| 25076 | 547  | 
end  | 
548  | 
||
549  | 
context linorder  | 
|
550  | 
begin  | 
|
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
551  | 
|
| 27689 | 552  | 
declare [[order del: order "op = :: 'a => 'a => bool" "op <=" "op <"]]  | 
553  | 
||
554  | 
declare less_irrefl [THEN notE, order add less_reflE: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
555  | 
||
556  | 
declare order_refl [order add le_refl: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
557  | 
||
558  | 
declare less_imp_le [order add less_imp_le: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
559  | 
||
560  | 
declare not_less [THEN iffD2, order add not_lessI: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
561  | 
||
562  | 
declare not_le [THEN iffD2, order add not_leI: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
563  | 
||
564  | 
declare not_less [THEN iffD1, order add not_lessD: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
565  | 
||
566  | 
declare not_le [THEN iffD1, order add not_leD: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
567  | 
||
568  | 
declare antisym [order add eqI: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
569  | 
||
570  | 
declare eq_refl [order add eqD1: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
| 25076 | 571  | 
|
| 27689 | 572  | 
declare sym [THEN eq_refl, order add eqD2: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
573  | 
||
574  | 
declare less_trans [order add less_trans: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
575  | 
||
576  | 
declare less_le_trans [order add less_le_trans: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
577  | 
||
578  | 
declare le_less_trans [order add le_less_trans: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
579  | 
||
580  | 
declare order_trans [order add le_trans: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
581  | 
||
582  | 
declare le_neq_trans [order add le_neq_trans: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
583  | 
||
584  | 
declare neq_le_trans [order add neq_le_trans: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
585  | 
||
586  | 
declare less_imp_neq [order add less_imp_neq: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
587  | 
||
588  | 
declare eq_neq_eq_imp_neq [order add eq_neq_eq_imp_neq: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
589  | 
||
590  | 
declare not_sym [order add not_sym: linorder "op = :: 'a => 'a => bool" "op <=" "op <"]  | 
|
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
591  | 
|
| 25076 | 592  | 
end  | 
593  | 
||
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
594  | 
|
| 21083 | 595  | 
setup {*
 | 
596  | 
let  | 
|
597  | 
||
| 44058 | 598  | 
fun prp t thm = Thm.prop_of thm = t; (* FIXME aconv!? *)  | 
| 15524 | 599  | 
|
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51658 
diff
changeset
 | 
600  | 
fun prove_antisym_le ctxt ((le as Const(_,T)) $ r $ s) =  | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51658 
diff
changeset
 | 
601  | 
let val prems = Simplifier.prems_of ctxt;  | 
| 22916 | 602  | 
      val less = Const (@{const_name less}, T);
 | 
| 21083 | 603  | 
val t = HOLogic.mk_Trueprop(le $ s $ r);  | 
604  | 
in case find_first (prp t) prems of  | 
|
605  | 
NONE =>  | 
|
606  | 
let val t = HOLogic.mk_Trueprop(HOLogic.Not $ (less $ r $ s))  | 
|
607  | 
in case find_first (prp t) prems of  | 
|
608  | 
NONE => NONE  | 
|
| 24422 | 609  | 
            | SOME thm => SOME(mk_meta_eq(thm RS @{thm linorder_class.antisym_conv1}))
 | 
| 21083 | 610  | 
end  | 
| 24422 | 611  | 
     | SOME thm => SOME(mk_meta_eq(thm RS @{thm order_class.antisym_conv}))
 | 
| 21083 | 612  | 
end  | 
613  | 
handle THM _ => NONE;  | 
|
| 15524 | 614  | 
|
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51658 
diff
changeset
 | 
615  | 
fun prove_antisym_less ctxt (NotC $ ((less as Const(_,T)) $ r $ s)) =  | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51658 
diff
changeset
 | 
616  | 
let val prems = Simplifier.prems_of ctxt;  | 
| 22916 | 617  | 
      val le = Const (@{const_name less_eq}, T);
 | 
| 21083 | 618  | 
val t = HOLogic.mk_Trueprop(le $ r $ s);  | 
619  | 
in case find_first (prp t) prems of  | 
|
620  | 
NONE =>  | 
|
621  | 
let val t = HOLogic.mk_Trueprop(NotC $ (less $ s $ r))  | 
|
622  | 
in case find_first (prp t) prems of  | 
|
623  | 
NONE => NONE  | 
|
| 24422 | 624  | 
            | SOME thm => SOME(mk_meta_eq(thm RS @{thm linorder_class.antisym_conv3}))
 | 
| 21083 | 625  | 
end  | 
| 24422 | 626  | 
     | SOME thm => SOME(mk_meta_eq(thm RS @{thm linorder_class.antisym_conv2}))
 | 
| 21083 | 627  | 
end  | 
628  | 
handle THM _ => NONE;  | 
|
| 15524 | 629  | 
|
| 21248 | 630  | 
fun add_simprocs procs thy =  | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51658 
diff
changeset
 | 
631  | 
map_theory_simpset (fn ctxt => ctxt  | 
| 21248 | 632  | 
addsimprocs (map (fn (name, raw_ts, proc) =>  | 
| 
38715
 
6513ea67d95d
renamed Simplifier.simproc(_i) to Simplifier.simproc_global(_i) to emphasize that this is not the real thing;
 
wenzelm 
parents: 
38705 
diff
changeset
 | 
633  | 
Simplifier.simproc_global thy name raw_ts proc) procs)) thy;  | 
| 
42795
 
66fcc9882784
clarified map_simpset versus Simplifier.map_simpset_global;
 
wenzelm 
parents: 
42287 
diff
changeset
 | 
634  | 
|
| 
26496
 
49ae9456eba9
purely functional setup of claset/simpset/clasimpset;
 
wenzelm 
parents: 
26324 
diff
changeset
 | 
635  | 
fun add_solver name tac =  | 
| 
51717
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51658 
diff
changeset
 | 
636  | 
map_theory_simpset (fn ctxt0 => ctxt0 addSolver  | 
| 
 
9e7d1c139569
simplifier uses proper Proof.context instead of historic type simpset;
 
wenzelm 
parents: 
51658 
diff
changeset
 | 
637  | 
mk_solver name (fn ctxt => tac ctxt (Simplifier.prems_of ctxt)));  | 
| 21083 | 638  | 
|
639  | 
in  | 
|
| 21248 | 640  | 
add_simprocs [  | 
641  | 
       ("antisym le", ["(x::'a::order) <= y"], prove_antisym_le),
 | 
|
642  | 
       ("antisym less", ["~ (x::'a::linorder) < y"], prove_antisym_less)
 | 
|
643  | 
]  | 
|
| 
24641
 
448edc627ee4
Transitivity reasoner set up for locales order and linorder.
 
ballarin 
parents: 
24422 
diff
changeset
 | 
644  | 
#> add_solver "Transitivity" Orders.order_tac  | 
| 21248 | 645  | 
(* Adding the transitivity reasoners also as safe solvers showed a slight  | 
646  | 
speed up, but the reasoning strength appears to be not higher (at least  | 
|
647  | 
no breaking of additional proofs in the entire HOL distribution, as  | 
|
648  | 
of 5 March 2004, was observed). *)  | 
|
| 21083 | 649  | 
end  | 
650  | 
*}  | 
|
| 15524 | 651  | 
|
652  | 
||
| 21083 | 653  | 
subsection {* Bounded quantifiers *}
 | 
654  | 
||
655  | 
syntax  | 
|
| 
21180
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
656  | 
  "_All_less" :: "[idt, 'a, bool] => bool"    ("(3ALL _<_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
657  | 
  "_Ex_less" :: "[idt, 'a, bool] => bool"    ("(3EX _<_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
658  | 
  "_All_less_eq" :: "[idt, 'a, bool] => bool"    ("(3ALL _<=_./ _)" [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
659  | 
  "_Ex_less_eq" :: "[idt, 'a, bool] => bool"    ("(3EX _<=_./ _)" [0, 0, 10] 10)
 | 
| 21083 | 660  | 
|
| 
21180
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
661  | 
  "_All_greater" :: "[idt, 'a, bool] => bool"    ("(3ALL _>_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
662  | 
  "_Ex_greater" :: "[idt, 'a, bool] => bool"    ("(3EX _>_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
663  | 
  "_All_greater_eq" :: "[idt, 'a, bool] => bool"    ("(3ALL _>=_./ _)" [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
664  | 
  "_Ex_greater_eq" :: "[idt, 'a, bool] => bool"    ("(3EX _>=_./ _)" [0, 0, 10] 10)
 | 
| 21083 | 665  | 
|
666  | 
syntax (xsymbols)  | 
|
| 
21180
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
667  | 
  "_All_less" :: "[idt, 'a, bool] => bool"    ("(3\<forall>_<_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
668  | 
  "_Ex_less" :: "[idt, 'a, bool] => bool"    ("(3\<exists>_<_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
669  | 
  "_All_less_eq" :: "[idt, 'a, bool] => bool"    ("(3\<forall>_\<le>_./ _)" [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
670  | 
  "_Ex_less_eq" :: "[idt, 'a, bool] => bool"    ("(3\<exists>_\<le>_./ _)" [0, 0, 10] 10)
 | 
| 21083 | 671  | 
|
| 
21180
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
672  | 
  "_All_greater" :: "[idt, 'a, bool] => bool"    ("(3\<forall>_>_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
673  | 
  "_Ex_greater" :: "[idt, 'a, bool] => bool"    ("(3\<exists>_>_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
674  | 
  "_All_greater_eq" :: "[idt, 'a, bool] => bool"    ("(3\<forall>_\<ge>_./ _)" [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
675  | 
  "_Ex_greater_eq" :: "[idt, 'a, bool] => bool"    ("(3\<exists>_\<ge>_./ _)" [0, 0, 10] 10)
 | 
| 21083 | 676  | 
|
677  | 
syntax (HOL)  | 
|
| 
21180
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
678  | 
  "_All_less" :: "[idt, 'a, bool] => bool"    ("(3! _<_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
679  | 
  "_Ex_less" :: "[idt, 'a, bool] => bool"    ("(3? _<_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
680  | 
  "_All_less_eq" :: "[idt, 'a, bool] => bool"    ("(3! _<=_./ _)" [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
681  | 
  "_Ex_less_eq" :: "[idt, 'a, bool] => bool"    ("(3? _<=_./ _)" [0, 0, 10] 10)
 | 
| 21083 | 682  | 
|
683  | 
syntax (HTML output)  | 
|
| 
21180
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
684  | 
  "_All_less" :: "[idt, 'a, bool] => bool"    ("(3\<forall>_<_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
685  | 
  "_Ex_less" :: "[idt, 'a, bool] => bool"    ("(3\<exists>_<_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
686  | 
  "_All_less_eq" :: "[idt, 'a, bool] => bool"    ("(3\<forall>_\<le>_./ _)" [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
687  | 
  "_Ex_less_eq" :: "[idt, 'a, bool] => bool"    ("(3\<exists>_\<le>_./ _)" [0, 0, 10] 10)
 | 
| 21083 | 688  | 
|
| 
21180
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
689  | 
  "_All_greater" :: "[idt, 'a, bool] => bool"    ("(3\<forall>_>_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
690  | 
  "_Ex_greater" :: "[idt, 'a, bool] => bool"    ("(3\<exists>_>_./ _)"  [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
691  | 
  "_All_greater_eq" :: "[idt, 'a, bool] => bool"    ("(3\<forall>_\<ge>_./ _)" [0, 0, 10] 10)
 | 
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
692  | 
  "_Ex_greater_eq" :: "[idt, 'a, bool] => bool"    ("(3\<exists>_\<ge>_./ _)" [0, 0, 10] 10)
 | 
| 21083 | 693  | 
|
694  | 
translations  | 
|
695  | 
"ALL x<y. P" => "ALL x. x < y \<longrightarrow> P"  | 
|
696  | 
"EX x<y. P" => "EX x. x < y \<and> P"  | 
|
697  | 
"ALL x<=y. P" => "ALL x. x <= y \<longrightarrow> P"  | 
|
698  | 
"EX x<=y. P" => "EX x. x <= y \<and> P"  | 
|
699  | 
"ALL x>y. P" => "ALL x. x > y \<longrightarrow> P"  | 
|
700  | 
"EX x>y. P" => "EX x. x > y \<and> P"  | 
|
701  | 
"ALL x>=y. P" => "ALL x. x >= y \<longrightarrow> P"  | 
|
702  | 
"EX x>=y. P" => "EX x. x >= y \<and> P"  | 
|
703  | 
||
704  | 
print_translation {*
 | 
|
705  | 
let  | 
|
| 
42287
 
d98eb048a2e4
discontinued special treatment of structure Mixfix;
 
wenzelm 
parents: 
42284 
diff
changeset
 | 
706  | 
  val All_binder = Mixfix.binder_name @{const_syntax All};
 | 
| 
 
d98eb048a2e4
discontinued special treatment of structure Mixfix;
 
wenzelm 
parents: 
42284 
diff
changeset
 | 
707  | 
  val Ex_binder = Mixfix.binder_name @{const_syntax Ex};
 | 
| 
38786
 
e46e7a9cb622
formerly unnamed infix impliciation now named HOL.implies
 
haftmann 
parents: 
38715 
diff
changeset
 | 
708  | 
  val impl = @{const_syntax HOL.implies};
 | 
| 
38795
 
848be46708dc
formerly unnamed infix conjunction and disjunction now named HOL.conj and HOL.disj
 
haftmann 
parents: 
38786 
diff
changeset
 | 
709  | 
  val conj = @{const_syntax HOL.conj};
 | 
| 22916 | 710  | 
  val less = @{const_syntax less};
 | 
711  | 
  val less_eq = @{const_syntax less_eq};
 | 
|
| 
21180
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
712  | 
|
| 
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
713  | 
val trans =  | 
| 35115 | 714  | 
[((All_binder, impl, less),  | 
715  | 
    (@{syntax_const "_All_less"}, @{syntax_const "_All_greater"})),
 | 
|
716  | 
((All_binder, impl, less_eq),  | 
|
717  | 
    (@{syntax_const "_All_less_eq"}, @{syntax_const "_All_greater_eq"})),
 | 
|
718  | 
((Ex_binder, conj, less),  | 
|
719  | 
    (@{syntax_const "_Ex_less"}, @{syntax_const "_Ex_greater"})),
 | 
|
720  | 
((Ex_binder, conj, less_eq),  | 
|
721  | 
    (@{syntax_const "_Ex_less_eq"}, @{syntax_const "_Ex_greater_eq"}))];
 | 
|
| 
21180
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
722  | 
|
| 35115 | 723  | 
fun matches_bound v t =  | 
724  | 
(case t of  | 
|
| 35364 | 725  | 
      Const (@{syntax_const "_bound"}, _) $ Free (v', _) => v = v'
 | 
| 35115 | 726  | 
| _ => false);  | 
727  | 
fun contains_var v = Term.exists_subterm (fn Free (x, _) => x = v | _ => false);  | 
|
| 
49660
 
de49d9b4d7bc
more explicit Syntax_Trans.mark_bound_abs/mark_bound_body: preserve type information for show_markup;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
728  | 
fun mk x c n P = Syntax.const c $ Syntax_Trans.mark_bound_body x $ n $ P;  | 
| 
21180
 
f27f12bcafb8
fixed print_translation for ALL/EX and <, <=, etc.; tuned syntax names;
 
wenzelm 
parents: 
21091 
diff
changeset
 | 
729  | 
|
| 52143 | 730  | 
fun tr' q = (q, fn _ =>  | 
731  | 
    (fn [Const (@{syntax_const "_bound"}, _) $ Free (v, T),
 | 
|
| 35364 | 732  | 
Const (c, _) $ (Const (d, _) $ t $ u) $ P] =>  | 
| 35115 | 733  | 
(case AList.lookup (op =) trans (q, c, d) of  | 
734  | 
NONE => raise Match  | 
|
735  | 
| SOME (l, g) =>  | 
|
| 
49660
 
de49d9b4d7bc
more explicit Syntax_Trans.mark_bound_abs/mark_bound_body: preserve type information for show_markup;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
736  | 
if matches_bound v t andalso not (contains_var v u) then mk (v, T) l u P  | 
| 
 
de49d9b4d7bc
more explicit Syntax_Trans.mark_bound_abs/mark_bound_body: preserve type information for show_markup;
 
wenzelm 
parents: 
48891 
diff
changeset
 | 
737  | 
else if matches_bound v u andalso not (contains_var v t) then mk (v, T) g t P  | 
| 35115 | 738  | 
else raise Match)  | 
| 52143 | 739  | 
| _ => raise Match));  | 
| 21524 | 740  | 
in [tr' All_binder, tr' Ex_binder] end  | 
| 21083 | 741  | 
*}  | 
742  | 
||
743  | 
||
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
744  | 
subsection {* Transitivity reasoning *}
 | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
745  | 
|
| 25193 | 746  | 
context ord  | 
747  | 
begin  | 
|
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
748  | 
|
| 25193 | 749  | 
lemma ord_le_eq_trans: "a \<le> b \<Longrightarrow> b = c \<Longrightarrow> a \<le> c"  | 
750  | 
by (rule subst)  | 
|
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
751  | 
|
| 25193 | 752  | 
lemma ord_eq_le_trans: "a = b \<Longrightarrow> b \<le> c \<Longrightarrow> a \<le> c"  | 
753  | 
by (rule ssubst)  | 
|
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
754  | 
|
| 25193 | 755  | 
lemma ord_less_eq_trans: "a < b \<Longrightarrow> b = c \<Longrightarrow> a < c"  | 
756  | 
by (rule subst)  | 
|
757  | 
||
758  | 
lemma ord_eq_less_trans: "a = b \<Longrightarrow> b < c \<Longrightarrow> a < c"  | 
|
759  | 
by (rule ssubst)  | 
|
760  | 
||
761  | 
end  | 
|
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
762  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
763  | 
lemma order_less_subst2: "(a::'a::order) < b ==> f b < (c::'c::order) ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
764  | 
(!!x y. x < y ==> f x < f y) ==> f a < c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
765  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
766  | 
assume r: "!!x y. x < y ==> f x < f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
767  | 
assume "a < b" hence "f a < f b" by (rule r)  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
768  | 
also assume "f b < c"  | 
| 
34250
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
769  | 
finally (less_trans) show ?thesis .  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
770  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
771  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
772  | 
lemma order_less_subst1: "(a::'a::order) < f b ==> (b::'b::order) < c ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
773  | 
(!!x y. x < y ==> f x < f y) ==> a < f c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
774  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
775  | 
assume r: "!!x y. x < y ==> f x < f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
776  | 
assume "a < f b"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
777  | 
also assume "b < c" hence "f b < f c" by (rule r)  | 
| 
34250
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
778  | 
finally (less_trans) show ?thesis .  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
779  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
780  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
781  | 
lemma order_le_less_subst2: "(a::'a::order) <= b ==> f b < (c::'c::order) ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
782  | 
(!!x y. x <= y ==> f x <= f y) ==> f a < c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
783  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
784  | 
assume r: "!!x y. x <= y ==> f x <= f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
785  | 
assume "a <= b" hence "f a <= f b" by (rule r)  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
786  | 
also assume "f b < c"  | 
| 
34250
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
787  | 
finally (le_less_trans) show ?thesis .  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
788  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
789  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
790  | 
lemma order_le_less_subst1: "(a::'a::order) <= f b ==> (b::'b::order) < c ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
791  | 
(!!x y. x < y ==> f x < f y) ==> a < f c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
792  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
793  | 
assume r: "!!x y. x < y ==> f x < f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
794  | 
assume "a <= f b"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
795  | 
also assume "b < c" hence "f b < f c" by (rule r)  | 
| 
34250
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
796  | 
finally (le_less_trans) show ?thesis .  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
797  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
798  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
799  | 
lemma order_less_le_subst2: "(a::'a::order) < b ==> f b <= (c::'c::order) ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
800  | 
(!!x y. x < y ==> f x < f y) ==> f a < c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
801  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
802  | 
assume r: "!!x y. x < y ==> f x < f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
803  | 
assume "a < b" hence "f a < f b" by (rule r)  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
804  | 
also assume "f b <= c"  | 
| 
34250
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
805  | 
finally (less_le_trans) show ?thesis .  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
806  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
807  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
808  | 
lemma order_less_le_subst1: "(a::'a::order) < f b ==> (b::'b::order) <= c ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
809  | 
(!!x y. x <= y ==> f x <= f y) ==> a < f c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
810  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
811  | 
assume r: "!!x y. x <= y ==> f x <= f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
812  | 
assume "a < f b"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
813  | 
also assume "b <= c" hence "f b <= f c" by (rule r)  | 
| 
34250
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
814  | 
finally (less_le_trans) show ?thesis .  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
815  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
816  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
817  | 
lemma order_subst1: "(a::'a::order) <= f b ==> (b::'b::order) <= c ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
818  | 
(!!x y. x <= y ==> f x <= f y) ==> a <= f c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
819  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
820  | 
assume r: "!!x y. x <= y ==> f x <= f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
821  | 
assume "a <= f b"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
822  | 
also assume "b <= c" hence "f b <= f c" by (rule r)  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
823  | 
finally (order_trans) show ?thesis .  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
824  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
825  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
826  | 
lemma order_subst2: "(a::'a::order) <= b ==> f b <= (c::'c::order) ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
827  | 
(!!x y. x <= y ==> f x <= f y) ==> f a <= c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
828  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
829  | 
assume r: "!!x y. x <= y ==> f x <= f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
830  | 
assume "a <= b" hence "f a <= f b" by (rule r)  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
831  | 
also assume "f b <= c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
832  | 
finally (order_trans) show ?thesis .  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
833  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
834  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
835  | 
lemma ord_le_eq_subst: "a <= b ==> f b = c ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
836  | 
(!!x y. x <= y ==> f x <= f y) ==> f a <= c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
837  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
838  | 
assume r: "!!x y. x <= y ==> f x <= f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
839  | 
assume "a <= b" hence "f a <= f b" by (rule r)  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
840  | 
also assume "f b = c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
841  | 
finally (ord_le_eq_trans) show ?thesis .  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
842  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
843  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
844  | 
lemma ord_eq_le_subst: "a = f b ==> b <= c ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
845  | 
(!!x y. x <= y ==> f x <= f y) ==> a <= f c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
846  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
847  | 
assume r: "!!x y. x <= y ==> f x <= f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
848  | 
assume "a = f b"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
849  | 
also assume "b <= c" hence "f b <= f c" by (rule r)  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
850  | 
finally (ord_eq_le_trans) show ?thesis .  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
851  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
852  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
853  | 
lemma ord_less_eq_subst: "a < b ==> f b = c ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
854  | 
(!!x y. x < y ==> f x < f y) ==> f a < c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
855  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
856  | 
assume r: "!!x y. x < y ==> f x < f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
857  | 
assume "a < b" hence "f a < f b" by (rule r)  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
858  | 
also assume "f b = c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
859  | 
finally (ord_less_eq_trans) show ?thesis .  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
860  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
861  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
862  | 
lemma ord_eq_less_subst: "a = f b ==> b < c ==>  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
863  | 
(!!x y. x < y ==> f x < f y) ==> a < f c"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
864  | 
proof -  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
865  | 
assume r: "!!x y. x < y ==> f x < f y"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
866  | 
assume "a = f b"  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
867  | 
also assume "b < c" hence "f b < f c" by (rule r)  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
868  | 
finally (ord_eq_less_trans) show ?thesis .  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
869  | 
qed  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
870  | 
|
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
871  | 
text {*
 | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
872  | 
Note that this list of rules is in reverse order of priorities.  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
873  | 
*}  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
874  | 
|
| 27682 | 875  | 
lemmas [trans] =  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
876  | 
order_less_subst2  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
877  | 
order_less_subst1  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
878  | 
order_le_less_subst2  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
879  | 
order_le_less_subst1  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
880  | 
order_less_le_subst2  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
881  | 
order_less_le_subst1  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
882  | 
order_subst2  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
883  | 
order_subst1  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
884  | 
ord_le_eq_subst  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
885  | 
ord_eq_le_subst  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
886  | 
ord_less_eq_subst  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
887  | 
ord_eq_less_subst  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
888  | 
forw_subst  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
889  | 
back_subst  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
890  | 
rev_mp  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
891  | 
mp  | 
| 27682 | 892  | 
|
893  | 
lemmas (in order) [trans] =  | 
|
894  | 
neq_le_trans  | 
|
895  | 
le_neq_trans  | 
|
896  | 
||
897  | 
lemmas (in preorder) [trans] =  | 
|
898  | 
less_trans  | 
|
899  | 
less_asym'  | 
|
900  | 
le_less_trans  | 
|
901  | 
less_le_trans  | 
|
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
902  | 
order_trans  | 
| 27682 | 903  | 
|
904  | 
lemmas (in order) [trans] =  | 
|
905  | 
antisym  | 
|
906  | 
||
907  | 
lemmas (in ord) [trans] =  | 
|
908  | 
ord_le_eq_trans  | 
|
909  | 
ord_eq_le_trans  | 
|
910  | 
ord_less_eq_trans  | 
|
911  | 
ord_eq_less_trans  | 
|
912  | 
||
913  | 
lemmas [trans] =  | 
|
914  | 
trans  | 
|
915  | 
||
916  | 
lemmas order_trans_rules =  | 
|
917  | 
order_less_subst2  | 
|
918  | 
order_less_subst1  | 
|
919  | 
order_le_less_subst2  | 
|
920  | 
order_le_less_subst1  | 
|
921  | 
order_less_le_subst2  | 
|
922  | 
order_less_le_subst1  | 
|
923  | 
order_subst2  | 
|
924  | 
order_subst1  | 
|
925  | 
ord_le_eq_subst  | 
|
926  | 
ord_eq_le_subst  | 
|
927  | 
ord_less_eq_subst  | 
|
928  | 
ord_eq_less_subst  | 
|
929  | 
forw_subst  | 
|
930  | 
back_subst  | 
|
931  | 
rev_mp  | 
|
932  | 
mp  | 
|
933  | 
neq_le_trans  | 
|
934  | 
le_neq_trans  | 
|
935  | 
less_trans  | 
|
936  | 
less_asym'  | 
|
937  | 
le_less_trans  | 
|
938  | 
less_le_trans  | 
|
939  | 
order_trans  | 
|
940  | 
antisym  | 
|
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
941  | 
ord_le_eq_trans  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
942  | 
ord_eq_le_trans  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
943  | 
ord_less_eq_trans  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
944  | 
ord_eq_less_trans  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
945  | 
trans  | 
| 
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
946  | 
|
| 21083 | 947  | 
text {* These support proving chains of decreasing inequalities
 | 
948  | 
a >= b >= c ... in Isar proofs. *}  | 
|
949  | 
||
| 
45221
 
3eadb9b6a055
mark "xt..." rules as "no_atp", since they are easy consequences of other better named properties
 
blanchet 
parents: 
44921 
diff
changeset
 | 
950  | 
lemma xt1 [no_atp]:  | 
| 21083 | 951  | 
"a = b ==> b > c ==> a > c"  | 
952  | 
"a > b ==> b = c ==> a > c"  | 
|
953  | 
"a = b ==> b >= c ==> a >= c"  | 
|
954  | 
"a >= b ==> b = c ==> a >= c"  | 
|
955  | 
"(x::'a::order) >= y ==> y >= x ==> x = y"  | 
|
956  | 
"(x::'a::order) >= y ==> y >= z ==> x >= z"  | 
|
957  | 
"(x::'a::order) > y ==> y >= z ==> x > z"  | 
|
958  | 
"(x::'a::order) >= y ==> y > z ==> x > z"  | 
|
| 23417 | 959  | 
"(a::'a::order) > b ==> b > a ==> P"  | 
| 21083 | 960  | 
"(x::'a::order) > y ==> y > z ==> x > z"  | 
961  | 
"(a::'a::order) >= b ==> a ~= b ==> a > b"  | 
|
962  | 
"(a::'a::order) ~= b ==> a >= b ==> a > b"  | 
|
963  | 
"a = f b ==> b > c ==> (!!x y. x > y ==> f x > f y) ==> a > f c"  | 
|
964  | 
"a > b ==> f b = c ==> (!!x y. x > y ==> f x > f y) ==> f a > c"  | 
|
965  | 
"a = f b ==> b >= c ==> (!!x y. x >= y ==> f x >= f y) ==> a >= f c"  | 
|
966  | 
"a >= b ==> f b = c ==> (!! x y. x >= y ==> f x >= f y) ==> f a >= c"  | 
|
| 25076 | 967  | 
by auto  | 
| 21083 | 968  | 
|
| 
45221
 
3eadb9b6a055
mark "xt..." rules as "no_atp", since they are easy consequences of other better named properties
 
blanchet 
parents: 
44921 
diff
changeset
 | 
969  | 
lemma xt2 [no_atp]:  | 
| 21083 | 970  | 
"(a::'a::order) >= f b ==> b >= c ==> (!!x y. x >= y ==> f x >= f y) ==> a >= f c"  | 
971  | 
by (subgoal_tac "f b >= f c", force, force)  | 
|
972  | 
||
| 
45221
 
3eadb9b6a055
mark "xt..." rules as "no_atp", since they are easy consequences of other better named properties
 
blanchet 
parents: 
44921 
diff
changeset
 | 
973  | 
lemma xt3 [no_atp]: "(a::'a::order) >= b ==> (f b::'b::order) >= c ==>  | 
| 21083 | 974  | 
(!!x y. x >= y ==> f x >= f y) ==> f a >= c"  | 
975  | 
by (subgoal_tac "f a >= f b", force, force)  | 
|
976  | 
||
| 
45221
 
3eadb9b6a055
mark "xt..." rules as "no_atp", since they are easy consequences of other better named properties
 
blanchet 
parents: 
44921 
diff
changeset
 | 
977  | 
lemma xt4 [no_atp]: "(a::'a::order) > f b ==> (b::'b::order) >= c ==>  | 
| 21083 | 978  | 
(!!x y. x >= y ==> f x >= f y) ==> a > f c"  | 
979  | 
by (subgoal_tac "f b >= f c", force, force)  | 
|
980  | 
||
| 
45221
 
3eadb9b6a055
mark "xt..." rules as "no_atp", since they are easy consequences of other better named properties
 
blanchet 
parents: 
44921 
diff
changeset
 | 
981  | 
lemma xt5 [no_atp]: "(a::'a::order) > b ==> (f b::'b::order) >= c==>  | 
| 21083 | 982  | 
(!!x y. x > y ==> f x > f y) ==> f a > c"  | 
983  | 
by (subgoal_tac "f a > f b", force, force)  | 
|
984  | 
||
| 
45221
 
3eadb9b6a055
mark "xt..." rules as "no_atp", since they are easy consequences of other better named properties
 
blanchet 
parents: 
44921 
diff
changeset
 | 
985  | 
lemma xt6 [no_atp]: "(a::'a::order) >= f b ==> b > c ==>  | 
| 21083 | 986  | 
(!!x y. x > y ==> f x > f y) ==> a > f c"  | 
987  | 
by (subgoal_tac "f b > f c", force, force)  | 
|
988  | 
||
| 
45221
 
3eadb9b6a055
mark "xt..." rules as "no_atp", since they are easy consequences of other better named properties
 
blanchet 
parents: 
44921 
diff
changeset
 | 
989  | 
lemma xt7 [no_atp]: "(a::'a::order) >= b ==> (f b::'b::order) > c ==>  | 
| 21083 | 990  | 
(!!x y. x >= y ==> f x >= f y) ==> f a > c"  | 
991  | 
by (subgoal_tac "f a >= f b", force, force)  | 
|
992  | 
||
| 
45221
 
3eadb9b6a055
mark "xt..." rules as "no_atp", since they are easy consequences of other better named properties
 
blanchet 
parents: 
44921 
diff
changeset
 | 
993  | 
lemma xt8 [no_atp]: "(a::'a::order) > f b ==> (b::'b::order) > c ==>  | 
| 21083 | 994  | 
(!!x y. x > y ==> f x > f y) ==> a > f c"  | 
995  | 
by (subgoal_tac "f b > f c", force, force)  | 
|
996  | 
||
| 
45221
 
3eadb9b6a055
mark "xt..." rules as "no_atp", since they are easy consequences of other better named properties
 
blanchet 
parents: 
44921 
diff
changeset
 | 
997  | 
lemma xt9 [no_atp]: "(a::'a::order) > b ==> (f b::'b::order) > c ==>  | 
| 21083 | 998  | 
(!!x y. x > y ==> f x > f y) ==> f a > c"  | 
999  | 
by (subgoal_tac "f a > f b", force, force)  | 
|
1000  | 
||
| 
45221
 
3eadb9b6a055
mark "xt..." rules as "no_atp", since they are easy consequences of other better named properties
 
blanchet 
parents: 
44921 
diff
changeset
 | 
1001  | 
lemmas xtrans = xt1 xt2 xt3 xt4 xt5 xt6 xt7 xt8 xt9 [no_atp]  | 
| 21083 | 1002  | 
|
1003  | 
(*  | 
|
1004  | 
Since "a >= b" abbreviates "b <= a", the abbreviation "..." stands  | 
|
1005  | 
for the wrong thing in an Isar proof.  | 
|
1006  | 
||
1007  | 
The extra transitivity rules can be used as follows:  | 
|
1008  | 
||
1009  | 
lemma "(a::'a::order) > z"  | 
|
1010  | 
proof -  | 
|
1011  | 
have "a >= b" (is "_ >= ?rhs")  | 
|
1012  | 
sorry  | 
|
1013  | 
also have "?rhs >= c" (is "_ >= ?rhs")  | 
|
1014  | 
sorry  | 
|
1015  | 
also (xtrans) have "?rhs = d" (is "_ = ?rhs")  | 
|
1016  | 
sorry  | 
|
1017  | 
also (xtrans) have "?rhs >= e" (is "_ >= ?rhs")  | 
|
1018  | 
sorry  | 
|
1019  | 
also (xtrans) have "?rhs > f" (is "_ > ?rhs")  | 
|
1020  | 
sorry  | 
|
1021  | 
also (xtrans) have "?rhs > z"  | 
|
1022  | 
sorry  | 
|
1023  | 
finally (xtrans) show ?thesis .  | 
|
1024  | 
qed  | 
|
1025  | 
||
1026  | 
Alternatively, one can use "declare xtrans [trans]" and then  | 
|
1027  | 
leave out the "(xtrans)" above.  | 
|
1028  | 
*)  | 
|
1029  | 
||
| 23881 | 1030  | 
|
1031  | 
subsection {* Monotonicity, least value operator and min/max *}
 | 
|
| 21083 | 1032  | 
|
| 25076 | 1033  | 
context order  | 
1034  | 
begin  | 
|
1035  | 
||
| 30298 | 1036  | 
definition mono :: "('a \<Rightarrow> 'b\<Colon>order) \<Rightarrow> bool" where
 | 
| 25076 | 1037  | 
"mono f \<longleftrightarrow> (\<forall>x y. x \<le> y \<longrightarrow> f x \<le> f y)"  | 
1038  | 
||
1039  | 
lemma monoI [intro?]:  | 
|
1040  | 
fixes f :: "'a \<Rightarrow> 'b\<Colon>order"  | 
|
1041  | 
shows "(\<And>x y. x \<le> y \<Longrightarrow> f x \<le> f y) \<Longrightarrow> mono f"  | 
|
1042  | 
unfolding mono_def by iprover  | 
|
| 
21216
 
1c8580913738
made locale partial_order compatible with axclass order; changed import order; consecutive changes
 
haftmann 
parents: 
21204 
diff
changeset
 | 
1043  | 
|
| 25076 | 1044  | 
lemma monoD [dest?]:  | 
1045  | 
fixes f :: "'a \<Rightarrow> 'b\<Colon>order"  | 
|
1046  | 
shows "mono f \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y"  | 
|
1047  | 
unfolding mono_def by iprover  | 
|
1048  | 
||
| 
51263
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1049  | 
lemma monoE:  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1050  | 
fixes f :: "'a \<Rightarrow> 'b\<Colon>order"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1051  | 
assumes "mono f"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1052  | 
assumes "x \<le> y"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1053  | 
obtains "f x \<le> f y"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1054  | 
proof  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1055  | 
from assms show "f x \<le> f y" by (simp add: mono_def)  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1056  | 
qed  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1057  | 
|
| 30298 | 1058  | 
definition strict_mono :: "('a \<Rightarrow> 'b\<Colon>order) \<Rightarrow> bool" where
 | 
1059  | 
"strict_mono f \<longleftrightarrow> (\<forall>x y. x < y \<longrightarrow> f x < f y)"  | 
|
1060  | 
||
1061  | 
lemma strict_monoI [intro?]:  | 
|
1062  | 
assumes "\<And>x y. x < y \<Longrightarrow> f x < f y"  | 
|
1063  | 
shows "strict_mono f"  | 
|
1064  | 
using assms unfolding strict_mono_def by auto  | 
|
1065  | 
||
1066  | 
lemma strict_monoD [dest?]:  | 
|
1067  | 
"strict_mono f \<Longrightarrow> x < y \<Longrightarrow> f x < f y"  | 
|
1068  | 
unfolding strict_mono_def by auto  | 
|
1069  | 
||
1070  | 
lemma strict_mono_mono [dest?]:  | 
|
1071  | 
assumes "strict_mono f"  | 
|
1072  | 
shows "mono f"  | 
|
1073  | 
proof (rule monoI)  | 
|
1074  | 
fix x y  | 
|
1075  | 
assume "x \<le> y"  | 
|
1076  | 
show "f x \<le> f y"  | 
|
1077  | 
proof (cases "x = y")  | 
|
1078  | 
case True then show ?thesis by simp  | 
|
1079  | 
next  | 
|
1080  | 
case False with `x \<le> y` have "x < y" by simp  | 
|
1081  | 
with assms strict_monoD have "f x < f y" by auto  | 
|
1082  | 
then show ?thesis by simp  | 
|
1083  | 
qed  | 
|
1084  | 
qed  | 
|
1085  | 
||
| 25076 | 1086  | 
end  | 
1087  | 
||
1088  | 
context linorder  | 
|
1089  | 
begin  | 
|
1090  | 
||
| 
51263
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1091  | 
lemma mono_invE:  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1092  | 
fixes f :: "'a \<Rightarrow> 'b\<Colon>order"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1093  | 
assumes "mono f"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1094  | 
assumes "f x < f y"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1095  | 
obtains "x \<le> y"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1096  | 
proof  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1097  | 
show "x \<le> y"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1098  | 
proof (rule ccontr)  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1099  | 
assume "\<not> x \<le> y"  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1100  | 
then have "y \<le> x" by simp  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1101  | 
with `mono f` obtain "f y \<le> f x" by (rule monoE)  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1102  | 
with `f x < f y` show False by simp  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1103  | 
qed  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1104  | 
qed  | 
| 
 
31e786e0e6a7
turned example into library for comparing growth of functions
 
haftmann 
parents: 
49769 
diff
changeset
 | 
1105  | 
|
| 30298 | 1106  | 
lemma strict_mono_eq:  | 
1107  | 
assumes "strict_mono f"  | 
|
1108  | 
shows "f x = f y \<longleftrightarrow> x = y"  | 
|
1109  | 
proof  | 
|
1110  | 
assume "f x = f y"  | 
|
1111  | 
show "x = y" proof (cases x y rule: linorder_cases)  | 
|
1112  | 
case less with assms strict_monoD have "f x < f y" by auto  | 
|
1113  | 
with `f x = f y` show ?thesis by simp  | 
|
1114  | 
next  | 
|
1115  | 
case equal then show ?thesis .  | 
|
1116  | 
next  | 
|
1117  | 
case greater with assms strict_monoD have "f y < f x" by auto  | 
|
1118  | 
with `f x = f y` show ?thesis by simp  | 
|
1119  | 
qed  | 
|
1120  | 
qed simp  | 
|
1121  | 
||
1122  | 
lemma strict_mono_less_eq:  | 
|
1123  | 
assumes "strict_mono f"  | 
|
1124  | 
shows "f x \<le> f y \<longleftrightarrow> x \<le> y"  | 
|
1125  | 
proof  | 
|
1126  | 
assume "x \<le> y"  | 
|
1127  | 
with assms strict_mono_mono monoD show "f x \<le> f y" by auto  | 
|
1128  | 
next  | 
|
1129  | 
assume "f x \<le> f y"  | 
|
1130  | 
show "x \<le> y" proof (rule ccontr)  | 
|
1131  | 
assume "\<not> x \<le> y" then have "y < x" by simp  | 
|
1132  | 
with assms strict_monoD have "f y < f x" by auto  | 
|
1133  | 
with `f x \<le> f y` show False by simp  | 
|
1134  | 
qed  | 
|
1135  | 
qed  | 
|
1136  | 
||
1137  | 
lemma strict_mono_less:  | 
|
1138  | 
assumes "strict_mono f"  | 
|
1139  | 
shows "f x < f y \<longleftrightarrow> x < y"  | 
|
1140  | 
using assms  | 
|
1141  | 
by (auto simp add: less_le Orderings.less_le strict_mono_eq strict_mono_less_eq)  | 
|
1142  | 
||
| 25076 | 1143  | 
lemma min_of_mono:  | 
1144  | 
fixes f :: "'a \<Rightarrow> 'b\<Colon>linorder"  | 
|
| 25377 | 1145  | 
shows "mono f \<Longrightarrow> min (f m) (f n) = f (min m n)"  | 
| 25076 | 1146  | 
by (auto simp: mono_def Orderings.min_def min_def intro: Orderings.antisym)  | 
1147  | 
||
1148  | 
lemma max_of_mono:  | 
|
1149  | 
fixes f :: "'a \<Rightarrow> 'b\<Colon>linorder"  | 
|
| 25377 | 1150  | 
shows "mono f \<Longrightarrow> max (f m) (f n) = f (max m n)"  | 
| 25076 | 1151  | 
by (auto simp: mono_def Orderings.max_def max_def intro: Orderings.antisym)  | 
1152  | 
||
1153  | 
end  | 
|
| 21083 | 1154  | 
|
| 45931 | 1155  | 
lemma min_absorb1: "x \<le> y \<Longrightarrow> min x y = x"  | 
| 23212 | 1156  | 
by (simp add: min_def)  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
1157  | 
|
| 45931 | 1158  | 
lemma max_absorb2: "x \<le> y ==> max x y = y"  | 
| 23212 | 1159  | 
by (simp add: max_def)  | 
| 
21383
 
17e6275e13f5
added transitivity rules, reworking of min/max lemmas
 
haftmann 
parents: 
21329 
diff
changeset
 | 
1160  | 
|
| 45931 | 1161  | 
lemma min_absorb2: "(y\<Colon>'a\<Colon>order) \<le> x \<Longrightarrow> min x y = y"  | 
1162  | 
by (simp add:min_def)  | 
|
| 45893 | 1163  | 
|
| 45931 | 1164  | 
lemma max_absorb1: "(y\<Colon>'a\<Colon>order) \<le> x \<Longrightarrow> max x y = x"  | 
| 45893 | 1165  | 
by (simp add: max_def)  | 
1166  | 
||
1167  | 
||
| 
43813
 
07f0650146f2
tightened specification of classes bot and top: uniqueness of top and bot elements
 
haftmann 
parents: 
43597 
diff
changeset
 | 
1168  | 
subsection {* (Unique) top and bottom elements *}
 | 
| 28685 | 1169  | 
|
| 
43813
 
07f0650146f2
tightened specification of classes bot and top: uniqueness of top and bot elements
 
haftmann 
parents: 
43597 
diff
changeset
 | 
1170  | 
class bot = order +  | 
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1171  | 
  fixes bot :: 'a ("\<bottom>")
 | 
| 51487 | 1172  | 
assumes bot_least: "\<bottom> \<le> a"  | 
1173  | 
||
1174  | 
sublocale bot < bot!: ordering_top greater_eq greater bot  | 
|
| 
51546
 
2e26df807dc7
more uniform style for interpretation and sublocale declarations
 
haftmann 
parents: 
51487 
diff
changeset
 | 
1175  | 
by default (fact bot_least)  | 
| 51487 | 1176  | 
|
1177  | 
context bot  | 
|
| 
43814
 
58791b75cf1f
moved lemmas bot_less and less_top to classes bot and top respectively
 
haftmann 
parents: 
43813 
diff
changeset
 | 
1178  | 
begin  | 
| 
 
58791b75cf1f
moved lemmas bot_less and less_top to classes bot and top respectively
 
haftmann 
parents: 
43813 
diff
changeset
 | 
1179  | 
|
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1180  | 
lemma le_bot:  | 
| 
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1181  | 
"a \<le> \<bottom> \<Longrightarrow> a = \<bottom>"  | 
| 51487 | 1182  | 
by (fact bot.extremum_uniqueI)  | 
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1183  | 
|
| 43816 | 1184  | 
lemma bot_unique:  | 
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1185  | 
"a \<le> \<bottom> \<longleftrightarrow> a = \<bottom>"  | 
| 51487 | 1186  | 
by (fact bot.extremum_unique)  | 
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1187  | 
|
| 51487 | 1188  | 
lemma not_less_bot:  | 
1189  | 
"\<not> a < \<bottom>"  | 
|
1190  | 
by (fact bot.extremum_strict)  | 
|
| 43816 | 1191  | 
|
| 
43814
 
58791b75cf1f
moved lemmas bot_less and less_top to classes bot and top respectively
 
haftmann 
parents: 
43813 
diff
changeset
 | 
1192  | 
lemma bot_less:  | 
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1193  | 
"a \<noteq> \<bottom> \<longleftrightarrow> \<bottom> < a"  | 
| 51487 | 1194  | 
by (fact bot.not_eq_extremum)  | 
| 
43814
 
58791b75cf1f
moved lemmas bot_less and less_top to classes bot and top respectively
 
haftmann 
parents: 
43813 
diff
changeset
 | 
1195  | 
|
| 
 
58791b75cf1f
moved lemmas bot_less and less_top to classes bot and top respectively
 
haftmann 
parents: 
43813 
diff
changeset
 | 
1196  | 
end  | 
| 41082 | 1197  | 
|
| 
43813
 
07f0650146f2
tightened specification of classes bot and top: uniqueness of top and bot elements
 
haftmann 
parents: 
43597 
diff
changeset
 | 
1198  | 
class top = order +  | 
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1199  | 
  fixes top :: 'a ("\<top>")
 | 
| 51487 | 1200  | 
assumes top_greatest: "a \<le> \<top>"  | 
1201  | 
||
1202  | 
sublocale top < top!: ordering_top less_eq less top  | 
|
| 
51546
 
2e26df807dc7
more uniform style for interpretation and sublocale declarations
 
haftmann 
parents: 
51487 
diff
changeset
 | 
1203  | 
by default (fact top_greatest)  | 
| 51487 | 1204  | 
|
1205  | 
context top  | 
|
| 
43814
 
58791b75cf1f
moved lemmas bot_less and less_top to classes bot and top respectively
 
haftmann 
parents: 
43813 
diff
changeset
 | 
1206  | 
begin  | 
| 
 
58791b75cf1f
moved lemmas bot_less and less_top to classes bot and top respectively
 
haftmann 
parents: 
43813 
diff
changeset
 | 
1207  | 
|
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1208  | 
lemma top_le:  | 
| 
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1209  | 
"\<top> \<le> a \<Longrightarrow> a = \<top>"  | 
| 51487 | 1210  | 
by (fact top.extremum_uniqueI)  | 
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1211  | 
|
| 43816 | 1212  | 
lemma top_unique:  | 
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1213  | 
"\<top> \<le> a \<longleftrightarrow> a = \<top>"  | 
| 51487 | 1214  | 
by (fact top.extremum_unique)  | 
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1215  | 
|
| 51487 | 1216  | 
lemma not_top_less:  | 
1217  | 
"\<not> \<top> < a"  | 
|
1218  | 
by (fact top.extremum_strict)  | 
|
| 43816 | 1219  | 
|
| 
43814
 
58791b75cf1f
moved lemmas bot_less and less_top to classes bot and top respectively
 
haftmann 
parents: 
43813 
diff
changeset
 | 
1220  | 
lemma less_top:  | 
| 
43853
 
020ddc6a9508
consolidated bot and top classes, tuned notation
 
haftmann 
parents: 
43816 
diff
changeset
 | 
1221  | 
"a \<noteq> \<top> \<longleftrightarrow> a < \<top>"  | 
| 51487 | 1222  | 
by (fact top.not_eq_extremum)  | 
| 
43814
 
58791b75cf1f
moved lemmas bot_less and less_top to classes bot and top respectively
 
haftmann 
parents: 
43813 
diff
changeset
 | 
1223  | 
|
| 
 
58791b75cf1f
moved lemmas bot_less and less_top to classes bot and top respectively
 
haftmann 
parents: 
43813 
diff
changeset
 | 
1224  | 
end  | 
| 28685 | 1225  | 
|
1226  | 
||
| 27823 | 1227  | 
subsection {* Dense orders *}
 | 
1228  | 
||
| 
51329
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1229  | 
class inner_dense_order = order +  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1230  | 
assumes dense: "x < y \<Longrightarrow> (\<exists>z. x < z \<and> z < y)"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1231  | 
|
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1232  | 
class inner_dense_linorder = linorder + inner_dense_order  | 
| 
35579
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1233  | 
begin  | 
| 27823 | 1234  | 
|
| 
35579
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1235  | 
lemma dense_le:  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1236  | 
fixes y z :: 'a  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1237  | 
assumes "\<And>x. x < y \<Longrightarrow> x \<le> z"  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1238  | 
shows "y \<le> z"  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1239  | 
proof (rule ccontr)  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1240  | 
assume "\<not> ?thesis"  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1241  | 
hence "z < y" by simp  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1242  | 
from dense[OF this]  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1243  | 
obtain x where "x < y" and "z < x" by safe  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1244  | 
moreover have "x \<le> z" using assms[OF `x < y`] .  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1245  | 
ultimately show False by auto  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1246  | 
qed  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1247  | 
|
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1248  | 
lemma dense_le_bounded:  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1249  | 
fixes x y z :: 'a  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1250  | 
assumes "x < y"  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1251  | 
assumes *: "\<And>w. \<lbrakk> x < w ; w < y \<rbrakk> \<Longrightarrow> w \<le> z"  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1252  | 
shows "y \<le> z"  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1253  | 
proof (rule dense_le)  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1254  | 
fix w assume "w < y"  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1255  | 
from dense[OF `x < y`] obtain u where "x < u" "u < y" by safe  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1256  | 
from linear[of u w]  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1257  | 
show "w \<le> z"  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1258  | 
proof (rule disjE)  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1259  | 
assume "u \<le> w"  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1260  | 
from less_le_trans[OF `x < u` `u \<le> w`] `w < y`  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1261  | 
show "w \<le> z" by (rule *)  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1262  | 
next  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1263  | 
assume "w \<le> u"  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1264  | 
from `w \<le> u` *[OF `x < u` `u < y`]  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1265  | 
show "w \<le> z" by (rule order_trans)  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1266  | 
qed  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1267  | 
qed  | 
| 
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1268  | 
|
| 
51329
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1269  | 
lemma dense_ge:  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1270  | 
fixes y z :: 'a  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1271  | 
assumes "\<And>x. z < x \<Longrightarrow> y \<le> x"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1272  | 
shows "y \<le> z"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1273  | 
proof (rule ccontr)  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1274  | 
assume "\<not> ?thesis"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1275  | 
hence "z < y" by simp  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1276  | 
from dense[OF this]  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1277  | 
obtain x where "x < y" and "z < x" by safe  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1278  | 
moreover have "y \<le> x" using assms[OF `z < x`] .  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1279  | 
ultimately show False by auto  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1280  | 
qed  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1281  | 
|
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1282  | 
lemma dense_ge_bounded:  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1283  | 
fixes x y z :: 'a  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1284  | 
assumes "z < x"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1285  | 
assumes *: "\<And>w. \<lbrakk> z < w ; w < x \<rbrakk> \<Longrightarrow> y \<le> w"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1286  | 
shows "y \<le> z"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1287  | 
proof (rule dense_ge)  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1288  | 
fix w assume "z < w"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1289  | 
from dense[OF `z < x`] obtain u where "z < u" "u < x" by safe  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1290  | 
from linear[of u w]  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1291  | 
show "y \<le> w"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1292  | 
proof (rule disjE)  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1293  | 
assume "w \<le> u"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1294  | 
from `z < w` le_less_trans[OF `w \<le> u` `u < x`]  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1295  | 
show "y \<le> w" by (rule *)  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1296  | 
next  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1297  | 
assume "u \<le> w"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1298  | 
from *[OF `z < u` `u < x`] `u \<le> w`  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1299  | 
show "y \<le> w" by (rule order_trans)  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1300  | 
qed  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1301  | 
qed  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1302  | 
|
| 
35579
 
cc9a5a0ab5ea
Add dense_le, dense_le_bounded, field_le_mult_one_interval.
 
hoelzl 
parents: 
35364 
diff
changeset
 | 
1303  | 
end  | 
| 27823 | 1304  | 
|
| 
51329
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1305  | 
class no_top = order +  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1306  | 
assumes gt_ex: "\<exists>y. x < y"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1307  | 
|
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1308  | 
class no_bot = order +  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1309  | 
assumes lt_ex: "\<exists>y. y < x"  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1310  | 
|
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1311  | 
class dense_linorder = inner_dense_linorder + no_top + no_bot  | 
| 
 
4a3c453f99a1
split dense into inner_dense_order and no_top/no_bot
 
hoelzl 
parents: 
51263 
diff
changeset
 | 
1312  | 
|
| 
51546
 
2e26df807dc7
more uniform style for interpretation and sublocale declarations
 
haftmann 
parents: 
51487 
diff
changeset
 | 
1313  | 
|
| 27823 | 1314  | 
subsection {* Wellorders *}
 | 
1315  | 
||
1316  | 
class wellorder = linorder +  | 
|
1317  | 
assumes less_induct [case_names less]: "(\<And>x. (\<And>y. y < x \<Longrightarrow> P y) \<Longrightarrow> P x) \<Longrightarrow> P a"  | 
|
1318  | 
begin  | 
|
1319  | 
||
1320  | 
lemma wellorder_Least_lemma:  | 
|
1321  | 
fixes k :: 'a  | 
|
1322  | 
assumes "P k"  | 
|
| 
34250
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1323  | 
shows LeastI: "P (LEAST x. P x)" and Least_le: "(LEAST x. P x) \<le> k"  | 
| 27823 | 1324  | 
proof -  | 
1325  | 
have "P (LEAST x. P x) \<and> (LEAST x. P x) \<le> k"  | 
|
1326  | 
using assms proof (induct k rule: less_induct)  | 
|
1327  | 
case (less x) then have "P x" by simp  | 
|
1328  | 
show ?case proof (rule classical)  | 
|
1329  | 
assume assm: "\<not> (P (LEAST a. P a) \<and> (LEAST a. P a) \<le> x)"  | 
|
1330  | 
have "\<And>y. P y \<Longrightarrow> x \<le> y"  | 
|
1331  | 
proof (rule classical)  | 
|
1332  | 
fix y  | 
|
| 38705 | 1333  | 
assume "P y" and "\<not> x \<le> y"  | 
| 27823 | 1334  | 
with less have "P (LEAST a. P a)" and "(LEAST a. P a) \<le> y"  | 
1335  | 
by (auto simp add: not_le)  | 
|
1336  | 
with assm have "x < (LEAST a. P a)" and "(LEAST a. P a) \<le> y"  | 
|
1337  | 
by auto  | 
|
1338  | 
then show "x \<le> y" by auto  | 
|
1339  | 
qed  | 
|
1340  | 
with `P x` have Least: "(LEAST a. P a) = x"  | 
|
1341  | 
by (rule Least_equality)  | 
|
1342  | 
with `P x` show ?thesis by simp  | 
|
1343  | 
qed  | 
|
1344  | 
qed  | 
|
1345  | 
then show "P (LEAST x. P x)" and "(LEAST x. P x) \<le> k" by auto  | 
|
1346  | 
qed  | 
|
1347  | 
||
1348  | 
-- "The following 3 lemmas are due to Brian Huffman"  | 
|
1349  | 
lemma LeastI_ex: "\<exists>x. P x \<Longrightarrow> P (Least P)"  | 
|
1350  | 
by (erule exE) (erule LeastI)  | 
|
1351  | 
||
1352  | 
lemma LeastI2:  | 
|
1353  | 
"P a \<Longrightarrow> (\<And>x. P x \<Longrightarrow> Q x) \<Longrightarrow> Q (Least P)"  | 
|
1354  | 
by (blast intro: LeastI)  | 
|
1355  | 
||
1356  | 
lemma LeastI2_ex:  | 
|
1357  | 
"\<exists>a. P a \<Longrightarrow> (\<And>x. P x \<Longrightarrow> Q x) \<Longrightarrow> Q (Least P)"  | 
|
1358  | 
by (blast intro: LeastI_ex)  | 
|
1359  | 
||
| 38705 | 1360  | 
lemma LeastI2_wellorder:  | 
1361  | 
assumes "P a"  | 
|
1362  | 
and "\<And>a. \<lbrakk> P a; \<forall>b. P b \<longrightarrow> a \<le> b \<rbrakk> \<Longrightarrow> Q a"  | 
|
1363  | 
shows "Q (Least P)"  | 
|
1364  | 
proof (rule LeastI2_order)  | 
|
1365  | 
show "P (Least P)" using `P a` by (rule LeastI)  | 
|
1366  | 
next  | 
|
1367  | 
fix y assume "P y" thus "Least P \<le> y" by (rule Least_le)  | 
|
1368  | 
next  | 
|
1369  | 
fix x assume "P x" "\<forall>y. P y \<longrightarrow> x \<le> y" thus "Q x" by (rule assms(2))  | 
|
1370  | 
qed  | 
|
1371  | 
||
| 27823 | 1372  | 
lemma not_less_Least: "k < (LEAST x. P x) \<Longrightarrow> \<not> P k"  | 
1373  | 
apply (simp (no_asm_use) add: not_le [symmetric])  | 
|
1374  | 
apply (erule contrapos_nn)  | 
|
1375  | 
apply (erule Least_le)  | 
|
1376  | 
done  | 
|
1377  | 
||
| 38705 | 1378  | 
end  | 
| 27823 | 1379  | 
|
| 28685 | 1380  | 
|
| 
46631
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1381  | 
subsection {* Order on @{typ bool} *}
 | 
| 28685 | 1382  | 
|
| 45262 | 1383  | 
instantiation bool :: "{bot, top, linorder}"
 | 
| 28685 | 1384  | 
begin  | 
1385  | 
||
1386  | 
definition  | 
|
| 41080 | 1387  | 
le_bool_def [simp]: "P \<le> Q \<longleftrightarrow> P \<longrightarrow> Q"  | 
| 28685 | 1388  | 
|
1389  | 
definition  | 
|
| 41080 | 1390  | 
[simp]: "(P\<Colon>bool) < Q \<longleftrightarrow> \<not> P \<and> Q"  | 
| 28685 | 1391  | 
|
1392  | 
definition  | 
|
| 
46631
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1393  | 
[simp]: "\<bottom> \<longleftrightarrow> False"  | 
| 28685 | 1394  | 
|
1395  | 
definition  | 
|
| 
46631
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1396  | 
[simp]: "\<top> \<longleftrightarrow> True"  | 
| 28685 | 1397  | 
|
1398  | 
instance proof  | 
|
| 41080 | 1399  | 
qed auto  | 
| 28685 | 1400  | 
|
| 15524 | 1401  | 
end  | 
| 28685 | 1402  | 
|
1403  | 
lemma le_boolI: "(P \<Longrightarrow> Q) \<Longrightarrow> P \<le> Q"  | 
|
| 41080 | 1404  | 
by simp  | 
| 28685 | 1405  | 
|
1406  | 
lemma le_boolI': "P \<longrightarrow> Q \<Longrightarrow> P \<le> Q"  | 
|
| 41080 | 1407  | 
by simp  | 
| 28685 | 1408  | 
|
1409  | 
lemma le_boolE: "P \<le> Q \<Longrightarrow> P \<Longrightarrow> (Q \<Longrightarrow> R) \<Longrightarrow> R"  | 
|
| 41080 | 1410  | 
by simp  | 
| 28685 | 1411  | 
|
1412  | 
lemma le_boolD: "P \<le> Q \<Longrightarrow> P \<longrightarrow> Q"  | 
|
| 41080 | 1413  | 
by simp  | 
| 32899 | 1414  | 
|
| 
46631
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1415  | 
lemma bot_boolE: "\<bottom> \<Longrightarrow> P"  | 
| 41080 | 1416  | 
by simp  | 
| 32899 | 1417  | 
|
| 
46631
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1418  | 
lemma top_boolI: \<top>  | 
| 41080 | 1419  | 
by simp  | 
| 28685 | 1420  | 
|
1421  | 
lemma [code]:  | 
|
1422  | 
"False \<le> b \<longleftrightarrow> True"  | 
|
1423  | 
"True \<le> b \<longleftrightarrow> b"  | 
|
1424  | 
"False < b \<longleftrightarrow> b"  | 
|
1425  | 
"True < b \<longleftrightarrow> False"  | 
|
| 41080 | 1426  | 
by simp_all  | 
| 28685 | 1427  | 
|
1428  | 
||
| 
46631
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1429  | 
subsection {* Order on @{typ "_ \<Rightarrow> _"} *}
 | 
| 28685 | 1430  | 
|
1431  | 
instantiation "fun" :: (type, ord) ord  | 
|
1432  | 
begin  | 
|
1433  | 
||
1434  | 
definition  | 
|
| 37767 | 1435  | 
le_fun_def: "f \<le> g \<longleftrightarrow> (\<forall>x. f x \<le> g x)"  | 
| 28685 | 1436  | 
|
1437  | 
definition  | 
|
| 41080 | 1438  | 
"(f\<Colon>'a \<Rightarrow> 'b) < g \<longleftrightarrow> f \<le> g \<and> \<not> (g \<le> f)"  | 
| 28685 | 1439  | 
|
1440  | 
instance ..  | 
|
1441  | 
||
1442  | 
end  | 
|
1443  | 
||
1444  | 
instance "fun" :: (type, preorder) preorder proof  | 
|
1445  | 
qed (auto simp add: le_fun_def less_fun_def  | 
|
| 44921 | 1446  | 
intro: order_trans antisym)  | 
| 28685 | 1447  | 
|
1448  | 
instance "fun" :: (type, order) order proof  | 
|
| 44921 | 1449  | 
qed (auto simp add: le_fun_def intro: antisym)  | 
| 28685 | 1450  | 
|
| 41082 | 1451  | 
instantiation "fun" :: (type, bot) bot  | 
1452  | 
begin  | 
|
1453  | 
||
1454  | 
definition  | 
|
| 
46631
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1455  | 
"\<bottom> = (\<lambda>x. \<bottom>)"  | 
| 41082 | 1456  | 
|
| 49769 | 1457  | 
lemma bot_apply [simp, code]:  | 
| 
46631
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1458  | 
"\<bottom> x = \<bottom>"  | 
| 41082 | 1459  | 
by (simp add: bot_fun_def)  | 
1460  | 
||
1461  | 
instance proof  | 
|
| 46884 | 1462  | 
qed (simp add: le_fun_def)  | 
| 41082 | 1463  | 
|
1464  | 
end  | 
|
1465  | 
||
| 28685 | 1466  | 
instantiation "fun" :: (type, top) top  | 
1467  | 
begin  | 
|
1468  | 
||
1469  | 
definition  | 
|
| 
46631
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1470  | 
[no_atp]: "\<top> = (\<lambda>x. \<top>)"  | 
| 28685 | 1471  | 
|
| 49769 | 1472  | 
lemma top_apply [simp, code]:  | 
| 
46631
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1473  | 
"\<top> x = \<top>"  | 
| 41080 | 1474  | 
by (simp add: top_fun_def)  | 
1475  | 
||
| 28685 | 1476  | 
instance proof  | 
| 46884 | 1477  | 
qed (simp add: le_fun_def)  | 
| 28685 | 1478  | 
|
1479  | 
end  | 
|
1480  | 
||
1481  | 
lemma le_funI: "(\<And>x. f x \<le> g x) \<Longrightarrow> f \<le> g"  | 
|
1482  | 
unfolding le_fun_def by simp  | 
|
1483  | 
||
1484  | 
lemma le_funE: "f \<le> g \<Longrightarrow> (f x \<le> g x \<Longrightarrow> P) \<Longrightarrow> P"  | 
|
1485  | 
unfolding le_fun_def by simp  | 
|
1486  | 
||
1487  | 
lemma le_funD: "f \<le> g \<Longrightarrow> f x \<le> g x"  | 
|
1488  | 
unfolding le_fun_def by simp  | 
|
1489  | 
||
| 
34250
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1490  | 
|
| 
46631
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1491  | 
subsection {* Order on unary and binary predicates *}
 | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1492  | 
|
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1493  | 
lemma predicate1I:  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1494  | 
assumes PQ: "\<And>x. P x \<Longrightarrow> Q x"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1495  | 
shows "P \<le> Q"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1496  | 
apply (rule le_funI)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1497  | 
apply (rule le_boolI)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1498  | 
apply (rule PQ)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1499  | 
apply assumption  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1500  | 
done  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1501  | 
|
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1502  | 
lemma predicate1D:  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1503  | 
"P \<le> Q \<Longrightarrow> P x \<Longrightarrow> Q x"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1504  | 
apply (erule le_funE)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1505  | 
apply (erule le_boolE)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1506  | 
apply assumption+  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1507  | 
done  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1508  | 
|
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1509  | 
lemma rev_predicate1D:  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1510  | 
"P x \<Longrightarrow> P \<le> Q \<Longrightarrow> Q x"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1511  | 
by (rule predicate1D)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1512  | 
|
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1513  | 
lemma predicate2I:  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1514  | 
assumes PQ: "\<And>x y. P x y \<Longrightarrow> Q x y"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1515  | 
shows "P \<le> Q"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1516  | 
apply (rule le_funI)+  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1517  | 
apply (rule le_boolI)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1518  | 
apply (rule PQ)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1519  | 
apply assumption  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1520  | 
done  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1521  | 
|
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1522  | 
lemma predicate2D:  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1523  | 
"P \<le> Q \<Longrightarrow> P x y \<Longrightarrow> Q x y"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1524  | 
apply (erule le_funE)+  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1525  | 
apply (erule le_boolE)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1526  | 
apply assumption+  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1527  | 
done  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1528  | 
|
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1529  | 
lemma rev_predicate2D:  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1530  | 
"P x y \<Longrightarrow> P \<le> Q \<Longrightarrow> Q x y"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1531  | 
by (rule predicate2D)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1532  | 
|
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1533  | 
lemma bot1E [no_atp]: "\<bottom> x \<Longrightarrow> P"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1534  | 
by (simp add: bot_fun_def)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1535  | 
|
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1536  | 
lemma bot2E: "\<bottom> x y \<Longrightarrow> P"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1537  | 
by (simp add: bot_fun_def)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1538  | 
|
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1539  | 
lemma top1I: "\<top> x"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1540  | 
by (simp add: top_fun_def)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1541  | 
|
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1542  | 
lemma top2I: "\<top> x y"  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1543  | 
by (simp add: top_fun_def)  | 
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1544  | 
|
| 
 
2c5c003cee35
moved lemmas for orderings and lattices on predicates to corresponding theories, retaining declaration order of classical rules; tuned headings; tuned syntax
 
haftmann 
parents: 
46557 
diff
changeset
 | 
1545  | 
|
| 
34250
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1546  | 
subsection {* Name duplicates *}
 | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1547  | 
|
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1548  | 
lemmas order_eq_refl = preorder_class.eq_refl  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1549  | 
lemmas order_less_irrefl = preorder_class.less_irrefl  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1550  | 
lemmas order_less_imp_le = preorder_class.less_imp_le  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1551  | 
lemmas order_less_not_sym = preorder_class.less_not_sym  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1552  | 
lemmas order_less_asym = preorder_class.less_asym  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1553  | 
lemmas order_less_trans = preorder_class.less_trans  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1554  | 
lemmas order_le_less_trans = preorder_class.le_less_trans  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1555  | 
lemmas order_less_le_trans = preorder_class.less_le_trans  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1556  | 
lemmas order_less_imp_not_less = preorder_class.less_imp_not_less  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1557  | 
lemmas order_less_imp_triv = preorder_class.less_imp_triv  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1558  | 
lemmas order_less_asym' = preorder_class.less_asym'  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1559  | 
|
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1560  | 
lemmas order_less_le = order_class.less_le  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1561  | 
lemmas order_le_less = order_class.le_less  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1562  | 
lemmas order_le_imp_less_or_eq = order_class.le_imp_less_or_eq  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1563  | 
lemmas order_less_imp_not_eq = order_class.less_imp_not_eq  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1564  | 
lemmas order_less_imp_not_eq2 = order_class.less_imp_not_eq2  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1565  | 
lemmas order_neq_le_trans = order_class.neq_le_trans  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1566  | 
lemmas order_le_neq_trans = order_class.le_neq_trans  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1567  | 
lemmas order_antisym = order_class.antisym  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1568  | 
lemmas order_eq_iff = order_class.eq_iff  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1569  | 
lemmas order_antisym_conv = order_class.antisym_conv  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1570  | 
|
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1571  | 
lemmas linorder_linear = linorder_class.linear  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1572  | 
lemmas linorder_less_linear = linorder_class.less_linear  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1573  | 
lemmas linorder_le_less_linear = linorder_class.le_less_linear  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1574  | 
lemmas linorder_le_cases = linorder_class.le_cases  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1575  | 
lemmas linorder_not_less = linorder_class.not_less  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1576  | 
lemmas linorder_not_le = linorder_class.not_le  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1577  | 
lemmas linorder_neq_iff = linorder_class.neq_iff  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1578  | 
lemmas linorder_neqE = linorder_class.neqE  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1579  | 
lemmas linorder_antisym_conv1 = linorder_class.antisym_conv1  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1580  | 
lemmas linorder_antisym_conv2 = linorder_class.antisym_conv2  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1581  | 
lemmas linorder_antisym_conv3 = linorder_class.antisym_conv3  | 
| 
 
3b619abaa67a
moved name duplicates to end of theory; reduced warning noise
 
haftmann 
parents: 
34065 
diff
changeset
 | 
1582  | 
|
| 28685 | 1583  | 
end  | 
| 51487 | 1584  |