| author | wenzelm |
| Thu, 16 Oct 1997 14:00:20 +0200 | |
| changeset 3895 | b2463861c86a |
| parent 3860 | a29ab43f7174 |
| child 3896 | ee8ebb74ec00 |
| 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 |
||
| 3708 | 9 |
open List; |
10 |
||
| 3011 | 11 |
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
|
12 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
13 |
by (ALLGOALS Asm_simp_tac); |
| 2608 | 14 |
qed_spec_mp "not_Cons_self"; |
| 3574 | 15 |
bind_thm("not_Cons_self2",not_Cons_self RS not_sym);
|
16 |
Addsimps [not_Cons_self,not_Cons_self2]; |
|
| 923 | 17 |
|
| 3011 | 18 |
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
|
19 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
20 |
by (Simp_tac 1); |
|
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
21 |
by (Asm_simp_tac 1); |
| 923 | 22 |
qed "neq_Nil_conv"; |
23 |
||
24 |
||
| 3468 | 25 |
(** "lists": the list-forming operator over sets **) |
|
3342
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
26 |
|
|
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
27 |
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
|
28 |
by (rtac lfp_mono 1); |
|
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
29 |
by (REPEAT (ares_tac basic_monos 1)); |
|
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3292
diff
changeset
|
30 |
qed "lists_mono"; |
| 3196 | 31 |
|
| 3468 | 32 |
val listsE = lists.mk_cases list.simps "x#l : lists A"; |
33 |
AddSEs [listsE]; |
|
34 |
AddSIs lists.intrs; |
|
35 |
||
36 |
goal thy "!!l. l: lists A ==> l: lists B --> l: lists (A Int B)"; |
|
37 |
by (etac lists.induct 1); |
|
38 |
by (ALLGOALS Blast_tac); |
|
39 |
qed_spec_mp "lists_IntI"; |
|
40 |
||
41 |
goal thy "lists (A Int B) = lists A Int lists B"; |
|
42 |
br (mono_Int RS equalityI) 1; |
|
43 |
by (simp_tac (!simpset addsimps [mono_def, lists_mono]) 1); |
|
44 |
by (blast_tac (!claset addSIs [lists_IntI]) 1); |
|
45 |
qed "lists_Int_eq"; |
|
46 |
Addsimps [lists_Int_eq]; |
|
47 |
||
| 3196 | 48 |
|
| 2608 | 49 |
(** list_case **) |
50 |
||
| 3011 | 51 |
goal thy |
| 2608 | 52 |
"P(list_case a f xs) = ((xs=[] --> P(a)) & \ |
| 2891 | 53 |
\ (!y ys. xs=y#ys --> P(f y ys)))"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
54 |
by (induct_tac "xs" 1); |
| 2608 | 55 |
by (ALLGOALS Asm_simp_tac); |
| 2891 | 56 |
by (Blast_tac 1); |
| 2608 | 57 |
qed "expand_list_case"; |
58 |
||
| 3011 | 59 |
val prems = goal thy "[| P([]); !!x xs. P(x#xs) |] ==> P(xs)"; |
| 3457 | 60 |
by (induct_tac "xs" 1); |
61 |
by (REPEAT(resolve_tac prems 1)); |
|
| 2608 | 62 |
qed "list_cases"; |
63 |
||
| 3011 | 64 |
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
|
65 |
by (induct_tac "xs" 1); |
| 2891 | 66 |
by (Blast_tac 1); |
67 |
by (Blast_tac 1); |
|
| 2608 | 68 |
bind_thm("list_eq_cases",
|
69 |
impI RSN (2,allI RSN (2,allI RSN (2,impI RS (conjI RS (result() RS mp)))))); |
|
70 |
||
71 |
||
| 3860 | 72 |
(** length **) |
73 |
(* needs to come before "@" because of thm append_eq_append_conv *) |
|
74 |
||
75 |
section "length"; |
|
76 |
||
77 |
goal thy "length(xs@ys) = length(xs)+length(ys)"; |
|
78 |
by (induct_tac "xs" 1); |
|
79 |
by (ALLGOALS Asm_simp_tac); |
|
80 |
qed"length_append"; |
|
81 |
Addsimps [length_append]; |
|
82 |
||
83 |
goal thy "length (map f l) = length l"; |
|
84 |
by (induct_tac "l" 1); |
|
85 |
by (ALLGOALS Simp_tac); |
|
86 |
qed "length_map"; |
|
87 |
Addsimps [length_map]; |
|
88 |
||
89 |
goal thy "length(rev xs) = length(xs)"; |
|
90 |
by (induct_tac "xs" 1); |
|
91 |
by (ALLGOALS Asm_simp_tac); |
|
92 |
qed "length_rev"; |
|
93 |
Addsimps [length_rev]; |
|
94 |
||
95 |
goal thy "(length xs = 0) = (xs = [])"; |
|
96 |
by (induct_tac "xs" 1); |
|
97 |
by (ALLGOALS Asm_simp_tac); |
|
98 |
qed "length_0_conv"; |
|
99 |
AddIffs [length_0_conv]; |
|
100 |
||
101 |
goal thy "(0 = length xs) = (xs = [])"; |
|
102 |
by (induct_tac "xs" 1); |
|
103 |
by (ALLGOALS Asm_simp_tac); |
|
104 |
qed "zero_length_conv"; |
|
105 |
AddIffs [zero_length_conv]; |
|
106 |
||
107 |
goal thy "(0 < length xs) = (xs ~= [])"; |
|
108 |
by (induct_tac "xs" 1); |
|
109 |
by (ALLGOALS Asm_simp_tac); |
|
110 |
qed "length_greater_0_conv"; |
|
111 |
AddIffs [length_greater_0_conv]; |
|
112 |
||
| 923 | 113 |
(** @ - append **) |
114 |
||
| 3467 | 115 |
section "@ - append"; |
116 |
||
| 3011 | 117 |
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
|
118 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
119 |
by (ALLGOALS Asm_simp_tac); |
| 923 | 120 |
qed "append_assoc"; |
| 2512 | 121 |
Addsimps [append_assoc]; |
| 923 | 122 |
|
| 3011 | 123 |
goal thy "xs @ [] = xs"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
124 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
125 |
by (ALLGOALS Asm_simp_tac); |
| 923 | 126 |
qed "append_Nil2"; |
| 2512 | 127 |
Addsimps [append_Nil2]; |
| 923 | 128 |
|
| 3011 | 129 |
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
|
130 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
131 |
by (ALLGOALS Asm_simp_tac); |
| 2608 | 132 |
qed "append_is_Nil_conv"; |
133 |
AddIffs [append_is_Nil_conv]; |
|
134 |
||
| 3011 | 135 |
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
|
136 |
by (induct_tac "xs" 1); |
| 2608 | 137 |
by (ALLGOALS Asm_simp_tac); |
| 3457 | 138 |
by (Blast_tac 1); |
| 2608 | 139 |
qed "Nil_is_append_conv"; |
140 |
AddIffs [Nil_is_append_conv]; |
|
| 923 | 141 |
|
| 3574 | 142 |
goal thy "(xs @ ys = xs) = (ys=[])"; |
143 |
by (induct_tac "xs" 1); |
|
144 |
by (ALLGOALS Asm_simp_tac); |
|
145 |
qed "append_self_conv"; |
|
146 |
||
147 |
goal thy "(xs = xs @ ys) = (ys=[])"; |
|
148 |
by (induct_tac "xs" 1); |
|
149 |
by (ALLGOALS Asm_simp_tac); |
|
150 |
by (Blast_tac 1); |
|
151 |
qed "self_append_conv"; |
|
152 |
AddIffs [append_self_conv,self_append_conv]; |
|
153 |
||
| 3860 | 154 |
goal thy "!ys. length xs = length ys | length us = length vs \ |
155 |
\ --> (xs@us = ys@vs) = (xs=ys & us=vs)"; |
|
156 |
by(induct_tac "xs" 1); |
|
157 |
by(rtac allI 1); |
|
158 |
by(exhaust_tac "ys" 1); |
|
159 |
by(Asm_simp_tac 1); |
|
160 |
by(fast_tac (!claset addIs [less_add_Suc2] addss !simpset |
|
161 |
addEs [less_not_refl2 RSN (2,rev_notE)]) 1); |
|
162 |
by(rtac allI 1); |
|
163 |
by(exhaust_tac "ys" 1); |
|
164 |
by(fast_tac (!claset addIs [less_add_Suc2] addss !simpset |
|
165 |
addEs [(less_not_refl2 RS not_sym) RSN (2,rev_notE)]) 1); |
|
166 |
by(Asm_simp_tac 1); |
|
167 |
qed_spec_mp "append_eq_append_conv"; |
|
168 |
Addsimps [append_eq_append_conv]; |
|
169 |
||
170 |
(* Still needed? Unconditional and hence AddIffs. |
|
171 |
||
| 3011 | 172 |
goal thy "(xs @ ys = xs @ zs) = (ys=zs)"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
173 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
174 |
by (ALLGOALS Asm_simp_tac); |
| 923 | 175 |
qed "same_append_eq"; |
| 2608 | 176 |
AddIffs [same_append_eq]; |
177 |
||
| 3011 | 178 |
goal thy "!ys. (xs @ [x] = ys @ [y]) = (xs = ys & x = y)"; |
| 3457 | 179 |
by (induct_tac "xs" 1); |
180 |
by (rtac allI 1); |
|
181 |
by (induct_tac "ys" 1); |
|
182 |
by (ALLGOALS Asm_simp_tac); |
|
183 |
by (rtac allI 1); |
|
184 |
by (induct_tac "ys" 1); |
|
185 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 186 |
qed_spec_mp "append1_eq_conv"; |
187 |
AddIffs [append1_eq_conv]; |
|
188 |
||
| 3571 | 189 |
goal thy "!ys zs. (ys @ xs = zs @ xs) = (ys=zs)"; |
190 |
by (induct_tac "xs" 1); |
|
191 |
by (Simp_tac 1); |
|
| 3708 | 192 |
by (Clarify_tac 1); |
| 3571 | 193 |
by (subgoal_tac "((ys @ [a]) @ list = (zs @ [a]) @ list) = (ys=zs)" 1); |
194 |
by (Asm_full_simp_tac 1); |
|
195 |
by (Blast_tac 1); |
|
196 |
qed_spec_mp "append_same_eq"; |
|
197 |
AddIffs [append_same_eq]; |
|
| 3860 | 198 |
*) |
| 3571 | 199 |
|
| 3011 | 200 |
goal thy "xs ~= [] --> hd xs # tl xs = xs"; |
| 3457 | 201 |
by (induct_tac "xs" 1); |
202 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 203 |
qed_spec_mp "hd_Cons_tl"; |
204 |
Addsimps [hd_Cons_tl]; |
|
| 923 | 205 |
|
| 3011 | 206 |
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
|
207 |
by (induct_tac "xs" 1); |
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
208 |
by (ALLGOALS Asm_simp_tac); |
|
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
209 |
qed "hd_append"; |
| 923 | 210 |
|
| 3571 | 211 |
goal thy "!!xs. xs ~= [] ==> hd(xs @ ys) = hd xs"; |
212 |
by (asm_simp_tac (!simpset addsimps [hd_append] |
|
213 |
setloop (split_tac [expand_list_case])) 1); |
|
214 |
qed "hd_append2"; |
|
215 |
Addsimps [hd_append2]; |
|
216 |
||
| 3011 | 217 |
goal thy "tl(xs@ys) = (case xs of [] => tl(ys) | z#zs => zs@ys)"; |
| 3457 | 218 |
by (simp_tac (!simpset setloop(split_tac[expand_list_case])) 1); |
| 2608 | 219 |
qed "tl_append"; |
220 |
||
| 3571 | 221 |
goal thy "!!xs. xs ~= [] ==> tl(xs @ ys) = (tl xs) @ ys"; |
222 |
by (asm_simp_tac (!simpset addsimps [tl_append] |
|
223 |
setloop (split_tac [expand_list_case])) 1); |
|
224 |
qed "tl_append2"; |
|
225 |
Addsimps [tl_append2]; |
|
226 |
||
| 2608 | 227 |
(** map **) |
228 |
||
| 3467 | 229 |
section "map"; |
230 |
||
| 3011 | 231 |
goal thy |
| 3465 | 232 |
"(!x. x : set xs --> f x = g x) --> map f xs = map g xs"; |
| 3457 | 233 |
by (induct_tac "xs" 1); |
234 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 235 |
bind_thm("map_ext", impI RS (allI RS (result() RS mp)));
|
236 |
||
| 3842 | 237 |
goal thy "map (%x. x) = (%xs. xs)"; |
| 2608 | 238 |
by (rtac ext 1); |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
239 |
by (induct_tac "xs" 1); |
| 2608 | 240 |
by (ALLGOALS Asm_simp_tac); |
241 |
qed "map_ident"; |
|
242 |
Addsimps[map_ident]; |
|
243 |
||
| 3011 | 244 |
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
|
245 |
by (induct_tac "xs" 1); |
| 2608 | 246 |
by (ALLGOALS Asm_simp_tac); |
247 |
qed "map_append"; |
|
248 |
Addsimps[map_append]; |
|
249 |
||
| 3011 | 250 |
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
|
251 |
by (induct_tac "xs" 1); |
| 2608 | 252 |
by (ALLGOALS Asm_simp_tac); |
253 |
qed "map_compose"; |
|
254 |
Addsimps[map_compose]; |
|
255 |
||
| 3011 | 256 |
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
|
257 |
by (induct_tac "xs" 1); |
| 2608 | 258 |
by (ALLGOALS Asm_simp_tac); |
259 |
qed "rev_map"; |
|
260 |
||
|
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
261 |
(* a congruence rule for map: *) |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
262 |
goal thy |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
263 |
"(xs=ys) --> (!x. x : set ys --> f x = g x) --> map f xs = map g ys"; |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
264 |
by(rtac impI 1); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
265 |
by(hyp_subst_tac 1); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
266 |
by(induct_tac "ys" 1); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
267 |
by(ALLGOALS Asm_simp_tac); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
268 |
val lemma = result(); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
269 |
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
|
270 |
|
| 3860 | 271 |
goal List.thy "(map f xs = []) = (xs = [])"; |
272 |
by(induct_tac "xs" 1); |
|
273 |
by(ALLGOALS Asm_simp_tac); |
|
274 |
qed "map_is_Nil_conv"; |
|
275 |
AddIffs [map_is_Nil_conv]; |
|
276 |
||
277 |
goal List.thy "([] = map f xs) = (xs = [])"; |
|
278 |
by(induct_tac "xs" 1); |
|
279 |
by(ALLGOALS Asm_simp_tac); |
|
280 |
qed "Nil_is_map_conv"; |
|
281 |
AddIffs [Nil_is_map_conv]; |
|
282 |
||
283 |
||
| 1169 | 284 |
(** rev **) |
285 |
||
| 3467 | 286 |
section "rev"; |
287 |
||
| 3011 | 288 |
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
|
289 |
by (induct_tac "xs" 1); |
| 2512 | 290 |
by (ALLGOALS Asm_simp_tac); |
| 1169 | 291 |
qed "rev_append"; |
| 2512 | 292 |
Addsimps[rev_append]; |
| 1169 | 293 |
|
| 3011 | 294 |
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
|
295 |
by (induct_tac "l" 1); |
| 2512 | 296 |
by (ALLGOALS Asm_simp_tac); |
| 1169 | 297 |
qed "rev_rev_ident"; |
| 2512 | 298 |
Addsimps[rev_rev_ident]; |
| 1169 | 299 |
|
| 3860 | 300 |
goal thy "(rev xs = []) = (xs = [])"; |
301 |
by(induct_tac "xs" 1); |
|
302 |
by(ALLGOALS Asm_simp_tac); |
|
303 |
qed "rev_is_Nil_conv"; |
|
304 |
AddIffs [rev_is_Nil_conv]; |
|
305 |
||
306 |
goal thy "([] = rev xs) = (xs = [])"; |
|
307 |
by(induct_tac "xs" 1); |
|
308 |
by(ALLGOALS Asm_simp_tac); |
|
309 |
qed "Nil_is_rev_conv"; |
|
310 |
AddIffs [Nil_is_rev_conv]; |
|
311 |
||
| 2608 | 312 |
|
| 923 | 313 |
(** mem **) |
314 |
||
| 3467 | 315 |
section "mem"; |
316 |
||
| 3011 | 317 |
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
|
318 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
319 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
| 923 | 320 |
qed "mem_append"; |
| 2512 | 321 |
Addsimps[mem_append]; |
| 923 | 322 |
|
| 3842 | 323 |
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
|
324 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
325 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
| 923 | 326 |
qed "mem_filter"; |
| 2512 | 327 |
Addsimps[mem_filter]; |
| 923 | 328 |
|
| 3465 | 329 |
(** set **) |
| 1812 | 330 |
|
| 3467 | 331 |
section "set"; |
332 |
||
| 3465 | 333 |
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
|
334 |
by (induct_tac "xs" 1); |
| 1812 | 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_append"; |
|
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
337 |
Addsimps[set_append]; |
| 1812 | 338 |
|
| 3465 | 339 |
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
|
340 |
by (induct_tac "xs" 1); |
| 1812 | 341 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
| 2891 | 342 |
by (Blast_tac 1); |
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
343 |
qed "set_mem_eq"; |
| 1812 | 344 |
|
| 3465 | 345 |
goal thy "set l <= set (x#l)"; |
| 1936 | 346 |
by (Simp_tac 1); |
| 2891 | 347 |
by (Blast_tac 1); |
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
348 |
qed "set_subset_Cons"; |
| 1936 | 349 |
|
| 3465 | 350 |
goal thy "(set xs = {}) = (xs = [])";
|
| 3457 | 351 |
by (induct_tac "xs" 1); |
352 |
by (ALLGOALS Asm_simp_tac); |
|
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
353 |
qed "set_empty"; |
|
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
354 |
Addsimps [set_empty]; |
| 2608 | 355 |
|
| 3465 | 356 |
goal thy "set(rev xs) = set(xs)"; |
| 3457 | 357 |
by (induct_tac "xs" 1); |
358 |
by (ALLGOALS Asm_simp_tac); |
|
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
359 |
qed "set_rev"; |
|
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
360 |
Addsimps [set_rev]; |
| 2608 | 361 |
|
| 3465 | 362 |
goal thy "set(map f xs) = f``(set xs)"; |
| 3457 | 363 |
by (induct_tac "xs" 1); |
364 |
by (ALLGOALS Asm_simp_tac); |
|
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
365 |
qed "set_map"; |
|
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
366 |
Addsimps [set_map]; |
| 2608 | 367 |
|
| 1812 | 368 |
|
| 923 | 369 |
(** list_all **) |
370 |
||
| 3467 | 371 |
section "list_all"; |
372 |
||
| 3842 | 373 |
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
|
374 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
375 |
by (ALLGOALS Asm_simp_tac); |
| 923 | 376 |
qed "list_all_True"; |
| 2512 | 377 |
Addsimps [list_all_True]; |
| 923 | 378 |
|
| 3011 | 379 |
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
|
380 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
381 |
by (ALLGOALS Asm_simp_tac); |
| 2512 | 382 |
qed "list_all_append"; |
383 |
Addsimps [list_all_append]; |
|
| 923 | 384 |
|
| 3011 | 385 |
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
|
386 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
387 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
| 2891 | 388 |
by (Blast_tac 1); |
| 923 | 389 |
qed "list_all_mem_conv"; |
390 |
||
391 |
||
| 2608 | 392 |
(** filter **) |
| 923 | 393 |
|
| 3467 | 394 |
section "filter"; |
395 |
||
|
3383
7707cb7a5054
Corrected statement of filter_append; added filter_size
paulson
parents:
3342
diff
changeset
|
396 |
goal thy "filter P (xs@ys) = filter P xs @ filter P ys"; |
| 3457 | 397 |
by (induct_tac "xs" 1); |
398 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
|
| 2608 | 399 |
qed "filter_append"; |
400 |
Addsimps [filter_append]; |
|
401 |
||
|
3383
7707cb7a5054
Corrected statement of filter_append; added filter_size
paulson
parents:
3342
diff
changeset
|
402 |
goal thy "size (filter P xs) <= size xs"; |
| 3457 | 403 |
by (induct_tac "xs" 1); |
404 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
|
|
3383
7707cb7a5054
Corrected statement of filter_append; added filter_size
paulson
parents:
3342
diff
changeset
|
405 |
qed "filter_size"; |
|
7707cb7a5054
Corrected statement of filter_append; added filter_size
paulson
parents:
3342
diff
changeset
|
406 |
|
| 2608 | 407 |
|
408 |
(** concat **) |
|
409 |
||
| 3467 | 410 |
section "concat"; |
411 |
||
| 3011 | 412 |
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
|
413 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
414 |
by (ALLGOALS Asm_simp_tac); |
| 2608 | 415 |
qed"concat_append"; |
416 |
Addsimps [concat_append]; |
|
| 2512 | 417 |
|
| 3467 | 418 |
goal thy "set(concat xs) = Union(set `` set xs)"; |
419 |
by (induct_tac "xs" 1); |
|
420 |
by (ALLGOALS Asm_simp_tac); |
|
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
421 |
qed"set_concat"; |
|
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
422 |
Addsimps [set_concat]; |
| 3467 | 423 |
|
424 |
goal thy "map f (concat xs) = concat (map (map f) xs)"; |
|
425 |
by (induct_tac "xs" 1); |
|
426 |
by (ALLGOALS Asm_simp_tac); |
|
427 |
qed "map_concat"; |
|
428 |
||
429 |
goal thy "filter p (concat xs) = concat (map (filter p) xs)"; |
|
430 |
by (induct_tac "xs" 1); |
|
431 |
by (ALLGOALS Asm_simp_tac); |
|
432 |
qed"filter_concat"; |
|
433 |
||
434 |
goal thy "rev(concat xs) = concat (map rev (rev xs))"; |
|
435 |
by (induct_tac "xs" 1); |
|
| 2512 | 436 |
by (ALLGOALS Asm_simp_tac); |
| 2608 | 437 |
qed "rev_concat"; |
| 923 | 438 |
|
439 |
(** nth **) |
|
440 |
||
| 3467 | 441 |
section "nth"; |
442 |
||
| 3011 | 443 |
goal thy |
| 2608 | 444 |
"!xs. nth n (xs@ys) = \ |
445 |
\ (if n < length xs then nth n xs else nth (n - length xs) ys)"; |
|
| 3457 | 446 |
by (nat_ind_tac "n" 1); |
447 |
by (Asm_simp_tac 1); |
|
448 |
by (rtac allI 1); |
|
449 |
by (exhaust_tac "xs" 1); |
|
450 |
by (ALLGOALS Asm_simp_tac); |
|
451 |
by (rtac allI 1); |
|
452 |
by (exhaust_tac "xs" 1); |
|
453 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 454 |
qed_spec_mp "nth_append"; |
455 |
||
| 3011 | 456 |
goal thy "!n. n < length xs --> nth n (map f xs) = f (nth n xs)"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
457 |
by (induct_tac "xs" 1); |
| 1301 | 458 |
(* case [] *) |
459 |
by (Asm_full_simp_tac 1); |
|
460 |
(* case x#xl *) |
|
461 |
by (rtac allI 1); |
|
462 |
by (nat_ind_tac "n" 1); |
|
463 |
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
|
464 |
qed_spec_mp "nth_map"; |
| 1301 | 465 |
Addsimps [nth_map]; |
466 |
||
| 3011 | 467 |
goal thy "!n. n < length xs --> list_all P xs --> P(nth n xs)"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
468 |
by (induct_tac "xs" 1); |
| 1301 | 469 |
(* case [] *) |
470 |
by (Simp_tac 1); |
|
471 |
(* case x#xl *) |
|
472 |
by (rtac allI 1); |
|
473 |
by (nat_ind_tac "n" 1); |
|
474 |
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
|
475 |
qed_spec_mp "list_all_nth"; |
| 1301 | 476 |
|
| 3011 | 477 |
goal thy "!n. n < length xs --> (nth n xs) mem xs"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
478 |
by (induct_tac "xs" 1); |
| 1301 | 479 |
(* case [] *) |
480 |
by (Simp_tac 1); |
|
481 |
(* case x#xl *) |
|
482 |
by (rtac allI 1); |
|
483 |
by (nat_ind_tac "n" 1); |
|
484 |
(* case 0 *) |
|
485 |
by (Asm_full_simp_tac 1); |
|
486 |
(* case Suc x *) |
|
487 |
by (asm_full_simp_tac (!simpset setloop (split_tac [expand_if])) 1); |
|
|
1485
240cc98b94a7
Added qed_spec_mp to avoid renaming of bound vars in 'th RS spec'
nipkow
parents:
1465
diff
changeset
|
488 |
qed_spec_mp "nth_mem"; |
| 1301 | 489 |
Addsimps [nth_mem]; |
490 |
||
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
491 |
|
| 2608 | 492 |
(** take & drop **) |
493 |
section "take & drop"; |
|
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
494 |
|
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
495 |
goal thy "take 0 xs = []"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
496 |
by (induct_tac "xs" 1); |
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
497 |
by (ALLGOALS Asm_simp_tac); |
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
498 |
qed "take_0"; |
|
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
499 |
|
| 2608 | 500 |
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
|
501 |
by (induct_tac "xs" 1); |
| 2608 | 502 |
by (ALLGOALS Asm_simp_tac); |
503 |
qed "drop_0"; |
|
504 |
||
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
505 |
goal thy "take (Suc n) (x#xs) = x # take n xs"; |
| 1552 | 506 |
by (Simp_tac 1); |
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
507 |
qed "take_Suc_Cons"; |
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
508 |
|
| 2608 | 509 |
goal thy "drop (Suc n) (x#xs) = drop n xs"; |
510 |
by (Simp_tac 1); |
|
511 |
qed "drop_Suc_Cons"; |
|
512 |
||
513 |
Delsimps [take_Cons,drop_Cons]; |
|
514 |
Addsimps [take_0,take_Suc_Cons,drop_0,drop_Suc_Cons]; |
|
515 |
||
| 3011 | 516 |
goal thy "!xs. length(take n xs) = min (length xs) n"; |
| 3457 | 517 |
by (nat_ind_tac "n" 1); |
518 |
by (ALLGOALS Asm_simp_tac); |
|
519 |
by (rtac allI 1); |
|
520 |
by (exhaust_tac "xs" 1); |
|
521 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 522 |
qed_spec_mp "length_take"; |
523 |
Addsimps [length_take]; |
|
| 923 | 524 |
|
| 3011 | 525 |
goal thy "!xs. length(drop n xs) = (length xs - n)"; |
| 3457 | 526 |
by (nat_ind_tac "n" 1); |
527 |
by (ALLGOALS Asm_simp_tac); |
|
528 |
by (rtac allI 1); |
|
529 |
by (exhaust_tac "xs" 1); |
|
530 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 531 |
qed_spec_mp "length_drop"; |
532 |
Addsimps [length_drop]; |
|
533 |
||
| 3011 | 534 |
goal thy "!xs. length xs <= n --> take n xs = xs"; |
| 3457 | 535 |
by (nat_ind_tac "n" 1); |
536 |
by (ALLGOALS Asm_simp_tac); |
|
537 |
by (rtac allI 1); |
|
538 |
by (exhaust_tac "xs" 1); |
|
539 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 540 |
qed_spec_mp "take_all"; |
| 923 | 541 |
|
| 3011 | 542 |
goal thy "!xs. length xs <= n --> drop n xs = []"; |
| 3457 | 543 |
by (nat_ind_tac "n" 1); |
544 |
by (ALLGOALS Asm_simp_tac); |
|
545 |
by (rtac allI 1); |
|
546 |
by (exhaust_tac "xs" 1); |
|
547 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 548 |
qed_spec_mp "drop_all"; |
549 |
||
| 3011 | 550 |
goal thy |
| 2608 | 551 |
"!xs. take n (xs @ ys) = (take n xs @ take (n - length xs) ys)"; |
| 3457 | 552 |
by (nat_ind_tac "n" 1); |
553 |
by (ALLGOALS Asm_simp_tac); |
|
554 |
by (rtac allI 1); |
|
555 |
by (exhaust_tac "xs" 1); |
|
556 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 557 |
qed_spec_mp "take_append"; |
558 |
Addsimps [take_append]; |
|
559 |
||
| 3011 | 560 |
goal thy "!xs. drop n (xs@ys) = drop n xs @ drop (n - length xs) ys"; |
| 3457 | 561 |
by (nat_ind_tac "n" 1); |
562 |
by (ALLGOALS Asm_simp_tac); |
|
563 |
by (rtac allI 1); |
|
564 |
by (exhaust_tac "xs" 1); |
|
565 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 566 |
qed_spec_mp "drop_append"; |
567 |
Addsimps [drop_append]; |
|
568 |
||
| 3011 | 569 |
goal thy "!xs n. take n (take m xs) = take (min n m) xs"; |
| 3457 | 570 |
by (nat_ind_tac "m" 1); |
571 |
by (ALLGOALS Asm_simp_tac); |
|
572 |
by (rtac allI 1); |
|
573 |
by (exhaust_tac "xs" 1); |
|
574 |
by (ALLGOALS Asm_simp_tac); |
|
575 |
by (rtac allI 1); |
|
576 |
by (exhaust_tac "n" 1); |
|
577 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 578 |
qed_spec_mp "take_take"; |
579 |
||
| 3011 | 580 |
goal thy "!xs. drop n (drop m xs) = drop (n + m) xs"; |
| 3457 | 581 |
by (nat_ind_tac "m" 1); |
582 |
by (ALLGOALS Asm_simp_tac); |
|
583 |
by (rtac allI 1); |
|
584 |
by (exhaust_tac "xs" 1); |
|
585 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 586 |
qed_spec_mp "drop_drop"; |
| 923 | 587 |
|
| 3011 | 588 |
goal thy "!xs n. take n (drop m xs) = drop m (take (n + m) xs)"; |
| 3457 | 589 |
by (nat_ind_tac "m" 1); |
590 |
by (ALLGOALS Asm_simp_tac); |
|
591 |
by (rtac allI 1); |
|
592 |
by (exhaust_tac "xs" 1); |
|
593 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 594 |
qed_spec_mp "take_drop"; |
595 |
||
| 3011 | 596 |
goal thy "!xs. take n (map f xs) = map f (take n xs)"; |
| 3457 | 597 |
by (nat_ind_tac "n" 1); |
598 |
by (ALLGOALS Asm_simp_tac); |
|
599 |
by (rtac allI 1); |
|
600 |
by (exhaust_tac "xs" 1); |
|
601 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 602 |
qed_spec_mp "take_map"; |
603 |
||
| 3011 | 604 |
goal thy "!xs. drop n (map f xs) = map f (drop n xs)"; |
| 3457 | 605 |
by (nat_ind_tac "n" 1); |
606 |
by (ALLGOALS Asm_simp_tac); |
|
607 |
by (rtac allI 1); |
|
608 |
by (exhaust_tac "xs" 1); |
|
609 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 610 |
qed_spec_mp "drop_map"; |
611 |
||
|
3283
0db086394024
Replaced res_inst-list_cases by generic exhaust_tac.
nipkow
parents:
3196
diff
changeset
|
612 |
goal thy "!n i. i < n --> nth i (take n xs) = nth i xs"; |
| 3457 | 613 |
by (induct_tac "xs" 1); |
614 |
by (ALLGOALS Asm_simp_tac); |
|
| 3708 | 615 |
by (Clarify_tac 1); |
| 3457 | 616 |
by (exhaust_tac "n" 1); |
617 |
by (Blast_tac 1); |
|
618 |
by (exhaust_tac "i" 1); |
|
619 |
by (ALLGOALS Asm_full_simp_tac); |
|
| 2608 | 620 |
qed_spec_mp "nth_take"; |
621 |
Addsimps [nth_take]; |
|
| 923 | 622 |
|
| 3585 | 623 |
goal thy "!xs i. n + i <= length xs --> nth i (drop n xs) = nth (n + i) xs"; |
| 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 "nth_drop"; |
630 |
Addsimps [nth_drop]; |
|
631 |
||
632 |
(** takeWhile & dropWhile **) |
|
633 |
||
| 3467 | 634 |
section "takeWhile & dropWhile"; |
635 |
||
| 3586 | 636 |
goal thy "takeWhile P xs @ dropWhile P xs = xs"; |
637 |
by (induct_tac "xs" 1); |
|
638 |
by (Simp_tac 1); |
|
639 |
by (asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1); |
|
640 |
qed "takeWhile_dropWhile_id"; |
|
641 |
Addsimps [takeWhile_dropWhile_id]; |
|
642 |
||
643 |
goal thy "x:set xs & ~P(x) --> takeWhile P (xs @ ys) = takeWhile P xs"; |
|
| 3457 | 644 |
by (induct_tac "xs" 1); |
645 |
by (Simp_tac 1); |
|
646 |
by (asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1); |
|
647 |
by (Blast_tac 1); |
|
| 2608 | 648 |
bind_thm("takeWhile_append1", conjI RS (result() RS mp));
|
649 |
Addsimps [takeWhile_append1]; |
|
| 923 | 650 |
|
| 3011 | 651 |
goal thy |
| 3842 | 652 |
"(!x:set xs. P(x)) --> takeWhile P (xs @ ys) = xs @ takeWhile P ys"; |
| 3457 | 653 |
by (induct_tac "xs" 1); |
654 |
by (Simp_tac 1); |
|
655 |
by (asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1); |
|
| 2608 | 656 |
bind_thm("takeWhile_append2", ballI RS (result() RS mp));
|
657 |
Addsimps [takeWhile_append2]; |
|
| 1169 | 658 |
|
| 3011 | 659 |
goal thy |
| 3465 | 660 |
"x:set xs & ~P(x) --> dropWhile P (xs @ ys) = (dropWhile P xs)@ys"; |
| 3457 | 661 |
by (induct_tac "xs" 1); |
662 |
by (Simp_tac 1); |
|
663 |
by (asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1); |
|
664 |
by (Blast_tac 1); |
|
| 2608 | 665 |
bind_thm("dropWhile_append1", conjI RS (result() RS mp));
|
666 |
Addsimps [dropWhile_append1]; |
|
667 |
||
| 3011 | 668 |
goal thy |
| 3842 | 669 |
"(!x:set xs. P(x)) --> dropWhile P (xs @ ys) = dropWhile P ys"; |
| 3457 | 670 |
by (induct_tac "xs" 1); |
671 |
by (Simp_tac 1); |
|
672 |
by (asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1); |
|
| 2608 | 673 |
bind_thm("dropWhile_append2", ballI RS (result() RS mp));
|
674 |
Addsimps [dropWhile_append2]; |
|
675 |
||
| 3465 | 676 |
goal thy "x:set(takeWhile P xs) --> x:set xs & P x"; |
| 3457 | 677 |
by (induct_tac "xs" 1); |
678 |
by (Simp_tac 1); |
|
679 |
by (asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1); |
|
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
680 |
qed_spec_mp"set_take_whileD"; |
| 2608 | 681 |
|
|
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
682 |
(** replicate **) |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
683 |
section "replicate"; |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
684 |
|
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
685 |
goal thy "set(replicate (Suc n) x) = {x}";
|
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
686 |
by(induct_tac "n" 1); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
687 |
by(ALLGOALS Asm_full_simp_tac); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
688 |
val lemma = result(); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
689 |
|
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
690 |
goal thy "!!n. n ~= 0 ==> set(replicate n x) = {x}";
|
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
691 |
by(fast_tac (!claset addSDs [not0_implies_Suc] addSIs [lemma]) 1); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
692 |
qed "set_replicate"; |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
693 |
Addsimps [set_replicate]; |