author | nipkow |
Mon, 17 Aug 1998 11:00:27 +0200 | |
changeset 5322 | 504b129e0502 |
parent 5318 | 72bf8039b53f |
child 5355 | a9f71e87f53e |
permissions | -rw-r--r-- |
1465 | 1 |
(* Title: HOL/List |
923 | 2 |
ID: $Id$ |
1465 | 3 |
Author: Tobias Nipkow |
923 | 4 |
Copyright 1994 TU Muenchen |
5 |
||
6 |
List lemmas |
|
7 |
*) |
|
8 |
||
4935 | 9 |
Goal "!x. xs ~= x#xs"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
10 |
by (induct_tac "xs" 1); |
5316 | 11 |
by Auto_tac; |
2608 | 12 |
qed_spec_mp "not_Cons_self"; |
3574 | 13 |
bind_thm("not_Cons_self2",not_Cons_self RS not_sym); |
14 |
Addsimps [not_Cons_self,not_Cons_self2]; |
|
923 | 15 |
|
4935 | 16 |
Goal "(xs ~= []) = (? y ys. xs = y#ys)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
17 |
by (induct_tac "xs" 1); |
5316 | 18 |
by Auto_tac; |
923 | 19 |
qed "neq_Nil_conv"; |
20 |
||
4830 | 21 |
(* Induction over the length of a list: *) |
4935 | 22 |
val [prem] = Goal |
4911 | 23 |
"(!!xs. (!ys. length ys < length xs --> P ys) ==> P xs) ==> P(xs)"; |
5132 | 24 |
by (rtac measure_induct 1 THEN etac prem 1); |
4911 | 25 |
qed "length_induct"; |
26 |
||
923 | 27 |
|
3468 | 28 |
(** "lists": the list-forming operator over sets **) |
3342
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
29 |
|
5043 | 30 |
Goalw lists.defs "A<=B ==> lists A <= lists B"; |
3342
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
31 |
by (rtac lfp_mono 1); |
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
32 |
by (REPEAT (ares_tac basic_monos 1)); |
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
33 |
qed "lists_mono"; |
3196 | 34 |
|
3468 | 35 |
val listsE = lists.mk_cases list.simps "x#l : lists A"; |
36 |
AddSEs [listsE]; |
|
37 |
AddSIs lists.intrs; |
|
38 |
||
5043 | 39 |
Goal "l: lists A ==> l: lists B --> l: lists (A Int B)"; |
3468 | 40 |
by (etac lists.induct 1); |
41 |
by (ALLGOALS Blast_tac); |
|
42 |
qed_spec_mp "lists_IntI"; |
|
43 |
||
4935 | 44 |
Goal "lists (A Int B) = lists A Int lists B"; |
4423 | 45 |
by (rtac (mono_Int RS equalityI) 1); |
4089 | 46 |
by (simp_tac (simpset() addsimps [mono_def, lists_mono]) 1); |
47 |
by (blast_tac (claset() addSIs [lists_IntI]) 1); |
|
3468 | 48 |
qed "lists_Int_eq"; |
49 |
Addsimps [lists_Int_eq]; |
|
50 |
||
3196 | 51 |
|
4643 | 52 |
(** Case analysis **) |
53 |
section "Case analysis"; |
|
2608 | 54 |
|
4935 | 55 |
val prems = Goal "[| P([]); !!x xs. P(x#xs) |] ==> P(xs)"; |
3457 | 56 |
by (induct_tac "xs" 1); |
57 |
by (REPEAT(resolve_tac prems 1)); |
|
2608 | 58 |
qed "list_cases"; |
59 |
||
4935 | 60 |
Goal "(xs=[] --> P([])) & (!y ys. xs=y#ys --> P(y#ys)) --> P(xs)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
61 |
by (induct_tac "xs" 1); |
2891 | 62 |
by (Blast_tac 1); |
63 |
by (Blast_tac 1); |
|
2608 | 64 |
bind_thm("list_eq_cases", |
65 |
impI RSN (2,allI RSN (2,allI RSN (2,impI RS (conjI RS (result() RS mp)))))); |
|
66 |
||
3860 | 67 |
(** length **) |
68 |
(* needs to come before "@" because of thm append_eq_append_conv *) |
|
69 |
||
70 |
section "length"; |
|
71 |
||
4935 | 72 |
Goal "length(xs@ys) = length(xs)+length(ys)"; |
3860 | 73 |
by (induct_tac "xs" 1); |
5316 | 74 |
by Auto_tac; |
3860 | 75 |
qed"length_append"; |
76 |
Addsimps [length_append]; |
|
77 |
||
5129 | 78 |
Goal "length (map f xs) = length xs"; |
79 |
by (induct_tac "xs" 1); |
|
5316 | 80 |
by Auto_tac; |
3860 | 81 |
qed "length_map"; |
82 |
Addsimps [length_map]; |
|
83 |
||
4935 | 84 |
Goal "length(rev xs) = length(xs)"; |
3860 | 85 |
by (induct_tac "xs" 1); |
5316 | 86 |
by Auto_tac; |
3860 | 87 |
qed "length_rev"; |
88 |
Addsimps [length_rev]; |
|
89 |
||
5043 | 90 |
Goal "xs ~= [] ==> length(tl xs) = (length xs) - 1"; |
4423 | 91 |
by (exhaust_tac "xs" 1); |
5316 | 92 |
by Auto_tac; |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
93 |
qed "length_tl"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
94 |
Addsimps [length_tl]; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
95 |
|
4935 | 96 |
Goal "(length xs = 0) = (xs = [])"; |
3860 | 97 |
by (induct_tac "xs" 1); |
5316 | 98 |
by Auto_tac; |
3860 | 99 |
qed "length_0_conv"; |
100 |
AddIffs [length_0_conv]; |
|
101 |
||
4935 | 102 |
Goal "(0 = length xs) = (xs = [])"; |
3860 | 103 |
by (induct_tac "xs" 1); |
5316 | 104 |
by Auto_tac; |
3860 | 105 |
qed "zero_length_conv"; |
106 |
AddIffs [zero_length_conv]; |
|
107 |
||
4935 | 108 |
Goal "(0 < length xs) = (xs ~= [])"; |
3860 | 109 |
by (induct_tac "xs" 1); |
5316 | 110 |
by Auto_tac; |
3860 | 111 |
qed "length_greater_0_conv"; |
112 |
AddIffs [length_greater_0_conv]; |
|
113 |
||
5296 | 114 |
Goal "(length xs = Suc n) = (? y ys. xs = y#ys & length ys = n)"; |
115 |
by (induct_tac "xs" 1); |
|
116 |
by (Auto_tac); |
|
117 |
qed "length_Suc_conv"; |
|
118 |
AddIffs [length_Suc_conv]; |
|
119 |
||
923 | 120 |
(** @ - append **) |
121 |
||
3467 | 122 |
section "@ - append"; |
123 |
||
4935 | 124 |
Goal "(xs@ys)@zs = xs@(ys@zs)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
125 |
by (induct_tac "xs" 1); |
5316 | 126 |
by Auto_tac; |
923 | 127 |
qed "append_assoc"; |
2512 | 128 |
Addsimps [append_assoc]; |
923 | 129 |
|
4935 | 130 |
Goal "xs @ [] = xs"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
131 |
by (induct_tac "xs" 1); |
5316 | 132 |
by Auto_tac; |
923 | 133 |
qed "append_Nil2"; |
2512 | 134 |
Addsimps [append_Nil2]; |
923 | 135 |
|
4935 | 136 |
Goal "(xs@ys = []) = (xs=[] & ys=[])"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
137 |
by (induct_tac "xs" 1); |
5316 | 138 |
by Auto_tac; |
2608 | 139 |
qed "append_is_Nil_conv"; |
140 |
AddIffs [append_is_Nil_conv]; |
|
141 |
||
4935 | 142 |
Goal "([] = xs@ys) = (xs=[] & ys=[])"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
143 |
by (induct_tac "xs" 1); |
5316 | 144 |
by Auto_tac; |
2608 | 145 |
qed "Nil_is_append_conv"; |
146 |
AddIffs [Nil_is_append_conv]; |
|
923 | 147 |
|
4935 | 148 |
Goal "(xs @ ys = xs) = (ys=[])"; |
3574 | 149 |
by (induct_tac "xs" 1); |
5316 | 150 |
by Auto_tac; |
3574 | 151 |
qed "append_self_conv"; |
152 |
||
4935 | 153 |
Goal "(xs = xs @ ys) = (ys=[])"; |
3574 | 154 |
by (induct_tac "xs" 1); |
5316 | 155 |
by Auto_tac; |
3574 | 156 |
qed "self_append_conv"; |
157 |
AddIffs [append_self_conv,self_append_conv]; |
|
158 |
||
4935 | 159 |
Goal "!ys. length xs = length ys | length us = length vs \ |
3860 | 160 |
\ --> (xs@us = ys@vs) = (xs=ys & us=vs)"; |
4423 | 161 |
by (induct_tac "xs" 1); |
162 |
by (rtac allI 1); |
|
163 |
by (exhaust_tac "ys" 1); |
|
164 |
by (Asm_simp_tac 1); |
|
165 |
by (fast_tac (claset() addIs [less_add_Suc2] addss simpset() |
|
3860 | 166 |
addEs [less_not_refl2 RSN (2,rev_notE)]) 1); |
4423 | 167 |
by (rtac allI 1); |
168 |
by (exhaust_tac "ys" 1); |
|
5296 | 169 |
by (fast_tac (claset() addIs [less_add_Suc2] |
170 |
addss (simpset() delsimps [length_Suc_conv]) |
|
171 |
addEs [(less_not_refl2 RS not_sym) RSN (2,rev_notE)]) 1); |
|
4423 | 172 |
by (Asm_simp_tac 1); |
3860 | 173 |
qed_spec_mp "append_eq_append_conv"; |
174 |
Addsimps [append_eq_append_conv]; |
|
175 |
||
4935 | 176 |
Goal "(xs @ ys = xs @ zs) = (ys=zs)"; |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
177 |
by (Simp_tac 1); |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
178 |
qed "same_append_eq"; |
3860 | 179 |
|
4935 | 180 |
Goal "(xs @ [x] = ys @ [y]) = (xs = ys & x = y)"; |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
181 |
by (Simp_tac 1); |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
182 |
qed "append1_eq_conv"; |
2608 | 183 |
|
4935 | 184 |
Goal "(ys @ xs = zs @ xs) = (ys=zs)"; |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
185 |
by (Simp_tac 1); |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
186 |
qed "append_same_eq"; |
2608 | 187 |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
188 |
AddSIs |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
189 |
[same_append_eq RS iffD2, append1_eq_conv RS iffD2, append_same_eq RS iffD2]; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
190 |
AddSDs |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
191 |
[same_append_eq RS iffD1, append1_eq_conv RS iffD1, append_same_eq RS iffD1]; |
3571 | 192 |
|
4935 | 193 |
Goal "(xs @ ys = ys) = (xs=[])"; |
5132 | 194 |
by (cut_inst_tac [("zs","[]")] append_same_eq 1); |
5316 | 195 |
by Auto_tac; |
4647 | 196 |
qed "append_self_conv2"; |
197 |
||
4935 | 198 |
Goal "(ys = xs @ ys) = (xs=[])"; |
5132 | 199 |
by (simp_tac (simpset() addsimps |
4647 | 200 |
[simplify (simpset()) (read_instantiate[("ys","[]")]append_same_eq)]) 1); |
5132 | 201 |
by (Blast_tac 1); |
4647 | 202 |
qed "self_append_conv2"; |
203 |
AddIffs [append_self_conv2,self_append_conv2]; |
|
204 |
||
4935 | 205 |
Goal "xs ~= [] --> hd xs # tl xs = xs"; |
3457 | 206 |
by (induct_tac "xs" 1); |
5316 | 207 |
by Auto_tac; |
2608 | 208 |
qed_spec_mp "hd_Cons_tl"; |
209 |
Addsimps [hd_Cons_tl]; |
|
923 | 210 |
|
4935 | 211 |
Goal "hd(xs@ys) = (if xs=[] then hd ys else hd xs)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
212 |
by (induct_tac "xs" 1); |
5316 | 213 |
by Auto_tac; |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
214 |
qed "hd_append"; |
923 | 215 |
|
5043 | 216 |
Goal "xs ~= [] ==> hd(xs @ ys) = hd xs"; |
4089 | 217 |
by (asm_simp_tac (simpset() addsimps [hd_append] |
5183 | 218 |
addsplits [list.split]) 1); |
3571 | 219 |
qed "hd_append2"; |
220 |
Addsimps [hd_append2]; |
|
221 |
||
4935 | 222 |
Goal "tl(xs@ys) = (case xs of [] => tl(ys) | z#zs => zs@ys)"; |
5183 | 223 |
by (simp_tac (simpset() addsplits [list.split]) 1); |
2608 | 224 |
qed "tl_append"; |
225 |
||
5043 | 226 |
Goal "xs ~= [] ==> tl(xs @ ys) = (tl xs) @ ys"; |
4089 | 227 |
by (asm_simp_tac (simpset() addsimps [tl_append] |
5183 | 228 |
addsplits [list.split]) 1); |
3571 | 229 |
qed "tl_append2"; |
230 |
Addsimps [tl_append2]; |
|
231 |
||
5272 | 232 |
(* trivial rules for solving @-equations automatically *) |
233 |
||
234 |
Goal "xs = ys ==> xs = [] @ ys"; |
|
5318 | 235 |
by (Asm_simp_tac 1); |
5272 | 236 |
qed "eq_Nil_appendI"; |
237 |
||
238 |
Goal "[| x#xs1 = ys; xs = xs1 @ zs |] ==> x#xs = ys@zs"; |
|
5318 | 239 |
by (dtac sym 1); |
240 |
by (Asm_simp_tac 1); |
|
5272 | 241 |
qed "Cons_eq_appendI"; |
242 |
||
243 |
Goal "[| xs@xs1 = zs; ys = xs1 @ us |] ==> xs@ys = zs@us"; |
|
5318 | 244 |
by (dtac sym 1); |
245 |
by (Asm_simp_tac 1); |
|
5272 | 246 |
qed "append_eq_appendI"; |
247 |
||
4830 | 248 |
|
2608 | 249 |
(** map **) |
250 |
||
3467 | 251 |
section "map"; |
252 |
||
5278 | 253 |
Goal "(!x. x : set xs --> f x = g x) --> map f xs = map g xs"; |
3457 | 254 |
by (induct_tac "xs" 1); |
5316 | 255 |
by Auto_tac; |
2608 | 256 |
bind_thm("map_ext", impI RS (allI RS (result() RS mp))); |
257 |
||
4935 | 258 |
Goal "map (%x. x) = (%xs. xs)"; |
2608 | 259 |
by (rtac ext 1); |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
260 |
by (induct_tac "xs" 1); |
5316 | 261 |
by Auto_tac; |
2608 | 262 |
qed "map_ident"; |
263 |
Addsimps[map_ident]; |
|
264 |
||
4935 | 265 |
Goal "map f (xs@ys) = map f xs @ map f ys"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
266 |
by (induct_tac "xs" 1); |
5316 | 267 |
by Auto_tac; |
2608 | 268 |
qed "map_append"; |
269 |
Addsimps[map_append]; |
|
270 |
||
4935 | 271 |
Goalw [o_def] "map (f o g) xs = map f (map g xs)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
272 |
by (induct_tac "xs" 1); |
5316 | 273 |
by Auto_tac; |
2608 | 274 |
qed "map_compose"; |
275 |
Addsimps[map_compose]; |
|
276 |
||
4935 | 277 |
Goal "rev(map f xs) = map f (rev xs)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
278 |
by (induct_tac "xs" 1); |
5316 | 279 |
by Auto_tac; |
2608 | 280 |
qed "rev_map"; |
281 |
||
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
282 |
(* a congruence rule for map: *) |
5278 | 283 |
Goal "(xs=ys) --> (!x. x : set ys --> f x = g x) --> map f xs = map g ys"; |
4423 | 284 |
by (rtac impI 1); |
285 |
by (hyp_subst_tac 1); |
|
286 |
by (induct_tac "ys" 1); |
|
5316 | 287 |
by Auto_tac; |
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
288 |
val lemma = result(); |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
289 |
bind_thm("map_cong",impI RSN (2,allI RSN (2,lemma RS mp RS mp))); |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
290 |
|
4935 | 291 |
Goal "(map f xs = []) = (xs = [])"; |
4423 | 292 |
by (induct_tac "xs" 1); |
5316 | 293 |
by Auto_tac; |
3860 | 294 |
qed "map_is_Nil_conv"; |
295 |
AddIffs [map_is_Nil_conv]; |
|
296 |
||
4935 | 297 |
Goal "([] = map f xs) = (xs = [])"; |
4423 | 298 |
by (induct_tac "xs" 1); |
5316 | 299 |
by Auto_tac; |
3860 | 300 |
qed "Nil_is_map_conv"; |
301 |
AddIffs [Nil_is_map_conv]; |
|
302 |
||
303 |
||
1169 | 304 |
(** rev **) |
305 |
||
3467 | 306 |
section "rev"; |
307 |
||
4935 | 308 |
Goal "rev(xs@ys) = rev(ys) @ rev(xs)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
309 |
by (induct_tac "xs" 1); |
5316 | 310 |
by Auto_tac; |
1169 | 311 |
qed "rev_append"; |
2512 | 312 |
Addsimps[rev_append]; |
1169 | 313 |
|
4935 | 314 |
Goal "rev(rev l) = l"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
315 |
by (induct_tac "l" 1); |
5316 | 316 |
by Auto_tac; |
1169 | 317 |
qed "rev_rev_ident"; |
2512 | 318 |
Addsimps[rev_rev_ident]; |
1169 | 319 |
|
4935 | 320 |
Goal "(rev xs = []) = (xs = [])"; |
4423 | 321 |
by (induct_tac "xs" 1); |
5316 | 322 |
by Auto_tac; |
3860 | 323 |
qed "rev_is_Nil_conv"; |
324 |
AddIffs [rev_is_Nil_conv]; |
|
325 |
||
4935 | 326 |
Goal "([] = rev xs) = (xs = [])"; |
4423 | 327 |
by (induct_tac "xs" 1); |
5316 | 328 |
by Auto_tac; |
3860 | 329 |
qed "Nil_is_rev_conv"; |
330 |
AddIffs [Nil_is_rev_conv]; |
|
331 |
||
4935 | 332 |
val prems = Goal "[| P []; !!x xs. P xs ==> P(xs@[x]) |] ==> P xs"; |
5132 | 333 |
by (stac (rev_rev_ident RS sym) 1); |
4935 | 334 |
br(read_instantiate [("P","%xs. ?P(rev xs)")]list.induct)1; |
5132 | 335 |
by (ALLGOALS Simp_tac); |
336 |
by (resolve_tac prems 1); |
|
337 |
by (eresolve_tac prems 1); |
|
4935 | 338 |
qed "rev_induct"; |
339 |
||
5272 | 340 |
fun rev_induct_tac xs = res_inst_tac [("xs",xs)] rev_induct; |
341 |
||
4935 | 342 |
Goal "(xs = [] --> P) --> (!ys y. xs = ys@[y] --> P) --> P"; |
5132 | 343 |
by (res_inst_tac [("xs","xs")] rev_induct 1); |
5316 | 344 |
by Auto_tac; |
4935 | 345 |
bind_thm ("rev_exhaust", |
346 |
impI RSN (2,allI RSN (2,allI RSN (2,impI RS (result() RS mp RS mp))))); |
|
347 |
||
2608 | 348 |
|
923 | 349 |
(** mem **) |
350 |
||
3467 | 351 |
section "mem"; |
352 |
||
4935 | 353 |
Goal "x mem (xs@ys) = (x mem xs | x mem ys)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
354 |
by (induct_tac "xs" 1); |
5316 | 355 |
by Auto_tac; |
923 | 356 |
qed "mem_append"; |
2512 | 357 |
Addsimps[mem_append]; |
923 | 358 |
|
4935 | 359 |
Goal "x mem [x:xs. P(x)] = (x mem xs & P(x))"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
360 |
by (induct_tac "xs" 1); |
5316 | 361 |
by Auto_tac; |
923 | 362 |
qed "mem_filter"; |
2512 | 363 |
Addsimps[mem_filter]; |
923 | 364 |
|
3465 | 365 |
(** set **) |
1812 | 366 |
|
3467 | 367 |
section "set"; |
368 |
||
5296 | 369 |
qed_goal "finite_set" thy "finite (set xs)" |
370 |
(K [induct_tac "xs" 1, Auto_tac]); |
|
371 |
Addsimps[finite_set]; |
|
372 |
AddSIs[finite_set]; |
|
373 |
||
4935 | 374 |
Goal "set (xs@ys) = (set xs Un set ys)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
375 |
by (induct_tac "xs" 1); |
5316 | 376 |
by Auto_tac; |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
377 |
qed "set_append"; |
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
378 |
Addsimps[set_append]; |
1812 | 379 |
|
4935 | 380 |
Goal "(x mem xs) = (x: set xs)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
381 |
by (induct_tac "xs" 1); |
5316 | 382 |
by Auto_tac; |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
383 |
qed "set_mem_eq"; |
1812 | 384 |
|
4935 | 385 |
Goal "set l <= set (x#l)"; |
5316 | 386 |
by Auto_tac; |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
387 |
qed "set_subset_Cons"; |
1936 | 388 |
|
4935 | 389 |
Goal "(set xs = {}) = (xs = [])"; |
3457 | 390 |
by (induct_tac "xs" 1); |
5316 | 391 |
by Auto_tac; |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
392 |
qed "set_empty"; |
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
393 |
Addsimps [set_empty]; |
2608 | 394 |
|
4935 | 395 |
Goal "set(rev xs) = set(xs)"; |
3457 | 396 |
by (induct_tac "xs" 1); |
5316 | 397 |
by Auto_tac; |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
398 |
qed "set_rev"; |
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
399 |
Addsimps [set_rev]; |
2608 | 400 |
|
4935 | 401 |
Goal "set(map f xs) = f``(set xs)"; |
3457 | 402 |
by (induct_tac "xs" 1); |
5316 | 403 |
by Auto_tac; |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
404 |
qed "set_map"; |
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
405 |
Addsimps [set_map]; |
2608 | 406 |
|
4935 | 407 |
Goal "(x : set(filter P xs)) = (x : set xs & P x)"; |
4605 | 408 |
by (induct_tac "xs" 1); |
5316 | 409 |
by Auto_tac; |
4605 | 410 |
qed "in_set_filter"; |
411 |
Addsimps [in_set_filter]; |
|
412 |
||
5272 | 413 |
Goal "(x : set xs) = (? ys zs. xs = ys@x#zs)"; |
5318 | 414 |
by (induct_tac "xs" 1); |
415 |
by (Simp_tac 1); |
|
416 |
by (Asm_simp_tac 1); |
|
417 |
by (rtac iffI 1); |
|
418 |
by (blast_tac (claset() addIs [eq_Nil_appendI,Cons_eq_appendI]) 1); |
|
419 |
by (REPEAT(etac exE 1)); |
|
420 |
by (exhaust_tac "ys" 1); |
|
5316 | 421 |
by Auto_tac; |
5272 | 422 |
qed "in_set_conv_decomp"; |
423 |
||
424 |
(* eliminate `lists' in favour of `set' *) |
|
425 |
||
426 |
Goal "(xs : lists A) = (!x : set xs. x : A)"; |
|
5318 | 427 |
by (induct_tac "xs" 1); |
5316 | 428 |
by Auto_tac; |
5272 | 429 |
qed "in_lists_conv_set"; |
430 |
||
431 |
bind_thm("in_listsD",in_lists_conv_set RS iffD1); |
|
432 |
AddSDs [in_listsD]; |
|
433 |
bind_thm("in_listsI",in_lists_conv_set RS iffD2); |
|
434 |
AddSIs [in_listsI]; |
|
1812 | 435 |
|
923 | 436 |
(** list_all **) |
437 |
||
3467 | 438 |
section "list_all"; |
439 |
||
4935 | 440 |
Goal "list_all (%x. True) xs = True"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
441 |
by (induct_tac "xs" 1); |
5316 | 442 |
by Auto_tac; |
923 | 443 |
qed "list_all_True"; |
2512 | 444 |
Addsimps [list_all_True]; |
923 | 445 |
|
4935 | 446 |
Goal "list_all p (xs@ys) = (list_all p xs & list_all p ys)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
447 |
by (induct_tac "xs" 1); |
5316 | 448 |
by Auto_tac; |
2512 | 449 |
qed "list_all_append"; |
450 |
Addsimps [list_all_append]; |
|
923 | 451 |
|
4935 | 452 |
Goal "list_all P xs = (!x. x mem xs --> P(x))"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
453 |
by (induct_tac "xs" 1); |
5316 | 454 |
by Auto_tac; |
923 | 455 |
qed "list_all_mem_conv"; |
456 |
||
457 |
||
2608 | 458 |
(** filter **) |
923 | 459 |
|
3467 | 460 |
section "filter"; |
461 |
||
4935 | 462 |
Goal "filter P (xs@ys) = filter P xs @ filter P ys"; |
3457 | 463 |
by (induct_tac "xs" 1); |
5316 | 464 |
by Auto_tac; |
2608 | 465 |
qed "filter_append"; |
466 |
Addsimps [filter_append]; |
|
467 |
||
4935 | 468 |
Goal "filter (%x. True) xs = xs"; |
4605 | 469 |
by (induct_tac "xs" 1); |
5316 | 470 |
by Auto_tac; |
4605 | 471 |
qed "filter_True"; |
472 |
Addsimps [filter_True]; |
|
473 |
||
4935 | 474 |
Goal "filter (%x. False) xs = []"; |
4605 | 475 |
by (induct_tac "xs" 1); |
5316 | 476 |
by Auto_tac; |
4605 | 477 |
qed "filter_False"; |
478 |
Addsimps [filter_False]; |
|
479 |
||
4935 | 480 |
Goal "length (filter P xs) <= length xs"; |
3457 | 481 |
by (induct_tac "xs" 1); |
5316 | 482 |
by Auto_tac; |
4605 | 483 |
qed "length_filter"; |
3383
7707cb7a5054
Corrected statement of filter_append; added filter_size
paulson
parents:
3342
diff
changeset
|
484 |
|
2608 | 485 |
|
486 |
(** concat **) |
|
487 |
||
3467 | 488 |
section "concat"; |
489 |
||
4935 | 490 |
Goal "concat(xs@ys) = concat(xs)@concat(ys)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
491 |
by (induct_tac "xs" 1); |
5316 | 492 |
by Auto_tac; |
2608 | 493 |
qed"concat_append"; |
494 |
Addsimps [concat_append]; |
|
2512 | 495 |
|
4935 | 496 |
Goal "(concat xss = []) = (!xs:set xss. xs=[])"; |
4423 | 497 |
by (induct_tac "xss" 1); |
5316 | 498 |
by Auto_tac; |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
499 |
qed "concat_eq_Nil_conv"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
500 |
AddIffs [concat_eq_Nil_conv]; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
501 |
|
4935 | 502 |
Goal "([] = concat xss) = (!xs:set xss. xs=[])"; |
4423 | 503 |
by (induct_tac "xss" 1); |
5316 | 504 |
by Auto_tac; |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
505 |
qed "Nil_eq_concat_conv"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
506 |
AddIffs [Nil_eq_concat_conv]; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
507 |
|
4935 | 508 |
Goal "set(concat xs) = Union(set `` set xs)"; |
3467 | 509 |
by (induct_tac "xs" 1); |
5316 | 510 |
by Auto_tac; |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
511 |
qed"set_concat"; |
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
512 |
Addsimps [set_concat]; |
3467 | 513 |
|
4935 | 514 |
Goal "map f (concat xs) = concat (map (map f) xs)"; |
3467 | 515 |
by (induct_tac "xs" 1); |
5316 | 516 |
by Auto_tac; |
3467 | 517 |
qed "map_concat"; |
518 |
||
4935 | 519 |
Goal "filter p (concat xs) = concat (map (filter p) xs)"; |
3467 | 520 |
by (induct_tac "xs" 1); |
5316 | 521 |
by Auto_tac; |
3467 | 522 |
qed"filter_concat"; |
523 |
||
4935 | 524 |
Goal "rev(concat xs) = concat (map rev (rev xs))"; |
3467 | 525 |
by (induct_tac "xs" 1); |
5316 | 526 |
by Auto_tac; |
2608 | 527 |
qed "rev_concat"; |
923 | 528 |
|
529 |
(** nth **) |
|
530 |
||
3467 | 531 |
section "nth"; |
532 |
||
5278 | 533 |
Goal "!xs. (xs@ys)!n = (if n < length xs then xs!n else ys!(n - length xs))"; |
5183 | 534 |
by (induct_tac "n" 1); |
3457 | 535 |
by (Asm_simp_tac 1); |
536 |
by (rtac allI 1); |
|
537 |
by (exhaust_tac "xs" 1); |
|
5316 | 538 |
by Auto_tac; |
2608 | 539 |
qed_spec_mp "nth_append"; |
540 |
||
4935 | 541 |
Goal "!n. n < length xs --> (map f xs)!n = f(xs!n)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
542 |
by (induct_tac "xs" 1); |
1301 | 543 |
(* case [] *) |
544 |
by (Asm_full_simp_tac 1); |
|
545 |
(* case x#xl *) |
|
546 |
by (rtac allI 1); |
|
5183 | 547 |
by (induct_tac "n" 1); |
5316 | 548 |
by Auto_tac; |
1485
240cc98b94a7
Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents:
1465
diff
changeset
|
549 |
qed_spec_mp "nth_map"; |
1301 | 550 |
Addsimps [nth_map]; |
551 |
||
4935 | 552 |
Goal "!n. n < length xs --> list_all P xs --> P(xs!n)"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
553 |
by (induct_tac "xs" 1); |
1301 | 554 |
(* case [] *) |
555 |
by (Simp_tac 1); |
|
556 |
(* case x#xl *) |
|
557 |
by (rtac allI 1); |
|
5183 | 558 |
by (induct_tac "n" 1); |
5316 | 559 |
by Auto_tac; |
1485
240cc98b94a7
Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents:
1465
diff
changeset
|
560 |
qed_spec_mp "list_all_nth"; |
1301 | 561 |
|
4935 | 562 |
Goal "!n. n < length xs --> xs!n mem xs"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
563 |
by (induct_tac "xs" 1); |
1301 | 564 |
(* case [] *) |
565 |
by (Simp_tac 1); |
|
566 |
(* case x#xl *) |
|
567 |
by (rtac allI 1); |
|
5183 | 568 |
by (induct_tac "n" 1); |
1301 | 569 |
(* case 0 *) |
570 |
by (Asm_full_simp_tac 1); |
|
571 |
(* case Suc x *) |
|
4686 | 572 |
by (Asm_full_simp_tac 1); |
1485
240cc98b94a7
Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents:
1465
diff
changeset
|
573 |
qed_spec_mp "nth_mem"; |
1301 | 574 |
Addsimps [nth_mem]; |
575 |
||
5077
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5043
diff
changeset
|
576 |
(** list update **) |
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5043
diff
changeset
|
577 |
|
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5043
diff
changeset
|
578 |
section "list update"; |
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5043
diff
changeset
|
579 |
|
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5043
diff
changeset
|
580 |
Goal "!i. length(xs[i:=x]) = length xs"; |
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5043
diff
changeset
|
581 |
by (induct_tac "xs" 1); |
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5043
diff
changeset
|
582 |
by (Simp_tac 1); |
5183 | 583 |
by (asm_full_simp_tac (simpset() addsplits [nat.split]) 1); |
5077
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5043
diff
changeset
|
584 |
qed_spec_mp "length_list_update"; |
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5043
diff
changeset
|
585 |
Addsimps [length_list_update]; |
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5043
diff
changeset
|
586 |
|
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
5043
diff
changeset
|
587 |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
588 |
(** last & butlast **) |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
589 |
|
4935 | 590 |
Goal "last(xs@[x]) = x"; |
4423 | 591 |
by (induct_tac "xs" 1); |
5316 | 592 |
by Auto_tac; |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
593 |
qed "last_snoc"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
594 |
Addsimps [last_snoc]; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
595 |
|
4935 | 596 |
Goal "butlast(xs@[x]) = xs"; |
4423 | 597 |
by (induct_tac "xs" 1); |
5316 | 598 |
by Auto_tac; |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
599 |
qed "butlast_snoc"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
600 |
Addsimps [butlast_snoc]; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
601 |
|
4935 | 602 |
Goal "length(butlast xs) = length xs - 1"; |
603 |
by (res_inst_tac [("xs","xs")] rev_induct 1); |
|
5316 | 604 |
by Auto_tac; |
4643 | 605 |
qed "length_butlast"; |
606 |
Addsimps [length_butlast]; |
|
607 |
||
5278 | 608 |
Goal "!ys. butlast (xs@ys) = (if ys=[] then butlast xs else xs@butlast ys)"; |
4423 | 609 |
by (induct_tac "xs" 1); |
5316 | 610 |
by Auto_tac; |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
611 |
qed_spec_mp "butlast_append"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
612 |
|
4935 | 613 |
Goal "x:set(butlast xs) --> x:set xs"; |
4423 | 614 |
by (induct_tac "xs" 1); |
5316 | 615 |
by Auto_tac; |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
616 |
qed_spec_mp "in_set_butlastD"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
617 |
|
5043 | 618 |
Goal "x:set(butlast xs) ==> x:set(butlast(xs@ys))"; |
4686 | 619 |
by (asm_simp_tac (simpset() addsimps [butlast_append]) 1); |
4423 | 620 |
by (blast_tac (claset() addDs [in_set_butlastD]) 1); |
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
621 |
qed "in_set_butlast_appendI1"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
622 |
|
5043 | 623 |
Goal "x:set(butlast ys) ==> x:set(butlast(xs@ys))"; |
4686 | 624 |
by (asm_simp_tac (simpset() addsimps [butlast_append]) 1); |
4423 | 625 |
by (Clarify_tac 1); |
626 |
by (Full_simp_tac 1); |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
627 |
qed "in_set_butlast_appendI2"; |
3902 | 628 |
|
2608 | 629 |
(** take & drop **) |
630 |
section "take & drop"; |
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
631 |
|
4935 | 632 |
Goal "take 0 xs = []"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
633 |
by (induct_tac "xs" 1); |
5316 | 634 |
by Auto_tac; |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
635 |
qed "take_0"; |
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
636 |
|
4935 | 637 |
Goal "drop 0 xs = xs"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
638 |
by (induct_tac "xs" 1); |
5316 | 639 |
by Auto_tac; |
2608 | 640 |
qed "drop_0"; |
641 |
||
4935 | 642 |
Goal "take (Suc n) (x#xs) = x # take n xs"; |
1552 | 643 |
by (Simp_tac 1); |
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
644 |
qed "take_Suc_Cons"; |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
645 |
|
4935 | 646 |
Goal "drop (Suc n) (x#xs) = drop n xs"; |
2608 | 647 |
by (Simp_tac 1); |
648 |
qed "drop_Suc_Cons"; |
|
649 |
||
650 |
Delsimps [take_Cons,drop_Cons]; |
|
651 |
Addsimps [take_0,take_Suc_Cons,drop_0,drop_Suc_Cons]; |
|
652 |
||
4935 | 653 |
Goal "!xs. length(take n xs) = min (length xs) n"; |
5183 | 654 |
by (induct_tac "n" 1); |
5316 | 655 |
by Auto_tac; |
3457 | 656 |
by (exhaust_tac "xs" 1); |
5316 | 657 |
by Auto_tac; |
2608 | 658 |
qed_spec_mp "length_take"; |
659 |
Addsimps [length_take]; |
|
923 | 660 |
|
4935 | 661 |
Goal "!xs. length(drop n xs) = (length xs - n)"; |
5183 | 662 |
by (induct_tac "n" 1); |
5316 | 663 |
by Auto_tac; |
3457 | 664 |
by (exhaust_tac "xs" 1); |
5316 | 665 |
by Auto_tac; |
2608 | 666 |
qed_spec_mp "length_drop"; |
667 |
Addsimps [length_drop]; |
|
668 |
||
4935 | 669 |
Goal "!xs. length xs <= n --> take n xs = xs"; |
5183 | 670 |
by (induct_tac "n" 1); |
5316 | 671 |
by Auto_tac; |
3457 | 672 |
by (exhaust_tac "xs" 1); |
5316 | 673 |
by Auto_tac; |
2608 | 674 |
qed_spec_mp "take_all"; |
923 | 675 |
|
4935 | 676 |
Goal "!xs. length xs <= n --> drop n xs = []"; |
5183 | 677 |
by (induct_tac "n" 1); |
5316 | 678 |
by Auto_tac; |
3457 | 679 |
by (exhaust_tac "xs" 1); |
5316 | 680 |
by Auto_tac; |
2608 | 681 |
qed_spec_mp "drop_all"; |
682 |
||
5278 | 683 |
Goal "!xs. take n (xs @ ys) = (take n xs @ take (n - length xs) ys)"; |
5183 | 684 |
by (induct_tac "n" 1); |
5316 | 685 |
by Auto_tac; |
3457 | 686 |
by (exhaust_tac "xs" 1); |
5316 | 687 |
by Auto_tac; |
2608 | 688 |
qed_spec_mp "take_append"; |
689 |
Addsimps [take_append]; |
|
690 |
||
4935 | 691 |
Goal "!xs. drop n (xs@ys) = drop n xs @ drop (n - length xs) ys"; |
5183 | 692 |
by (induct_tac "n" 1); |
5316 | 693 |
by Auto_tac; |
3457 | 694 |
by (exhaust_tac "xs" 1); |
5316 | 695 |
by Auto_tac; |
2608 | 696 |
qed_spec_mp "drop_append"; |
697 |
Addsimps [drop_append]; |
|
698 |
||
4935 | 699 |
Goal "!xs n. take n (take m xs) = take (min n m) xs"; |
5183 | 700 |
by (induct_tac "m" 1); |
5316 | 701 |
by Auto_tac; |
3457 | 702 |
by (exhaust_tac "xs" 1); |
5316 | 703 |
by Auto_tac; |
5183 | 704 |
by (exhaust_tac "na" 1); |
5316 | 705 |
by Auto_tac; |
2608 | 706 |
qed_spec_mp "take_take"; |
707 |
||
4935 | 708 |
Goal "!xs. drop n (drop m xs) = drop (n + m) xs"; |
5183 | 709 |
by (induct_tac "m" 1); |
5316 | 710 |
by Auto_tac; |
3457 | 711 |
by (exhaust_tac "xs" 1); |
5316 | 712 |
by Auto_tac; |
2608 | 713 |
qed_spec_mp "drop_drop"; |
923 | 714 |
|
4935 | 715 |
Goal "!xs n. take n (drop m xs) = drop m (take (n + m) xs)"; |
5183 | 716 |
by (induct_tac "m" 1); |
5316 | 717 |
by Auto_tac; |
3457 | 718 |
by (exhaust_tac "xs" 1); |
5316 | 719 |
by Auto_tac; |
2608 | 720 |
qed_spec_mp "take_drop"; |
721 |
||
4935 | 722 |
Goal "!xs. take n (map f xs) = map f (take n xs)"; |
5183 | 723 |
by (induct_tac "n" 1); |
5316 | 724 |
by Auto_tac; |
3457 | 725 |
by (exhaust_tac "xs" 1); |
5316 | 726 |
by Auto_tac; |
2608 | 727 |
qed_spec_mp "take_map"; |
728 |
||
4935 | 729 |
Goal "!xs. drop n (map f xs) = map f (drop n xs)"; |
5183 | 730 |
by (induct_tac "n" 1); |
5316 | 731 |
by Auto_tac; |
3457 | 732 |
by (exhaust_tac "xs" 1); |
5316 | 733 |
by Auto_tac; |
2608 | 734 |
qed_spec_mp "drop_map"; |
735 |
||
4935 | 736 |
Goal "!n i. i < n --> (take n xs)!i = xs!i"; |
3457 | 737 |
by (induct_tac "xs" 1); |
5316 | 738 |
by Auto_tac; |
3457 | 739 |
by (exhaust_tac "n" 1); |
740 |
by (Blast_tac 1); |
|
741 |
by (exhaust_tac "i" 1); |
|
5316 | 742 |
by Auto_tac; |
2608 | 743 |
qed_spec_mp "nth_take"; |
744 |
Addsimps [nth_take]; |
|
923 | 745 |
|
4935 | 746 |
Goal "!xs i. n + i <= length xs --> (drop n xs)!i = xs!(n+i)"; |
5183 | 747 |
by (induct_tac "n" 1); |
5316 | 748 |
by Auto_tac; |
3457 | 749 |
by (exhaust_tac "xs" 1); |
5316 | 750 |
by Auto_tac; |
2608 | 751 |
qed_spec_mp "nth_drop"; |
752 |
Addsimps [nth_drop]; |
|
753 |
||
754 |
(** takeWhile & dropWhile **) |
|
755 |
||
3467 | 756 |
section "takeWhile & dropWhile"; |
757 |
||
4935 | 758 |
Goal "takeWhile P xs @ dropWhile P xs = xs"; |
3586 | 759 |
by (induct_tac "xs" 1); |
5316 | 760 |
by Auto_tac; |
3586 | 761 |
qed "takeWhile_dropWhile_id"; |
762 |
Addsimps [takeWhile_dropWhile_id]; |
|
763 |
||
4935 | 764 |
Goal "x:set xs & ~P(x) --> takeWhile P (xs @ ys) = takeWhile P xs"; |
3457 | 765 |
by (induct_tac "xs" 1); |
5316 | 766 |
by Auto_tac; |
2608 | 767 |
bind_thm("takeWhile_append1", conjI RS (result() RS mp)); |
768 |
Addsimps [takeWhile_append1]; |
|
923 | 769 |
|
4935 | 770 |
Goal "(!x:set xs. P(x)) --> takeWhile P (xs @ ys) = xs @ takeWhile P ys"; |
3457 | 771 |
by (induct_tac "xs" 1); |
5316 | 772 |
by Auto_tac; |
2608 | 773 |
bind_thm("takeWhile_append2", ballI RS (result() RS mp)); |
774 |
Addsimps [takeWhile_append2]; |
|
1169 | 775 |
|
4935 | 776 |
Goal "x:set xs & ~P(x) --> dropWhile P (xs @ ys) = (dropWhile P xs)@ys"; |
3457 | 777 |
by (induct_tac "xs" 1); |
5316 | 778 |
by Auto_tac; |
2608 | 779 |
bind_thm("dropWhile_append1", conjI RS (result() RS mp)); |
780 |
Addsimps [dropWhile_append1]; |
|
781 |
||
4935 | 782 |
Goal "(!x:set xs. P(x)) --> dropWhile P (xs @ ys) = dropWhile P ys"; |
3457 | 783 |
by (induct_tac "xs" 1); |
5316 | 784 |
by Auto_tac; |
2608 | 785 |
bind_thm("dropWhile_append2", ballI RS (result() RS mp)); |
786 |
Addsimps [dropWhile_append2]; |
|
787 |
||
4935 | 788 |
Goal "x:set(takeWhile P xs) --> x:set xs & P x"; |
3457 | 789 |
by (induct_tac "xs" 1); |
5316 | 790 |
by Auto_tac; |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
791 |
qed_spec_mp"set_take_whileD"; |
2608 | 792 |
|
4132 | 793 |
qed_goal "zip_Nil_Nil" thy "zip [] [] = []" (K [Simp_tac 1]); |
794 |
qed_goal "zip_Cons_Cons" thy "zip (x#xs) (y#ys) = (x,y)#zip xs ys" |
|
795 |
(K [Simp_tac 1]); |
|
4605 | 796 |
|
5272 | 797 |
|
798 |
(** foldl **) |
|
799 |
section "foldl"; |
|
800 |
||
801 |
Goal "!a. foldl f a (xs @ ys) = foldl f (foldl f a xs) ys"; |
|
5318 | 802 |
by (induct_tac "xs" 1); |
5316 | 803 |
by Auto_tac; |
5272 | 804 |
qed_spec_mp "foldl_append"; |
805 |
Addsimps [foldl_append]; |
|
806 |
||
807 |
(* Note: `n <= foldl op+ n ns' looks simpler, but is more difficult to use |
|
808 |
because it requires an additional transitivity step |
|
809 |
*) |
|
810 |
Goal "!n::nat. m <= n --> m <= foldl op+ n ns"; |
|
5318 | 811 |
by (induct_tac "ns" 1); |
812 |
by (Simp_tac 1); |
|
813 |
by (Asm_full_simp_tac 1); |
|
814 |
by (blast_tac (claset() addIs [trans_le_add1]) 1); |
|
5272 | 815 |
qed_spec_mp "start_le_sum"; |
816 |
||
817 |
Goal "n : set ns ==> n <= foldl op+ 0 ns"; |
|
5318 | 818 |
by (auto_tac (claset() addIs [start_le_sum], |
5272 | 819 |
simpset() addsimps [in_set_conv_decomp])); |
820 |
qed "elem_le_sum"; |
|
821 |
||
822 |
Goal "!m. (foldl op+ m ns = 0) = (m=0 & (!n : set ns. n=0))"; |
|
5318 | 823 |
by (induct_tac "ns" 1); |
5316 | 824 |
by Auto_tac; |
5272 | 825 |
qed_spec_mp "sum_eq_0_conv"; |
826 |
AddIffs [sum_eq_0_conv]; |
|
827 |
||
828 |
||
4605 | 829 |
(** nodups & remdups **) |
830 |
section "nodups & remdups"; |
|
831 |
||
4935 | 832 |
Goal "set(remdups xs) = set xs"; |
4605 | 833 |
by (induct_tac "xs" 1); |
834 |
by (Simp_tac 1); |
|
4686 | 835 |
by (asm_full_simp_tac (simpset() addsimps [insert_absorb]) 1); |
4605 | 836 |
qed "set_remdups"; |
837 |
Addsimps [set_remdups]; |
|
838 |
||
4935 | 839 |
Goal "nodups(remdups xs)"; |
4605 | 840 |
by (induct_tac "xs" 1); |
5316 | 841 |
by Auto_tac; |
4605 | 842 |
qed "nodups_remdups"; |
843 |
||
4935 | 844 |
Goal "nodups xs --> nodups (filter P xs)"; |
4605 | 845 |
by (induct_tac "xs" 1); |
5316 | 846 |
by Auto_tac; |
4605 | 847 |
qed_spec_mp "nodups_filter"; |
848 |
||
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
849 |
(** replicate **) |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
850 |
section "replicate"; |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
851 |
|
4935 | 852 |
Goal "set(replicate (Suc n) x) = {x}"; |
4423 | 853 |
by (induct_tac "n" 1); |
5316 | 854 |
by Auto_tac; |
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
855 |
val lemma = result(); |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
856 |
|
5043 | 857 |
Goal "n ~= 0 ==> set(replicate n x) = {x}"; |
4423 | 858 |
by (fast_tac (claset() addSDs [not0_implies_Suc] addSIs [lemma]) 1); |
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
859 |
qed "set_replicate"; |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
860 |
Addsimps [set_replicate]; |
5162 | 861 |
|
862 |
||
5281 | 863 |
(*** Lexcicographic orderings on lists ***) |
864 |
section"Lexcicographic orderings on lists"; |
|
865 |
||
866 |
Goal "wf r ==> wf(lexn r n)"; |
|
5318 | 867 |
by (induct_tac "n" 1); |
868 |
by (Simp_tac 1); |
|
869 |
by (Simp_tac 1); |
|
870 |
by (rtac wf_subset 1); |
|
871 |
by (rtac Int_lower1 2); |
|
872 |
by (rtac wf_prod_fun_image 1); |
|
873 |
by (rtac injI 2); |
|
874 |
by (Auto_tac); |
|
5281 | 875 |
qed "wf_lexn"; |
876 |
||
877 |
Goal "!xs ys. (xs,ys) : lexn r n --> length xs = n & length ys = n"; |
|
5318 | 878 |
by (induct_tac "n" 1); |
879 |
by (Auto_tac); |
|
5281 | 880 |
qed_spec_mp "lexn_length"; |
881 |
||
882 |
Goalw [lex_def] "wf r ==> wf(lex r)"; |
|
5318 | 883 |
by (rtac wf_UN 1); |
884 |
by (blast_tac (claset() addIs [wf_lexn]) 1); |
|
885 |
by (Clarify_tac 1); |
|
886 |
by (rename_tac "m n" 1); |
|
887 |
by (subgoal_tac "m ~= n" 1); |
|
888 |
by (Blast_tac 2); |
|
889 |
by (blast_tac (claset() addDs [lexn_length,not_sym]) 1); |
|
5281 | 890 |
qed "wf_lex"; |
891 |
AddSIs [wf_lex]; |
|
892 |
||
893 |
Goal |
|
894 |
"lexn r n = \ |
|
895 |
\ {(xs,ys). length xs = n & length ys = n & \ |
|
896 |
\ (? xys x y xs' ys'. xs= xys @ x#xs' & ys= xys @ y#ys' & (x,y):r)}"; |
|
5318 | 897 |
by (induct_tac "n" 1); |
898 |
by (Simp_tac 1); |
|
899 |
by (Blast_tac 1); |
|
900 |
by (asm_full_simp_tac (simpset() delsimps [length_Suc_conv] |
|
5296 | 901 |
addsimps [lex_prod_def]) 1); |
5318 | 902 |
by (auto_tac (claset(), simpset() delsimps [length_Suc_conv])); |
903 |
by (Blast_tac 1); |
|
904 |
by (rename_tac "a xys x xs' y ys'" 1); |
|
905 |
by (res_inst_tac [("x","a#xys")] exI 1); |
|
906 |
by (Simp_tac 1); |
|
907 |
by (exhaust_tac "xys" 1); |
|
908 |
by (ALLGOALS (asm_full_simp_tac (simpset() delsimps [length_Suc_conv]))); |
|
909 |
by (Blast_tac 1); |
|
5281 | 910 |
qed "lexn_conv"; |
911 |
||
912 |
Goalw [lex_def] |
|
913 |
"lex r = \ |
|
914 |
\ {(xs,ys). length xs = length ys & \ |
|
915 |
\ (? xys x y xs' ys'. xs= xys @ x#xs' & ys= xys @ y#ys' & (x,y):r)}"; |
|
5318 | 916 |
by (force_tac (claset(), simpset() delsimps [length_Suc_conv] addsimps [lexn_conv]) 1); |
5281 | 917 |
qed "lex_conv"; |
918 |
||
919 |
Goalw [lexico_def] "wf r ==> wf(lexico r)"; |
|
5318 | 920 |
by (Blast_tac 1); |
5281 | 921 |
qed "wf_lexico"; |
922 |
AddSIs [wf_lexico]; |
|
923 |
||
924 |
Goalw |
|
925 |
[lexico_def,diag_def,lex_prod_def,measure_def,inv_image_def] |
|
926 |
"lexico r = {(xs,ys). length xs < length ys | \ |
|
927 |
\ length xs = length ys & (xs,ys) : lex r}"; |
|
5318 | 928 |
by (Simp_tac 1); |
5281 | 929 |
qed "lexico_conv"; |
930 |
||
5283 | 931 |
Goal "([],ys) ~: lex r"; |
5318 | 932 |
by (simp_tac (simpset() addsimps [lex_conv]) 1); |
5283 | 933 |
qed "Nil_notin_lex"; |
934 |
||
935 |
Goal "(xs,[]) ~: lex r"; |
|
5318 | 936 |
by (simp_tac (simpset() addsimps [lex_conv]) 1); |
5283 | 937 |
qed "Nil2_notin_lex"; |
938 |
||
939 |
AddIffs [Nil_notin_lex,Nil2_notin_lex]; |
|
940 |
||
941 |
Goal "((x#xs,y#ys) : lex r) = \ |
|
942 |
\ ((x,y) : r & length xs = length ys | x=y & (xs,ys) : lex r)"; |
|
5318 | 943 |
by (simp_tac (simpset() addsimps [lex_conv]) 1); |
944 |
by (rtac iffI 1); |
|
945 |
by (blast_tac (claset() addIs [Cons_eq_appendI]) 2); |
|
946 |
by (REPEAT(eresolve_tac [conjE, exE] 1)); |
|
947 |
by (exhaust_tac "xys" 1); |
|
948 |
by (Asm_full_simp_tac 1); |
|
949 |
by (Asm_full_simp_tac 1); |
|
950 |
by (Blast_tac 1); |
|
5283 | 951 |
qed "Cons_in_lex"; |
952 |
AddIffs [Cons_in_lex]; |
|
953 |
||
954 |
||
5162 | 955 |
(*** |
956 |
Simplification procedure for all list equalities. |
|
957 |
Currently only tries to rearranges @ to see if |
|
958 |
- both lists end in a singleton list, |
|
959 |
- or both lists end in the same list. |
|
960 |
***) |
|
961 |
local |
|
962 |
||
963 |
val list_eq_pattern = |
|
964 |
read_cterm (sign_of List.thy) ("(xs::'a list) = ys",HOLogic.boolT); |
|
965 |
||
5183 | 966 |
fun last (cons as Const("List.list.op #",_) $ _ $ xs) = |
967 |
(case xs of Const("List.list.[]",_) => cons | _ => last xs) |
|
5200 | 968 |
| last (Const("List.op @",_) $ _ $ ys) = last ys |
5162 | 969 |
| last t = t; |
970 |
||
5183 | 971 |
fun list1 (Const("List.list.op #",_) $ _ $ Const("List.list.[]",_)) = true |
5162 | 972 |
| list1 _ = false; |
973 |
||
5183 | 974 |
fun butlast ((cons as Const("List.list.op #",_) $ x) $ xs) = |
975 |
(case xs of Const("List.list.[]",_) => xs | _ => cons $ butlast xs) |
|
5200 | 976 |
| butlast ((app as Const("List.op @",_) $ xs) $ ys) = app $ butlast ys |
5183 | 977 |
| butlast xs = Const("List.list.[]",fastype_of xs); |
5162 | 978 |
|
979 |
val rearr_tac = |
|
980 |
simp_tac (HOL_basic_ss addsimps [append_assoc,append_Nil,append_Cons]); |
|
981 |
||
982 |
fun list_eq sg _ (F as (eq as Const(_,eqT)) $ lhs $ rhs) = |
|
983 |
let |
|
984 |
val lastl = last lhs and lastr = last rhs |
|
985 |
fun rearr conv = |
|
986 |
let val lhs1 = butlast lhs and rhs1 = butlast rhs |
|
987 |
val Type(_,listT::_) = eqT |
|
988 |
val appT = [listT,listT] ---> listT |
|
5200 | 989 |
val app = Const("List.op @",appT) |
5162 | 990 |
val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr) |
991 |
val ct = cterm_of sg (HOLogic.mk_Trueprop(HOLogic.mk_eq(F,F2))) |
|
992 |
val thm = prove_goalw_cterm [] ct (K [rearr_tac 1]) |
|
993 |
handle ERROR => |
|
994 |
error("The error(s) above occurred while trying to prove " ^ |
|
995 |
string_of_cterm ct) |
|
996 |
in Some((conv RS (thm RS trans)) RS eq_reflection) end |
|
997 |
||
998 |
in if list1 lastl andalso list1 lastr |
|
999 |
then rearr append1_eq_conv |
|
1000 |
else |
|
1001 |
if lastl aconv lastr |
|
1002 |
then rearr append_same_eq |
|
1003 |
else None |
|
1004 |
end; |
|
1005 |
in |
|
1006 |
val list_eq_simproc = mk_simproc "list_eq" [list_eq_pattern] list_eq; |
|
1007 |
end; |
|
1008 |
||
1009 |
Addsimprocs [list_eq_simproc]; |