author | nipkow |
Sun, 22 Feb 1998 14:12:23 +0100 | |
changeset 4643 | 1b40fcac5a09 |
parent 4628 | 0c7e97836e3c |
child 4647 | 42af8ae6e2c1 |
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 |
||
3011 | 9 |
goal thy "!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); |
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
11 |
by (ALLGOALS Asm_simp_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 |
|
3011 | 16 |
goal thy "(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); |
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
18 |
by (Simp_tac 1); |
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
19 |
by (Asm_simp_tac 1); |
923 | 20 |
qed "neq_Nil_conv"; |
21 |
||
22 |
||
3468 | 23 |
(** "lists": the list-forming operator over sets **) |
3342
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
24 |
|
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
25 |
goalw thy lists.defs "!!A B. A<=B ==> lists A <= lists B"; |
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
26 |
by (rtac lfp_mono 1); |
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
27 |
by (REPEAT (ares_tac basic_monos 1)); |
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
28 |
qed "lists_mono"; |
3196 | 29 |
|
3468 | 30 |
val listsE = lists.mk_cases list.simps "x#l : lists A"; |
31 |
AddSEs [listsE]; |
|
32 |
AddSIs lists.intrs; |
|
33 |
||
34 |
goal thy "!!l. l: lists A ==> l: lists B --> l: lists (A Int B)"; |
|
35 |
by (etac lists.induct 1); |
|
36 |
by (ALLGOALS Blast_tac); |
|
37 |
qed_spec_mp "lists_IntI"; |
|
38 |
||
39 |
goal thy "lists (A Int B) = lists A Int lists B"; |
|
4423 | 40 |
by (rtac (mono_Int RS equalityI) 1); |
4089 | 41 |
by (simp_tac (simpset() addsimps [mono_def, lists_mono]) 1); |
42 |
by (blast_tac (claset() addSIs [lists_IntI]) 1); |
|
3468 | 43 |
qed "lists_Int_eq"; |
44 |
Addsimps [lists_Int_eq]; |
|
45 |
||
3196 | 46 |
|
4643 | 47 |
(** Case analysis **) |
48 |
section "Case analysis"; |
|
2608 | 49 |
|
3011 | 50 |
val prems = goal thy "[| P([]); !!x xs. P(x#xs) |] ==> P(xs)"; |
3457 | 51 |
by (induct_tac "xs" 1); |
52 |
by (REPEAT(resolve_tac prems 1)); |
|
2608 | 53 |
qed "list_cases"; |
54 |
||
3011 | 55 |
goal thy "(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
|
56 |
by (induct_tac "xs" 1); |
2891 | 57 |
by (Blast_tac 1); |
58 |
by (Blast_tac 1); |
|
2608 | 59 |
bind_thm("list_eq_cases", |
60 |
impI RSN (2,allI RSN (2,allI RSN (2,impI RS (conjI RS (result() RS mp)))))); |
|
61 |
||
3860 | 62 |
(** length **) |
63 |
(* needs to come before "@" because of thm append_eq_append_conv *) |
|
64 |
||
65 |
section "length"; |
|
66 |
||
67 |
goal thy "length(xs@ys) = length(xs)+length(ys)"; |
|
68 |
by (induct_tac "xs" 1); |
|
69 |
by (ALLGOALS Asm_simp_tac); |
|
70 |
qed"length_append"; |
|
71 |
Addsimps [length_append]; |
|
72 |
||
73 |
goal thy "length (map f l) = length l"; |
|
74 |
by (induct_tac "l" 1); |
|
75 |
by (ALLGOALS Simp_tac); |
|
76 |
qed "length_map"; |
|
77 |
Addsimps [length_map]; |
|
78 |
||
79 |
goal thy "length(rev xs) = length(xs)"; |
|
80 |
by (induct_tac "xs" 1); |
|
81 |
by (ALLGOALS Asm_simp_tac); |
|
82 |
qed "length_rev"; |
|
83 |
Addsimps [length_rev]; |
|
84 |
||
4628 | 85 |
goal List.thy "!!xs. xs ~= [] ==> length(tl xs) = (length xs) - 1"; |
4423 | 86 |
by (exhaust_tac "xs" 1); |
87 |
by (ALLGOALS Asm_full_simp_tac); |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
88 |
qed "length_tl"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
89 |
Addsimps [length_tl]; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
90 |
|
3860 | 91 |
goal thy "(length xs = 0) = (xs = [])"; |
92 |
by (induct_tac "xs" 1); |
|
93 |
by (ALLGOALS Asm_simp_tac); |
|
94 |
qed "length_0_conv"; |
|
95 |
AddIffs [length_0_conv]; |
|
96 |
||
97 |
goal thy "(0 = length xs) = (xs = [])"; |
|
98 |
by (induct_tac "xs" 1); |
|
99 |
by (ALLGOALS Asm_simp_tac); |
|
100 |
qed "zero_length_conv"; |
|
101 |
AddIffs [zero_length_conv]; |
|
102 |
||
103 |
goal thy "(0 < length xs) = (xs ~= [])"; |
|
104 |
by (induct_tac "xs" 1); |
|
105 |
by (ALLGOALS Asm_simp_tac); |
|
106 |
qed "length_greater_0_conv"; |
|
107 |
AddIffs [length_greater_0_conv]; |
|
108 |
||
923 | 109 |
(** @ - append **) |
110 |
||
3467 | 111 |
section "@ - append"; |
112 |
||
3011 | 113 |
goal thy "(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
|
114 |
by (induct_tac "xs" 1); |
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
115 |
by (ALLGOALS Asm_simp_tac); |
923 | 116 |
qed "append_assoc"; |
2512 | 117 |
Addsimps [append_assoc]; |
923 | 118 |
|
3011 | 119 |
goal thy "xs @ [] = xs"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
120 |
by (induct_tac "xs" 1); |
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
121 |
by (ALLGOALS Asm_simp_tac); |
923 | 122 |
qed "append_Nil2"; |
2512 | 123 |
Addsimps [append_Nil2]; |
923 | 124 |
|
3011 | 125 |
goal thy "(xs@ys = []) = (xs=[] & ys=[])"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
126 |
by (induct_tac "xs" 1); |
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
127 |
by (ALLGOALS Asm_simp_tac); |
2608 | 128 |
qed "append_is_Nil_conv"; |
129 |
AddIffs [append_is_Nil_conv]; |
|
130 |
||
3011 | 131 |
goal thy "([] = xs@ys) = (xs=[] & ys=[])"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
132 |
by (induct_tac "xs" 1); |
2608 | 133 |
by (ALLGOALS Asm_simp_tac); |
3457 | 134 |
by (Blast_tac 1); |
2608 | 135 |
qed "Nil_is_append_conv"; |
136 |
AddIffs [Nil_is_append_conv]; |
|
923 | 137 |
|
3574 | 138 |
goal thy "(xs @ ys = xs) = (ys=[])"; |
139 |
by (induct_tac "xs" 1); |
|
140 |
by (ALLGOALS Asm_simp_tac); |
|
141 |
qed "append_self_conv"; |
|
142 |
||
143 |
goal thy "(xs = xs @ ys) = (ys=[])"; |
|
144 |
by (induct_tac "xs" 1); |
|
145 |
by (ALLGOALS Asm_simp_tac); |
|
146 |
by (Blast_tac 1); |
|
147 |
qed "self_append_conv"; |
|
148 |
AddIffs [append_self_conv,self_append_conv]; |
|
149 |
||
3860 | 150 |
goal thy "!ys. length xs = length ys | length us = length vs \ |
151 |
\ --> (xs@us = ys@vs) = (xs=ys & us=vs)"; |
|
4423 | 152 |
by (induct_tac "xs" 1); |
153 |
by (rtac allI 1); |
|
154 |
by (exhaust_tac "ys" 1); |
|
155 |
by (Asm_simp_tac 1); |
|
156 |
by (fast_tac (claset() addIs [less_add_Suc2] addss simpset() |
|
3860 | 157 |
addEs [less_not_refl2 RSN (2,rev_notE)]) 1); |
4423 | 158 |
by (rtac allI 1); |
159 |
by (exhaust_tac "ys" 1); |
|
160 |
by (fast_tac (claset() addIs [less_add_Suc2] addss simpset() |
|
3860 | 161 |
addEs [(less_not_refl2 RS not_sym) RSN (2,rev_notE)]) 1); |
4423 | 162 |
by (Asm_simp_tac 1); |
3860 | 163 |
qed_spec_mp "append_eq_append_conv"; |
164 |
Addsimps [append_eq_append_conv]; |
|
165 |
||
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
166 |
goal thy "(xs @ ys = xs @ zs) = (ys=zs)"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
167 |
by (Simp_tac 1); |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
168 |
qed "same_append_eq"; |
3860 | 169 |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
170 |
goal thy "(xs @ [x] = ys @ [y]) = (xs = ys & x = y)"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
171 |
by (Simp_tac 1); |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
172 |
qed "append1_eq_conv"; |
2608 | 173 |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
174 |
goal thy "(ys @ xs = zs @ xs) = (ys=zs)"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
175 |
by (Simp_tac 1); |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
176 |
qed "append_same_eq"; |
2608 | 177 |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
178 |
AddSIs |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
179 |
[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
|
180 |
AddSDs |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
181 |
[same_append_eq RS iffD1, append1_eq_conv RS iffD1, append_same_eq RS iffD1]; |
3571 | 182 |
|
3011 | 183 |
goal thy "xs ~= [] --> hd xs # tl xs = xs"; |
3457 | 184 |
by (induct_tac "xs" 1); |
185 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 186 |
qed_spec_mp "hd_Cons_tl"; |
187 |
Addsimps [hd_Cons_tl]; |
|
923 | 188 |
|
3011 | 189 |
goal thy "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
|
190 |
by (induct_tac "xs" 1); |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
191 |
by (ALLGOALS Asm_simp_tac); |
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
192 |
qed "hd_append"; |
923 | 193 |
|
3571 | 194 |
goal thy "!!xs. xs ~= [] ==> hd(xs @ ys) = hd xs"; |
4089 | 195 |
by (asm_simp_tac (simpset() addsimps [hd_append] |
4069 | 196 |
addsplits [split_list_case]) 1); |
3571 | 197 |
qed "hd_append2"; |
198 |
Addsimps [hd_append2]; |
|
199 |
||
3011 | 200 |
goal thy "tl(xs@ys) = (case xs of [] => tl(ys) | z#zs => zs@ys)"; |
4089 | 201 |
by (simp_tac (simpset() addsplits [split_list_case]) 1); |
2608 | 202 |
qed "tl_append"; |
203 |
||
3571 | 204 |
goal thy "!!xs. xs ~= [] ==> tl(xs @ ys) = (tl xs) @ ys"; |
4089 | 205 |
by (asm_simp_tac (simpset() addsimps [tl_append] |
4069 | 206 |
addsplits [split_list_case]) 1); |
3571 | 207 |
qed "tl_append2"; |
208 |
Addsimps [tl_append2]; |
|
209 |
||
2608 | 210 |
(** map **) |
211 |
||
3467 | 212 |
section "map"; |
213 |
||
3011 | 214 |
goal thy |
3465 | 215 |
"(!x. x : set xs --> f x = g x) --> map f xs = map g xs"; |
3457 | 216 |
by (induct_tac "xs" 1); |
217 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 218 |
bind_thm("map_ext", impI RS (allI RS (result() RS mp))); |
219 |
||
3842 | 220 |
goal thy "map (%x. x) = (%xs. xs)"; |
2608 | 221 |
by (rtac ext 1); |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
222 |
by (induct_tac "xs" 1); |
2608 | 223 |
by (ALLGOALS Asm_simp_tac); |
224 |
qed "map_ident"; |
|
225 |
Addsimps[map_ident]; |
|
226 |
||
3011 | 227 |
goal thy "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
|
228 |
by (induct_tac "xs" 1); |
2608 | 229 |
by (ALLGOALS Asm_simp_tac); |
230 |
qed "map_append"; |
|
231 |
Addsimps[map_append]; |
|
232 |
||
3011 | 233 |
goalw thy [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
|
234 |
by (induct_tac "xs" 1); |
2608 | 235 |
by (ALLGOALS Asm_simp_tac); |
236 |
qed "map_compose"; |
|
237 |
Addsimps[map_compose]; |
|
238 |
||
3011 | 239 |
goal thy "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
|
240 |
by (induct_tac "xs" 1); |
2608 | 241 |
by (ALLGOALS Asm_simp_tac); |
242 |
qed "rev_map"; |
|
243 |
||
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
244 |
(* a congruence rule for map: *) |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
245 |
goal thy |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
246 |
"(xs=ys) --> (!x. x : set ys --> f x = g x) --> map f xs = map g ys"; |
4423 | 247 |
by (rtac impI 1); |
248 |
by (hyp_subst_tac 1); |
|
249 |
by (induct_tac "ys" 1); |
|
250 |
by (ALLGOALS Asm_simp_tac); |
|
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
251 |
val lemma = result(); |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
252 |
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
|
253 |
|
3860 | 254 |
goal List.thy "(map f xs = []) = (xs = [])"; |
4423 | 255 |
by (induct_tac "xs" 1); |
256 |
by (ALLGOALS Asm_simp_tac); |
|
3860 | 257 |
qed "map_is_Nil_conv"; |
258 |
AddIffs [map_is_Nil_conv]; |
|
259 |
||
260 |
goal List.thy "([] = map f xs) = (xs = [])"; |
|
4423 | 261 |
by (induct_tac "xs" 1); |
262 |
by (ALLGOALS Asm_simp_tac); |
|
3860 | 263 |
qed "Nil_is_map_conv"; |
264 |
AddIffs [Nil_is_map_conv]; |
|
265 |
||
266 |
||
1169 | 267 |
(** rev **) |
268 |
||
3467 | 269 |
section "rev"; |
270 |
||
3011 | 271 |
goal thy "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
|
272 |
by (induct_tac "xs" 1); |
2512 | 273 |
by (ALLGOALS Asm_simp_tac); |
1169 | 274 |
qed "rev_append"; |
2512 | 275 |
Addsimps[rev_append]; |
1169 | 276 |
|
3011 | 277 |
goal thy "rev(rev l) = l"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
278 |
by (induct_tac "l" 1); |
2512 | 279 |
by (ALLGOALS Asm_simp_tac); |
1169 | 280 |
qed "rev_rev_ident"; |
2512 | 281 |
Addsimps[rev_rev_ident]; |
1169 | 282 |
|
3860 | 283 |
goal thy "(rev xs = []) = (xs = [])"; |
4423 | 284 |
by (induct_tac "xs" 1); |
285 |
by (ALLGOALS Asm_simp_tac); |
|
3860 | 286 |
qed "rev_is_Nil_conv"; |
287 |
AddIffs [rev_is_Nil_conv]; |
|
288 |
||
289 |
goal thy "([] = rev xs) = (xs = [])"; |
|
4423 | 290 |
by (induct_tac "xs" 1); |
291 |
by (ALLGOALS Asm_simp_tac); |
|
3860 | 292 |
qed "Nil_is_rev_conv"; |
293 |
AddIffs [Nil_is_rev_conv]; |
|
294 |
||
2608 | 295 |
|
923 | 296 |
(** mem **) |
297 |
||
3467 | 298 |
section "mem"; |
299 |
||
3011 | 300 |
goal thy "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
|
301 |
by (induct_tac "xs" 1); |
4089 | 302 |
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if]))); |
923 | 303 |
qed "mem_append"; |
2512 | 304 |
Addsimps[mem_append]; |
923 | 305 |
|
3842 | 306 |
goal thy "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
|
307 |
by (induct_tac "xs" 1); |
4089 | 308 |
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if]))); |
923 | 309 |
qed "mem_filter"; |
2512 | 310 |
Addsimps[mem_filter]; |
923 | 311 |
|
3465 | 312 |
(** set **) |
1812 | 313 |
|
3467 | 314 |
section "set"; |
315 |
||
3465 | 316 |
goal thy "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
|
317 |
by (induct_tac "xs" 1); |
1812 | 318 |
by (ALLGOALS Asm_simp_tac); |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
319 |
qed "set_append"; |
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
320 |
Addsimps[set_append]; |
1812 | 321 |
|
3465 | 322 |
goal thy "(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
|
323 |
by (induct_tac "xs" 1); |
4089 | 324 |
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if]))); |
2891 | 325 |
by (Blast_tac 1); |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
326 |
qed "set_mem_eq"; |
1812 | 327 |
|
3465 | 328 |
goal thy "set l <= set (x#l)"; |
1936 | 329 |
by (Simp_tac 1); |
2891 | 330 |
by (Blast_tac 1); |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
331 |
qed "set_subset_Cons"; |
1936 | 332 |
|
3465 | 333 |
goal thy "(set xs = {}) = (xs = [])"; |
3457 | 334 |
by (induct_tac "xs" 1); |
335 |
by (ALLGOALS Asm_simp_tac); |
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
336 |
qed "set_empty"; |
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
337 |
Addsimps [set_empty]; |
2608 | 338 |
|
3465 | 339 |
goal thy "set(rev xs) = set(xs)"; |
3457 | 340 |
by (induct_tac "xs" 1); |
341 |
by (ALLGOALS Asm_simp_tac); |
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
342 |
qed "set_rev"; |
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
343 |
Addsimps [set_rev]; |
2608 | 344 |
|
3465 | 345 |
goal thy "set(map f xs) = f``(set xs)"; |
3457 | 346 |
by (induct_tac "xs" 1); |
347 |
by (ALLGOALS Asm_simp_tac); |
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
348 |
qed "set_map"; |
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
349 |
Addsimps [set_map]; |
2608 | 350 |
|
4605 | 351 |
goal thy "set(map f xs) = f``(set xs)"; |
352 |
by (induct_tac "xs" 1); |
|
353 |
by (ALLGOALS Asm_simp_tac); |
|
354 |
qed "set_map"; |
|
355 |
Addsimps [set_map]; |
|
356 |
||
357 |
goal thy "(x : set(filter P xs)) = (x : set xs & P x)"; |
|
358 |
by (induct_tac "xs" 1); |
|
359 |
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if]))); |
|
360 |
by(Blast_tac 1); |
|
361 |
qed "in_set_filter"; |
|
362 |
Addsimps [in_set_filter]; |
|
363 |
||
1812 | 364 |
|
923 | 365 |
(** list_all **) |
366 |
||
3467 | 367 |
section "list_all"; |
368 |
||
3842 | 369 |
goal thy "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
|
370 |
by (induct_tac "xs" 1); |
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
371 |
by (ALLGOALS Asm_simp_tac); |
923 | 372 |
qed "list_all_True"; |
2512 | 373 |
Addsimps [list_all_True]; |
923 | 374 |
|
3011 | 375 |
goal thy "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
|
376 |
by (induct_tac "xs" 1); |
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
377 |
by (ALLGOALS Asm_simp_tac); |
2512 | 378 |
qed "list_all_append"; |
379 |
Addsimps [list_all_append]; |
|
923 | 380 |
|
3011 | 381 |
goal thy "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
|
382 |
by (induct_tac "xs" 1); |
4089 | 383 |
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if]))); |
2891 | 384 |
by (Blast_tac 1); |
923 | 385 |
qed "list_all_mem_conv"; |
386 |
||
387 |
||
2608 | 388 |
(** filter **) |
923 | 389 |
|
3467 | 390 |
section "filter"; |
391 |
||
3383
7707cb7a5054
Corrected statement of filter_append; added filter_size
paulson
parents:
3342
diff
changeset
|
392 |
goal thy "filter P (xs@ys) = filter P xs @ filter P ys"; |
3457 | 393 |
by (induct_tac "xs" 1); |
4089 | 394 |
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if]))); |
2608 | 395 |
qed "filter_append"; |
396 |
Addsimps [filter_append]; |
|
397 |
||
4605 | 398 |
goal thy "filter (%x. True) xs = xs"; |
399 |
by (induct_tac "xs" 1); |
|
400 |
by (ALLGOALS Asm_simp_tac); |
|
401 |
qed "filter_True"; |
|
402 |
Addsimps [filter_True]; |
|
403 |
||
404 |
goal thy "filter (%x. False) xs = []"; |
|
405 |
by (induct_tac "xs" 1); |
|
406 |
by (ALLGOALS Asm_simp_tac); |
|
407 |
qed "filter_False"; |
|
408 |
Addsimps [filter_False]; |
|
409 |
||
410 |
goal thy "length (filter P xs) <= length xs"; |
|
3457 | 411 |
by (induct_tac "xs" 1); |
4089 | 412 |
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if]))); |
4605 | 413 |
qed "length_filter"; |
3383
7707cb7a5054
Corrected statement of filter_append; added filter_size
paulson
parents:
3342
diff
changeset
|
414 |
|
2608 | 415 |
|
416 |
(** concat **) |
|
417 |
||
3467 | 418 |
section "concat"; |
419 |
||
3011 | 420 |
goal thy "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
|
421 |
by (induct_tac "xs" 1); |
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
422 |
by (ALLGOALS Asm_simp_tac); |
2608 | 423 |
qed"concat_append"; |
424 |
Addsimps [concat_append]; |
|
2512 | 425 |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
426 |
goal thy "(concat xss = []) = (!xs:set xss. xs=[])"; |
4423 | 427 |
by (induct_tac "xss" 1); |
428 |
by (ALLGOALS Asm_simp_tac); |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
429 |
qed "concat_eq_Nil_conv"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
430 |
AddIffs [concat_eq_Nil_conv]; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
431 |
|
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
432 |
goal thy "([] = concat xss) = (!xs:set xss. xs=[])"; |
4423 | 433 |
by (induct_tac "xss" 1); |
434 |
by (ALLGOALS Asm_simp_tac); |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
435 |
qed "Nil_eq_concat_conv"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
436 |
AddIffs [Nil_eq_concat_conv]; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
437 |
|
3467 | 438 |
goal thy "set(concat xs) = Union(set `` set xs)"; |
439 |
by (induct_tac "xs" 1); |
|
440 |
by (ALLGOALS Asm_simp_tac); |
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
441 |
qed"set_concat"; |
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
442 |
Addsimps [set_concat]; |
3467 | 443 |
|
444 |
goal thy "map f (concat xs) = concat (map (map f) xs)"; |
|
445 |
by (induct_tac "xs" 1); |
|
446 |
by (ALLGOALS Asm_simp_tac); |
|
447 |
qed "map_concat"; |
|
448 |
||
449 |
goal thy "filter p (concat xs) = concat (map (filter p) xs)"; |
|
450 |
by (induct_tac "xs" 1); |
|
451 |
by (ALLGOALS Asm_simp_tac); |
|
452 |
qed"filter_concat"; |
|
453 |
||
454 |
goal thy "rev(concat xs) = concat (map rev (rev xs))"; |
|
455 |
by (induct_tac "xs" 1); |
|
2512 | 456 |
by (ALLGOALS Asm_simp_tac); |
2608 | 457 |
qed "rev_concat"; |
923 | 458 |
|
459 |
(** nth **) |
|
460 |
||
3467 | 461 |
section "nth"; |
462 |
||
3011 | 463 |
goal thy |
4502 | 464 |
"!xs. (xs@ys)!n = (if n < length xs then xs!n else ys!(n - length xs))"; |
3457 | 465 |
by (nat_ind_tac "n" 1); |
466 |
by (Asm_simp_tac 1); |
|
467 |
by (rtac allI 1); |
|
468 |
by (exhaust_tac "xs" 1); |
|
469 |
by (ALLGOALS Asm_simp_tac); |
|
470 |
by (rtac allI 1); |
|
471 |
by (exhaust_tac "xs" 1); |
|
472 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 473 |
qed_spec_mp "nth_append"; |
474 |
||
4502 | 475 |
goal thy "!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
|
476 |
by (induct_tac "xs" 1); |
1301 | 477 |
(* case [] *) |
478 |
by (Asm_full_simp_tac 1); |
|
479 |
(* case x#xl *) |
|
480 |
by (rtac allI 1); |
|
481 |
by (nat_ind_tac "n" 1); |
|
482 |
by (ALLGOALS Asm_full_simp_tac); |
|
1485
240cc98b94a7
Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents:
1465
diff
changeset
|
483 |
qed_spec_mp "nth_map"; |
1301 | 484 |
Addsimps [nth_map]; |
485 |
||
4502 | 486 |
goal thy "!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
|
487 |
by (induct_tac "xs" 1); |
1301 | 488 |
(* case [] *) |
489 |
by (Simp_tac 1); |
|
490 |
(* case x#xl *) |
|
491 |
by (rtac allI 1); |
|
492 |
by (nat_ind_tac "n" 1); |
|
493 |
by (ALLGOALS Asm_full_simp_tac); |
|
1485
240cc98b94a7
Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents:
1465
diff
changeset
|
494 |
qed_spec_mp "list_all_nth"; |
1301 | 495 |
|
4502 | 496 |
goal thy "!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
|
497 |
by (induct_tac "xs" 1); |
1301 | 498 |
(* case [] *) |
499 |
by (Simp_tac 1); |
|
500 |
(* case x#xl *) |
|
501 |
by (rtac allI 1); |
|
502 |
by (nat_ind_tac "n" 1); |
|
503 |
(* case 0 *) |
|
504 |
by (Asm_full_simp_tac 1); |
|
505 |
(* case Suc x *) |
|
4089 | 506 |
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1); |
1485
240cc98b94a7
Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents:
1465
diff
changeset
|
507 |
qed_spec_mp "nth_mem"; |
1301 | 508 |
Addsimps [nth_mem]; |
509 |
||
4643 | 510 |
(** More case analysis and induction **) |
511 |
section "More case analysis and induction"; |
|
512 |
||
513 |
val [prem] = goal thy |
|
514 |
"(!!xs. (!ys. length ys < length xs --> P ys) ==> P xs) ==> P(xs)"; |
|
515 |
by(rtac measure_induct 1 THEN etac prem 1); |
|
516 |
qed "length_induct"; |
|
517 |
||
518 |
goal thy "xs ~= [] --> (? ys y. xs = ys@[y])"; |
|
519 |
by(res_inst_tac [("xs","xs")] length_induct 1); |
|
520 |
by(Clarify_tac 1); |
|
521 |
bd (neq_Nil_conv RS iffD1) 1; |
|
522 |
by(Clarify_tac 1); |
|
523 |
by(rename_tac "ys" 1); |
|
524 |
by(case_tac "ys = []" 1); |
|
525 |
by(res_inst_tac [("x","[]")] exI 1); |
|
526 |
by(Asm_full_simp_tac 1); |
|
527 |
by(eres_inst_tac [("x","ys")] allE 1); |
|
528 |
by(Asm_full_simp_tac 1); |
|
529 |
by(REPEAT(etac exE 1)); |
|
530 |
by(rename_tac "zs z" 1); |
|
531 |
by(hyp_subst_tac 1); |
|
532 |
by(res_inst_tac [("x","y#zs")] exI 1); |
|
533 |
by(Simp_tac 1); |
|
534 |
qed_spec_mp "neq_Nil_snocD"; |
|
535 |
||
536 |
val prems = goal thy |
|
537 |
"[| xs=[] ==> P []; !!ys y. xs=ys@[y] ==> P(ys@[y]) |] ==> P xs"; |
|
538 |
by(case_tac "xs = []" 1); |
|
539 |
by(Asm_simp_tac 1); |
|
540 |
bes prems 1; |
|
541 |
bd neq_Nil_snocD 1; |
|
542 |
by(REPEAT(etac exE 1)); |
|
543 |
by(Asm_simp_tac 1); |
|
544 |
bes prems 1; |
|
545 |
qed "snoc_eq_cases"; |
|
546 |
||
547 |
val prems = goal thy |
|
548 |
"[| P []; !!x xs. P xs ==> P(xs@[x]) |] ==> P(xs)"; |
|
549 |
by(res_inst_tac [("xs","xs")] length_induct 1); |
|
550 |
by(res_inst_tac [("xs","xs")] snoc_eq_cases 1); |
|
551 |
brs prems 1; |
|
552 |
by(fast_tac (claset() addIs prems addss simpset()) 1); |
|
553 |
qed "snoc_induct"; |
|
554 |
||
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
555 |
(** last & butlast **) |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
556 |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
557 |
goal thy "last(xs@[x]) = x"; |
4423 | 558 |
by (induct_tac "xs" 1); |
559 |
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if]))); |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
560 |
qed "last_snoc"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
561 |
Addsimps [last_snoc]; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
562 |
|
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
563 |
goal thy "butlast(xs@[x]) = xs"; |
4423 | 564 |
by (induct_tac "xs" 1); |
565 |
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if]))); |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
566 |
qed "butlast_snoc"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
567 |
Addsimps [butlast_snoc]; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
568 |
|
4643 | 569 |
goal thy "length(butlast xs) = length xs - 1"; |
570 |
by(res_inst_tac [("xs","xs")] snoc_induct 1); |
|
571 |
by(ALLGOALS Asm_simp_tac); |
|
572 |
qed "length_butlast"; |
|
573 |
Addsimps [length_butlast]; |
|
574 |
||
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
575 |
goal thy |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
576 |
"!ys. butlast (xs@ys) = (if ys=[] then butlast xs else xs@butlast ys)"; |
4423 | 577 |
by (induct_tac "xs" 1); |
578 |
by (ALLGOALS(asm_simp_tac (simpset() addsplits [expand_if]))); |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
579 |
qed_spec_mp "butlast_append"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
580 |
|
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
581 |
goal thy "x:set(butlast xs) --> x:set xs"; |
4423 | 582 |
by (induct_tac "xs" 1); |
583 |
by (ALLGOALS (asm_simp_tac (simpset() addsplits [expand_if]))); |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
584 |
qed_spec_mp "in_set_butlastD"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
585 |
|
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
586 |
goal thy "!!xs. x:set(butlast xs) ==> x:set(butlast(xs@ys))"; |
4423 | 587 |
by (asm_simp_tac (simpset() addsimps [butlast_append] |
3919 | 588 |
addsplits [expand_if]) 1); |
4423 | 589 |
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
|
590 |
qed "in_set_butlast_appendI1"; |
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
591 |
|
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
592 |
goal thy "!!xs. x:set(butlast ys) ==> x:set(butlast(xs@ys))"; |
4423 | 593 |
by (asm_simp_tac (simpset() addsimps [butlast_append] |
3919 | 594 |
addsplits [expand_if]) 1); |
4423 | 595 |
by (Clarify_tac 1); |
596 |
by (Full_simp_tac 1); |
|
3896
ee8ebb74ec00
Various new lemmas. Improved conversion of equations to rewrite rules:
nipkow
parents:
3860
diff
changeset
|
597 |
qed "in_set_butlast_appendI2"; |
3902 | 598 |
|
2608 | 599 |
(** take & drop **) |
600 |
section "take & drop"; |
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
601 |
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
602 |
goal thy "take 0 xs = []"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
603 |
by (induct_tac "xs" 1); |
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
604 |
by (ALLGOALS Asm_simp_tac); |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
605 |
qed "take_0"; |
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
606 |
|
2608 | 607 |
goal thy "drop 0 xs = xs"; |
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
608 |
by (induct_tac "xs" 1); |
2608 | 609 |
by (ALLGOALS Asm_simp_tac); |
610 |
qed "drop_0"; |
|
611 |
||
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
612 |
goal thy "take (Suc n) (x#xs) = x # take n xs"; |
1552 | 613 |
by (Simp_tac 1); |
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
614 |
qed "take_Suc_Cons"; |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
615 |
|
2608 | 616 |
goal thy "drop (Suc n) (x#xs) = drop n xs"; |
617 |
by (Simp_tac 1); |
|
618 |
qed "drop_Suc_Cons"; |
|
619 |
||
620 |
Delsimps [take_Cons,drop_Cons]; |
|
621 |
Addsimps [take_0,take_Suc_Cons,drop_0,drop_Suc_Cons]; |
|
622 |
||
3011 | 623 |
goal thy "!xs. length(take n xs) = min (length xs) n"; |
3457 | 624 |
by (nat_ind_tac "n" 1); |
625 |
by (ALLGOALS Asm_simp_tac); |
|
626 |
by (rtac allI 1); |
|
627 |
by (exhaust_tac "xs" 1); |
|
628 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 629 |
qed_spec_mp "length_take"; |
630 |
Addsimps [length_take]; |
|
923 | 631 |
|
3011 | 632 |
goal thy "!xs. length(drop n xs) = (length xs - n)"; |
3457 | 633 |
by (nat_ind_tac "n" 1); |
634 |
by (ALLGOALS Asm_simp_tac); |
|
635 |
by (rtac allI 1); |
|
636 |
by (exhaust_tac "xs" 1); |
|
637 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 638 |
qed_spec_mp "length_drop"; |
639 |
Addsimps [length_drop]; |
|
640 |
||
3011 | 641 |
goal thy "!xs. length xs <= n --> take n xs = xs"; |
3457 | 642 |
by (nat_ind_tac "n" 1); |
643 |
by (ALLGOALS Asm_simp_tac); |
|
644 |
by (rtac allI 1); |
|
645 |
by (exhaust_tac "xs" 1); |
|
646 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 647 |
qed_spec_mp "take_all"; |
923 | 648 |
|
3011 | 649 |
goal thy "!xs. length xs <= n --> drop n xs = []"; |
3457 | 650 |
by (nat_ind_tac "n" 1); |
651 |
by (ALLGOALS Asm_simp_tac); |
|
652 |
by (rtac allI 1); |
|
653 |
by (exhaust_tac "xs" 1); |
|
654 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 655 |
qed_spec_mp "drop_all"; |
656 |
||
3011 | 657 |
goal thy |
2608 | 658 |
"!xs. take n (xs @ ys) = (take n xs @ take (n - length xs) ys)"; |
3457 | 659 |
by (nat_ind_tac "n" 1); |
660 |
by (ALLGOALS Asm_simp_tac); |
|
661 |
by (rtac allI 1); |
|
662 |
by (exhaust_tac "xs" 1); |
|
663 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 664 |
qed_spec_mp "take_append"; |
665 |
Addsimps [take_append]; |
|
666 |
||
3011 | 667 |
goal thy "!xs. drop n (xs@ys) = drop n xs @ drop (n - length xs) ys"; |
3457 | 668 |
by (nat_ind_tac "n" 1); |
669 |
by (ALLGOALS Asm_simp_tac); |
|
670 |
by (rtac allI 1); |
|
671 |
by (exhaust_tac "xs" 1); |
|
672 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 673 |
qed_spec_mp "drop_append"; |
674 |
Addsimps [drop_append]; |
|
675 |
||
3011 | 676 |
goal thy "!xs n. take n (take m xs) = take (min n m) xs"; |
3457 | 677 |
by (nat_ind_tac "m" 1); |
678 |
by (ALLGOALS Asm_simp_tac); |
|
679 |
by (rtac allI 1); |
|
680 |
by (exhaust_tac "xs" 1); |
|
681 |
by (ALLGOALS Asm_simp_tac); |
|
682 |
by (rtac allI 1); |
|
683 |
by (exhaust_tac "n" 1); |
|
684 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 685 |
qed_spec_mp "take_take"; |
686 |
||
3011 | 687 |
goal thy "!xs. drop n (drop m xs) = drop (n + m) xs"; |
3457 | 688 |
by (nat_ind_tac "m" 1); |
689 |
by (ALLGOALS Asm_simp_tac); |
|
690 |
by (rtac allI 1); |
|
691 |
by (exhaust_tac "xs" 1); |
|
692 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 693 |
qed_spec_mp "drop_drop"; |
923 | 694 |
|
3011 | 695 |
goal thy "!xs n. take n (drop m xs) = drop m (take (n + m) xs)"; |
3457 | 696 |
by (nat_ind_tac "m" 1); |
697 |
by (ALLGOALS Asm_simp_tac); |
|
698 |
by (rtac allI 1); |
|
699 |
by (exhaust_tac "xs" 1); |
|
700 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 701 |
qed_spec_mp "take_drop"; |
702 |
||
3011 | 703 |
goal thy "!xs. take n (map f xs) = map f (take n xs)"; |
3457 | 704 |
by (nat_ind_tac "n" 1); |
705 |
by (ALLGOALS Asm_simp_tac); |
|
706 |
by (rtac allI 1); |
|
707 |
by (exhaust_tac "xs" 1); |
|
708 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 709 |
qed_spec_mp "take_map"; |
710 |
||
3011 | 711 |
goal thy "!xs. drop n (map f xs) = map f (drop n xs)"; |
3457 | 712 |
by (nat_ind_tac "n" 1); |
713 |
by (ALLGOALS Asm_simp_tac); |
|
714 |
by (rtac allI 1); |
|
715 |
by (exhaust_tac "xs" 1); |
|
716 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 717 |
qed_spec_mp "drop_map"; |
718 |
||
4502 | 719 |
goal thy "!n i. i < n --> (take n xs)!i = xs!i"; |
3457 | 720 |
by (induct_tac "xs" 1); |
721 |
by (ALLGOALS Asm_simp_tac); |
|
3708 | 722 |
by (Clarify_tac 1); |
3457 | 723 |
by (exhaust_tac "n" 1); |
724 |
by (Blast_tac 1); |
|
725 |
by (exhaust_tac "i" 1); |
|
726 |
by (ALLGOALS Asm_full_simp_tac); |
|
2608 | 727 |
qed_spec_mp "nth_take"; |
728 |
Addsimps [nth_take]; |
|
923 | 729 |
|
4502 | 730 |
goal thy "!xs i. n + i <= length xs --> (drop n xs)!i = xs!(n+i)"; |
3457 | 731 |
by (nat_ind_tac "n" 1); |
732 |
by (ALLGOALS Asm_simp_tac); |
|
733 |
by (rtac allI 1); |
|
734 |
by (exhaust_tac "xs" 1); |
|
735 |
by (ALLGOALS Asm_simp_tac); |
|
2608 | 736 |
qed_spec_mp "nth_drop"; |
737 |
Addsimps [nth_drop]; |
|
738 |
||
739 |
(** takeWhile & dropWhile **) |
|
740 |
||
3467 | 741 |
section "takeWhile & dropWhile"; |
742 |
||
3586 | 743 |
goal thy "takeWhile P xs @ dropWhile P xs = xs"; |
744 |
by (induct_tac "xs" 1); |
|
745 |
by (Simp_tac 1); |
|
4089 | 746 |
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1); |
3586 | 747 |
qed "takeWhile_dropWhile_id"; |
748 |
Addsimps [takeWhile_dropWhile_id]; |
|
749 |
||
750 |
goal thy "x:set xs & ~P(x) --> takeWhile P (xs @ ys) = takeWhile P xs"; |
|
3457 | 751 |
by (induct_tac "xs" 1); |
752 |
by (Simp_tac 1); |
|
4089 | 753 |
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1); |
3457 | 754 |
by (Blast_tac 1); |
2608 | 755 |
bind_thm("takeWhile_append1", conjI RS (result() RS mp)); |
756 |
Addsimps [takeWhile_append1]; |
|
923 | 757 |
|
3011 | 758 |
goal thy |
3842 | 759 |
"(!x:set xs. P(x)) --> takeWhile P (xs @ ys) = xs @ takeWhile P ys"; |
3457 | 760 |
by (induct_tac "xs" 1); |
761 |
by (Simp_tac 1); |
|
4089 | 762 |
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1); |
2608 | 763 |
bind_thm("takeWhile_append2", ballI RS (result() RS mp)); |
764 |
Addsimps [takeWhile_append2]; |
|
1169 | 765 |
|
3011 | 766 |
goal thy |
3465 | 767 |
"x:set xs & ~P(x) --> dropWhile P (xs @ ys) = (dropWhile P xs)@ys"; |
3457 | 768 |
by (induct_tac "xs" 1); |
769 |
by (Simp_tac 1); |
|
4089 | 770 |
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1); |
3457 | 771 |
by (Blast_tac 1); |
2608 | 772 |
bind_thm("dropWhile_append1", conjI RS (result() RS mp)); |
773 |
Addsimps [dropWhile_append1]; |
|
774 |
||
3011 | 775 |
goal thy |
3842 | 776 |
"(!x:set xs. P(x)) --> dropWhile P (xs @ ys) = dropWhile P ys"; |
3457 | 777 |
by (induct_tac "xs" 1); |
778 |
by (Simp_tac 1); |
|
4089 | 779 |
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1); |
2608 | 780 |
bind_thm("dropWhile_append2", ballI RS (result() RS mp)); |
781 |
Addsimps [dropWhile_append2]; |
|
782 |
||
3465 | 783 |
goal thy "x:set(takeWhile P xs) --> x:set xs & P x"; |
3457 | 784 |
by (induct_tac "xs" 1); |
785 |
by (Simp_tac 1); |
|
4089 | 786 |
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1); |
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
787 |
qed_spec_mp"set_take_whileD"; |
2608 | 788 |
|
4132 | 789 |
qed_goal "zip_Nil_Nil" thy "zip [] [] = []" (K [Simp_tac 1]); |
790 |
qed_goal "zip_Cons_Cons" thy "zip (x#xs) (y#ys) = (x,y)#zip xs ys" |
|
791 |
(K [Simp_tac 1]); |
|
4605 | 792 |
|
793 |
(** nodups & remdups **) |
|
794 |
section "nodups & remdups"; |
|
795 |
||
796 |
goal thy "set(remdups xs) = set xs"; |
|
797 |
by (induct_tac "xs" 1); |
|
798 |
by (Simp_tac 1); |
|
799 |
by (asm_full_simp_tac (simpset() addsimps [insert_absorb] |
|
800 |
addsplits [expand_if]) 1); |
|
801 |
qed "set_remdups"; |
|
802 |
Addsimps [set_remdups]; |
|
803 |
||
804 |
goal thy "nodups(remdups xs)"; |
|
805 |
by (induct_tac "xs" 1); |
|
806 |
by (Simp_tac 1); |
|
807 |
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1); |
|
808 |
qed "nodups_remdups"; |
|
809 |
||
810 |
goal thy "nodups xs --> nodups (filter P xs)"; |
|
811 |
by (induct_tac "xs" 1); |
|
812 |
by (Simp_tac 1); |
|
813 |
by (asm_full_simp_tac (simpset() addsplits [expand_if]) 1); |
|
814 |
qed_spec_mp "nodups_filter"; |
|
815 |
||
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
816 |
(** replicate **) |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
817 |
section "replicate"; |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
818 |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
819 |
goal thy "set(replicate (Suc n) x) = {x}"; |
4423 | 820 |
by (induct_tac "n" 1); |
821 |
by (ALLGOALS Asm_full_simp_tac); |
|
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
822 |
val lemma = result(); |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
823 |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
824 |
goal thy "!!n. n ~= 0 ==> set(replicate n x) = {x}"; |
4423 | 825 |
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
|
826 |
qed "set_replicate"; |
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
827 |
Addsimps [set_replicate]; |