author | hoelzl |
Wed, 20 Feb 2013 12:04:42 +0100 | |
changeset 51328 | d63ec23c9125 |
parent 51152 | b52cc015429a |
child 51329 | 4a3c453f99a1 |
permissions | -rw-r--r-- |
47317
432b29a96f61
modernized obsolete old-style theory name with proper new-style underscore
huffman
parents:
47222
diff
changeset
|
1 |
(* Title: HOL/Set_Interval.thy |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32596
diff
changeset
|
2 |
Author: Tobias Nipkow |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32596
diff
changeset
|
3 |
Author: Clemens Ballarin |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32596
diff
changeset
|
4 |
Author: Jeremy Avigad |
8924 | 5 |
|
13735 | 6 |
lessThan, greaterThan, atLeast, atMost and two-sided intervals |
8924 | 7 |
*) |
8 |
||
14577 | 9 |
header {* Set intervals *} |
10 |
||
47317
432b29a96f61
modernized obsolete old-style theory name with proper new-style underscore
huffman
parents:
47222
diff
changeset
|
11 |
theory Set_Interval |
33318
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
12 |
imports Int Nat_Transfer |
15131 | 13 |
begin |
8924 | 14 |
|
24691 | 15 |
context ord |
16 |
begin |
|
44008 | 17 |
|
24691 | 18 |
definition |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32596
diff
changeset
|
19 |
lessThan :: "'a => 'a set" ("(1{..<_})") where |
25062 | 20 |
"{..<u} == {x. x < u}" |
24691 | 21 |
|
22 |
definition |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32596
diff
changeset
|
23 |
atMost :: "'a => 'a set" ("(1{.._})") where |
25062 | 24 |
"{..u} == {x. x \<le> u}" |
24691 | 25 |
|
26 |
definition |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32596
diff
changeset
|
27 |
greaterThan :: "'a => 'a set" ("(1{_<..})") where |
25062 | 28 |
"{l<..} == {x. l<x}" |
24691 | 29 |
|
30 |
definition |
|
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32596
diff
changeset
|
31 |
atLeast :: "'a => 'a set" ("(1{_..})") where |
25062 | 32 |
"{l..} == {x. l\<le>x}" |
24691 | 33 |
|
34 |
definition |
|
25062 | 35 |
greaterThanLessThan :: "'a => 'a => 'a set" ("(1{_<..<_})") where |
36 |
"{l<..<u} == {l<..} Int {..<u}" |
|
24691 | 37 |
|
38 |
definition |
|
25062 | 39 |
atLeastLessThan :: "'a => 'a => 'a set" ("(1{_..<_})") where |
40 |
"{l..<u} == {l..} Int {..<u}" |
|
24691 | 41 |
|
42 |
definition |
|
25062 | 43 |
greaterThanAtMost :: "'a => 'a => 'a set" ("(1{_<.._})") where |
44 |
"{l<..u} == {l<..} Int {..u}" |
|
24691 | 45 |
|
46 |
definition |
|
25062 | 47 |
atLeastAtMost :: "'a => 'a => 'a set" ("(1{_.._})") where |
48 |
"{l..u} == {l..} Int {..u}" |
|
24691 | 49 |
|
50 |
end |
|
8924 | 51 |
|
13735 | 52 |
|
15048 | 53 |
text{* A note of warning when using @{term"{..<n}"} on type @{typ |
54 |
nat}: it is equivalent to @{term"{0::nat..<n}"} but some lemmas involving |
|
15052 | 55 |
@{term"{m..<n}"} may not exist in @{term"{..<n}"}-form as well. *} |
15048 | 56 |
|
14418 | 57 |
syntax |
36364
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
58 |
"_UNION_le" :: "'a => 'a => 'b set => 'b set" ("(3UN _<=_./ _)" [0, 0, 10] 10) |
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
59 |
"_UNION_less" :: "'a => 'a => 'b set => 'b set" ("(3UN _<_./ _)" [0, 0, 10] 10) |
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
60 |
"_INTER_le" :: "'a => 'a => 'b set => 'b set" ("(3INT _<=_./ _)" [0, 0, 10] 10) |
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
61 |
"_INTER_less" :: "'a => 'a => 'b set => 'b set" ("(3INT _<_./ _)" [0, 0, 10] 10) |
14418 | 62 |
|
30372 | 63 |
syntax (xsymbols) |
36364
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
64 |
"_UNION_le" :: "'a => 'a => 'b set => 'b set" ("(3\<Union> _\<le>_./ _)" [0, 0, 10] 10) |
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
65 |
"_UNION_less" :: "'a => 'a => 'b set => 'b set" ("(3\<Union> _<_./ _)" [0, 0, 10] 10) |
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
66 |
"_INTER_le" :: "'a => 'a => 'b set => 'b set" ("(3\<Inter> _\<le>_./ _)" [0, 0, 10] 10) |
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
67 |
"_INTER_less" :: "'a => 'a => 'b set => 'b set" ("(3\<Inter> _<_./ _)" [0, 0, 10] 10) |
14418 | 68 |
|
30372 | 69 |
syntax (latex output) |
36364
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
70 |
"_UNION_le" :: "'a \<Rightarrow> 'a => 'b set => 'b set" ("(3\<Union>(00_ \<le> _)/ _)" [0, 0, 10] 10) |
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
71 |
"_UNION_less" :: "'a \<Rightarrow> 'a => 'b set => 'b set" ("(3\<Union>(00_ < _)/ _)" [0, 0, 10] 10) |
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
72 |
"_INTER_le" :: "'a \<Rightarrow> 'a => 'b set => 'b set" ("(3\<Inter>(00_ \<le> _)/ _)" [0, 0, 10] 10) |
0e2679025aeb
fix syntax precedence declarations for UNION, INTER, SUP, INF
huffman
parents:
36307
diff
changeset
|
73 |
"_INTER_less" :: "'a \<Rightarrow> 'a => 'b set => 'b set" ("(3\<Inter>(00_ < _)/ _)" [0, 0, 10] 10) |
14418 | 74 |
|
75 |
translations |
|
76 |
"UN i<=n. A" == "UN i:{..n}. A" |
|
15045 | 77 |
"UN i<n. A" == "UN i:{..<n}. A" |
14418 | 78 |
"INT i<=n. A" == "INT i:{..n}. A" |
15045 | 79 |
"INT i<n. A" == "INT i:{..<n}. A" |
14418 | 80 |
|
81 |
||
14485 | 82 |
subsection {* Various equivalences *} |
13735 | 83 |
|
25062 | 84 |
lemma (in ord) lessThan_iff [iff]: "(i: lessThan k) = (i<k)" |
13850 | 85 |
by (simp add: lessThan_def) |
13735 | 86 |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
87 |
lemma Compl_lessThan [simp]: |
13735 | 88 |
"!!k:: 'a::linorder. -lessThan k = atLeast k" |
13850 | 89 |
apply (auto simp add: lessThan_def atLeast_def) |
13735 | 90 |
done |
91 |
||
13850 | 92 |
lemma single_Diff_lessThan [simp]: "!!k:: 'a::order. {k} - lessThan k = {k}" |
93 |
by auto |
|
13735 | 94 |
|
25062 | 95 |
lemma (in ord) greaterThan_iff [iff]: "(i: greaterThan k) = (k<i)" |
13850 | 96 |
by (simp add: greaterThan_def) |
13735 | 97 |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
98 |
lemma Compl_greaterThan [simp]: |
13735 | 99 |
"!!k:: 'a::linorder. -greaterThan k = atMost k" |
26072
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
haftmann
parents:
25919
diff
changeset
|
100 |
by (auto simp add: greaterThan_def atMost_def) |
13735 | 101 |
|
13850 | 102 |
lemma Compl_atMost [simp]: "!!k:: 'a::linorder. -atMost k = greaterThan k" |
103 |
apply (subst Compl_greaterThan [symmetric]) |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
104 |
apply (rule double_complement) |
13735 | 105 |
done |
106 |
||
25062 | 107 |
lemma (in ord) atLeast_iff [iff]: "(i: atLeast k) = (k<=i)" |
13850 | 108 |
by (simp add: atLeast_def) |
13735 | 109 |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
110 |
lemma Compl_atLeast [simp]: |
13735 | 111 |
"!!k:: 'a::linorder. -atLeast k = lessThan k" |
26072
f65a7fa2da6c
<= and < on nat no longer depend on wellfounded relations
haftmann
parents:
25919
diff
changeset
|
112 |
by (auto simp add: lessThan_def atLeast_def) |
13735 | 113 |
|
25062 | 114 |
lemma (in ord) atMost_iff [iff]: "(i: atMost k) = (i<=k)" |
13850 | 115 |
by (simp add: atMost_def) |
13735 | 116 |
|
14485 | 117 |
lemma atMost_Int_atLeast: "!!n:: 'a::order. atMost n Int atLeast n = {n}" |
118 |
by (blast intro: order_antisym) |
|
13850 | 119 |
|
50999 | 120 |
lemma (in linorder) lessThan_Int_lessThan: "{ a <..} \<inter> { b <..} = { max a b <..}" |
121 |
by auto |
|
122 |
||
123 |
lemma (in linorder) greaterThan_Int_greaterThan: "{..< a} \<inter> {..< b} = {..< min a b}" |
|
124 |
by auto |
|
13850 | 125 |
|
14485 | 126 |
subsection {* Logical Equivalences for Set Inclusion and Equality *} |
13850 | 127 |
|
128 |
lemma atLeast_subset_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
129 |
"(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
|
130 |
by (blast intro: order_trans) |
13850 | 131 |
|
132 |
lemma atLeast_eq_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
133 |
"(atLeast x = atLeast y) = (x = (y::'a::linorder))" |
13850 | 134 |
by (blast intro: order_antisym order_trans) |
135 |
||
136 |
lemma greaterThan_subset_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
137 |
"(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
|
138 |
apply (auto simp add: greaterThan_def) |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
139 |
apply (subst linorder_not_less [symmetric], blast) |
13850 | 140 |
done |
141 |
||
142 |
lemma greaterThan_eq_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
143 |
"(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
|
144 |
apply (rule iffI) |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
145 |
apply (erule equalityE) |
29709 | 146 |
apply simp_all |
13850 | 147 |
done |
148 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
149 |
lemma atMost_subset_iff [iff]: "(atMost x \<subseteq> atMost y) = (x \<le> (y::'a::order))" |
13850 | 150 |
by (blast intro: order_trans) |
151 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
152 |
lemma atMost_eq_iff [iff]: "(atMost x = atMost y) = (x = (y::'a::linorder))" |
13850 | 153 |
by (blast intro: order_antisym order_trans) |
154 |
||
155 |
lemma lessThan_subset_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
156 |
"(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
|
157 |
apply (auto simp add: lessThan_def) |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
158 |
apply (subst linorder_not_less [symmetric], blast) |
13850 | 159 |
done |
160 |
||
161 |
lemma lessThan_eq_iff [iff]: |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
162 |
"(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
|
163 |
apply (rule iffI) |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
164 |
apply (erule equalityE) |
29709 | 165 |
apply simp_all |
13735 | 166 |
done |
167 |
||
40703
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
168 |
lemma lessThan_strict_subset_iff: |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
169 |
fixes m n :: "'a::linorder" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
170 |
shows "{..<m} < {..<n} \<longleftrightarrow> m < n" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
171 |
by (metis leD lessThan_subset_iff linorder_linear not_less_iff_gr_or_eq psubset_eq) |
13735 | 172 |
|
13850 | 173 |
subsection {*Two-sided intervals*} |
13735 | 174 |
|
24691 | 175 |
context ord |
176 |
begin |
|
177 |
||
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35644
diff
changeset
|
178 |
lemma greaterThanLessThan_iff [simp,no_atp]: |
25062 | 179 |
"(i : {l<..<u}) = (l < i & i < u)" |
13735 | 180 |
by (simp add: greaterThanLessThan_def) |
181 |
||
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35644
diff
changeset
|
182 |
lemma atLeastLessThan_iff [simp,no_atp]: |
25062 | 183 |
"(i : {l..<u}) = (l <= i & i < u)" |
13735 | 184 |
by (simp add: atLeastLessThan_def) |
185 |
||
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35644
diff
changeset
|
186 |
lemma greaterThanAtMost_iff [simp,no_atp]: |
25062 | 187 |
"(i : {l<..u}) = (l < i & i <= u)" |
13735 | 188 |
by (simp add: greaterThanAtMost_def) |
189 |
||
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35644
diff
changeset
|
190 |
lemma atLeastAtMost_iff [simp,no_atp]: |
25062 | 191 |
"(i : {l..u}) = (l <= i & i <= u)" |
13735 | 192 |
by (simp add: atLeastAtMost_def) |
193 |
||
32436
10cd49e0c067
Turned "x <= y ==> sup x y = y" (and relatives) into simp rules
nipkow
parents:
32408
diff
changeset
|
194 |
text {* The above four lemmas could be declared as iffs. Unfortunately this |
10cd49e0c067
Turned "x <= y ==> sup x y = y" (and relatives) into simp rules
nipkow
parents:
32408
diff
changeset
|
195 |
breaks many proofs. Since it only helps blast, it is better to leave well |
10cd49e0c067
Turned "x <= y ==> sup x y = y" (and relatives) into simp rules
nipkow
parents:
32408
diff
changeset
|
196 |
alone *} |
10cd49e0c067
Turned "x <= y ==> sup x y = y" (and relatives) into simp rules
nipkow
parents:
32408
diff
changeset
|
197 |
|
50999 | 198 |
lemma greaterThanLessThan_eq: "{ a <..< b} = { a <..} \<inter> {..< b }" |
199 |
by auto |
|
200 |
||
24691 | 201 |
end |
13735 | 202 |
|
32400 | 203 |
subsubsection{* Emptyness, singletons, subset *} |
15554 | 204 |
|
24691 | 205 |
context order |
206 |
begin |
|
15554 | 207 |
|
32400 | 208 |
lemma atLeastatMost_empty[simp]: |
209 |
"b < a \<Longrightarrow> {a..b} = {}" |
|
210 |
by(auto simp: atLeastAtMost_def atLeast_def atMost_def) |
|
211 |
||
212 |
lemma atLeastatMost_empty_iff[simp]: |
|
213 |
"{a..b} = {} \<longleftrightarrow> (~ a <= b)" |
|
214 |
by auto (blast intro: order_trans) |
|
215 |
||
216 |
lemma atLeastatMost_empty_iff2[simp]: |
|
217 |
"{} = {a..b} \<longleftrightarrow> (~ a <= b)" |
|
218 |
by auto (blast intro: order_trans) |
|
219 |
||
220 |
lemma atLeastLessThan_empty[simp]: |
|
221 |
"b <= a \<Longrightarrow> {a..<b} = {}" |
|
222 |
by(auto simp: atLeastLessThan_def) |
|
24691 | 223 |
|
32400 | 224 |
lemma atLeastLessThan_empty_iff[simp]: |
225 |
"{a..<b} = {} \<longleftrightarrow> (~ a < b)" |
|
226 |
by auto (blast intro: le_less_trans) |
|
227 |
||
228 |
lemma atLeastLessThan_empty_iff2[simp]: |
|
229 |
"{} = {a..<b} \<longleftrightarrow> (~ a < b)" |
|
230 |
by auto (blast intro: le_less_trans) |
|
15554 | 231 |
|
32400 | 232 |
lemma greaterThanAtMost_empty[simp]: "l \<le> k ==> {k<..l} = {}" |
17719 | 233 |
by(auto simp:greaterThanAtMost_def greaterThan_def atMost_def) |
234 |
||
32400 | 235 |
lemma greaterThanAtMost_empty_iff[simp]: "{k<..l} = {} \<longleftrightarrow> ~ k < l" |
236 |
by auto (blast intro: less_le_trans) |
|
237 |
||
238 |
lemma greaterThanAtMost_empty_iff2[simp]: "{} = {k<..l} \<longleftrightarrow> ~ k < l" |
|
239 |
by auto (blast intro: less_le_trans) |
|
240 |
||
29709 | 241 |
lemma greaterThanLessThan_empty[simp]:"l \<le> k ==> {k<..<l} = {}" |
17719 | 242 |
by(auto simp:greaterThanLessThan_def greaterThan_def lessThan_def) |
243 |
||
25062 | 244 |
lemma atLeastAtMost_singleton [simp]: "{a..a} = {a}" |
24691 | 245 |
by (auto simp add: atLeastAtMost_def atMost_def atLeast_def) |
246 |
||
36846
0f67561ed5a6
Added atLeastAtMost_singleton_iff, atLeastAtMost_singleton'
hoelzl
parents:
36755
diff
changeset
|
247 |
lemma atLeastAtMost_singleton': "a = b \<Longrightarrow> {a .. b} = {a}" by simp |
0f67561ed5a6
Added atLeastAtMost_singleton_iff, atLeastAtMost_singleton'
hoelzl
parents:
36755
diff
changeset
|
248 |
|
32400 | 249 |
lemma atLeastatMost_subset_iff[simp]: |
250 |
"{a..b} <= {c..d} \<longleftrightarrow> (~ a <= b) | c <= a & b <= d" |
|
251 |
unfolding atLeastAtMost_def atLeast_def atMost_def |
|
252 |
by (blast intro: order_trans) |
|
253 |
||
254 |
lemma atLeastatMost_psubset_iff: |
|
255 |
"{a..b} < {c..d} \<longleftrightarrow> |
|
256 |
((~ a <= b) | c <= a & b <= d & (c < a | b < d)) & c <= d" |
|
39302
d7728f65b353
renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents:
39198
diff
changeset
|
257 |
by(simp add: psubset_eq set_eq_iff less_le_not_le)(blast intro: order_trans) |
32400 | 258 |
|
36846
0f67561ed5a6
Added atLeastAtMost_singleton_iff, atLeastAtMost_singleton'
hoelzl
parents:
36755
diff
changeset
|
259 |
lemma atLeastAtMost_singleton_iff[simp]: |
0f67561ed5a6
Added atLeastAtMost_singleton_iff, atLeastAtMost_singleton'
hoelzl
parents:
36755
diff
changeset
|
260 |
"{a .. b} = {c} \<longleftrightarrow> a = b \<and> b = c" |
0f67561ed5a6
Added atLeastAtMost_singleton_iff, atLeastAtMost_singleton'
hoelzl
parents:
36755
diff
changeset
|
261 |
proof |
0f67561ed5a6
Added atLeastAtMost_singleton_iff, atLeastAtMost_singleton'
hoelzl
parents:
36755
diff
changeset
|
262 |
assume "{a..b} = {c}" |
0f67561ed5a6
Added atLeastAtMost_singleton_iff, atLeastAtMost_singleton'
hoelzl
parents:
36755
diff
changeset
|
263 |
hence "\<not> (\<not> a \<le> b)" unfolding atLeastatMost_empty_iff[symmetric] by simp |
0f67561ed5a6
Added atLeastAtMost_singleton_iff, atLeastAtMost_singleton'
hoelzl
parents:
36755
diff
changeset
|
264 |
moreover with `{a..b} = {c}` have "c \<le> a \<and> b \<le> c" by auto |
0f67561ed5a6
Added atLeastAtMost_singleton_iff, atLeastAtMost_singleton'
hoelzl
parents:
36755
diff
changeset
|
265 |
ultimately show "a = b \<and> b = c" by auto |
0f67561ed5a6
Added atLeastAtMost_singleton_iff, atLeastAtMost_singleton'
hoelzl
parents:
36755
diff
changeset
|
266 |
qed simp |
0f67561ed5a6
Added atLeastAtMost_singleton_iff, atLeastAtMost_singleton'
hoelzl
parents:
36755
diff
changeset
|
267 |
|
24691 | 268 |
end |
14485 | 269 |
|
42891
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
270 |
context dense_linorder |
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
271 |
begin |
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
272 |
|
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
273 |
lemma greaterThanLessThan_empty_iff[simp]: |
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
274 |
"{ a <..< b } = {} \<longleftrightarrow> b \<le> a" |
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
275 |
using dense[of a b] by (cases "a < b") auto |
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
276 |
|
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
277 |
lemma greaterThanLessThan_empty_iff2[simp]: |
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
278 |
"{} = { a <..< b } \<longleftrightarrow> b \<le> a" |
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
279 |
using dense[of a b] by (cases "a < b") auto |
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
280 |
|
42901 | 281 |
lemma atLeastLessThan_subseteq_atLeastAtMost_iff: |
282 |
"{a ..< b} \<subseteq> { c .. d } \<longleftrightarrow> (a < b \<longrightarrow> c \<le> a \<and> b \<le> d)" |
|
283 |
using dense[of "max a d" "b"] |
|
284 |
by (force simp: subset_eq Ball_def not_less[symmetric]) |
|
285 |
||
286 |
lemma greaterThanAtMost_subseteq_atLeastAtMost_iff: |
|
287 |
"{a <.. b} \<subseteq> { c .. d } \<longleftrightarrow> (a < b \<longrightarrow> c \<le> a \<and> b \<le> d)" |
|
288 |
using dense[of "a" "min c b"] |
|
289 |
by (force simp: subset_eq Ball_def not_less[symmetric]) |
|
290 |
||
291 |
lemma greaterThanLessThan_subseteq_atLeastAtMost_iff: |
|
292 |
"{a <..< b} \<subseteq> { c .. d } \<longleftrightarrow> (a < b \<longrightarrow> c \<le> a \<and> b \<le> d)" |
|
293 |
using dense[of "a" "min c b"] dense[of "max a d" "b"] |
|
294 |
by (force simp: subset_eq Ball_def not_less[symmetric]) |
|
295 |
||
43657 | 296 |
lemma atLeastAtMost_subseteq_atLeastLessThan_iff: |
297 |
"{a .. b} \<subseteq> { c ..< d } \<longleftrightarrow> (a \<le> b \<longrightarrow> c \<le> a \<and> b < d)" |
|
298 |
using dense[of "max a d" "b"] |
|
299 |
by (force simp: subset_eq Ball_def not_less[symmetric]) |
|
300 |
||
301 |
lemma greaterThanAtMost_subseteq_atLeastLessThan_iff: |
|
302 |
"{a <.. b} \<subseteq> { c ..< d } \<longleftrightarrow> (a < b \<longrightarrow> c \<le> a \<and> b < d)" |
|
303 |
using dense[of "a" "min c b"] |
|
304 |
by (force simp: subset_eq Ball_def not_less[symmetric]) |
|
305 |
||
306 |
lemma greaterThanLessThan_subseteq_atLeastLessThan_iff: |
|
307 |
"{a <..< b} \<subseteq> { c ..< d } \<longleftrightarrow> (a < b \<longrightarrow> c \<le> a \<and> b \<le> d)" |
|
308 |
using dense[of "a" "min c b"] dense[of "max a d" "b"] |
|
309 |
by (force simp: subset_eq Ball_def not_less[symmetric]) |
|
310 |
||
42891
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
311 |
end |
e2f473671937
simp rules for empty intervals on dense linear order
hoelzl
parents:
40703
diff
changeset
|
312 |
|
32408 | 313 |
lemma (in linorder) atLeastLessThan_subset_iff: |
314 |
"{a..<b} <= {c..<d} \<Longrightarrow> b <= a | c<=a & b<=d" |
|
315 |
apply (auto simp:subset_eq Ball_def) |
|
316 |
apply(frule_tac x=a in spec) |
|
317 |
apply(erule_tac x=d in allE) |
|
318 |
apply (simp add: less_imp_le) |
|
319 |
done |
|
320 |
||
40703
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
321 |
lemma atLeastLessThan_inj: |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
322 |
fixes a b c d :: "'a::linorder" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
323 |
assumes eq: "{a ..< b} = {c ..< d}" and "a < b" "c < d" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
324 |
shows "a = c" "b = d" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
325 |
using assms by (metis atLeastLessThan_subset_iff eq less_le_not_le linorder_antisym_conv2 subset_refl)+ |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
326 |
|
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
327 |
lemma atLeastLessThan_eq_iff: |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
328 |
fixes a b c d :: "'a::linorder" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
329 |
assumes "a < b" "c < d" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
330 |
shows "{a ..< b} = {c ..< d} \<longleftrightarrow> a = c \<and> b = d" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
331 |
using atLeastLessThan_inj assms by auto |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
332 |
|
51328
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
333 |
context complete_lattice |
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
334 |
begin |
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
335 |
|
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
336 |
lemma atLeast_eq_UNIV_iff: "{x..} = UNIV \<longleftrightarrow> x = bot" |
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
337 |
by (auto simp: set_eq_iff intro: le_bot) |
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
338 |
|
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
339 |
lemma atMost_eq_UNIV_iff: "{..x} = UNIV \<longleftrightarrow> x = top" |
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
340 |
by (auto simp: set_eq_iff intro: top_le) |
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
341 |
|
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
342 |
lemma atLeastAtMost_eq_UNIV_iff: "{x..y} = UNIV \<longleftrightarrow> (x = bot \<and> y = top)" |
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
343 |
by (auto simp: set_eq_iff intro: top_le le_bot) |
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
344 |
|
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
345 |
end |
d63ec23c9125
move auxiliary lemmas from Library/Extended_Reals to HOL image
hoelzl
parents:
51152
diff
changeset
|
346 |
|
32456
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
347 |
subsubsection {* Intersection *} |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
348 |
|
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
349 |
context linorder |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
350 |
begin |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
351 |
|
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
352 |
lemma Int_atLeastAtMost[simp]: "{a..b} Int {c..d} = {max a c .. min b d}" |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
353 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
354 |
|
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
355 |
lemma Int_atLeastAtMostR1[simp]: "{..b} Int {c..d} = {c .. min b d}" |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
356 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
357 |
|
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
358 |
lemma Int_atLeastAtMostR2[simp]: "{a..} Int {c..d} = {max a c .. d}" |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
359 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
360 |
|
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
361 |
lemma Int_atLeastAtMostL1[simp]: "{a..b} Int {..d} = {a .. min b d}" |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
362 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
363 |
|
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
364 |
lemma Int_atLeastAtMostL2[simp]: "{a..b} Int {c..} = {max a c .. b}" |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
365 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
366 |
|
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
367 |
lemma Int_atLeastLessThan[simp]: "{a..<b} Int {c..<d} = {max a c ..< min b d}" |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
368 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
369 |
|
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
370 |
lemma Int_greaterThanAtMost[simp]: "{a<..b} Int {c<..d} = {max a c <.. min b d}" |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
371 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
372 |
|
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
373 |
lemma Int_greaterThanLessThan[simp]: "{a<..<b} Int {c<..<d} = {max a c <..< min b d}" |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
374 |
by auto |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
375 |
|
50417 | 376 |
lemma Int_atMost[simp]: "{..a} \<inter> {..b} = {.. min a b}" |
377 |
by (auto simp: min_def) |
|
378 |
||
32456
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
379 |
end |
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
380 |
|
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
381 |
|
14485 | 382 |
subsection {* Intervals of natural numbers *} |
383 |
||
15047 | 384 |
subsubsection {* The Constant @{term lessThan} *} |
385 |
||
14485 | 386 |
lemma lessThan_0 [simp]: "lessThan (0::nat) = {}" |
387 |
by (simp add: lessThan_def) |
|
388 |
||
389 |
lemma lessThan_Suc: "lessThan (Suc k) = insert k (lessThan k)" |
|
390 |
by (simp add: lessThan_def less_Suc_eq, blast) |
|
391 |
||
43156 | 392 |
text {* The following proof is convenient in induction proofs where |
39072 | 393 |
new elements get indices at the beginning. So it is used to transform |
394 |
@{term "{..<Suc n}"} to @{term "0::nat"} and @{term "{..< n}"}. *} |
|
395 |
||
396 |
lemma lessThan_Suc_eq_insert_0: "{..<Suc n} = insert 0 (Suc ` {..<n})" |
|
397 |
proof safe |
|
398 |
fix x assume "x < Suc n" "x \<notin> Suc ` {..<n}" |
|
399 |
then have "x \<noteq> Suc (x - 1)" by auto |
|
400 |
with `x < Suc n` show "x = 0" by auto |
|
401 |
qed |
|
402 |
||
14485 | 403 |
lemma lessThan_Suc_atMost: "lessThan (Suc k) = atMost k" |
404 |
by (simp add: lessThan_def atMost_def less_Suc_eq_le) |
|
405 |
||
406 |
lemma UN_lessThan_UNIV: "(UN m::nat. lessThan m) = UNIV" |
|
407 |
by blast |
|
408 |
||
15047 | 409 |
subsubsection {* The Constant @{term greaterThan} *} |
410 |
||
14485 | 411 |
lemma greaterThan_0 [simp]: "greaterThan 0 = range Suc" |
412 |
apply (simp add: greaterThan_def) |
|
413 |
apply (blast dest: gr0_conv_Suc [THEN iffD1]) |
|
414 |
done |
|
415 |
||
416 |
lemma greaterThan_Suc: "greaterThan (Suc k) = greaterThan k - {Suc k}" |
|
417 |
apply (simp add: greaterThan_def) |
|
418 |
apply (auto elim: linorder_neqE) |
|
419 |
done |
|
420 |
||
421 |
lemma INT_greaterThan_UNIV: "(INT m::nat. greaterThan m) = {}" |
|
422 |
by blast |
|
423 |
||
15047 | 424 |
subsubsection {* The Constant @{term atLeast} *} |
425 |
||
14485 | 426 |
lemma atLeast_0 [simp]: "atLeast (0::nat) = UNIV" |
427 |
by (unfold atLeast_def UNIV_def, simp) |
|
428 |
||
429 |
lemma atLeast_Suc: "atLeast (Suc k) = atLeast k - {k}" |
|
430 |
apply (simp add: atLeast_def) |
|
431 |
apply (simp add: Suc_le_eq) |
|
432 |
apply (simp add: order_le_less, blast) |
|
433 |
done |
|
434 |
||
435 |
lemma atLeast_Suc_greaterThan: "atLeast (Suc k) = greaterThan k" |
|
436 |
by (auto simp add: greaterThan_def atLeast_def less_Suc_eq_le) |
|
437 |
||
438 |
lemma UN_atLeast_UNIV: "(UN m::nat. atLeast m) = UNIV" |
|
439 |
by blast |
|
440 |
||
15047 | 441 |
subsubsection {* The Constant @{term atMost} *} |
442 |
||
14485 | 443 |
lemma atMost_0 [simp]: "atMost (0::nat) = {0}" |
444 |
by (simp add: atMost_def) |
|
445 |
||
446 |
lemma atMost_Suc: "atMost (Suc k) = insert (Suc k) (atMost k)" |
|
447 |
apply (simp add: atMost_def) |
|
448 |
apply (simp add: less_Suc_eq order_le_less, blast) |
|
449 |
done |
|
450 |
||
451 |
lemma UN_atMost_UNIV: "(UN m::nat. atMost m) = UNIV" |
|
452 |
by blast |
|
453 |
||
15047 | 454 |
subsubsection {* The Constant @{term atLeastLessThan} *} |
455 |
||
28068 | 456 |
text{*The orientation of the following 2 rules is tricky. The lhs is |
24449 | 457 |
defined in terms of the rhs. Hence the chosen orientation makes sense |
458 |
in this theory --- the reverse orientation complicates proofs (eg |
|
459 |
nontermination). But outside, when the definition of the lhs is rarely |
|
460 |
used, the opposite orientation seems preferable because it reduces a |
|
461 |
specific concept to a more general one. *} |
|
28068 | 462 |
|
15047 | 463 |
lemma atLeast0LessThan: "{0::nat..<n} = {..<n}" |
15042 | 464 |
by(simp add:lessThan_def atLeastLessThan_def) |
24449 | 465 |
|
28068 | 466 |
lemma atLeast0AtMost: "{0..n::nat} = {..n}" |
467 |
by(simp add:atMost_def atLeastAtMost_def) |
|
468 |
||
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31509
diff
changeset
|
469 |
declare atLeast0LessThan[symmetric, code_unfold] |
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31509
diff
changeset
|
470 |
atLeast0AtMost[symmetric, code_unfold] |
24449 | 471 |
|
472 |
lemma atLeastLessThan0: "{m..<0::nat} = {}" |
|
15047 | 473 |
by (simp add: atLeastLessThan_def) |
24449 | 474 |
|
15047 | 475 |
subsubsection {* Intervals of nats with @{term Suc} *} |
476 |
||
477 |
text{*Not a simprule because the RHS is too messy.*} |
|
478 |
lemma atLeastLessThanSuc: |
|
479 |
"{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
|
480 |
by (auto simp add: atLeastLessThan_def) |
15047 | 481 |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
482 |
lemma atLeastLessThan_singleton [simp]: "{m..<Suc m} = {m}" |
15047 | 483 |
by (auto simp add: atLeastLessThan_def) |
16041 | 484 |
(* |
15047 | 485 |
lemma atLeast_sum_LessThan [simp]: "{m + k..<k::nat} = {}" |
486 |
by (induct k, simp_all add: atLeastLessThanSuc) |
|
487 |
||
488 |
lemma atLeastSucLessThan [simp]: "{Suc n..<n} = {}" |
|
489 |
by (auto simp add: atLeastLessThan_def) |
|
16041 | 490 |
*) |
15045 | 491 |
lemma atLeastLessThanSuc_atLeastAtMost: "{l..<Suc u} = {l..u}" |
14485 | 492 |
by (simp add: lessThan_Suc_atMost atLeastAtMost_def atLeastLessThan_def) |
493 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
494 |
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
|
495 |
by (simp add: atLeast_Suc_greaterThan atLeastAtMost_def |
14485 | 496 |
greaterThanAtMost_def) |
497 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
498 |
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
|
499 |
by (simp add: atLeast_Suc_greaterThan atLeastLessThan_def |
14485 | 500 |
greaterThanLessThan_def) |
501 |
||
15554 | 502 |
lemma atLeastAtMostSuc_conv: "m \<le> Suc n \<Longrightarrow> {m..Suc n} = insert (Suc n) {m..n}" |
503 |
by (auto simp add: atLeastAtMost_def) |
|
504 |
||
45932 | 505 |
lemma atLeastAtMost_insertL: "m \<le> n \<Longrightarrow> insert m {Suc m..n} = {m ..n}" |
506 |
by auto |
|
507 |
||
43157 | 508 |
text {* The analogous result is useful on @{typ int}: *} |
509 |
(* here, because we don't have an own int section *) |
|
510 |
lemma atLeastAtMostPlus1_int_conv: |
|
511 |
"m <= 1+n \<Longrightarrow> {m..1+n} = insert (1+n) {m..n::int}" |
|
512 |
by (auto intro: set_eqI) |
|
513 |
||
33044 | 514 |
lemma atLeastLessThan_add_Un: "i \<le> j \<Longrightarrow> {i..<j+k} = {i..<j} \<union> {j..<j+k::nat}" |
515 |
apply (induct k) |
|
516 |
apply (simp_all add: atLeastLessThanSuc) |
|
517 |
done |
|
518 |
||
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
519 |
subsubsection {* Image *} |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
520 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
521 |
lemma image_add_atLeastAtMost: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
522 |
"(%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
|
523 |
proof |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
524 |
show "?A \<subseteq> ?B" by auto |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
525 |
next |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
526 |
show "?B \<subseteq> ?A" |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
527 |
proof |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
528 |
fix n assume a: "n : ?B" |
20217
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents:
19538
diff
changeset
|
529 |
hence "n - k : {i..j}" by auto |
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
530 |
moreover have "n = (n - k) + k" using a by auto |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
531 |
ultimately show "n : ?A" by blast |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
532 |
qed |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
533 |
qed |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
534 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
535 |
lemma image_add_atLeastLessThan: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
536 |
"(%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
|
537 |
proof |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
538 |
show "?A \<subseteq> ?B" by auto |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
539 |
next |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
540 |
show "?B \<subseteq> ?A" |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
541 |
proof |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
542 |
fix n assume a: "n : ?B" |
20217
25b068a99d2b
linear arithmetic splits certain operators (e.g. min, max, abs)
webertj
parents:
19538
diff
changeset
|
543 |
hence "n - k : {i..<j}" by auto |
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
544 |
moreover have "n = (n - k) + k" using a by auto |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
545 |
ultimately show "n : ?A" by blast |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
546 |
qed |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
547 |
qed |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
548 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
549 |
corollary image_Suc_atLeastAtMost[simp]: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
550 |
"Suc ` {i..j} = {Suc i..Suc j}" |
30079
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
29960
diff
changeset
|
551 |
using image_add_atLeastAtMost[where k="Suc 0"] by simp |
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
552 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
553 |
corollary image_Suc_atLeastLessThan[simp]: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
554 |
"Suc ` {i..<j} = {Suc i..<Suc j}" |
30079
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
29960
diff
changeset
|
555 |
using image_add_atLeastLessThan[where k="Suc 0"] by simp |
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
556 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
557 |
lemma image_add_int_atLeastLessThan: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
558 |
"(%x. x + (l::int)) ` {0..<u-l} = {l..<u}" |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
559 |
apply (auto simp add: image_def) |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
560 |
apply (rule_tac x = "x - l" in bexI) |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
561 |
apply auto |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
562 |
done |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
563 |
|
37664 | 564 |
lemma image_minus_const_atLeastLessThan_nat: |
565 |
fixes c :: nat |
|
566 |
shows "(\<lambda>i. i - c) ` {x ..< y} = |
|
567 |
(if c < y then {x - c ..< y - c} else if x < y then {0} else {})" |
|
568 |
(is "_ = ?right") |
|
569 |
proof safe |
|
570 |
fix a assume a: "a \<in> ?right" |
|
571 |
show "a \<in> (\<lambda>i. i - c) ` {x ..< y}" |
|
572 |
proof cases |
|
573 |
assume "c < y" with a show ?thesis |
|
574 |
by (auto intro!: image_eqI[of _ _ "a + c"]) |
|
575 |
next |
|
576 |
assume "\<not> c < y" with a show ?thesis |
|
577 |
by (auto intro!: image_eqI[of _ _ x] split: split_if_asm) |
|
578 |
qed |
|
579 |
qed auto |
|
580 |
||
51152 | 581 |
lemma image_int_atLeastLessThan: "int ` {a..<b} = {int a..<int b}" |
582 |
by(auto intro!: image_eqI[where x="nat x", standard]) |
|
583 |
||
35580 | 584 |
context ordered_ab_group_add |
585 |
begin |
|
586 |
||
587 |
lemma |
|
588 |
fixes x :: 'a |
|
589 |
shows image_uminus_greaterThan[simp]: "uminus ` {x<..} = {..<-x}" |
|
590 |
and image_uminus_atLeast[simp]: "uminus ` {x..} = {..-x}" |
|
591 |
proof safe |
|
592 |
fix y assume "y < -x" |
|
593 |
hence *: "x < -y" using neg_less_iff_less[of "-y" x] by simp |
|
594 |
have "- (-y) \<in> uminus ` {x<..}" |
|
595 |
by (rule imageI) (simp add: *) |
|
596 |
thus "y \<in> uminus ` {x<..}" by simp |
|
597 |
next |
|
598 |
fix y assume "y \<le> -x" |
|
599 |
have "- (-y) \<in> uminus ` {x..}" |
|
600 |
by (rule imageI) (insert `y \<le> -x`[THEN le_imp_neg_le], simp) |
|
601 |
thus "y \<in> uminus ` {x..}" by simp |
|
602 |
qed simp_all |
|
603 |
||
604 |
lemma |
|
605 |
fixes x :: 'a |
|
606 |
shows image_uminus_lessThan[simp]: "uminus ` {..<x} = {-x<..}" |
|
607 |
and image_uminus_atMost[simp]: "uminus ` {..x} = {-x..}" |
|
608 |
proof - |
|
609 |
have "uminus ` {..<x} = uminus ` uminus ` {-x<..}" |
|
610 |
and "uminus ` {..x} = uminus ` uminus ` {-x..}" by simp_all |
|
611 |
thus "uminus ` {..<x} = {-x<..}" and "uminus ` {..x} = {-x..}" |
|
612 |
by (simp_all add: image_image |
|
613 |
del: image_uminus_greaterThan image_uminus_atLeast) |
|
614 |
qed |
|
615 |
||
616 |
lemma |
|
617 |
fixes x :: 'a |
|
618 |
shows image_uminus_atLeastAtMost[simp]: "uminus ` {x..y} = {-y..-x}" |
|
619 |
and image_uminus_greaterThanAtMost[simp]: "uminus ` {x<..y} = {-y..<-x}" |
|
620 |
and image_uminus_atLeastLessThan[simp]: "uminus ` {x..<y} = {-y<..-x}" |
|
621 |
and image_uminus_greaterThanLessThan[simp]: "uminus ` {x<..<y} = {-y<..<-x}" |
|
622 |
by (simp_all add: atLeastAtMost_def greaterThanAtMost_def atLeastLessThan_def |
|
623 |
greaterThanLessThan_def image_Int[OF inj_uminus] Int_commute) |
|
624 |
end |
|
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
625 |
|
14485 | 626 |
subsubsection {* Finiteness *} |
627 |
||
15045 | 628 |
lemma finite_lessThan [iff]: fixes k :: nat shows "finite {..<k}" |
14485 | 629 |
by (induct k) (simp_all add: lessThan_Suc) |
630 |
||
631 |
lemma finite_atMost [iff]: fixes k :: nat shows "finite {..k}" |
|
632 |
by (induct k) (simp_all add: atMost_Suc) |
|
633 |
||
634 |
lemma finite_greaterThanLessThan [iff]: |
|
15045 | 635 |
fixes l :: nat shows "finite {l<..<u}" |
14485 | 636 |
by (simp add: greaterThanLessThan_def) |
637 |
||
638 |
lemma finite_atLeastLessThan [iff]: |
|
15045 | 639 |
fixes l :: nat shows "finite {l..<u}" |
14485 | 640 |
by (simp add: atLeastLessThan_def) |
641 |
||
642 |
lemma finite_greaterThanAtMost [iff]: |
|
15045 | 643 |
fixes l :: nat shows "finite {l<..u}" |
14485 | 644 |
by (simp add: greaterThanAtMost_def) |
645 |
||
646 |
lemma finite_atLeastAtMost [iff]: |
|
647 |
fixes l :: nat shows "finite {l..u}" |
|
648 |
by (simp add: atLeastAtMost_def) |
|
649 |
||
28068 | 650 |
text {* A bounded set of natural numbers is finite. *} |
14485 | 651 |
lemma bounded_nat_set_is_finite: |
24853 | 652 |
"(ALL i:N. i < (n::nat)) ==> finite N" |
28068 | 653 |
apply (rule finite_subset) |
654 |
apply (rule_tac [2] finite_lessThan, auto) |
|
655 |
done |
|
656 |
||
31044 | 657 |
text {* A set of natural numbers is finite iff it is bounded. *} |
658 |
lemma finite_nat_set_iff_bounded: |
|
659 |
"finite(N::nat set) = (EX m. ALL n:N. n<m)" (is "?F = ?B") |
|
660 |
proof |
|
661 |
assume f:?F show ?B |
|
662 |
using Max_ge[OF `?F`, simplified less_Suc_eq_le[symmetric]] by blast |
|
663 |
next |
|
664 |
assume ?B show ?F using `?B` by(blast intro:bounded_nat_set_is_finite) |
|
665 |
qed |
|
666 |
||
667 |
lemma finite_nat_set_iff_bounded_le: |
|
668 |
"finite(N::nat set) = (EX m. ALL n:N. n<=m)" |
|
669 |
apply(simp add:finite_nat_set_iff_bounded) |
|
670 |
apply(blast dest:less_imp_le_nat le_imp_less_Suc) |
|
671 |
done |
|
672 |
||
28068 | 673 |
lemma finite_less_ub: |
674 |
"!!f::nat=>nat. (!!n. n \<le> f n) ==> finite {n. f n \<le> u}" |
|
675 |
by (rule_tac B="{..u}" in finite_subset, auto intro: order_trans) |
|
14485 | 676 |
|
24853 | 677 |
text{* Any subset of an interval of natural numbers the size of the |
678 |
subset is exactly that interval. *} |
|
679 |
||
680 |
lemma subset_card_intvl_is_intvl: |
|
681 |
"A <= {k..<k+card A} \<Longrightarrow> A = {k..<k+card A}" (is "PROP ?P") |
|
682 |
proof cases |
|
683 |
assume "finite A" |
|
684 |
thus "PROP ?P" |
|
32006 | 685 |
proof(induct A rule:finite_linorder_max_induct) |
24853 | 686 |
case empty thus ?case by auto |
687 |
next |
|
33434 | 688 |
case (insert b A) |
24853 | 689 |
moreover hence "b ~: A" by auto |
690 |
moreover have "A <= {k..<k+card A}" and "b = k+card A" |
|
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
44008
diff
changeset
|
691 |
using `b ~: A` insert by fastforce+ |
24853 | 692 |
ultimately show ?case by auto |
693 |
qed |
|
694 |
next |
|
695 |
assume "~finite A" thus "PROP ?P" by simp |
|
696 |
qed |
|
697 |
||
698 |
||
32596
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
699 |
subsubsection {* Proving Inclusions and Equalities between Unions *} |
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
700 |
|
36755 | 701 |
lemma UN_le_eq_Un0: |
702 |
"(\<Union>i\<le>n::nat. M i) = (\<Union>i\<in>{1..n}. M i) \<union> M 0" (is "?A = ?B") |
|
703 |
proof |
|
704 |
show "?A <= ?B" |
|
705 |
proof |
|
706 |
fix x assume "x : ?A" |
|
707 |
then obtain i where i: "i\<le>n" "x : M i" by auto |
|
708 |
show "x : ?B" |
|
709 |
proof(cases i) |
|
710 |
case 0 with i show ?thesis by simp |
|
711 |
next |
|
712 |
case (Suc j) with i show ?thesis by auto |
|
713 |
qed |
|
714 |
qed |
|
715 |
next |
|
716 |
show "?B <= ?A" by auto |
|
717 |
qed |
|
718 |
||
719 |
lemma UN_le_add_shift: |
|
720 |
"(\<Union>i\<le>n::nat. M(i+k)) = (\<Union>i\<in>{k..n+k}. M i)" (is "?A = ?B") |
|
721 |
proof |
|
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
44008
diff
changeset
|
722 |
show "?A <= ?B" by fastforce |
36755 | 723 |
next |
724 |
show "?B <= ?A" |
|
725 |
proof |
|
726 |
fix x assume "x : ?B" |
|
727 |
then obtain i where i: "i : {k..n+k}" "x : M(i)" by auto |
|
728 |
hence "i-k\<le>n & x : M((i-k)+k)" by auto |
|
729 |
thus "x : ?A" by blast |
|
730 |
qed |
|
731 |
qed |
|
732 |
||
32596
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
733 |
lemma UN_UN_finite_eq: "(\<Union>n::nat. \<Union>i\<in>{0..<n}. A i) = (\<Union>n. A n)" |
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
734 |
by (auto simp add: atLeast0LessThan) |
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
735 |
|
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
736 |
lemma UN_finite_subset: "(!!n::nat. (\<Union>i\<in>{0..<n}. A i) \<subseteq> C) \<Longrightarrow> (\<Union>n. A n) \<subseteq> C" |
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
737 |
by (subst UN_UN_finite_eq [symmetric]) blast |
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
738 |
|
33044 | 739 |
lemma UN_finite2_subset: |
740 |
"(!!n::nat. (\<Union>i\<in>{0..<n}. A i) \<subseteq> (\<Union>i\<in>{0..<n+k}. B i)) \<Longrightarrow> (\<Union>n. A n) \<subseteq> (\<Union>n. B n)" |
|
741 |
apply (rule UN_finite_subset) |
|
742 |
apply (subst UN_UN_finite_eq [symmetric, of B]) |
|
743 |
apply blast |
|
744 |
done |
|
32596
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
745 |
|
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
746 |
lemma UN_finite2_eq: |
33044 | 747 |
"(!!n::nat. (\<Union>i\<in>{0..<n}. A i) = (\<Union>i\<in>{0..<n+k}. B i)) \<Longrightarrow> (\<Union>n. A n) = (\<Union>n. B n)" |
748 |
apply (rule subset_antisym) |
|
749 |
apply (rule UN_finite2_subset, blast) |
|
750 |
apply (rule UN_finite2_subset [where k=k]) |
|
35216 | 751 |
apply (force simp add: atLeastLessThan_add_Un [of 0]) |
33044 | 752 |
done |
32596
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
753 |
|
bd68c04dace1
New theorems for proving equalities and inclusions involving unions
paulson
parents:
32456
diff
changeset
|
754 |
|
14485 | 755 |
subsubsection {* Cardinality *} |
756 |
||
15045 | 757 |
lemma card_lessThan [simp]: "card {..<u} = u" |
15251 | 758 |
by (induct u, simp_all add: lessThan_Suc) |
14485 | 759 |
|
760 |
lemma card_atMost [simp]: "card {..u} = Suc u" |
|
761 |
by (simp add: lessThan_Suc_atMost [THEN sym]) |
|
762 |
||
15045 | 763 |
lemma card_atLeastLessThan [simp]: "card {l..<u} = u - l" |
764 |
apply (subgoal_tac "card {l..<u} = card {..<u-l}") |
|
14485 | 765 |
apply (erule ssubst, rule card_lessThan) |
15045 | 766 |
apply (subgoal_tac "(%x. x + l) ` {..<u-l} = {l..<u}") |
14485 | 767 |
apply (erule subst) |
768 |
apply (rule card_image) |
|
769 |
apply (simp add: inj_on_def) |
|
770 |
apply (auto simp add: image_def atLeastLessThan_def lessThan_def) |
|
771 |
apply (rule_tac x = "x - l" in exI) |
|
772 |
apply arith |
|
773 |
done |
|
774 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
775 |
lemma card_atLeastAtMost [simp]: "card {l..u} = Suc u - l" |
14485 | 776 |
by (subst atLeastLessThanSuc_atLeastAtMost [THEN sym], simp) |
777 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
778 |
lemma card_greaterThanAtMost [simp]: "card {l<..u} = u - l" |
14485 | 779 |
by (subst atLeastSucAtMost_greaterThanAtMost [THEN sym], simp) |
780 |
||
15045 | 781 |
lemma card_greaterThanLessThan [simp]: "card {l<..<u} = u - Suc l" |
14485 | 782 |
by (subst atLeastSucLessThan_greaterThanLessThan [THEN sym], simp) |
783 |
||
26105
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents:
26072
diff
changeset
|
784 |
lemma ex_bij_betw_nat_finite: |
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents:
26072
diff
changeset
|
785 |
"finite M \<Longrightarrow> \<exists>h. bij_betw h {0..<card M} M" |
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents:
26072
diff
changeset
|
786 |
apply(drule finite_imp_nat_seg_image_inj_on) |
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents:
26072
diff
changeset
|
787 |
apply(auto simp:atLeast0LessThan[symmetric] lessThan_def[symmetric] card_image bij_betw_def) |
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents:
26072
diff
changeset
|
788 |
done |
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents:
26072
diff
changeset
|
789 |
|
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents:
26072
diff
changeset
|
790 |
lemma ex_bij_betw_finite_nat: |
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents:
26072
diff
changeset
|
791 |
"finite M \<Longrightarrow> \<exists>h. bij_betw h M {0..<card M}" |
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents:
26072
diff
changeset
|
792 |
by (blast dest: ex_bij_betw_nat_finite bij_betw_inv) |
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents:
26072
diff
changeset
|
793 |
|
31438 | 794 |
lemma finite_same_card_bij: |
795 |
"finite A \<Longrightarrow> finite B \<Longrightarrow> card A = card B \<Longrightarrow> EX h. bij_betw h A B" |
|
796 |
apply(drule ex_bij_betw_finite_nat) |
|
797 |
apply(drule ex_bij_betw_nat_finite) |
|
798 |
apply(auto intro!:bij_betw_trans) |
|
799 |
done |
|
800 |
||
801 |
lemma ex_bij_betw_nat_finite_1: |
|
802 |
"finite M \<Longrightarrow> \<exists>h. bij_betw h {1 .. card M} M" |
|
803 |
by (rule finite_same_card_bij) auto |
|
804 |
||
40703
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
805 |
lemma bij_betw_iff_card: |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
806 |
assumes FIN: "finite A" and FIN': "finite B" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
807 |
shows BIJ: "(\<exists>f. bij_betw f A B) \<longleftrightarrow> (card A = card B)" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
808 |
using assms |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
809 |
proof(auto simp add: bij_betw_same_card) |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
810 |
assume *: "card A = card B" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
811 |
obtain f where "bij_betw f A {0 ..< card A}" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
812 |
using FIN ex_bij_betw_finite_nat by blast |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
813 |
moreover obtain g where "bij_betw g {0 ..< card B} B" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
814 |
using FIN' ex_bij_betw_nat_finite by blast |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
815 |
ultimately have "bij_betw (g o f) A B" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
816 |
using * by (auto simp add: bij_betw_trans) |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
817 |
thus "(\<exists>f. bij_betw f A B)" by blast |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
818 |
qed |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
819 |
|
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
820 |
lemma inj_on_iff_card_le: |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
821 |
assumes FIN: "finite A" and FIN': "finite B" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
822 |
shows "(\<exists>f. inj_on f A \<and> f ` A \<le> B) = (card A \<le> card B)" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
823 |
proof (safe intro!: card_inj_on_le) |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
824 |
assume *: "card A \<le> card B" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
825 |
obtain f where 1: "inj_on f A" and 2: "f ` A = {0 ..< card A}" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
826 |
using FIN ex_bij_betw_finite_nat unfolding bij_betw_def by force |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
827 |
moreover obtain g where "inj_on g {0 ..< card B}" and 3: "g ` {0 ..< card B} = B" |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
828 |
using FIN' ex_bij_betw_nat_finite unfolding bij_betw_def by force |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
829 |
ultimately have "inj_on g (f ` A)" using subset_inj_on[of g _ "f ` A"] * by force |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
830 |
hence "inj_on (g o f) A" using 1 comp_inj_on by blast |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
831 |
moreover |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
832 |
{have "{0 ..< card A} \<le> {0 ..< card B}" using * by force |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
833 |
with 2 have "f ` A \<le> {0 ..< card B}" by blast |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
834 |
hence "(g o f) ` A \<le> B" unfolding comp_def using 3 by force |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
835 |
} |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
836 |
ultimately show "(\<exists>f. inj_on f A \<and> f ` A \<le> B)" by blast |
d1fc454d6735
Move some missing lemmas from Andrei Popescus 'Ordinals and Cardinals' AFP entry to the HOL-image.
hoelzl
parents:
39302
diff
changeset
|
837 |
qed (insert assms, auto) |
26105
ae06618225ec
moved bij_betw from Library/FuncSet to Fun, redistributed some lemmas, and
nipkow
parents:
26072
diff
changeset
|
838 |
|
14485 | 839 |
subsection {* Intervals of integers *} |
840 |
||
15045 | 841 |
lemma atLeastLessThanPlusOne_atLeastAtMost_int: "{l..<u+1} = {l..(u::int)}" |
14485 | 842 |
by (auto simp add: atLeastAtMost_def atLeastLessThan_def) |
843 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
844 |
lemma atLeastPlusOneAtMost_greaterThanAtMost_int: "{l+1..u} = {l<..(u::int)}" |
14485 | 845 |
by (auto simp add: atLeastAtMost_def greaterThanAtMost_def) |
846 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
847 |
lemma atLeastPlusOneLessThan_greaterThanLessThan_int: |
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
848 |
"{l+1..<u} = {l<..<u::int}" |
14485 | 849 |
by (auto simp add: atLeastLessThan_def greaterThanLessThan_def) |
850 |
||
851 |
subsubsection {* Finiteness *} |
|
852 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
853 |
lemma image_atLeastZeroLessThan_int: "0 \<le> u ==> |
15045 | 854 |
{(0::int)..<u} = int ` {..<nat u}" |
14485 | 855 |
apply (unfold image_def lessThan_def) |
856 |
apply auto |
|
857 |
apply (rule_tac x = "nat x" in exI) |
|
35216 | 858 |
apply (auto simp add: zless_nat_eq_int_zless [THEN sym]) |
14485 | 859 |
done |
860 |
||
15045 | 861 |
lemma finite_atLeastZeroLessThan_int: "finite {(0::int)..<u}" |
47988 | 862 |
apply (cases "0 \<le> u") |
14485 | 863 |
apply (subst image_atLeastZeroLessThan_int, assumption) |
864 |
apply (rule finite_imageI) |
|
865 |
apply auto |
|
866 |
done |
|
867 |
||
15045 | 868 |
lemma finite_atLeastLessThan_int [iff]: "finite {l..<u::int}" |
869 |
apply (subgoal_tac "(%x. x + l) ` {0..<u-l} = {l..<u}") |
|
14485 | 870 |
apply (erule subst) |
871 |
apply (rule finite_imageI) |
|
872 |
apply (rule finite_atLeastZeroLessThan_int) |
|
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
873 |
apply (rule image_add_int_atLeastLessThan) |
14485 | 874 |
done |
875 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
876 |
lemma finite_atLeastAtMost_int [iff]: "finite {l..(u::int)}" |
14485 | 877 |
by (subst atLeastLessThanPlusOne_atLeastAtMost_int [THEN sym], simp) |
878 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
879 |
lemma finite_greaterThanAtMost_int [iff]: "finite {l<..(u::int)}" |
14485 | 880 |
by (subst atLeastPlusOneAtMost_greaterThanAtMost_int [THEN sym], simp) |
881 |
||
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
882 |
lemma finite_greaterThanLessThan_int [iff]: "finite {l<..<u::int}" |
14485 | 883 |
by (subst atLeastPlusOneLessThan_greaterThanLessThan_int [THEN sym], simp) |
884 |
||
24853 | 885 |
|
14485 | 886 |
subsubsection {* Cardinality *} |
887 |
||
15045 | 888 |
lemma card_atLeastZeroLessThan_int: "card {(0::int)..<u} = nat u" |
47988 | 889 |
apply (cases "0 \<le> u") |
14485 | 890 |
apply (subst image_atLeastZeroLessThan_int, assumption) |
891 |
apply (subst card_image) |
|
892 |
apply (auto simp add: inj_on_def) |
|
893 |
done |
|
894 |
||
15045 | 895 |
lemma card_atLeastLessThan_int [simp]: "card {l..<u} = nat (u - l)" |
896 |
apply (subgoal_tac "card {l..<u} = card {0..<u-l}") |
|
14485 | 897 |
apply (erule ssubst, rule card_atLeastZeroLessThan_int) |
15045 | 898 |
apply (subgoal_tac "(%x. x + l) ` {0..<u-l} = {l..<u}") |
14485 | 899 |
apply (erule subst) |
900 |
apply (rule card_image) |
|
901 |
apply (simp add: inj_on_def) |
|
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
902 |
apply (rule image_add_int_atLeastLessThan) |
14485 | 903 |
done |
904 |
||
905 |
lemma card_atLeastAtMost_int [simp]: "card {l..u} = nat (u - l + 1)" |
|
29667 | 906 |
apply (subst atLeastLessThanPlusOne_atLeastAtMost_int [THEN sym]) |
907 |
apply (auto simp add: algebra_simps) |
|
908 |
done |
|
14485 | 909 |
|
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
910 |
lemma card_greaterThanAtMost_int [simp]: "card {l<..u} = nat (u - l)" |
29667 | 911 |
by (subst atLeastPlusOneAtMost_greaterThanAtMost_int [THEN sym], simp) |
14485 | 912 |
|
15045 | 913 |
lemma card_greaterThanLessThan_int [simp]: "card {l<..<u} = nat (u - (l + 1))" |
29667 | 914 |
by (subst atLeastPlusOneLessThan_greaterThanLessThan_int [THEN sym], simp) |
14485 | 915 |
|
27656
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
916 |
lemma finite_M_bounded_by_nat: "finite {k. P k \<and> k < (i::nat)}" |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
917 |
proof - |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
918 |
have "{k. P k \<and> k < i} \<subseteq> {..<i}" by auto |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
919 |
with finite_lessThan[of "i"] show ?thesis by (simp add: finite_subset) |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
920 |
qed |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
921 |
|
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
922 |
lemma card_less: |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
923 |
assumes zero_in_M: "0 \<in> M" |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
924 |
shows "card {k \<in> M. k < Suc i} \<noteq> 0" |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
925 |
proof - |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
926 |
from zero_in_M have "{k \<in> M. k < Suc i} \<noteq> {}" by auto |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
927 |
with finite_M_bounded_by_nat show ?thesis by (auto simp add: card_eq_0_iff) |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
928 |
qed |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
929 |
|
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
930 |
lemma card_less_Suc2: "0 \<notin> M \<Longrightarrow> card {k. Suc k \<in> M \<and> k < i} = card {k \<in> M. k < Suc i}" |
37388 | 931 |
apply (rule card_bij_eq [of Suc _ _ "\<lambda>x. x - Suc 0"]) |
27656
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
932 |
apply simp |
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
44008
diff
changeset
|
933 |
apply fastforce |
27656
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
934 |
apply auto |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
935 |
apply (rule inj_on_diff_nat) |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
936 |
apply auto |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
937 |
apply (case_tac x) |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
938 |
apply auto |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
939 |
apply (case_tac xa) |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
940 |
apply auto |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
941 |
apply (case_tac xa) |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
942 |
apply auto |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
943 |
done |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
944 |
|
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
945 |
lemma card_less_Suc: |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
946 |
assumes zero_in_M: "0 \<in> M" |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
947 |
shows "Suc (card {k. Suc k \<in> M \<and> k < i}) = card {k \<in> M. k < Suc i}" |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
948 |
proof - |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
949 |
from assms have a: "0 \<in> {k \<in> M. k < Suc i}" by simp |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
950 |
hence c: "{k \<in> M. k < Suc i} = insert 0 ({k \<in> M. k < Suc i} - {0})" |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
951 |
by (auto simp only: insert_Diff) |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
952 |
have b: "{k \<in> M. k < Suc i} - {0} = {k \<in> M - {0}. k < Suc i}" by auto |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
953 |
from finite_M_bounded_by_nat[of "\<lambda>x. x \<in> M" "Suc i"] have "Suc (card {k. Suc k \<in> M \<and> k < i}) = card (insert 0 ({k \<in> M. k < Suc i} - {0}))" |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
954 |
apply (subst card_insert) |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
955 |
apply simp_all |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
956 |
apply (subst b) |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
957 |
apply (subst card_less_Suc2[symmetric]) |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
958 |
apply simp_all |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
959 |
done |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
960 |
with c show ?thesis by simp |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
961 |
qed |
d4f6e64ee7cc
added verification framework for the HeapMonad and quicksort as example for this framework
bulwahn
parents:
26105
diff
changeset
|
962 |
|
14485 | 963 |
|
13850 | 964 |
subsection {*Lemmas useful with the summation operator setsum*} |
965 |
||
16102
c5f6726d9bb1
Locale expressions: rename with optional mixfix syntax.
ballarin
parents:
16052
diff
changeset
|
966 |
text {* For examples, see Algebra/poly/UnivPoly2.thy *} |
13735 | 967 |
|
14577 | 968 |
subsubsection {* Disjoint Unions *} |
13735 | 969 |
|
14577 | 970 |
text {* Singletons and open intervals *} |
13735 | 971 |
|
972 |
lemma ivl_disj_un_singleton: |
|
15045 | 973 |
"{l::'a::linorder} Un {l<..} = {l..}" |
974 |
"{..<u} Un {u::'a::linorder} = {..u}" |
|
975 |
"(l::'a::linorder) < u ==> {l} Un {l<..<u} = {l..<u}" |
|
976 |
"(l::'a::linorder) < u ==> {l<..<u} Un {u} = {l<..u}" |
|
977 |
"(l::'a::linorder) <= u ==> {l} Un {l<..u} = {l..u}" |
|
978 |
"(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
|
979 |
by auto |
13735 | 980 |
|
14577 | 981 |
text {* One- and two-sided intervals *} |
13735 | 982 |
|
983 |
lemma ivl_disj_un_one: |
|
15045 | 984 |
"(l::'a::linorder) < u ==> {..l} Un {l<..<u} = {..<u}" |
985 |
"(l::'a::linorder) <= u ==> {..<l} Un {l..<u} = {..<u}" |
|
986 |
"(l::'a::linorder) <= u ==> {..l} Un {l<..u} = {..u}" |
|
987 |
"(l::'a::linorder) <= u ==> {..<l} Un {l..u} = {..u}" |
|
988 |
"(l::'a::linorder) <= u ==> {l<..u} Un {u<..} = {l<..}" |
|
989 |
"(l::'a::linorder) < u ==> {l<..<u} Un {u..} = {l<..}" |
|
990 |
"(l::'a::linorder) <= u ==> {l..u} Un {u<..} = {l..}" |
|
991 |
"(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
|
992 |
by auto |
13735 | 993 |
|
14577 | 994 |
text {* Two- and two-sided intervals *} |
13735 | 995 |
|
996 |
lemma ivl_disj_un_two: |
|
15045 | 997 |
"[| (l::'a::linorder) < m; m <= u |] ==> {l<..<m} Un {m..<u} = {l<..<u}" |
998 |
"[| (l::'a::linorder) <= m; m < u |] ==> {l<..m} Un {m<..<u} = {l<..<u}" |
|
999 |
"[| (l::'a::linorder) <= m; m <= u |] ==> {l..<m} Un {m..<u} = {l..<u}" |
|
1000 |
"[| (l::'a::linorder) <= m; m < u |] ==> {l..m} Un {m<..<u} = {l..<u}" |
|
1001 |
"[| (l::'a::linorder) < m; m <= u |] ==> {l<..<m} Un {m..u} = {l<..u}" |
|
1002 |
"[| (l::'a::linorder) <= m; m <= u |] ==> {l<..m} Un {m<..u} = {l<..u}" |
|
1003 |
"[| (l::'a::linorder) <= m; m <= u |] ==> {l..<m} Un {m..u} = {l..u}" |
|
1004 |
"[| (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
|
1005 |
by auto |
13735 | 1006 |
|
1007 |
lemmas ivl_disj_un = ivl_disj_un_singleton ivl_disj_un_one ivl_disj_un_two |
|
1008 |
||
14577 | 1009 |
subsubsection {* Disjoint Intersections *} |
13735 | 1010 |
|
14577 | 1011 |
text {* One- and two-sided intervals *} |
13735 | 1012 |
|
1013 |
lemma ivl_disj_int_one: |
|
15045 | 1014 |
"{..l::'a::order} Int {l<..<u} = {}" |
1015 |
"{..<l} Int {l..<u} = {}" |
|
1016 |
"{..l} Int {l<..u} = {}" |
|
1017 |
"{..<l} Int {l..u} = {}" |
|
1018 |
"{l<..u} Int {u<..} = {}" |
|
1019 |
"{l<..<u} Int {u..} = {}" |
|
1020 |
"{l..u} Int {u<..} = {}" |
|
1021 |
"{l..<u} Int {u..} = {}" |
|
14398
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
13850
diff
changeset
|
1022 |
by auto |
13735 | 1023 |
|
14577 | 1024 |
text {* Two- and two-sided intervals *} |
13735 | 1025 |
|
1026 |
lemma ivl_disj_int_two: |
|
15045 | 1027 |
"{l::'a::order<..<m} Int {m..<u} = {}" |
1028 |
"{l<..m} Int {m<..<u} = {}" |
|
1029 |
"{l..<m} Int {m..<u} = {}" |
|
1030 |
"{l..m} Int {m<..<u} = {}" |
|
1031 |
"{l<..<m} Int {m..u} = {}" |
|
1032 |
"{l<..m} Int {m<..u} = {}" |
|
1033 |
"{l..<m} Int {m..u} = {}" |
|
1034 |
"{l..m} Int {m<..u} = {}" |
|
14398
c5c47703f763
Efficient, graph-based reasoner for linear and partial orders.
ballarin
parents:
13850
diff
changeset
|
1035 |
by auto |
13735 | 1036 |
|
32456
341c83339aeb
tuned the simp rules for Int involving insert and intervals.
nipkow
parents:
32436
diff
changeset
|
1037 |
lemmas ivl_disj_int = ivl_disj_int_one ivl_disj_int_two |
13735 | 1038 |
|
15542 | 1039 |
subsubsection {* Some Differences *} |
1040 |
||
1041 |
lemma ivl_diff[simp]: |
|
1042 |
"i \<le> n \<Longrightarrow> {i..<m} - {i..<n} = {n..<(m::'a::linorder)}" |
|
1043 |
by(auto) |
|
1044 |
||
1045 |
||
1046 |
subsubsection {* Some Subset Conditions *} |
|
1047 |
||
35828
46cfc4b8112e
now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents:
35644
diff
changeset
|
1048 |
lemma ivl_subset [simp,no_atp]: |
15542 | 1049 |
"({i..<j} \<subseteq> {m..<n}) = (j \<le> i | m \<le> i & j \<le> (n::'a::linorder))" |
1050 |
apply(auto simp:linorder_not_le) |
|
1051 |
apply(rule ccontr) |
|
1052 |
apply(insert linorder_le_less_linear[of i n]) |
|
1053 |
apply(clarsimp simp:linorder_not_le) |
|
44890
22f665a2e91c
new fastforce replacing fastsimp - less confusing name
nipkow
parents:
44008
diff
changeset
|
1054 |
apply(fastforce) |
15542 | 1055 |
done |
1056 |
||
15041
a6b1f0cef7b3
Got rid of Summation and made it a translation into setsum instead.
nipkow
parents:
14846
diff
changeset
|
1057 |
|
15042 | 1058 |
subsection {* Summation indexed over intervals *} |
1059 |
||
1060 |
syntax |
|
1061 |
"_from_to_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(SUM _ = _.._./ _)" [0,0,0,10] 10) |
|
15048 | 1062 |
"_from_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(SUM _ = _..<_./ _)" [0,0,0,10] 10) |
16052 | 1063 |
"_upt_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(SUM _<_./ _)" [0,0,10] 10) |
1064 |
"_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(SUM _<=_./ _)" [0,0,10] 10) |
|
15042 | 1065 |
syntax (xsymbols) |
1066 |
"_from_to_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_ = _.._./ _)" [0,0,0,10] 10) |
|
15048 | 1067 |
"_from_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_ = _..<_./ _)" [0,0,0,10] 10) |
16052 | 1068 |
"_upt_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_<_./ _)" [0,0,10] 10) |
1069 |
"_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_\<le>_./ _)" [0,0,10] 10) |
|
15042 | 1070 |
syntax (HTML output) |
1071 |
"_from_to_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_ = _.._./ _)" [0,0,0,10] 10) |
|
15048 | 1072 |
"_from_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_ = _..<_./ _)" [0,0,0,10] 10) |
16052 | 1073 |
"_upt_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_<_./ _)" [0,0,10] 10) |
1074 |
"_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Sum>_\<le>_./ _)" [0,0,10] 10) |
|
15056 | 1075 |
syntax (latex_sum output) |
15052 | 1076 |
"_from_to_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
1077 |
("(3\<^raw:$\sum_{>_ = _\<^raw:}^{>_\<^raw:}$> _)" [0,0,0,10] 10) |
|
1078 |
"_from_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
|
1079 |
("(3\<^raw:$\sum_{>_ = _\<^raw:}^{<>_\<^raw:}$> _)" [0,0,0,10] 10) |
|
16052 | 1080 |
"_upt_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
1081 |
("(3\<^raw:$\sum_{>_ < _\<^raw:}$> _)" [0,0,10] 10) |
|
15052 | 1082 |
"_upto_setsum" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
16052 | 1083 |
("(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
|
1084 |
|
15048 | 1085 |
translations |
28853
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
nipkow
parents:
28068
diff
changeset
|
1086 |
"\<Sum>x=a..b. t" == "CONST setsum (%x. t) {a..b}" |
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
nipkow
parents:
28068
diff
changeset
|
1087 |
"\<Sum>x=a..<b. t" == "CONST setsum (%x. t) {a..<b}" |
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
nipkow
parents:
28068
diff
changeset
|
1088 |
"\<Sum>i\<le>n. t" == "CONST setsum (\<lambda>i. t) {..n}" |
69eb69659bf3
Added new fold operator and renamed the old oe to fold_image.
nipkow
parents:
28068
diff
changeset
|
1089 |
"\<Sum>i<n. t" == "CONST setsum (\<lambda>i. t) {..<n}" |
15041
a6b1f0cef7b3
Got rid of Summation and made it a translation into setsum instead.
nipkow
parents:
14846
diff
changeset
|
1090 |
|
15052 | 1091 |
text{* The above introduces some pretty alternative syntaxes for |
15056 | 1092 |
summation over intervals: |
15052 | 1093 |
\begin{center} |
1094 |
\begin{tabular}{lll} |
|
15056 | 1095 |
Old & New & \LaTeX\\ |
1096 |
@{term[source]"\<Sum>x\<in>{a..b}. e"} & @{term"\<Sum>x=a..b. e"} & @{term[mode=latex_sum]"\<Sum>x=a..b. e"}\\ |
|
1097 |
@{term[source]"\<Sum>x\<in>{a..<b}. e"} & @{term"\<Sum>x=a..<b. e"} & @{term[mode=latex_sum]"\<Sum>x=a..<b. e"}\\ |
|
16052 | 1098 |
@{term[source]"\<Sum>x\<in>{..b}. e"} & @{term"\<Sum>x\<le>b. e"} & @{term[mode=latex_sum]"\<Sum>x\<le>b. e"}\\ |
15056 | 1099 |
@{term[source]"\<Sum>x\<in>{..<b}. e"} & @{term"\<Sum>x<b. e"} & @{term[mode=latex_sum]"\<Sum>x<b. e"} |
15052 | 1100 |
\end{tabular} |
1101 |
\end{center} |
|
15056 | 1102 |
The left column shows the term before introduction of the new syntax, |
1103 |
the middle column shows the new (default) syntax, and the right column |
|
1104 |
shows a special syntax. The latter is only meaningful for latex output |
|
1105 |
and has to be activated explicitly by setting the print mode to |
|
21502 | 1106 |
@{text latex_sum} (e.g.\ via @{text "mode = latex_sum"} in |
15056 | 1107 |
antiquotations). It is not the default \LaTeX\ output because it only |
1108 |
works well with italic-style formulae, not tt-style. |
|
15052 | 1109 |
|
1110 |
Note that for uniformity on @{typ nat} it is better to use |
|
1111 |
@{term"\<Sum>x::nat=0..<n. e"} rather than @{text"\<Sum>x<n. e"}: @{text setsum} may |
|
1112 |
not provide all lemmas available for @{term"{m..<n}"} also in the |
|
1113 |
special form for @{term"{..<n}"}. *} |
|
1114 |
||
15542 | 1115 |
text{* This congruence rule should be used for sums over intervals as |
1116 |
the standard theorem @{text[source]setsum_cong} does not work well |
|
1117 |
with the simplifier who adds the unsimplified premise @{term"x:B"} to |
|
1118 |
the context. *} |
|
1119 |
||
1120 |
lemma setsum_ivl_cong: |
|
1121 |
"\<lbrakk>a = c; b = d; !!x. \<lbrakk> c \<le> x; x < d \<rbrakk> \<Longrightarrow> f x = g x \<rbrakk> \<Longrightarrow> |
|
1122 |
setsum f {a..<b} = setsum g {c..<d}" |
|
1123 |
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
|
1124 |
|
16041 | 1125 |
(* FIXME why are the following simp rules but the corresponding eqns |
1126 |
on intervals are not? *) |
|
1127 |
||
16052 | 1128 |
lemma setsum_atMost_Suc[simp]: "(\<Sum>i \<le> Suc n. f i) = (\<Sum>i \<le> n. f i) + f(Suc n)" |
1129 |
by (simp add:atMost_Suc add_ac) |
|
1130 |
||
16041 | 1131 |
lemma setsum_lessThan_Suc[simp]: "(\<Sum>i < Suc n. f i) = (\<Sum>i < n. f i) + f n" |
1132 |
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
|
1133 |
|
15911 | 1134 |
lemma setsum_cl_ivl_Suc[simp]: |
15561 | 1135 |
"setsum f {m..Suc n} = (if Suc n < m then 0 else setsum f {m..n} + f(Suc n))" |
1136 |
by (auto simp:add_ac atLeastAtMostSuc_conv) |
|
1137 |
||
15911 | 1138 |
lemma setsum_op_ivl_Suc[simp]: |
15561 | 1139 |
"setsum f {m..<Suc n} = (if n < m then 0 else setsum f {m..<n} + f(n))" |
1140 |
by (auto simp:add_ac atLeastLessThanSuc) |
|
16041 | 1141 |
(* |
15561 | 1142 |
lemma setsum_cl_ivl_add_one_nat: "(n::nat) <= m + 1 ==> |
1143 |
(\<Sum>i=n..m+1. f i) = (\<Sum>i=n..m. f i) + f(m + 1)" |
|
1144 |
by (auto simp:add_ac atLeastAtMostSuc_conv) |
|
16041 | 1145 |
*) |
28068 | 1146 |
|
1147 |
lemma setsum_head: |
|
1148 |
fixes n :: nat |
|
1149 |
assumes mn: "m <= n" |
|
1150 |
shows "(\<Sum>x\<in>{m..n}. P x) = P m + (\<Sum>x\<in>{m<..n}. P x)" (is "?lhs = ?rhs") |
|
1151 |
proof - |
|
1152 |
from mn |
|
1153 |
have "{m..n} = {m} \<union> {m<..n}" |
|
1154 |
by (auto intro: ivl_disj_un_singleton) |
|
1155 |
hence "?lhs = (\<Sum>x\<in>{m} \<union> {m<..n}. P x)" |
|
1156 |
by (simp add: atLeast0LessThan) |
|
1157 |
also have "\<dots> = ?rhs" by simp |
|
1158 |
finally show ?thesis . |
|
1159 |
qed |
|
1160 |
||
1161 |
lemma setsum_head_Suc: |
|
1162 |
"m \<le> n \<Longrightarrow> setsum f {m..n} = f m + setsum f {Suc m..n}" |
|
1163 |
by (simp add: setsum_head atLeastSucAtMost_greaterThanAtMost) |
|
1164 |
||
1165 |
lemma setsum_head_upt_Suc: |
|
1166 |
"m < n \<Longrightarrow> setsum f {m..<n} = f m + setsum f {Suc m..<n}" |
|
30079
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
29960
diff
changeset
|
1167 |
apply(insert setsum_head_Suc[of m "n - Suc 0" f]) |
29667 | 1168 |
apply (simp add: atLeastLessThanSuc_atLeastAtMost[symmetric] algebra_simps) |
28068 | 1169 |
done |
1170 |
||
31501 | 1171 |
lemma setsum_ub_add_nat: assumes "(m::nat) \<le> n + 1" |
1172 |
shows "setsum f {m..n + p} = setsum f {m..n} + setsum f {n + 1..n + p}" |
|
1173 |
proof- |
|
1174 |
have "{m .. n+p} = {m..n} \<union> {n+1..n+p}" using `m \<le> n+1` by auto |
|
1175 |
thus ?thesis by (auto simp: ivl_disj_int setsum_Un_disjoint |
|
1176 |
atLeastSucAtMost_greaterThanAtMost) |
|
1177 |
qed |
|
28068 | 1178 |
|
15539 | 1179 |
lemma setsum_add_nat_ivl: "\<lbrakk> m \<le> n; n \<le> p \<rbrakk> \<Longrightarrow> |
1180 |
setsum f {m..<n} + setsum f {n..<p} = setsum f {m..<p::nat}" |
|
1181 |
by (simp add:setsum_Un_disjoint[symmetric] ivl_disj_int ivl_disj_un) |
|
1182 |
||
1183 |
lemma setsum_diff_nat_ivl: |
|
1184 |
fixes f :: "nat \<Rightarrow> 'a::ab_group_add" |
|
1185 |
shows "\<lbrakk> m \<le> n; n \<le> p \<rbrakk> \<Longrightarrow> |
|
1186 |
setsum f {m..<p} - setsum f {m..<n} = setsum f {n..<p}" |
|
1187 |
using setsum_add_nat_ivl [of m n p f,symmetric] |
|
1188 |
apply (simp add: add_ac) |
|
1189 |
done |
|
1190 |
||
31505 | 1191 |
lemma setsum_natinterval_difff: |
1192 |
fixes f:: "nat \<Rightarrow> ('a::ab_group_add)" |
|
1193 |
shows "setsum (\<lambda>k. f k - f(k + 1)) {(m::nat) .. n} = |
|
1194 |
(if m <= n then f m - f(n + 1) else 0)" |
|
1195 |
by (induct n, auto simp add: algebra_simps not_le le_Suc_eq) |
|
1196 |
||
44008 | 1197 |
lemma setsum_restrict_set': |
1198 |
"finite A \<Longrightarrow> setsum f {x \<in> A. x \<in> B} = (\<Sum>x\<in>A. if x \<in> B then f x else 0)" |
|
1199 |
by (simp add: setsum_restrict_set [symmetric] Int_def) |
|
1200 |
||
1201 |
lemma setsum_restrict_set'': |
|
1202 |
"finite A \<Longrightarrow> setsum f {x \<in> A. P x} = (\<Sum>x\<in>A. if P x then f x else 0)" |
|
1203 |
by (simp add: setsum_restrict_set' [of A f "{x. P x}", simplified mem_Collect_eq]) |
|
31509 | 1204 |
|
1205 |
lemma setsum_setsum_restrict: |
|
44008 | 1206 |
"finite S \<Longrightarrow> finite T \<Longrightarrow> |
1207 |
setsum (\<lambda>x. setsum (\<lambda>y. f x y) {y. y \<in> T \<and> R x y}) S = setsum (\<lambda>y. setsum (\<lambda>x. f x y) {x. x \<in> S \<and> R x y}) T" |
|
1208 |
by (simp add: setsum_restrict_set'') (rule setsum_commute) |
|
31509 | 1209 |
|
1210 |
lemma setsum_image_gen: assumes fS: "finite S" |
|
1211 |
shows "setsum g S = setsum (\<lambda>y. setsum g {x. x \<in> S \<and> f x = y}) (f ` S)" |
|
1212 |
proof- |
|
1213 |
{ fix x assume "x \<in> S" then have "{y. y\<in> f`S \<and> f x = y} = {f x}" by auto } |
|
1214 |
hence "setsum g S = setsum (\<lambda>x. setsum (\<lambda>y. g x) {y. y\<in> f`S \<and> f x = y}) S" |
|
1215 |
by simp |
|
1216 |
also have "\<dots> = setsum (\<lambda>y. setsum g {x. x \<in> S \<and> f x = y}) (f ` S)" |
|
1217 |
by (rule setsum_setsum_restrict[OF fS finite_imageI[OF fS]]) |
|
1218 |
finally show ?thesis . |
|
1219 |
qed |
|
1220 |
||
35171
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1221 |
lemma setsum_le_included: |
36307
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1222 |
fixes f :: "'a \<Rightarrow> 'b::ordered_comm_monoid_add" |
35171
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1223 |
assumes "finite s" "finite t" |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1224 |
and "\<forall>y\<in>t. 0 \<le> g y" "(\<forall>x\<in>s. \<exists>y\<in>t. i y = x \<and> f x \<le> g y)" |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1225 |
shows "setsum f s \<le> setsum g t" |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1226 |
proof - |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1227 |
have "setsum f s \<le> setsum (\<lambda>y. setsum g {x. x\<in>t \<and> i x = y}) s" |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1228 |
proof (rule setsum_mono) |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1229 |
fix y assume "y \<in> s" |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1230 |
with assms obtain z where z: "z \<in> t" "y = i z" "f y \<le> g z" by auto |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1231 |
with assms show "f y \<le> setsum g {x \<in> t. i x = y}" (is "?A y \<le> ?B y") |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1232 |
using order_trans[of "?A (i z)" "setsum g {z}" "?B (i z)", intro] |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1233 |
by (auto intro!: setsum_mono2) |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1234 |
qed |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1235 |
also have "... \<le> setsum (\<lambda>y. setsum g {x. x\<in>t \<and> i x = y}) (i ` t)" |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1236 |
using assms(2-4) by (auto intro!: setsum_mono2 setsum_nonneg) |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1237 |
also have "... \<le> setsum g t" |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1238 |
using assms by (auto simp: setsum_image_gen[symmetric]) |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1239 |
finally show ?thesis . |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1240 |
qed |
28f824c7addc
Moved setprod_mono, abs_setprod and setsum_le_included to the Main image. Is used in Multivariate_Analysis.
hoelzl
parents:
35115
diff
changeset
|
1241 |
|
31509 | 1242 |
lemma setsum_multicount_gen: |
1243 |
assumes "finite s" "finite t" "\<forall>j\<in>t. (card {i\<in>s. R i j} = k j)" |
|
1244 |
shows "setsum (\<lambda>i. (card {j\<in>t. R i j})) s = setsum k t" (is "?l = ?r") |
|
1245 |
proof- |
|
1246 |
have "?l = setsum (\<lambda>i. setsum (\<lambda>x.1) {j\<in>t. R i j}) s" by auto |
|
1247 |
also have "\<dots> = ?r" unfolding setsum_setsum_restrict[OF assms(1-2)] |
|
1248 |
using assms(3) by auto |
|
1249 |
finally show ?thesis . |
|
1250 |
qed |
|
1251 |
||
1252 |
lemma setsum_multicount: |
|
1253 |
assumes "finite S" "finite T" "\<forall>j\<in>T. (card {i\<in>S. R i j} = k)" |
|
1254 |
shows "setsum (\<lambda>i. card {j\<in>T. R i j}) S = k * card T" (is "?l = ?r") |
|
1255 |
proof- |
|
1256 |
have "?l = setsum (\<lambda>i. k) T" by(rule setsum_multicount_gen)(auto simp:assms) |
|
35216 | 1257 |
also have "\<dots> = ?r" by(simp add: mult_commute) |
31509 | 1258 |
finally show ?thesis by auto |
1259 |
qed |
|
1260 |
||
28068 | 1261 |
|
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1262 |
subsection{* Shifting bounds *} |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1263 |
|
15539 | 1264 |
lemma setsum_shift_bounds_nat_ivl: |
1265 |
"setsum f {m+k..<n+k} = setsum (%i. f(i + k)){m..<n::nat}" |
|
1266 |
by (induct "n", auto simp:atLeastLessThanSuc) |
|
1267 |
||
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1268 |
lemma setsum_shift_bounds_cl_nat_ivl: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1269 |
"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
|
1270 |
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
|
1271 |
apply (simp add:image_add_atLeastAtMost o_def) |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1272 |
done |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1273 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1274 |
corollary setsum_shift_bounds_cl_Suc_ivl: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1275 |
"setsum f {Suc m..Suc n} = setsum (%i. f(Suc i)){m..n}" |
30079
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
29960
diff
changeset
|
1276 |
by (simp add:setsum_shift_bounds_cl_nat_ivl[where k="Suc 0", simplified]) |
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1277 |
|
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1278 |
corollary setsum_shift_bounds_Suc_ivl: |
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1279 |
"setsum f {Suc m..<Suc n} = setsum (%i. f(Suc i)){m..<n}" |
30079
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
29960
diff
changeset
|
1280 |
by (simp add:setsum_shift_bounds_nat_ivl[where k="Suc 0", simplified]) |
16733
236dfafbeb63
linear arithmetic now takes "&" in assumptions apart.
nipkow
parents:
16102
diff
changeset
|
1281 |
|
28068 | 1282 |
lemma setsum_shift_lb_Suc0_0: |
1283 |
"f(0::nat) = (0::nat) \<Longrightarrow> setsum f {Suc 0..k} = setsum f {0..k}" |
|
1284 |
by(simp add:setsum_head_Suc) |
|
19106
6e6b5b1fdc06
* added Library/ASeries (sum of arithmetic series with instantiation to nat and int)
kleing
parents:
19022
diff
changeset
|
1285 |
|
28068 | 1286 |
lemma setsum_shift_lb_Suc0_0_upt: |
1287 |
"f(0::nat) = 0 \<Longrightarrow> setsum f {Suc 0..<k} = setsum f {0..<k}" |
|
1288 |
apply(cases k)apply simp |
|
1289 |
apply(simp add:setsum_head_upt_Suc) |
|
1290 |
done |
|
19022
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1291 |
|
17149
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
16733
diff
changeset
|
1292 |
subsection {* The formula for geometric sums *} |
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
16733
diff
changeset
|
1293 |
|
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
16733
diff
changeset
|
1294 |
lemma geometric_sum: |
36307
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1295 |
assumes "x \<noteq> 1" |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1296 |
shows "(\<Sum>i=0..<n. x ^ i) = (x ^ n - 1) / (x - 1::'a::field)" |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1297 |
proof - |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1298 |
from assms obtain y where "y = x - 1" and "y \<noteq> 0" by simp_all |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1299 |
moreover have "(\<Sum>i=0..<n. (y + 1) ^ i) = ((y + 1) ^ n - 1) / y" |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1300 |
proof (induct n) |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1301 |
case 0 then show ?case by simp |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1302 |
next |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1303 |
case (Suc n) |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1304 |
moreover with `y \<noteq> 0` have "(1 + y) ^ n = (y * inverse y) * (1 + y) ^ n" by simp |
36350 | 1305 |
ultimately show ?case by (simp add: field_simps divide_inverse) |
36307
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1306 |
qed |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1307 |
ultimately show ?thesis by simp |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1308 |
qed |
1732232f9b27
sharpened constraint (c.f. 4e7f5b22dd7d); explicit is better than implicit
haftmann
parents:
35828
diff
changeset
|
1309 |
|
17149
e2b19c92ef51
Lemmas on dvd, power and finite summation added or strengthened.
ballarin
parents:
16733
diff
changeset
|
1310 |
|
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1311 |
subsection {* The formula for arithmetic sums *} |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1312 |
|
47222
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1313 |
lemma gauss_sum: |
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1314 |
"(2::'a::comm_semiring_1)*(\<Sum>i\<in>{1..n}. of_nat i) = |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1315 |
of_nat n*((of_nat n)+1)" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1316 |
proof (induct n) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1317 |
case 0 |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1318 |
show ?case by simp |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1319 |
next |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1320 |
case (Suc n) |
47222
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1321 |
then show ?case |
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1322 |
by (simp add: algebra_simps add: one_add_one [symmetric] del: one_add_one) |
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1323 |
(* FIXME: make numeral cancellation simprocs work for semirings *) |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1324 |
qed |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1325 |
|
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1326 |
theorem arith_series_general: |
47222
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1327 |
"(2::'a::comm_semiring_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
|
1328 |
of_nat n * (a + (a + of_nat(n - 1)*d))" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1329 |
proof cases |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1330 |
assume ngt1: "n > 1" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1331 |
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
|
1332 |
have |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1333 |
"(\<Sum>i\<in>{..<n}. a+?I i*d) = |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1334 |
((\<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
|
1335 |
by (rule setsum_addf) |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1336 |
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
|
1337 |
also from ngt1 have "\<dots> = (?n*a + d*(\<Sum>i\<in>{1..<n}. ?I i))" |
30079
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
29960
diff
changeset
|
1338 |
unfolding One_nat_def |
28068 | 1339 |
by (simp add: setsum_right_distrib atLeast0LessThan[symmetric] setsum_shift_lb_Suc0_0_upt mult_ac) |
47222
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1340 |
also have "2*\<dots> = 2*?n*a + d*2*(\<Sum>i\<in>{1..<n}. ?I i)" |
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1341 |
by (simp add: algebra_simps) |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1342 |
also from ngt1 have "{1..<n} = {1..n - 1}" |
28068 | 1343 |
by (cases n) (auto simp: atLeastLessThanSuc_atLeastAtMost) |
1344 |
also from ngt1 |
|
47222
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1345 |
have "2*?n*a + d*2*(\<Sum>i\<in>{1..n - 1}. ?I i) = (2*?n*a + d*?I (n - 1)*?I n)" |
30079
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
29960
diff
changeset
|
1346 |
by (simp only: mult_ac gauss_sum [of "n - 1"], unfold One_nat_def) |
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
|
1347 |
(simp add: mult_ac trans [OF add_commute of_nat_Suc [symmetric]]) |
47222
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1348 |
finally show ?thesis |
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1349 |
unfolding mult_2 by (simp add: algebra_simps) |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1350 |
next |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1351 |
assume "\<not>(n > 1)" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1352 |
hence "n = 1 \<or> n = 0" by auto |
47222
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1353 |
thus ?thesis by (auto simp: mult_2) |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1354 |
qed |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1355 |
|
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1356 |
lemma arith_series_nat: |
47222
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1357 |
"(2::nat) * (\<Sum>i\<in>{..<n}. a+i*d) = n * (a + (a+(n - 1)*d))" |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1358 |
proof - |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1359 |
have |
47222
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1360 |
"2 * (\<Sum>i\<in>{..<n::nat}. a + of_nat(i)*d) = |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1361 |
of_nat(n) * (a + (a + of_nat(n - 1)*d))" |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1362 |
by (rule arith_series_general) |
30079
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
29960
diff
changeset
|
1363 |
thus ?thesis |
35216 | 1364 |
unfolding One_nat_def by auto |
19469
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1365 |
qed |
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1366 |
|
958d2f2dd8d4
moved arithmetic series to geometric series in SetInterval
kleing
parents:
19376
diff
changeset
|
1367 |
lemma arith_series_int: |
47222
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1368 |
"2 * (\<Sum>i\<in>{..<n}. a + int i * d) = int n * (a + (a + int(n - 1)*d))" |
1b7c909a6fad
rephrase lemmas about arithmetic series using numeral '2'
huffman
parents:
47108
diff
changeset
|
1369 |
by (fact arith_series_general) (* FIXME: duplicate *) |
15418
e28853da5df5
removed two looping simplifications in SetInterval.thy; deleted the .ML file
paulson
parents:
15402
diff
changeset
|
1370 |
|
19022
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1371 |
lemma sum_diff_distrib: |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1372 |
fixes P::"nat\<Rightarrow>nat" |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1373 |
shows |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1374 |
"\<forall>x. Q x \<le> P x \<Longrightarrow> |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1375 |
(\<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
|
1376 |
proof (induct n) |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1377 |
case 0 show ?case by simp |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1378 |
next |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1379 |
case (Suc n) |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1380 |
|
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1381 |
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
|
1382 |
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
|
1383 |
|
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1384 |
from Suc have "?lhs = ?rhs" by simp |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1385 |
moreover |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1386 |
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
|
1387 |
moreover |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1388 |
from Suc have |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1389 |
"(\<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
|
1390 |
by (subst diff_diff_left[symmetric], |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1391 |
subst diff_add_assoc2) |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1392 |
(auto simp: diff_add_assoc2 intro: setsum_mono) |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1393 |
ultimately |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1394 |
show ?case by simp |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1395 |
qed |
0e6ec4fd204c
* moved ThreeDivides from Isar_examples to better suited HOL/ex
kleing
parents:
17719
diff
changeset
|
1396 |
|
29960
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1397 |
subsection {* Products indexed over intervals *} |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1398 |
|
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1399 |
syntax |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1400 |
"_from_to_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(PROD _ = _.._./ _)" [0,0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1401 |
"_from_upto_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(PROD _ = _..<_./ _)" [0,0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1402 |
"_upt_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(PROD _<_./ _)" [0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1403 |
"_upto_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(PROD _<=_./ _)" [0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1404 |
syntax (xsymbols) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1405 |
"_from_to_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Prod>_ = _.._./ _)" [0,0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1406 |
"_from_upto_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Prod>_ = _..<_./ _)" [0,0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1407 |
"_upt_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Prod>_<_./ _)" [0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1408 |
"_upto_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Prod>_\<le>_./ _)" [0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1409 |
syntax (HTML output) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1410 |
"_from_to_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Prod>_ = _.._./ _)" [0,0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1411 |
"_from_upto_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Prod>_ = _..<_./ _)" [0,0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1412 |
"_upt_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Prod>_<_./ _)" [0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1413 |
"_upto_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" ("(3\<Prod>_\<le>_./ _)" [0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1414 |
syntax (latex_prod output) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1415 |
"_from_to_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1416 |
("(3\<^raw:$\prod_{>_ = _\<^raw:}^{>_\<^raw:}$> _)" [0,0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1417 |
"_from_upto_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1418 |
("(3\<^raw:$\prod_{>_ = _\<^raw:}^{<>_\<^raw:}$> _)" [0,0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1419 |
"_upt_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1420 |
("(3\<^raw:$\prod_{>_ < _\<^raw:}$> _)" [0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1421 |
"_upto_setprod" :: "idt \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'b" |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1422 |
("(3\<^raw:$\prod_{>_ \<le> _\<^raw:}$> _)" [0,0,10] 10) |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1423 |
|
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1424 |
translations |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1425 |
"\<Prod>x=a..b. t" == "CONST setprod (%x. t) {a..b}" |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1426 |
"\<Prod>x=a..<b. t" == "CONST setprod (%x. t) {a..<b}" |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1427 |
"\<Prod>i\<le>n. t" == "CONST setprod (\<lambda>i. t) {..n}" |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1428 |
"\<Prod>i<n. t" == "CONST setprod (\<lambda>i. t) {..<n}" |
9d5c6f376768
Syntactic support for products over set intervals
paulson
parents:
29920
diff
changeset
|
1429 |
|
33318
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1430 |
subsection {* Transfer setup *} |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1431 |
|
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1432 |
lemma transfer_nat_int_set_functions: |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1433 |
"{..n} = nat ` {0..int n}" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1434 |
"{m..n} = nat ` {int m..int n}" (* need all variants of these! *) |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1435 |
apply (auto simp add: image_def) |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1436 |
apply (rule_tac x = "int x" in bexI) |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1437 |
apply auto |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1438 |
apply (rule_tac x = "int x" in bexI) |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1439 |
apply auto |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1440 |
done |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1441 |
|
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1442 |
lemma transfer_nat_int_set_function_closures: |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1443 |
"x >= 0 \<Longrightarrow> nat_set {x..y}" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1444 |
by (simp add: nat_set_def) |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1445 |
|
35644 | 1446 |
declare transfer_morphism_nat_int[transfer add |
33318
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1447 |
return: transfer_nat_int_set_functions |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1448 |
transfer_nat_int_set_function_closures |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1449 |
] |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1450 |
|
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1451 |
lemma transfer_int_nat_set_functions: |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1452 |
"is_nat m \<Longrightarrow> is_nat n \<Longrightarrow> {m..n} = int ` {nat m..nat n}" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1453 |
by (simp only: is_nat_def transfer_nat_int_set_functions |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1454 |
transfer_nat_int_set_function_closures |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1455 |
transfer_nat_int_set_return_embed nat_0_le |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1456 |
cong: transfer_nat_int_set_cong) |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1457 |
|
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1458 |
lemma transfer_int_nat_set_function_closures: |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1459 |
"is_nat x \<Longrightarrow> nat_set {x..y}" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1460 |
by (simp only: transfer_nat_int_set_function_closures is_nat_def) |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1461 |
|
35644 | 1462 |
declare transfer_morphism_int_nat[transfer add |
33318
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1463 |
return: transfer_int_nat_set_functions |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1464 |
transfer_int_nat_set_function_closures |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1465 |
] |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
33044
diff
changeset
|
1466 |
|
8924 | 1467 |
end |