author | nipkow |
Fri, 05 Oct 2007 08:38:09 +0200 | |
changeset 24853 | aab5798e5a33 |
parent 24748 | ee0a0eb6b738 |
child 25062 | af5ef0d4d655 |
permissions | -rw-r--r-- |
8924 | 1 |
(* Title: HOL/SetInterval.thy |
2 |
ID: $Id$ |
|
13735 | 3 |
Author: Tobias Nipkow and Clemens Ballarin |
14485 | 4 |
Additions by Jeremy Avigad in March 2004 |
8957 | 5 |
Copyright 2000 TU Muenchen |
8924 | 6 |
|
13735 | 7 |
lessThan, greaterThan, atLeast, atMost and two-sided intervals |
8924 | 8 |
*) |
9 |
||
14577 | 10 |
header {* Set intervals *} |
11 |
||
15131 | 12 |
theory SetInterval |
15140 | 13 |
imports IntArith |
15131 | 14 |
begin |
8924 | 15 |
|
24691 | 16 |
context ord |
17 |
begin |
|
18 |
definition |
|
19 |
lessThan :: "'a => 'a set" ("(1\<^loc>{..<_})") where |
|
24748 | 20 |
"\<^loc>{..<u} == {x. x \<^loc>< u}" |
24691 | 21 |
|
22 |
definition |
|
23 |
atMost :: "'a => 'a set" ("(1\<^loc>{.._})") where |
|
24748 | 24 |
"\<^loc>{..u} == {x. x \<^loc>\<le> u}" |
24691 | 25 |
|
26 |
definition |
|
27 |
greaterThan :: "'a => 'a set" ("(1\<^loc>{_<..})") where |
|
24748 | 28 |
"\<^loc>{l<..} == {x. l\<^loc><x}" |
24691 | 29 |
|
30 |
definition |
|
31 |
atLeast :: "'a => 'a set" ("(1\<^loc>{_..})") where |
|
24748 | 32 |
"\<^loc>{l..} == {x. l\<^loc>\<le>x}" |
24691 | 33 |
|
34 |
definition |
|
35 |
greaterThanLessThan :: "'a => 'a => 'a set" ("(1\<^loc>{_<..<_})") where |
|
36 |
"\<^loc>{l<..<u} == \<^loc>{l<..} Int \<^loc>{..<u}" |
|
37 |
||
38 |
definition |
|
39 |
atLeastLessThan :: "'a => 'a => 'a set" ("(1\<^loc>{_..<_})") where |
|
40 |
"\<^loc>{l..<u} == \<^loc>{l..} Int \<^loc>{..<u}" |
|
41 |
||
42 |
definition |
|
43 |
greaterThanAtMost :: "'a => 'a => 'a set" ("(1\<^loc>{_<.._})") where |
|
44 |
"\<^loc>{l<..u} == \<^loc>{l<..} Int \<^loc>{..u}" |
|
45 |
||
46 |
definition |
|
47 |
atLeastAtMost :: "'a => 'a => 'a set" ("(1\<^loc>{_.._})") where |
|
48 |
"\<^loc>{l..u} == \<^loc>{l..} Int \<^loc>{..u}" |
|
49 |
||
50 |
end |
|
51 |
(* |
|
8924 | 52 |
constdefs |
15045 | 53 |
lessThan :: "('a::ord) => 'a set" ("(1{..<_})") |
54 |
"{..<u} == {x. x<u}" |
|
8924 | 55 |
|
11609
3f3d1add4d94
eliminated theories "equalities" and "mono" (made part of "Typedef",
wenzelm
parents:
10214
diff
changeset
|
56 |
atMost :: "('a::ord) => 'a set" ("(1{.._})") |
3f3d1add4d94
eliminated theories "equalities" and "mono" (made part of "Typedef",
wenzelm
parents:
10214
diff
changeset
|
57 |
"{..u} == {x. x<=u}" |
8924 | 58 |
|
15045 | 59 |
greaterThan :: "('a::ord) => 'a set" ("(1{_<..})") |
60 |
"{l<..} == {x. l<x}" |
|
8924 | 61 |
|
11609
3f3d1add4d94
eliminated theories "equalities" and "mono" (made part of "Typedef",
wenzelm
parents:
10214
diff
changeset
|
62 |
atLeast :: "('a::ord) => 'a set" ("(1{_..})") |
3f3d1add4d94
eliminated theories "equalities" and "mono" (made part of "Typedef",
wenzelm
parents:
10214
diff
changeset
|
63 |
"{l..} == {x. l<=x}" |
8924 | 64 |
|
15045 | 65 |
greaterThanLessThan :: "['a::ord, 'a] => 'a set" ("(1{_<..<_})") |
66 |
"{l<..<u} == {l<..} Int {..<u}" |
|
13735 | 67 |
|
15045 | 68 |
atLeastLessThan :: "['a::ord, 'a] => 'a set" ("(1{_..<_})") |
69 |
"{l..<u} == {l..} Int {..<u}" |
|
13735 | 70 |
|
15045 | 71 |
greaterThanAtMost :: "['a::ord, 'a] => 'a set" ("(1{_<.._})") |
72 |
"{l<..u} == {l<..} Int {..u}" |
|
13735 | 73 |
|
74 |
atLeastAtMost :: "['a::ord, 'a] => 'a set" ("(1{_.._})") |
|
75 |
"{l..u} == {l..} Int {..u}" |
|
24691 | 76 |
*) |
13735 | 77 |
|
15048 | 78 |
text{* A note of warning when using @{term"{..<n}"} on type @{typ |
79 |
nat}: it is equivalent to @{term"{0::nat..<n}"} but some lemmas involving |
|
15052 | 80 |
@{term"{m..<n}"} may not exist in @{term"{..<n}"}-form as well. *} |
15048 | 81 |
|
14418 | 82 |
syntax |
83 |
"@UNION_le" :: "nat => nat => 'b set => 'b set" ("(3UN _<=_./ _)" 10) |
|
84 |
"@UNION_less" :: "nat => nat => 'b set => 'b set" ("(3UN _<_./ _)" 10) |
|
85 |
"@INTER_le" :: "nat => nat => 'b set => 'b set" ("(3INT _<=_./ _)" 10) |
|
86 |
"@INTER_less" :: "nat => nat => 'b set => 'b set" ("(3INT _<_./ _)" 10) |
|
87 |
||
88 |
syntax (input) |
|
89 |
"@UNION_le" :: "nat => nat => 'b set => 'b set" ("(3\<Union> _\<le>_./ _)" 10) |
|
90 |
"@UNION_less" :: "nat => nat => 'b set => 'b set" ("(3\<Union> _<_./ _)" 10) |
|
91 |
"@INTER_le" :: "nat => nat => 'b set => 'b set" ("(3\<Inter> _\<le>_./ _)" 10) |
|
92 |
"@INTER_less" :: "nat => nat => 'b set => 'b set" ("(3\<Inter> _<_./ _)" 10) |
|
93 |
||
94 |
syntax (xsymbols) |
|
14846 | 95 |
"@UNION_le" :: "nat \<Rightarrow> nat => 'b set => 'b set" ("(3\<Union>(00\<^bsub>_ \<le> _\<^esub>)/ _)" 10) |
96 |
"@UNION_less" :: "nat \<Rightarrow> nat => 'b set => 'b set" ("(3\<Union>(00\<^bsub>_ < _\<^esub>)/ _)" 10) |
|
97 |
"@INTER_le" :: "nat \<Rightarrow> nat => 'b set => 'b set" ("(3\<Inter>(00\<^bsub>_ \<le> _\<^esub>)/ _)" 10) |
|
98 |
"@INTER_less" :: "nat \<Rightarrow> nat => 'b set => 'b set" ("(3\<Inter>(00\<^bsub>_ < _\<^esub>)/ _)" 10) |
|
14418 | 99 |
|
100 |
translations |
|
101 |
"UN i<=n. A" == "UN i:{..n}. A" |
|
15045 | 102 |
"UN i<n. A" == "UN i:{..<n}. A" |
14418 | 103 |
"INT i<=n. A" == "INT i:{..n}. A" |
15045 | 104 |
"INT i<n. A" == "INT i:{..<n}. A" |
14418 | 105 |
|
106 |
||
14485 | 107 |
subsection {* Various equivalences *} |
13735 | 108 |
|
24691 | 109 |
lemma (in ord) lessThan_iff [iff]: "(i: lessThan k) = (i\<^loc><k)" |
13850 | 110 |
by (simp add: lessThan_def) |
13735 | 111 |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
112 |
lemma Compl_lessThan [simp]: |
13735 | 113 |
"!!k:: 'a::linorder. -lessThan k = atLeast k" |
13850 | 114 |
apply (auto simp add: lessThan_def atLeast_def) |
13735 | 115 |
done |
116 |
||
13850 | 117 |
lemma single_Diff_lessThan [simp]: "!!k:: 'a::order. {k} - lessThan k = {k}" |
118 |
by auto |
|
13735 | 119 |
|
24691 | 120 |
lemma (in ord) greaterThan_iff [iff]: "(i: greaterThan k) = (k\<^loc><i)" |
13850 | 121 |
by (simp add: greaterThan_def) |
13735 | 122 |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
123 |
lemma Compl_greaterThan [simp]: |
13735 | 124 |
"!!k:: 'a::linorder. -greaterThan k = atMost k" |
13850 | 125 |
apply (simp add: greaterThan_def atMost_def le_def, auto) |
13735 | 126 |
done |
127 |
||
13850 | 128 |
lemma Compl_atMost [simp]: "!!k:: 'a::linorder. -atMost k = greaterThan k" |
129 |
apply (subst Compl_greaterThan [symmetric]) |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
130 |
apply (rule double_complement) |
13735 | 131 |
done |
132 |
||
24691 | 133 |
lemma (in ord) atLeast_iff [iff]: "(i: atLeast k) = (k\<^loc><=i)" |
13850 | 134 |
by (simp add: atLeast_def) |
13735 | 135 |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
136 |
lemma Compl_atLeast [simp]: |
13735 | 137 |
"!!k:: 'a::linorder. -atLeast k = lessThan k" |
13850 | 138 |
apply (simp add: lessThan_def atLeast_def le_def, auto) |
13735 | 139 |
done |
140 |
||
24691 | 141 |
lemma (in ord) atMost_iff [iff]: "(i: atMost k) = (i\<^loc><=k)" |
13850 | 142 |
by (simp add: atMost_def) |
13735 | 143 |
|
14485 | 144 |
lemma atMost_Int_atLeast: "!!n:: 'a::order. atMost n Int atLeast n = {n}" |
145 |
by (blast intro: order_antisym) |
|
13850 | 146 |
|
147 |
||
14485 | 148 |
subsection {* Logical Equivalences for Set Inclusion and Equality *} |
13850 | 149 |
|
150 |
lemma atLeast_subset_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
151 |
"(atLeast x \<subseteq> atLeast y) = (y \<le> (x::'a::order))" |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
152 |
by (blast intro: order_trans) |
13850 | 153 |
|
154 |
lemma atLeast_eq_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
155 |
"(atLeast x = atLeast y) = (x = (y::'a::linorder))" |
13850 | 156 |
by (blast intro: order_antisym order_trans) |
157 |
||
158 |
lemma greaterThan_subset_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
159 |
"(greaterThan x \<subseteq> greaterThan y) = (y \<le> (x::'a::linorder))" |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
160 |
apply (auto simp add: greaterThan_def) |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
161 |
apply (subst linorder_not_less [symmetric], blast) |
13850 | 162 |
done |
163 |
||
164 |
lemma greaterThan_eq_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
165 |
"(greaterThan x = greaterThan y) = (x = (y::'a::linorder))" |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
166 |
apply (rule iffI) |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
167 |
apply (erule equalityE) |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
168 |
apply (simp_all add: greaterThan_subset_iff) |
13850 | 169 |
done |
170 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
171 |
lemma atMost_subset_iff [iff]: "(atMost x \<subseteq> atMost y) = (x \<le> (y::'a::order))" |
13850 | 172 |
by (blast intro: order_trans) |
173 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
174 |
lemma atMost_eq_iff [iff]: "(atMost x = atMost y) = (x = (y::'a::linorder))" |
13850 | 175 |
by (blast intro: order_antisym order_trans) |
176 |
||
177 |
lemma lessThan_subset_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
178 |
"(lessThan x \<subseteq> lessThan y) = (x \<le> (y::'a::linorder))" |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
179 |
apply (auto simp add: lessThan_def) |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
180 |
apply (subst linorder_not_less [symmetric], blast) |
13850 | 181 |
done |
182 |
||
183 |
lemma lessThan_eq_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
184 |
"(lessThan x = lessThan y) = (x = (y::'a::linorder))" |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
185 |
apply (rule iffI) |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
186 |
apply (erule equalityE) |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
187 |
apply (simp_all add: lessThan_subset_iff) |
13735 | 188 |
done |
189 |
||
190 |
||
13850 | 191 |
subsection {*Two-sided intervals*} |
13735 | 192 |
|
24691 | 193 |
context ord |
194 |
begin |
|
195 |
||
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
23496
diff
changeset
|
196 |
lemma greaterThanLessThan_iff [simp,noatp]: |
24691 | 197 |
"(i : \<^loc>{l<..<u}) = (l \<^loc>< i & i \<^loc>< u)" |
13735 | 198 |
by (simp add: greaterThanLessThan_def) |
199 |
||
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
23496
diff
changeset
|
200 |
lemma atLeastLessThan_iff [simp,noatp]: |
24691 | 201 |
"(i : \<^loc>{l..<u}) = (l \<^loc><= i & i \<^loc>< u)" |
13735 | 202 |
by (simp add: atLeastLessThan_def) |
203 |
||
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
23496
diff
changeset
|
204 |
lemma greaterThanAtMost_iff [simp,noatp]: |
24691 | 205 |
"(i : \<^loc>{l<..u}) = (l \<^loc>< i & i \<^loc><= u)" |
13735 | 206 |
by (simp add: greaterThanAtMost_def) |
207 |
||
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
23496
diff
changeset
|
208 |
lemma atLeastAtMost_iff [simp,noatp]: |
24691 | 209 |
"(i : \<^loc>{l..u}) = (l \<^loc><= i & i \<^loc><= u)" |
13735 | 210 |
by (simp add: atLeastAtMost_def) |
211 |
||
14577 | 212 |
text {* The above four lemmas could be declared as iffs. |
213 |
If we do so, a call to blast in Hyperreal/Star.ML, lemma @{text STAR_Int} |
|
214 |
seems to take forever (more than one hour). *} |
|
24691 | 215 |
end |
13735 | 216 |
|
15554 | 217 |
subsubsection{* Emptyness and singletons *} |
218 |
||
24691 | 219 |
context order |
220 |
begin |
|
15554 | 221 |
|
24691 | 222 |
lemma atLeastAtMost_empty [simp]: "n \<^loc>< m ==> \<^loc>{m..n} = {}"; |
223 |
by (auto simp add: atLeastAtMost_def atMost_def atLeast_def) |
|
224 |
||
225 |
lemma atLeastLessThan_empty[simp]: "n \<^loc>\<le> m ==> \<^loc>{m..<n} = {}" |
|
15554 | 226 |
by (auto simp add: atLeastLessThan_def) |
227 |
||
24691 | 228 |
lemma greaterThanAtMost_empty[simp]:"l \<^loc>\<le> k ==> \<^loc>{k<..l} = {}" |
17719 | 229 |
by(auto simp:greaterThanAtMost_def greaterThan_def atMost_def) |
230 |
||
24691 | 231 |
lemma greaterThanLessThan_empty[simp]:"l \<^loc>\<le> k ==> \<^loc>{k<..l} = {}" |
17719 | 232 |
by(auto simp:greaterThanLessThan_def greaterThan_def lessThan_def) |
233 |
||
24691 | 234 |
lemma atLeastAtMost_singleton [simp]: "\<^loc>{a..a} = {a}" |
235 |
by (auto simp add: atLeastAtMost_def atMost_def atLeast_def) |
|
236 |
||
237 |
end |
|
14485 | 238 |
|
239 |
subsection {* Intervals of natural numbers *} |
|
240 |
||
15047 | 241 |
subsubsection {* The Constant @{term lessThan} *} |
242 |
||
14485 | 243 |
lemma lessThan_0 [simp]: "lessThan (0::nat) = {}" |
244 |
by (simp add: lessThan_def) |
|
245 |
||
246 |
lemma lessThan_Suc: "lessThan (Suc k) = insert k (lessThan k)" |
|
247 |
by (simp add: lessThan_def less_Suc_eq, blast) |
|
248 |
||
249 |
lemma lessThan_Suc_atMost: "lessThan (Suc k) = atMost k" |
|
250 |
by (simp add: lessThan_def atMost_def less_Suc_eq_le) |
|
251 |
||
252 |
lemma UN_lessThan_UNIV: "(UN m::nat. lessThan m) = UNIV" |
|
253 |
by blast |
|
254 |
||
15047 | 255 |
subsubsection {* The Constant @{term greaterThan} *} |
256 |
||
14485 | 257 |
lemma greaterThan_0 [simp]: "greaterThan 0 = range Suc" |
258 |
apply (simp add: greaterThan_def) |
|
259 |
apply (blast dest: gr0_conv_Suc [THEN iffD1]) |
|
260 |
done |
|
261 |
||
262 |
lemma greaterThan_Suc: "greaterThan (Suc k) = greaterThan k - {Suc k}" |
|
263 |
apply (simp add: greaterThan_def) |
|
264 |
apply (auto elim: linorder_neqE) |
|
265 |
done |
|
266 |
||
267 |
lemma INT_greaterThan_UNIV: "(INT m::nat. greaterThan m) = {}" |
|
268 |
by blast |
|
269 |
||
15047 | 270 |
subsubsection {* The Constant @{term atLeast} *} |
271 |
||
14485 | 272 |
lemma atLeast_0 [simp]: "atLeast (0::nat) = UNIV" |
273 |
by (unfold atLeast_def UNIV_def, simp) |
|
274 |
||
275 |
lemma atLeast_Suc: "atLeast (Suc k) = atLeast k - {k}" |
|
276 |
apply (simp add: atLeast_def) |
|
277 |
apply (simp add: Suc_le_eq) |
|
278 |
apply (simp add: order_le_less, blast) |
|
279 |
done |
|
280 |
||
281 |
lemma atLeast_Suc_greaterThan: "atLeast (Suc k) = greaterThan k" |
|
282 |
by (auto simp add: greaterThan_def atLeast_def less_Suc_eq_le) |
|
283 |
||
284 |
lemma UN_atLeast_UNIV: "(UN m::nat. atLeast m) = UNIV" |
|
285 |
by blast |
|
286 |
||
15047 | 287 |
subsubsection {* The Constant @{term atMost} *} |
288 |
||
14485 | 289 |
lemma atMost_0 [simp]: "atMost (0::nat) = {0}" |
290 |
by (simp add: atMost_def) |
|
291 |
||
292 |
lemma atMost_Suc: "atMost (Suc k) = insert (Suc k) (atMost k)" |
|
293 |
apply (simp add: atMost_def) |
|
294 |
apply (simp add: less_Suc_eq order_le_less, blast) |
|
295 |
done |
|
296 |
||
297 |
lemma UN_atMost_UNIV: "(UN m::nat. atMost m) = UNIV" |
|
298 |
by blast |
|
299 |
||
15047 | 300 |
subsubsection {* The Constant @{term atLeastLessThan} *} |
301 |
||
24449 | 302 |
text{*The orientation of the following rule is tricky. The lhs is |
303 |
defined in terms of the rhs. Hence the chosen orientation makes sense |
|
304 |
in this theory --- the reverse orientation complicates proofs (eg |
|
305 |
nontermination). But outside, when the definition of the lhs is rarely |
|
306 |
used, the opposite orientation seems preferable because it reduces a |
|
307 |
specific concept to a more general one. *} |
|
15047 | 308 |
lemma atLeast0LessThan: "{0::nat..<n} = {..<n}" |
15042 | 309 |
by(simp add:lessThan_def atLeastLessThan_def) |
24449 | 310 |
|
311 |
declare atLeast0LessThan[symmetric, code unfold] |
|
312 |
||
313 |
lemma atLeastLessThan0: "{m..<0::nat} = {}" |
|
15047 | 314 |
by (simp add: atLeastLessThan_def) |
24449 | 315 |
|
15047 | 316 |
subsubsection {* Intervals of nats with @{term Suc} *} |
317 |
||
318 |
text{*Not a simprule because the RHS is too messy.*} |
|
319 |
lemma atLeastLessThanSuc: |
|
320 |
"{m..<Suc n} = (if m \<le> n then insert n {m..<n} else {})" |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
321 |
by (auto simp add: atLeastLessThan_def) |
15047 | 322 |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
323 |
lemma atLeastLessThan_singleton [simp]: "{m..<Suc m} = {m}" |
15047 | 324 |
by (auto simp add: atLeastLessThan_def) |
16041 | 325 |
(* |
15047 | 326 |
lemma atLeast_sum_LessThan [simp]: "{m + k..<k::nat} = {}" |
327 |
by (induct k, simp_all add: atLeastLessThanSuc) |
|
328 |
||
329 |
lemma atLeastSucLessThan [simp]: "{Suc n..<n} = {}" |
|
330 |
by (auto simp add: atLeastLessThan_def) |
|
16041 | 331 |
*) |
15045 | 332 |
lemma atLeastLessThanSuc_atLeastAtMost: "{l..<Suc u} = {l..u}" |
14485 | 333 |
by (simp add: lessThan_Suc_atMost atLeastAtMost_def atLeastLessThan_def) |
334 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
335 |
lemma atLeastSucAtMost_greaterThanAtMost: "{Suc l..u} = {l<..u}" |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
336 |
by (simp add: atLeast_Suc_greaterThan atLeastAtMost_def |
14485 | 337 |
greaterThanAtMost_def) |
338 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
339 |
lemma atLeastSucLessThan_greaterThanLessThan: "{Suc l..<u} = {l<..<u}" |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
340 |
by (simp add: atLeast_Suc_greaterThan atLeastLessThan_def |
14485 | 341 |
greaterThanLessThan_def) |
342 |
||
15554 | 343 |
lemma atLeastAtMostSuc_conv: "m \<le> Suc n \<Longrightarrow> {m..Suc n} = insert (Suc n) {m..n}" |
344 |
by (auto simp add: atLeastAtMost_def) |
|
345 |
||
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
346 |
subsubsection {* Image *} |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
347 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
348 |
lemma image_add_atLeastAtMost: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
349 |
"(%n::nat. n+k) ` {i..j} = {i+k..j+k}" (is "?A = ?B") |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
350 |
proof |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
351 |
show "?A \<subseteq> ?B" by auto |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
352 |
next |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
353 |
show "?B \<subseteq> ?A" |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
354 |
proof |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
355 |
fix n assume a: "n : ?B" |
20217
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents:
19538
diff
changeset
|
356 |
hence "n - k : {i..j}" by auto |
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
357 |
moreover have "n = (n - k) + k" using a by auto |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
358 |
ultimately show "n : ?A" by blast |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
359 |
qed |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
360 |
qed |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
361 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
362 |
lemma image_add_atLeastLessThan: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
363 |
"(%n::nat. n+k) ` {i..<j} = {i+k..<j+k}" (is "?A = ?B") |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
364 |
proof |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
365 |
show "?A \<subseteq> ?B" by auto |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
366 |
next |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
367 |
show "?B \<subseteq> ?A" |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
368 |
proof |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
369 |
fix n assume a: "n : ?B" |
20217
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents:
19538
diff
changeset
|
370 |
hence "n - k : {i..<j}" by auto |
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
371 |
moreover have "n = (n - k) + k" using a by auto |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
372 |
ultimately show "n : ?A" by blast |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
373 |
qed |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
374 |
qed |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
375 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
376 |
corollary image_Suc_atLeastAtMost[simp]: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
377 |
"Suc ` {i..j} = {Suc i..Suc j}" |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
378 |
using image_add_atLeastAtMost[where k=1] by simp |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
379 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
380 |
corollary image_Suc_atLeastLessThan[simp]: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
381 |
"Suc ` {i..<j} = {Suc i..<Suc j}" |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
382 |
using image_add_atLeastLessThan[where k=1] by simp |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
383 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
384 |
lemma image_add_int_atLeastLessThan: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
385 |
"(%x. x + (l::int)) ` {0..<u-l} = {l..<u}" |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
386 |
apply (auto simp add: image_def) |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
387 |
apply (rule_tac x = "x - l" in bexI) |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
388 |
apply auto |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
389 |
done |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
390 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
391 |
|
14485 | 392 |
subsubsection {* Finiteness *} |
393 |
||
15045 | 394 |
lemma finite_lessThan [iff]: fixes k :: nat shows "finite {..<k}" |
14485 | 395 |
by (induct k) (simp_all add: lessThan_Suc) |
396 |
||
397 |
lemma finite_atMost [iff]: fixes k :: nat shows "finite {..k}" |
|
398 |
by (induct k) (simp_all add: atMost_Suc) |
|
399 |
||
400 |
lemma finite_greaterThanLessThan [iff]: |
|
15045 | 401 |
fixes l :: nat shows "finite {l<..<u}" |
14485 | 402 |
by (simp add: greaterThanLessThan_def) |
403 |
||
404 |
lemma finite_atLeastLessThan [iff]: |
|
15045 | 405 |
fixes l :: nat shows "finite {l..<u}" |
14485 | 406 |
by (simp add: atLeastLessThan_def) |
407 |
||
408 |
lemma finite_greaterThanAtMost [iff]: |
|
15045 | 409 |
fixes l :: nat shows "finite {l<..u}" |
14485 | 410 |
by (simp add: greaterThanAtMost_def) |
411 |
||
412 |
lemma finite_atLeastAtMost [iff]: |
|
413 |
fixes l :: nat shows "finite {l..u}" |
|
414 |
by (simp add: atLeastAtMost_def) |
|
415 |
||
416 |
lemma bounded_nat_set_is_finite: |
|
24853 | 417 |
"(ALL i:N. i < (n::nat)) ==> finite N" |
14485 | 418 |
-- {* A bounded set of natural numbers is finite. *} |
419 |
apply (rule finite_subset) |
|
420 |
apply (rule_tac [2] finite_lessThan, auto) |
|
421 |
done |
|
422 |
||
24853 | 423 |
text{* Any subset of an interval of natural numbers the size of the |
424 |
subset is exactly that interval. *} |
|
425 |
||
426 |
lemma subset_card_intvl_is_intvl: |
|
427 |
"A <= {k..<k+card A} \<Longrightarrow> A = {k..<k+card A}" (is "PROP ?P") |
|
428 |
proof cases |
|
429 |
assume "finite A" |
|
430 |
thus "PROP ?P" |
|
431 |
proof(induct A rule:finite_linorder_induct) |
|
432 |
case empty thus ?case by auto |
|
433 |
next |
|
434 |
case (insert A b) |
|
435 |
moreover hence "b ~: A" by auto |
|
436 |
moreover have "A <= {k..<k+card A}" and "b = k+card A" |
|
437 |
using `b ~: A` insert by fastsimp+ |
|
438 |
ultimately show ?case by auto |
|
439 |
qed |
|
440 |
next |
|
441 |
assume "~finite A" thus "PROP ?P" by simp |
|
442 |
qed |
|
443 |
||
444 |
||
14485 | 445 |
subsubsection {* Cardinality *} |
446 |
||
15045 | 447 |
lemma card_lessThan [simp]: "card {..<u} = u" |
15251 | 448 |
by (induct u, simp_all add: lessThan_Suc) |
14485 | 449 |
|
450 |
lemma card_atMost [simp]: "card {..u} = Suc u" |
|
451 |
by (simp add: lessThan_Suc_atMost [THEN sym]) |
|
452 |
||
15045 | 453 |
lemma card_atLeastLessThan [simp]: "card {l..<u} = u - l" |
454 |
apply (subgoal_tac "card {l..<u} = card {..<u-l}") |
|
14485 | 455 |
apply (erule ssubst, rule card_lessThan) |
15045 | 456 |
apply (subgoal_tac "(%x. x + l) ` {..<u-l} = {l..<u}") |
14485 | 457 |
apply (erule subst) |
458 |
apply (rule card_image) |
|
459 |
apply (simp add: inj_on_def) |
|
460 |
apply (auto simp add: image_def atLeastLessThan_def lessThan_def) |
|
461 |
apply (rule_tac x = "x - l" in exI) |
|
462 |
apply arith |
|
463 |
done |
|
464 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
465 |
lemma card_atLeastAtMost [simp]: "card {l..u} = Suc u - l" |
14485 | 466 |
by (subst atLeastLessThanSuc_atLeastAtMost [THEN sym], simp) |
467 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
468 |
lemma card_greaterThanAtMost [simp]: "card {l<..u} = u - l" |
14485 | 469 |
by (subst atLeastSucAtMost_greaterThanAtMost [THEN sym], simp) |
470 |
||
15045 | 471 |
lemma card_greaterThanLessThan [simp]: "card {l<..<u} = u - Suc l" |
14485 | 472 |
by (subst atLeastSucLessThan_greaterThanLessThan [THEN sym], simp) |
473 |
||
474 |
subsection {* Intervals of integers *} |
|
475 |
||
15045 | 476 |
lemma atLeastLessThanPlusOne_atLeastAtMost_int: "{l..<u+1} = {l..(u::int)}" |
14485 | 477 |
by (auto simp add: atLeastAtMost_def atLeastLessThan_def) |
478 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
479 |
lemma atLeastPlusOneAtMost_greaterThanAtMost_int: "{l+1..u} = {l<..(u::int)}" |
14485 | 480 |
by (auto simp add: atLeastAtMost_def greaterThanAtMost_def) |
481 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
482 |
lemma atLeastPlusOneLessThan_greaterThanLessThan_int: |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
483 |
"{l+1..<u} = {l<..<u::int}" |
14485 | 484 |
by (auto simp add: atLeastLessThan_def greaterThanLessThan_def) |
485 |
||
486 |
subsubsection {* Finiteness *} |
|
487 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
488 |
lemma image_atLeastZeroLessThan_int: "0 \<le> u ==> |
15045 | 489 |
{(0::int)..<u} = int ` {..<nat u}" |
14485 | 490 |
apply (unfold image_def lessThan_def) |
491 |
apply auto |
|
492 |
apply (rule_tac x = "nat x" in exI) |
|
493 |
apply (auto simp add: zless_nat_conj zless_nat_eq_int_zless [THEN sym]) |
|
494 |
done |
|
495 |
||
15045 | 496 |
lemma finite_atLeastZeroLessThan_int: "finite {(0::int)..<u}" |
14485 | 497 |
apply (case_tac "0 \<le> u") |
498 |
apply (subst image_atLeastZeroLessThan_int, assumption) |
|
499 |
apply (rule finite_imageI) |
|
500 |
apply auto |
|
501 |
done |
|
502 |
||
15045 | 503 |
lemma finite_atLeastLessThan_int [iff]: "finite {l..<u::int}" |
504 |
apply (subgoal_tac "(%x. x + l) ` {0..<u-l} = {l..<u}") |
|
14485 | 505 |
apply (erule subst) |
506 |
apply (rule finite_imageI) |
|
507 |
apply (rule finite_atLeastZeroLessThan_int) |
|
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
508 |
apply (rule image_add_int_atLeastLessThan) |
14485 | 509 |
done |
510 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
511 |
lemma finite_atLeastAtMost_int [iff]: "finite {l..(u::int)}" |
14485 | 512 |
by (subst atLeastLessThanPlusOne_atLeastAtMost_int [THEN sym], simp) |
513 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
514 |
lemma finite_greaterThanAtMost_int [iff]: "finite {l<..(u::int)}" |
14485 | 515 |
by (subst atLeastPlusOneAtMost_greaterThanAtMost_int [THEN sym], simp) |
516 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
517 |
lemma finite_greaterThanLessThan_int [iff]: "finite {l<..<u::int}" |
14485 | 518 |
by (subst atLeastPlusOneLessThan_greaterThanLessThan_int [THEN sym], simp) |
519 |
||
24853 | 520 |
|
14485 | 521 |
subsubsection {* Cardinality *} |
522 |
||
15045 | 523 |
lemma card_atLeastZeroLessThan_int: "card {(0::int)..<u} = nat u" |
14485 | 524 |
apply (case_tac "0 \<le> u") |
525 |
apply (subst image_atLeastZeroLessThan_int, assumption) |
|
526 |
apply (subst card_image) |
|
527 |
apply (auto simp add: inj_on_def) |
|
528 |
done |
|
529 |
||
15045 | 530 |
lemma card_atLeastLessThan_int [simp]: "card {l..<u} = nat (u - l)" |
531 |
apply (subgoal_tac "card {l..<u} = card {0..<u-l}") |
|
14485 | 532 |
apply (erule ssubst, rule card_atLeastZeroLessThan_int) |
15045 | 533 |
apply (subgoal_tac "(%x. x + l) ` {0..<u-l} = {l..<u}") |
14485 | 534 |
apply (erule subst) |
535 |
apply (rule card_image) |
|
536 |
apply (simp add: inj_on_def) |
|
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
537 |
apply (rule image_add_int_atLeastLessThan) |
14485 | 538 |
done |
539 |
||
540 |
lemma card_atLeastAtMost_int [simp]: "card {l..u} = nat (u - l + 1)" |
|
541 |
apply (subst atLeastLessThanPlusOne_atLeastAtMost_int [THEN sym]) |
|
542 |
apply (auto simp add: compare_rls) |
|
543 |
done |
|
544 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
545 |
lemma card_greaterThanAtMost_int [simp]: "card {l<..u} = nat (u - l)" |
14485 | 546 |
by (subst atLeastPlusOneAtMost_greaterThanAtMost_int [THEN sym], simp) |
547 |
||
15045 | 548 |
lemma card_greaterThanLessThan_int [simp]: "card {l<..<u} = nat (u - (l + 1))" |
14485 | 549 |
by (subst atLeastPlusOneLessThan_greaterThanLessThan_int [THEN sym], simp) |
550 |
||
551 |
||
13850 | 552 |
subsection {*Lemmas useful with the summation operator setsum*} |
553 |
||
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16052
diff
changeset
|
554 |
text {* For examples, see Algebra/poly/UnivPoly2.thy *} |
13735 | 555 |
|
14577 | 556 |
subsubsection {* Disjoint Unions *} |
13735 | 557 |
|
14577 | 558 |
text {* Singletons and open intervals *} |
13735 | 559 |
|
560 |
lemma ivl_disj_un_singleton: |
|
15045 | 561 |
"{l::'a::linorder} Un {l<..} = {l..}" |
562 |
"{..<u} Un {u::'a::linorder} = {..u}" |
|
563 |
"(l::'a::linorder) < u ==> {l} Un {l<..<u} = {l..<u}" |
|
564 |
"(l::'a::linorder) < u ==> {l<..<u} Un {u} = {l<..u}" |
|
565 |
"(l::'a::linorder) <= u ==> {l} Un {l<..u} = {l..u}" |
|
566 |
"(l::'a::linorder) <= u ==> {l..<u} Un {u} = {l..u}" |
|
14398
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
13850
diff
changeset
|
567 |
by auto |
13735 | 568 |
|
14577 | 569 |
text {* One- and two-sided intervals *} |
13735 | 570 |
|
571 |
lemma ivl_disj_un_one: |
|
15045 | 572 |
"(l::'a::linorder) < u ==> {..l} Un {l<..<u} = {..<u}" |
573 |
"(l::'a::linorder) <= u ==> {..<l} Un {l..<u} = {..<u}" |
|
574 |
"(l::'a::linorder) <= u ==> {..l} Un {l<..u} = {..u}" |
|
575 |
"(l::'a::linorder) <= u ==> {..<l} Un {l..u} = {..u}" |
|
576 |
"(l::'a::linorder) <= u ==> {l<..u} Un {u<..} = {l<..}" |
|
577 |
"(l::'a::linorder) < u ==> {l<..<u} Un {u..} = {l<..}" |
|
578 |
"(l::'a::linorder) <= u ==> {l..u} Un {u<..} = {l..}" |
|
579 |
"(l::'a::linorder) <= u ==> {l..<u} Un {u..} = {l..}" |
|
14398
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
13850
diff
changeset
|
580 |
by auto |
13735 | 581 |
|
14577 | 582 |
text {* Two- and two-sided intervals *} |
13735 | 583 |
|
584 |
lemma ivl_disj_un_two: |
|
15045 | 585 |
"[| (l::'a::linorder) < m; m <= u |] ==> {l<..<m} Un {m..<u} = {l<..<u}" |
586 |
"[| (l::'a::linorder) <= m; m < u |] ==> {l<..m} Un {m<..<u} = {l<..<u}" |
|
587 |
"[| (l::'a::linorder) <= m; m <= u |] ==> {l..<m} Un {m..<u} = {l..<u}" |
|
588 |
"[| (l::'a::linorder) <= m; m < u |] ==> {l..m} Un {m<..<u} = {l..<u}" |
|
589 |
"[| (l::'a::linorder) < m; m <= u |] ==> {l<..<m} Un {m..u} = {l<..u}" |
|
590 |
"[| (l::'a::linorder) <= m; m <= u |] ==> {l<..m} Un {m<..u} = {l<..u}" |
|
591 |
"[| (l::'a::linorder) <= m; m <= u |] ==> {l..<m} Un {m..u} = {l..u}" |
|
592 |
"[| (l::'a::linorder) <= m; m <= u |] ==> {l..m} Un {m<..u} = {l..u}" |
|
14398
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
13850
diff
changeset
|
593 |
by auto |
13735 | 594 |
|
595 |
lemmas ivl_disj_un = ivl_disj_un_singleton ivl_disj_un_one ivl_disj_un_two |
|
596 |
||
14577 | 597 |
subsubsection {* Disjoint Intersections *} |
13735 | 598 |
|
14577 | 599 |
text {* Singletons and open intervals *} |
13735 | 600 |
|
601 |
lemma ivl_disj_int_singleton: |
|
15045 | 602 |
"{l::'a::order} Int {l<..} = {}" |
603 |
"{..<u} Int {u} = {}" |
|
604 |
"{l} Int {l<..<u} = {}" |
|
605 |
"{l<..<u} Int {u} = {}" |
|
606 |
"{l} Int {l<..u} = {}" |
|
607 |
"{l..<u} Int {u} = {}" |
|
13735 | 608 |
by simp+ |
609 |
||
14577 | 610 |
text {* One- and two-sided intervals *} |
13735 | 611 |
|
612 |
lemma ivl_disj_int_one: |
|
15045 | 613 |
"{..l::'a::order} Int {l<..<u} = {}" |
614 |
"{..<l} Int {l..<u} = {}" |
|
615 |
"{..l} Int {l<..u} = {}" |
|
616 |
"{..<l} Int {l..u} = {}" |
|
617 |
"{l<..u} Int {u<..} = {}" |
|
618 |
"{l<..<u} Int {u..} = {}" |
|
619 |
"{l..u} Int {u<..} = {}" |
|
620 |
"{l..<u} Int {u..} = {}" |
|
14398
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
13850
diff
changeset
|
621 |
by auto |
13735 | 622 |
|
14577 | 623 |
text {* Two- and two-sided intervals *} |
13735 | 624 |
|
625 |
lemma ivl_disj_int_two: |
|
15045 | 626 |
"{l::'a::order<..<m} Int {m..<u} = {}" |
627 |
"{l<..m} Int {m<..<u} = {}" |
|
628 |
"{l..<m} Int {m..<u} = {}" |
|
629 |
"{l..m} Int {m<..<u} = {}" |
|
630 |
"{l<..<m} Int {m..u} = {}" |
|
631 |
"{l<..m} Int {m<..u} = {}" |
|
632 |
"{l..<m} Int {m..u} = {}" |
|
633 |
"{l..m} Int {m<..u} = {}" |
|
14398
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
13850
diff
changeset
|
634 |
by auto |
13735 | 635 |
|
636 |
lemmas ivl_disj_int = ivl_disj_int_singleton ivl_disj_int_one ivl_disj_int_two |
|
637 |
||
15542 | 638 |
subsubsection {* Some Differences *} |
639 |
||
640 |
lemma ivl_diff[simp]: |
|
641 |
"i \<le> n \<Longrightarrow> {i..<m} - {i..<n} = {n..<(m::'a::linorder)}" |
|
642 |
by(auto) |
|
643 |
||
644 |
||
645 |
subsubsection {* Some Subset Conditions *} |
|
646 |
||
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
23496
diff
changeset
|
647 |
lemma ivl_subset [simp,noatp]: |
15542 | 648 |
"({i..<j} \<subseteq> {m..<n}) = (j \<le> i | m \<le> i & j \<le> (n::'a::linorder))" |
649 |
apply(auto simp:linorder_not_le) |
|
650 |
apply(rule ccontr) |
|
651 |
apply(insert linorder_le_less_linear[of i n]) |
|
652 |
apply(clarsimp simp:linorder_not_le) |
|
653 |
apply(fastsimp) |
|
654 |
done |
|
655 |
||
15041
a6b1f0cef7b3
Got rid of Summation and made it a translation into setsum instead.
nipkow
parents:
14846
diff
changeset
|
656 |
|
15042 | 657 |
subsection {* Summation indexed over intervals *} |
658 |
||
659 |
syntax |
|
660 |
"_from_to_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(SUM _ = _.._./ _)" [0,0,0,10] 10) |
|
15048 | 661 |
"_from_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(SUM _ = _..<_./ _)" [0,0,0,10] 10) |
16052 | 662 |
"_upt_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(SUM _<_./ _)" [0,0,10] 10) |
663 |
"_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(SUM _<=_./ _)" [0,0,10] 10) |
|
15042 | 664 |
syntax (xsymbols) |
665 |
"_from_to_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_ = _.._./ _)" [0,0,0,10] 10) |
|
15048 | 666 |
"_from_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_ = _..<_./ _)" [0,0,0,10] 10) |
16052 | 667 |
"_upt_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_<_./ _)" [0,0,10] 10) |
668 |
"_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_\<le>_./ _)" [0,0,10] 10) |
|
15042 | 669 |
syntax (HTML output) |
670 |
"_from_to_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_ = _.._./ _)" [0,0,0,10] 10) |
|
15048 | 671 |
"_from_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_ = _..<_./ _)" [0,0,0,10] 10) |
16052 | 672 |
"_upt_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_<_./ _)" [0,0,10] 10) |
673 |
"_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_\<le>_./ _)" [0,0,10] 10) |
|
15056 | 674 |
syntax (latex_sum output) |
15052 | 675 |
"_from_to_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
676 |
("(3\<^raw:$\sum_{>_ = _\<^raw:}^{>_\<^raw:}$> _)" [0,0,0,10] 10) |
|
677 |
"_from_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
|
678 |
("(3\<^raw:$\sum_{>_ = _\<^raw:}^{<>_\<^raw:}$> _)" [0,0,0,10] 10) |
|
16052 | 679 |
"_upt_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
680 |
("(3\<^raw:$\sum_{>_ < _\<^raw:}$> _)" [0,0,10] 10) |
|
15052 | 681 |
"_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
16052 | 682 |
("(3\<^raw:$\sum_{>_ \<le> _\<^raw:}$> _)" [0,0,10] 10) |
15041
a6b1f0cef7b3
Got rid of Summation and made it a translation into setsum instead.
nipkow
parents:
14846
diff
changeset
|
683 |
|
15048 | 684 |
translations |
685 |
"\<Sum>x=a..b. t" == "setsum (%x. t) {a..b}" |
|
686 |
"\<Sum>x=a..<b. t" == "setsum (%x. t) {a..<b}" |
|
16052 | 687 |
"\<Sum>i\<le>n. t" == "setsum (\<lambda>i. t) {..n}" |
15048 | 688 |
"\<Sum>i<n. t" == "setsum (\<lambda>i. t) {..<n}" |
15041
a6b1f0cef7b3
Got rid of Summation and made it a translation into setsum instead.
nipkow
parents:
14846
diff
changeset
|
689 |
|
15052 | 690 |
text{* The above introduces some pretty alternative syntaxes for |
15056 | 691 |
summation over intervals: |
15052 | 692 |
\begin{center} |
693 |
\begin{tabular}{lll} |
|
15056 | 694 |
Old & New & \LaTeX\\ |
695 |
@{term[source]"\<Sum>x\<in>{a..b}. e"} & @{term"\<Sum>x=a..b. e"} & @{term[mode=latex_sum]"\<Sum>x=a..b. e"}\\ |
|
696 |
@{term[source]"\<Sum>x\<in>{a..<b}. e"} & @{term"\<Sum>x=a..<b. e"} & @{term[mode=latex_sum]"\<Sum>x=a..<b. e"}\\ |
|
16052 | 697 |
@{term[source]"\<Sum>x\<in>{..b}. e"} & @{term"\<Sum>x\<le>b. e"} & @{term[mode=latex_sum]"\<Sum>x\<le>b. e"}\\ |
15056 | 698 |
@{term[source]"\<Sum>x\<in>{..<b}. e"} & @{term"\<Sum>x<b. e"} & @{term[mode=latex_sum]"\<Sum>x<b. e"} |
15052 | 699 |
\end{tabular} |
700 |
\end{center} |
|
15056 | 701 |
The left column shows the term before introduction of the new syntax, |
702 |
the middle column shows the new (default) syntax, and the right column |
|
703 |
shows a special syntax. The latter is only meaningful for latex output |
|
704 |
and has to be activated explicitly by setting the print mode to |
|
21502 | 705 |
@{text latex_sum} (e.g.\ via @{text "mode = latex_sum"} in |
15056 | 706 |
antiquotations). It is not the default \LaTeX\ output because it only |
707 |
works well with italic-style formulae, not tt-style. |
|
15052 | 708 |
|
709 |
Note that for uniformity on @{typ nat} it is better to use |
|
710 |
@{term"\<Sum>x::nat=0..<n. e"} rather than @{text"\<Sum>x<n. e"}: @{text setsum} may |
|
711 |
not provide all lemmas available for @{term"{m..<n}"} also in the |
|
712 |
special form for @{term"{..<n}"}. *} |
|
713 |
||
15542 | 714 |
text{* This congruence rule should be used for sums over intervals as |
715 |
the standard theorem @{text[source]setsum_cong} does not work well |
|
716 |
with the simplifier who adds the unsimplified premise @{term"x:B"} to |
|
717 |
the context. *} |
|
718 |
||
719 |
lemma setsum_ivl_cong: |
|
720 |
"\<lbrakk>a = c; b = d; !!x. \<lbrakk> c \<le> x; x < d \<rbrakk> \<Longrightarrow> f x = g x \<rbrakk> \<Longrightarrow> |
|
721 |
setsum f {a..<b} = setsum g {c..<d}" |
|
722 |
by(rule setsum_cong, simp_all) |
|
15041
a6b1f0cef7b3
Got rid of Summation and made it a translation into setsum instead.
nipkow
parents:
14846
diff
changeset
|
723 |
|
16041 | 724 |
(* FIXME why are the following simp rules but the corresponding eqns |
725 |
on intervals are not? *) |
|
726 |
||
16052 | 727 |
lemma setsum_atMost_Suc[simp]: "(\<Sum>i \<le> Suc n. f i) = (\<Sum>i \<le> n. f i) + f(Suc n)" |
728 |
by (simp add:atMost_Suc add_ac) |
|
729 |
||
16041 | 730 |
lemma setsum_lessThan_Suc[simp]: "(\<Sum>i < Suc n. f i) = (\<Sum>i < n. f i) + f n" |
731 |
by (simp add:lessThan_Suc add_ac) |
|
15041
a6b1f0cef7b3
Got rid of Summation and made it a translation into setsum instead.
nipkow
parents:
14846
diff
changeset
|
732 |
|
15911 | 733 |
lemma setsum_cl_ivl_Suc[simp]: |
15561 | 734 |
"setsum f {m..Suc n} = (if Suc n < m then 0 else setsum f {m..n} + f(Suc n))" |
735 |
by (auto simp:add_ac atLeastAtMostSuc_conv) |
|
736 |
||
15911 | 737 |
lemma setsum_op_ivl_Suc[simp]: |
15561 | 738 |
"setsum f {m..<Suc n} = (if n < m then 0 else setsum f {m..<n} + f(n))" |
739 |
by (auto simp:add_ac atLeastLessThanSuc) |
|
16041 | 740 |
(* |
15561 | 741 |
lemma setsum_cl_ivl_add_one_nat: "(n::nat) <= m + 1 ==> |
742 |
(\<Sum>i=n..m+1. f i) = (\<Sum>i=n..m. f i) + f(m + 1)" |
|
743 |
by (auto simp:add_ac atLeastAtMostSuc_conv) |
|
16041 | 744 |
*) |
15539 | 745 |
lemma setsum_add_nat_ivl: "\<lbrakk> m \<le> n; n \<le> p \<rbrakk> \<Longrightarrow> |
746 |
setsum f {m..<n} + setsum f {n..<p} = setsum f {m..<p::nat}" |
|
747 |
by (simp add:setsum_Un_disjoint[symmetric] ivl_disj_int ivl_disj_un) |
|
748 |
||
749 |
lemma setsum_diff_nat_ivl: |
|
750 |
fixes f :: "nat \<Rightarrow> 'a::ab_group_add" |
|
751 |
shows "\<lbrakk> m \<le> n; n \<le> p \<rbrakk> \<Longrightarrow> |
|
752 |
setsum f {m..<p} - setsum f {m..<n} = setsum f {n..<p}" |
|
753 |
using setsum_add_nat_ivl [of m n p f,symmetric] |
|
754 |
apply (simp add: add_ac) |
|
755 |
done |
|
756 |
||
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
757 |
subsection{* Shifting bounds *} |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
758 |
|
15539 | 759 |
lemma setsum_shift_bounds_nat_ivl: |
760 |
"setsum f {m+k..<n+k} = setsum (%i. f(i + k)){m..<n::nat}" |
|
761 |
by (induct "n", auto simp:atLeastLessThanSuc) |
|
762 |
||
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
763 |
lemma setsum_shift_bounds_cl_nat_ivl: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
764 |
"setsum f {m+k..n+k} = setsum (%i. f(i + k)){m..n::nat}" |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
765 |
apply (insert setsum_reindex[OF inj_on_add_nat, where h=f and B = "{m..n}"]) |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
766 |
apply (simp add:image_add_atLeastAtMost o_def) |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
767 |
done |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
768 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
769 |
corollary setsum_shift_bounds_cl_Suc_ivl: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
770 |
"setsum f {Suc m..Suc n} = setsum (%i. f(Suc i)){m..n}" |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
771 |
by (simp add:setsum_shift_bounds_cl_nat_ivl[where k=1,simplified]) |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
772 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
773 |
corollary setsum_shift_bounds_Suc_ivl: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
774 |
"setsum f {Suc m..<Suc n} = setsum (%i. f(Suc i)){m..<n}" |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
775 |
by (simp add:setsum_shift_bounds_nat_ivl[where k=1,simplified]) |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
776 |
|
19106
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
777 |
lemma setsum_head: |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
778 |
fixes n :: nat |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
779 |
assumes mn: "m <= n" |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
780 |
shows "(\<Sum>x\<in>{m..n}. P x) = P m + (\<Sum>x\<in>{m<..n}. P x)" (is "?lhs = ?rhs") |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
781 |
proof - |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
782 |
from mn |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
783 |
have "{m..n} = {m} \<union> {m<..n}" |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
784 |
by (auto intro: ivl_disj_un_singleton) |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
785 |
hence "?lhs = (\<Sum>x\<in>{m} \<union> {m<..n}. P x)" |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
786 |
by (simp add: atLeast0LessThan) |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
787 |
also have "\<dots> = ?rhs" by simp |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
788 |
finally show ?thesis . |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
789 |
qed |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
790 |
|
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
791 |
lemma setsum_head_upt: |
19022
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
792 |
fixes m::nat |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
793 |
assumes m: "0 < m" |
19106
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
794 |
shows "(\<Sum>x<m. P x) = P 0 + (\<Sum>x\<in>{1..<m}. P x)" |
19022
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
795 |
proof - |
19106
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
796 |
have "(\<Sum>x<m. P x) = (\<Sum>x\<in>{0..<m}. P x)" |
19022
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
797 |
by (simp add: atLeast0LessThan) |
19106
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
798 |
also |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
799 |
from m |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
800 |
have "\<dots> = (\<Sum>x\<in>{0..m - 1}. P x)" |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
801 |
by (cases m) (auto simp add: atLeastLessThanSuc_atLeastAtMost) |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
802 |
also |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
803 |
have "\<dots> = P 0 + (\<Sum>x\<in>{0<..m - 1}. P x)" |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
804 |
by (simp add: setsum_head) |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
805 |
also |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
806 |
from m |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
807 |
have "{0<..m - 1} = {1..<m}" |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
808 |
by (cases m) (auto simp add: atLeastLessThanSuc_atLeastAtMost) |
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
809 |
finally show ?thesis . |
19022
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
810 |
qed |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
811 |
|
17149
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
16733
diff
changeset
|
812 |
subsection {* The formula for geometric sums *} |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
16733
diff
changeset
|
813 |
|
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
16733
diff
changeset
|
814 |
lemma geometric_sum: |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
16733
diff
changeset
|
815 |
"x ~= 1 ==> (\<Sum>i=0..<n. x ^ i) = |
22713 | 816 |
(x ^ n - 1) / (x - 1::'a::{field, recpower})" |
23496 | 817 |
by (induct "n") (simp_all add:field_simps power_Suc) |
17149
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
16733
diff
changeset
|
818 |
|
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
819 |
subsection {* The formula for arithmetic sums *} |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
820 |
|
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
821 |
lemma gauss_sum: |
23277 | 822 |
"((1::'a::comm_semiring_1) + 1)*(\<Sum>i\<in>{1..n}. of_nat i) = |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
823 |
of_nat n*((of_nat n)+1)" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
824 |
proof (induct n) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
825 |
case 0 |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
826 |
show ?case by simp |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
827 |
next |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
828 |
case (Suc n) |
23477
f4b83f03cac9
tuned and renamed group_eq_simps and ring_eq_simps
nipkow
parents:
23431
diff
changeset
|
829 |
then show ?case by (simp add: ring_simps) |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
830 |
qed |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
831 |
|
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
832 |
theorem arith_series_general: |
23277 | 833 |
"((1::'a::comm_semiring_1) + 1) * (\<Sum>i\<in>{..<n}. a + of_nat i * d) = |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
834 |
of_nat n * (a + (a + of_nat(n - 1)*d))" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
835 |
proof cases |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
836 |
assume ngt1: "n > 1" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
837 |
let ?I = "\<lambda>i. of_nat i" and ?n = "of_nat n" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
838 |
have |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
839 |
"(\<Sum>i\<in>{..<n}. a+?I i*d) = |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
840 |
((\<Sum>i\<in>{..<n}. a) + (\<Sum>i\<in>{..<n}. ?I i*d))" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
841 |
by (rule setsum_addf) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
842 |
also from ngt1 have "\<dots> = ?n*a + (\<Sum>i\<in>{..<n}. ?I i*d)" by simp |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
843 |
also from ngt1 have "\<dots> = (?n*a + d*(\<Sum>i\<in>{1..<n}. ?I i))" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
844 |
by (simp add: setsum_right_distrib setsum_head_upt mult_ac) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
845 |
also have "(1+1)*\<dots> = (1+1)*?n*a + d*(1+1)*(\<Sum>i\<in>{1..<n}. ?I i)" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
846 |
by (simp add: left_distrib right_distrib) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
847 |
also from ngt1 have "{1..<n} = {1..n - 1}" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
848 |
by (cases n) (auto simp: atLeastLessThanSuc_atLeastAtMost) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
849 |
also from ngt1 |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
850 |
have "(1+1)*?n*a + d*(1+1)*(\<Sum>i\<in>{1..n - 1}. ?I i) = ((1+1)*?n*a + d*?I (n - 1)*?I n)" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
851 |
by (simp only: mult_ac gauss_sum [of "n - 1"]) |
23431
25ca91279a9b
change simp rules for of_nat to work like int did previously (reorient of_nat_Suc, remove of_nat_mult [simp]); preserve original variable names in legacy int theorems
huffman
parents:
23413
diff
changeset
|
852 |
(simp add: mult_ac trans [OF add_commute of_nat_Suc [symmetric]]) |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
853 |
finally show ?thesis by (simp add: mult_ac add_ac right_distrib) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
854 |
next |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
855 |
assume "\<not>(n > 1)" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
856 |
hence "n = 1 \<or> n = 0" by auto |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
857 |
thus ?thesis by (auto simp: mult_ac right_distrib) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
858 |
qed |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
859 |
|
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
860 |
lemma arith_series_nat: |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
861 |
"Suc (Suc 0) * (\<Sum>i\<in>{..<n}. a+i*d) = n * (a + (a+(n - 1)*d))" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
862 |
proof - |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
863 |
have |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
864 |
"((1::nat) + 1) * (\<Sum>i\<in>{..<n::nat}. a + of_nat(i)*d) = |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
865 |
of_nat(n) * (a + (a + of_nat(n - 1)*d))" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
866 |
by (rule arith_series_general) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
867 |
thus ?thesis by (auto simp add: of_nat_id) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
868 |
qed |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
869 |
|
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
870 |
lemma arith_series_int: |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
871 |
"(2::int) * (\<Sum>i\<in>{..<n}. a + of_nat i * d) = |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
872 |
of_nat n * (a + (a + of_nat(n - 1)*d))" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
873 |
proof - |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
874 |
have |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
875 |
"((1::int) + 1) * (\<Sum>i\<in>{..<n}. a + of_nat i * d) = |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
876 |
of_nat(n) * (a + (a + of_nat(n - 1)*d))" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
877 |
by (rule arith_series_general) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
878 |
thus ?thesis by simp |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
879 |
qed |
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
880 |
|
19022
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
881 |
lemma sum_diff_distrib: |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
882 |
fixes P::"nat\<Rightarrow>nat" |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
883 |
shows |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
884 |
"\<forall>x. Q x \<le> P x \<Longrightarrow> |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
885 |
(\<Sum>x<n. P x) - (\<Sum>x<n. Q x) = (\<Sum>x<n. P x - Q x)" |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
886 |
proof (induct n) |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
887 |
case 0 show ?case by simp |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
888 |
next |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
889 |
case (Suc n) |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
890 |
|
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
891 |
let ?lhs = "(\<Sum>x<n. P x) - (\<Sum>x<n. Q x)" |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
892 |
let ?rhs = "\<Sum>x<n. P x - Q x" |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
893 |
|
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
894 |
from Suc have "?lhs = ?rhs" by simp |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
895 |
moreover |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
896 |
from Suc have "?lhs + P n - Q n = ?rhs + (P n - Q n)" by simp |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
897 |
moreover |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
898 |
from Suc have |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
899 |
"(\<Sum>x<n. P x) + P n - ((\<Sum>x<n. Q x) + Q n) = ?rhs + (P n - Q n)" |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
900 |
by (subst diff_diff_left[symmetric], |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
901 |
subst diff_add_assoc2) |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
902 |
(auto simp: diff_add_assoc2 intro: setsum_mono) |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
903 |
ultimately |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
904 |
show ?case by simp |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
905 |
qed |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
906 |
|
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
907 |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
908 |
ML |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
909 |
{* |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
910 |
val Compl_atLeast = thm "Compl_atLeast"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
911 |
val Compl_atMost = thm "Compl_atMost"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
912 |
val Compl_greaterThan = thm "Compl_greaterThan"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
913 |
val Compl_lessThan = thm "Compl_lessThan"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
914 |
val INT_greaterThan_UNIV = thm "INT_greaterThan_UNIV"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
915 |
val UN_atLeast_UNIV = thm "UN_atLeast_UNIV"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
916 |
val UN_atMost_UNIV = thm "UN_atMost_UNIV"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
917 |
val UN_lessThan_UNIV = thm "UN_lessThan_UNIV"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
918 |
val atLeastAtMost_def = thm "atLeastAtMost_def"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
919 |
val atLeastAtMost_iff = thm "atLeastAtMost_iff"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
920 |
val atLeastLessThan_def = thm "atLeastLessThan_def"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
921 |
val atLeastLessThan_iff = thm "atLeastLessThan_iff"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
922 |
val atLeast_0 = thm "atLeast_0"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
923 |
val atLeast_Suc = thm "atLeast_Suc"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
924 |
val atLeast_def = thm "atLeast_def"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
925 |
val atLeast_iff = thm "atLeast_iff"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
926 |
val atMost_0 = thm "atMost_0"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
927 |
val atMost_Int_atLeast = thm "atMost_Int_atLeast"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
928 |
val atMost_Suc = thm "atMost_Suc"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
929 |
val atMost_def = thm "atMost_def"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
930 |
val atMost_iff = thm "atMost_iff"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
931 |
val greaterThanAtMost_def = thm "greaterThanAtMost_def"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
932 |
val greaterThanAtMost_iff = thm "greaterThanAtMost_iff"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
933 |
val greaterThanLessThan_def = thm "greaterThanLessThan_def"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
934 |
val greaterThanLessThan_iff = thm "greaterThanLessThan_iff"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
935 |
val greaterThan_0 = thm "greaterThan_0"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
936 |
val greaterThan_Suc = thm "greaterThan_Suc"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
937 |
val greaterThan_def = thm "greaterThan_def"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
938 |
val greaterThan_iff = thm "greaterThan_iff"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
939 |
val ivl_disj_int = thms "ivl_disj_int"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
940 |
val ivl_disj_int_one = thms "ivl_disj_int_one"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
941 |
val ivl_disj_int_singleton = thms "ivl_disj_int_singleton"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
942 |
val ivl_disj_int_two = thms "ivl_disj_int_two"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
943 |
val ivl_disj_un = thms "ivl_disj_un"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
944 |
val ivl_disj_un_one = thms "ivl_disj_un_one"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
945 |
val ivl_disj_un_singleton = thms "ivl_disj_un_singleton"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
946 |
val ivl_disj_un_two = thms "ivl_disj_un_two"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
947 |
val lessThan_0 = thm "lessThan_0"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
948 |
val lessThan_Suc = thm "lessThan_Suc"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
949 |
val lessThan_Suc_atMost = thm "lessThan_Suc_atMost"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
950 |
val lessThan_def = thm "lessThan_def"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
951 |
val lessThan_iff = thm "lessThan_iff"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
952 |
val single_Diff_lessThan = thm "single_Diff_lessThan"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
953 |
|
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
954 |
val bounded_nat_set_is_finite = thm "bounded_nat_set_is_finite"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
955 |
val finite_atMost = thm "finite_atMost"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
956 |
val finite_lessThan = thm "finite_lessThan"; |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
957 |
*} |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
958 |
|
8924 | 959 |
end |