| author | paulson |
| Fri, 26 Sep 1997 10:21:14 +0200 | |
| changeset 3718 | d78cf498a88c |
| parent 3708 | 56facaebf3e3 |
| child 3842 | b55686a7b22c |
| 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 |
||
| 923 | 72 |
(** @ - append **) |
73 |
||
| 3467 | 74 |
section "@ - append"; |
75 |
||
| 3011 | 76 |
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
|
77 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
78 |
by (ALLGOALS Asm_simp_tac); |
| 923 | 79 |
qed "append_assoc"; |
| 2512 | 80 |
Addsimps [append_assoc]; |
| 923 | 81 |
|
| 3011 | 82 |
goal thy "xs @ [] = xs"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
83 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
84 |
by (ALLGOALS Asm_simp_tac); |
| 923 | 85 |
qed "append_Nil2"; |
| 2512 | 86 |
Addsimps [append_Nil2]; |
| 923 | 87 |
|
| 3011 | 88 |
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
|
89 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
90 |
by (ALLGOALS Asm_simp_tac); |
| 2608 | 91 |
qed "append_is_Nil_conv"; |
92 |
AddIffs [append_is_Nil_conv]; |
|
93 |
||
| 3011 | 94 |
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
|
95 |
by (induct_tac "xs" 1); |
| 2608 | 96 |
by (ALLGOALS Asm_simp_tac); |
| 3457 | 97 |
by (Blast_tac 1); |
| 2608 | 98 |
qed "Nil_is_append_conv"; |
99 |
AddIffs [Nil_is_append_conv]; |
|
| 923 | 100 |
|
| 3574 | 101 |
goal thy "(xs @ ys = xs) = (ys=[])"; |
102 |
by (induct_tac "xs" 1); |
|
103 |
by (ALLGOALS Asm_simp_tac); |
|
104 |
qed "append_self_conv"; |
|
105 |
||
106 |
goal thy "(xs = xs @ ys) = (ys=[])"; |
|
107 |
by (induct_tac "xs" 1); |
|
108 |
by (ALLGOALS Asm_simp_tac); |
|
109 |
by (Blast_tac 1); |
|
110 |
qed "self_append_conv"; |
|
111 |
AddIffs [append_self_conv,self_append_conv]; |
|
112 |
||
| 3011 | 113 |
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
|
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 "same_append_eq"; |
| 2608 | 117 |
AddIffs [same_append_eq]; |
118 |
||
| 3011 | 119 |
goal thy "!ys. (xs @ [x] = ys @ [y]) = (xs = ys & x = y)"; |
| 3457 | 120 |
by (induct_tac "xs" 1); |
121 |
by (rtac allI 1); |
|
122 |
by (induct_tac "ys" 1); |
|
123 |
by (ALLGOALS Asm_simp_tac); |
|
124 |
by (rtac allI 1); |
|
125 |
by (induct_tac "ys" 1); |
|
126 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 127 |
qed_spec_mp "append1_eq_conv"; |
128 |
AddIffs [append1_eq_conv]; |
|
129 |
||
| 3571 | 130 |
goal thy "!ys zs. (ys @ xs = zs @ xs) = (ys=zs)"; |
131 |
by (induct_tac "xs" 1); |
|
132 |
by (Simp_tac 1); |
|
| 3708 | 133 |
by (Clarify_tac 1); |
| 3571 | 134 |
by (subgoal_tac "((ys @ [a]) @ list = (zs @ [a]) @ list) = (ys=zs)" 1); |
135 |
by (Asm_full_simp_tac 1); |
|
136 |
by (Blast_tac 1); |
|
137 |
qed_spec_mp "append_same_eq"; |
|
138 |
AddIffs [append_same_eq]; |
|
139 |
||
| 3011 | 140 |
goal thy "xs ~= [] --> hd xs # tl xs = xs"; |
| 3457 | 141 |
by (induct_tac "xs" 1); |
142 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 143 |
qed_spec_mp "hd_Cons_tl"; |
144 |
Addsimps [hd_Cons_tl]; |
|
| 923 | 145 |
|
| 3011 | 146 |
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
|
147 |
by (induct_tac "xs" 1); |
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
148 |
by (ALLGOALS Asm_simp_tac); |
|
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
149 |
qed "hd_append"; |
| 923 | 150 |
|
| 3571 | 151 |
goal thy "!!xs. xs ~= [] ==> hd(xs @ ys) = hd xs"; |
152 |
by (asm_simp_tac (!simpset addsimps [hd_append] |
|
153 |
setloop (split_tac [expand_list_case])) 1); |
|
154 |
qed "hd_append2"; |
|
155 |
Addsimps [hd_append2]; |
|
156 |
||
| 3011 | 157 |
goal thy "tl(xs@ys) = (case xs of [] => tl(ys) | z#zs => zs@ys)"; |
| 3457 | 158 |
by (simp_tac (!simpset setloop(split_tac[expand_list_case])) 1); |
| 2608 | 159 |
qed "tl_append"; |
160 |
||
| 3571 | 161 |
goal thy "!!xs. xs ~= [] ==> tl(xs @ ys) = (tl xs) @ ys"; |
162 |
by (asm_simp_tac (!simpset addsimps [tl_append] |
|
163 |
setloop (split_tac [expand_list_case])) 1); |
|
164 |
qed "tl_append2"; |
|
165 |
Addsimps [tl_append2]; |
|
166 |
||
| 2608 | 167 |
(** map **) |
168 |
||
| 3467 | 169 |
section "map"; |
170 |
||
| 3011 | 171 |
goal thy |
| 3465 | 172 |
"(!x. x : set xs --> f x = g x) --> map f xs = map g xs"; |
| 3457 | 173 |
by (induct_tac "xs" 1); |
174 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 175 |
bind_thm("map_ext", impI RS (allI RS (result() RS mp)));
|
176 |
||
| 3011 | 177 |
goal thy "map (%x.x) = (%xs.xs)"; |
| 2608 | 178 |
by (rtac ext 1); |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
179 |
by (induct_tac "xs" 1); |
| 2608 | 180 |
by (ALLGOALS Asm_simp_tac); |
181 |
qed "map_ident"; |
|
182 |
Addsimps[map_ident]; |
|
183 |
||
| 3011 | 184 |
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
|
185 |
by (induct_tac "xs" 1); |
| 2608 | 186 |
by (ALLGOALS Asm_simp_tac); |
187 |
qed "map_append"; |
|
188 |
Addsimps[map_append]; |
|
189 |
||
| 3011 | 190 |
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
|
191 |
by (induct_tac "xs" 1); |
| 2608 | 192 |
by (ALLGOALS Asm_simp_tac); |
193 |
qed "map_compose"; |
|
194 |
Addsimps[map_compose]; |
|
195 |
||
| 3011 | 196 |
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
|
197 |
by (induct_tac "xs" 1); |
| 2608 | 198 |
by (ALLGOALS Asm_simp_tac); |
199 |
qed "rev_map"; |
|
200 |
||
|
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
201 |
(* a congruence rule for map: *) |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
202 |
goal thy |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
203 |
"(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
|
204 |
by(rtac impI 1); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
205 |
by(hyp_subst_tac 1); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
206 |
by(induct_tac "ys" 1); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
207 |
by(ALLGOALS Asm_simp_tac); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
208 |
val lemma = result(); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
209 |
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
|
210 |
|
| 1169 | 211 |
(** rev **) |
212 |
||
| 3467 | 213 |
section "rev"; |
214 |
||
| 3011 | 215 |
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
|
216 |
by (induct_tac "xs" 1); |
| 2512 | 217 |
by (ALLGOALS Asm_simp_tac); |
| 1169 | 218 |
qed "rev_append"; |
| 2512 | 219 |
Addsimps[rev_append]; |
| 1169 | 220 |
|
| 3011 | 221 |
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
|
222 |
by (induct_tac "l" 1); |
| 2512 | 223 |
by (ALLGOALS Asm_simp_tac); |
| 1169 | 224 |
qed "rev_rev_ident"; |
| 2512 | 225 |
Addsimps[rev_rev_ident]; |
| 1169 | 226 |
|
| 2608 | 227 |
|
| 923 | 228 |
(** mem **) |
229 |
||
| 3467 | 230 |
section "mem"; |
231 |
||
| 3011 | 232 |
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
|
233 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
234 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
| 923 | 235 |
qed "mem_append"; |
| 2512 | 236 |
Addsimps[mem_append]; |
| 923 | 237 |
|
| 3011 | 238 |
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
|
239 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
240 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
| 923 | 241 |
qed "mem_filter"; |
| 2512 | 242 |
Addsimps[mem_filter]; |
| 923 | 243 |
|
| 3465 | 244 |
(** set **) |
| 1812 | 245 |
|
| 3467 | 246 |
section "set"; |
247 |
||
| 3465 | 248 |
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
|
249 |
by (induct_tac "xs" 1); |
| 1812 | 250 |
by (ALLGOALS Asm_simp_tac); |
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
251 |
qed "set_append"; |
|
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
252 |
Addsimps[set_append]; |
| 1812 | 253 |
|
| 3465 | 254 |
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
|
255 |
by (induct_tac "xs" 1); |
| 1812 | 256 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
| 2891 | 257 |
by (Blast_tac 1); |
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
258 |
qed "set_mem_eq"; |
| 1812 | 259 |
|
| 3465 | 260 |
goal thy "set l <= set (x#l)"; |
| 1936 | 261 |
by (Simp_tac 1); |
| 2891 | 262 |
by (Blast_tac 1); |
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
263 |
qed "set_subset_Cons"; |
| 1936 | 264 |
|
| 3465 | 265 |
goal thy "(set xs = {}) = (xs = [])";
|
| 3457 | 266 |
by (induct_tac "xs" 1); |
267 |
by (ALLGOALS Asm_simp_tac); |
|
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
268 |
qed "set_empty"; |
|
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
269 |
Addsimps [set_empty]; |
| 2608 | 270 |
|
| 3465 | 271 |
goal thy "set(rev xs) = set(xs)"; |
| 3457 | 272 |
by (induct_tac "xs" 1); |
273 |
by (ALLGOALS Asm_simp_tac); |
|
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
274 |
qed "set_rev"; |
|
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
275 |
Addsimps [set_rev]; |
| 2608 | 276 |
|
| 3465 | 277 |
goal thy "set(map f xs) = f``(set xs)"; |
| 3457 | 278 |
by (induct_tac "xs" 1); |
279 |
by (ALLGOALS Asm_simp_tac); |
|
|
3647
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
280 |
qed "set_map"; |
|
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
281 |
Addsimps [set_map]; |
| 2608 | 282 |
|
| 1812 | 283 |
|
| 923 | 284 |
(** list_all **) |
285 |
||
| 3467 | 286 |
section "list_all"; |
287 |
||
| 3011 | 288 |
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
|
289 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
290 |
by (ALLGOALS Asm_simp_tac); |
| 923 | 291 |
qed "list_all_True"; |
| 2512 | 292 |
Addsimps [list_all_True]; |
| 923 | 293 |
|
| 3011 | 294 |
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
|
295 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
296 |
by (ALLGOALS Asm_simp_tac); |
| 2512 | 297 |
qed "list_all_append"; |
298 |
Addsimps [list_all_append]; |
|
| 923 | 299 |
|
| 3011 | 300 |
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
|
301 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
302 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
| 2891 | 303 |
by (Blast_tac 1); |
| 923 | 304 |
qed "list_all_mem_conv"; |
305 |
||
306 |
||
| 2608 | 307 |
(** filter **) |
| 923 | 308 |
|
| 3467 | 309 |
section "filter"; |
310 |
||
|
3383
7707cb7a5054
Corrected statement of filter_append; added filter_size
paulson
parents:
3342
diff
changeset
|
311 |
goal thy "filter P (xs@ys) = filter P xs @ filter P ys"; |
| 3457 | 312 |
by (induct_tac "xs" 1); |
313 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
|
| 2608 | 314 |
qed "filter_append"; |
315 |
Addsimps [filter_append]; |
|
316 |
||
|
3383
7707cb7a5054
Corrected statement of filter_append; added filter_size
paulson
parents:
3342
diff
changeset
|
317 |
goal thy "size (filter P xs) <= size xs"; |
| 3457 | 318 |
by (induct_tac "xs" 1); |
319 |
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
|
320 |
qed "filter_size"; |
|
7707cb7a5054
Corrected statement of filter_append; added filter_size
paulson
parents:
3342
diff
changeset
|
321 |
|
| 2608 | 322 |
|
323 |
(** concat **) |
|
324 |
||
| 3467 | 325 |
section "concat"; |
326 |
||
| 3011 | 327 |
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
|
328 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
329 |
by (ALLGOALS Asm_simp_tac); |
| 2608 | 330 |
qed"concat_append"; |
331 |
Addsimps [concat_append]; |
|
| 2512 | 332 |
|
| 3467 | 333 |
goal thy "set(concat xs) = Union(set `` set xs)"; |
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_concat"; |
|
a64c8fbcd98f
Renamed theorems of the form set_of_list_XXX to set_XXX
paulson
parents:
3589
diff
changeset
|
337 |
Addsimps [set_concat]; |
| 3467 | 338 |
|
339 |
goal thy "map f (concat xs) = concat (map (map f) xs)"; |
|
340 |
by (induct_tac "xs" 1); |
|
341 |
by (ALLGOALS Asm_simp_tac); |
|
342 |
qed "map_concat"; |
|
343 |
||
344 |
goal thy "filter p (concat xs) = concat (map (filter p) xs)"; |
|
345 |
by (induct_tac "xs" 1); |
|
346 |
by (ALLGOALS Asm_simp_tac); |
|
347 |
qed"filter_concat"; |
|
348 |
||
349 |
goal thy "rev(concat xs) = concat (map rev (rev xs))"; |
|
350 |
by (induct_tac "xs" 1); |
|
| 2512 | 351 |
by (ALLGOALS Asm_simp_tac); |
| 2608 | 352 |
qed "rev_concat"; |
| 923 | 353 |
|
| 962 | 354 |
(** length **) |
355 |
||
| 3467 | 356 |
section "length"; |
357 |
||
| 3011 | 358 |
goal thy "length(xs@ys) = length(xs)+length(ys)"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
359 |
by (induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
360 |
by (ALLGOALS Asm_simp_tac); |
| 962 | 361 |
qed"length_append"; |
| 1301 | 362 |
Addsimps [length_append]; |
363 |
||
| 3011 | 364 |
goal thy "length (map f l) = length l"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
365 |
by (induct_tac "l" 1); |
| 1301 | 366 |
by (ALLGOALS Simp_tac); |
367 |
qed "length_map"; |
|
368 |
Addsimps [length_map]; |
|
| 962 | 369 |
|
| 3011 | 370 |
goal thy "length(rev xs) = length(xs)"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
371 |
by (induct_tac "xs" 1); |
| 1301 | 372 |
by (ALLGOALS Asm_simp_tac); |
| 1169 | 373 |
qed "length_rev"; |
| 1301 | 374 |
Addsimps [length_rev]; |
| 1169 | 375 |
|
| 3011 | 376 |
goal thy "(length xs = 0) = (xs = [])"; |
| 3457 | 377 |
by (induct_tac "xs" 1); |
378 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 379 |
qed "length_0_conv"; |
380 |
AddIffs [length_0_conv]; |
|
381 |
||
| 3011 | 382 |
goal thy "(0 < length xs) = (xs ~= [])"; |
| 3457 | 383 |
by (induct_tac "xs" 1); |
384 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 385 |
qed "length_greater_0_conv"; |
386 |
AddIffs [length_greater_0_conv]; |
|
387 |
||
388 |
||
| 923 | 389 |
(** nth **) |
390 |
||
| 3467 | 391 |
section "nth"; |
392 |
||
| 3011 | 393 |
goal thy |
| 2608 | 394 |
"!xs. nth n (xs@ys) = \ |
395 |
\ (if n < length xs then nth n xs else nth (n - length xs) ys)"; |
|
| 3457 | 396 |
by (nat_ind_tac "n" 1); |
397 |
by (Asm_simp_tac 1); |
|
398 |
by (rtac allI 1); |
|
399 |
by (exhaust_tac "xs" 1); |
|
400 |
by (ALLGOALS Asm_simp_tac); |
|
401 |
by (rtac allI 1); |
|
402 |
by (exhaust_tac "xs" 1); |
|
403 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 404 |
qed_spec_mp "nth_append"; |
405 |
||
| 3011 | 406 |
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
|
407 |
by (induct_tac "xs" 1); |
| 1301 | 408 |
(* case [] *) |
409 |
by (Asm_full_simp_tac 1); |
|
410 |
(* case x#xl *) |
|
411 |
by (rtac allI 1); |
|
412 |
by (nat_ind_tac "n" 1); |
|
413 |
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
|
414 |
qed_spec_mp "nth_map"; |
| 1301 | 415 |
Addsimps [nth_map]; |
416 |
||
| 3011 | 417 |
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
|
418 |
by (induct_tac "xs" 1); |
| 1301 | 419 |
(* case [] *) |
420 |
by (Simp_tac 1); |
|
421 |
(* case x#xl *) |
|
422 |
by (rtac allI 1); |
|
423 |
by (nat_ind_tac "n" 1); |
|
424 |
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
|
425 |
qed_spec_mp "list_all_nth"; |
| 1301 | 426 |
|
| 3011 | 427 |
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
|
428 |
by (induct_tac "xs" 1); |
| 1301 | 429 |
(* case [] *) |
430 |
by (Simp_tac 1); |
|
431 |
(* case x#xl *) |
|
432 |
by (rtac allI 1); |
|
433 |
by (nat_ind_tac "n" 1); |
|
434 |
(* case 0 *) |
|
435 |
by (Asm_full_simp_tac 1); |
|
436 |
(* case Suc x *) |
|
437 |
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
|
438 |
qed_spec_mp "nth_mem"; |
| 1301 | 439 |
Addsimps [nth_mem]; |
440 |
||
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
441 |
|
| 2608 | 442 |
(** take & drop **) |
443 |
section "take & drop"; |
|
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
444 |
|
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
445 |
goal thy "take 0 xs = []"; |
|
3040
7d48671753da
Introduced a generic "induct_tac" which picks up the right induction scheme
nipkow
parents:
3011
diff
changeset
|
446 |
by (induct_tac "xs" 1); |
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
447 |
by (ALLGOALS Asm_simp_tac); |
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
448 |
qed "take_0"; |
|
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
449 |
|
| 2608 | 450 |
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
|
451 |
by (induct_tac "xs" 1); |
| 2608 | 452 |
by (ALLGOALS Asm_simp_tac); |
453 |
qed "drop_0"; |
|
454 |
||
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
455 |
goal thy "take (Suc n) (x#xs) = x # take n xs"; |
| 1552 | 456 |
by (Simp_tac 1); |
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
457 |
qed "take_Suc_Cons"; |
|
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
458 |
|
| 2608 | 459 |
goal thy "drop (Suc n) (x#xs) = drop n xs"; |
460 |
by (Simp_tac 1); |
|
461 |
qed "drop_Suc_Cons"; |
|
462 |
||
463 |
Delsimps [take_Cons,drop_Cons]; |
|
464 |
Addsimps [take_0,take_Suc_Cons,drop_0,drop_Suc_Cons]; |
|
465 |
||
| 3011 | 466 |
goal thy "!xs. length(take n xs) = min (length xs) n"; |
| 3457 | 467 |
by (nat_ind_tac "n" 1); |
468 |
by (ALLGOALS Asm_simp_tac); |
|
469 |
by (rtac allI 1); |
|
470 |
by (exhaust_tac "xs" 1); |
|
471 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 472 |
qed_spec_mp "length_take"; |
473 |
Addsimps [length_take]; |
|
| 923 | 474 |
|
| 3011 | 475 |
goal thy "!xs. length(drop n xs) = (length xs - n)"; |
| 3457 | 476 |
by (nat_ind_tac "n" 1); |
477 |
by (ALLGOALS Asm_simp_tac); |
|
478 |
by (rtac allI 1); |
|
479 |
by (exhaust_tac "xs" 1); |
|
480 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 481 |
qed_spec_mp "length_drop"; |
482 |
Addsimps [length_drop]; |
|
483 |
||
| 3011 | 484 |
goal thy "!xs. length xs <= n --> take n xs = xs"; |
| 3457 | 485 |
by (nat_ind_tac "n" 1); |
486 |
by (ALLGOALS Asm_simp_tac); |
|
487 |
by (rtac allI 1); |
|
488 |
by (exhaust_tac "xs" 1); |
|
489 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 490 |
qed_spec_mp "take_all"; |
| 923 | 491 |
|
| 3011 | 492 |
goal thy "!xs. length xs <= n --> drop n xs = []"; |
| 3457 | 493 |
by (nat_ind_tac "n" 1); |
494 |
by (ALLGOALS Asm_simp_tac); |
|
495 |
by (rtac allI 1); |
|
496 |
by (exhaust_tac "xs" 1); |
|
497 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 498 |
qed_spec_mp "drop_all"; |
499 |
||
| 3011 | 500 |
goal thy |
| 2608 | 501 |
"!xs. take n (xs @ ys) = (take n xs @ take (n - length xs) ys)"; |
| 3457 | 502 |
by (nat_ind_tac "n" 1); |
503 |
by (ALLGOALS Asm_simp_tac); |
|
504 |
by (rtac allI 1); |
|
505 |
by (exhaust_tac "xs" 1); |
|
506 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 507 |
qed_spec_mp "take_append"; |
508 |
Addsimps [take_append]; |
|
509 |
||
| 3011 | 510 |
goal thy "!xs. drop n (xs@ys) = drop n xs @ drop (n - length xs) ys"; |
| 3457 | 511 |
by (nat_ind_tac "n" 1); |
512 |
by (ALLGOALS Asm_simp_tac); |
|
513 |
by (rtac allI 1); |
|
514 |
by (exhaust_tac "xs" 1); |
|
515 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 516 |
qed_spec_mp "drop_append"; |
517 |
Addsimps [drop_append]; |
|
518 |
||
| 3011 | 519 |
goal thy "!xs n. take n (take m xs) = take (min n m) xs"; |
| 3457 | 520 |
by (nat_ind_tac "m" 1); |
521 |
by (ALLGOALS Asm_simp_tac); |
|
522 |
by (rtac allI 1); |
|
523 |
by (exhaust_tac "xs" 1); |
|
524 |
by (ALLGOALS Asm_simp_tac); |
|
525 |
by (rtac allI 1); |
|
526 |
by (exhaust_tac "n" 1); |
|
527 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 528 |
qed_spec_mp "take_take"; |
529 |
||
| 3011 | 530 |
goal thy "!xs. drop n (drop m xs) = drop (n + m) xs"; |
| 3457 | 531 |
by (nat_ind_tac "m" 1); |
532 |
by (ALLGOALS Asm_simp_tac); |
|
533 |
by (rtac allI 1); |
|
534 |
by (exhaust_tac "xs" 1); |
|
535 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 536 |
qed_spec_mp "drop_drop"; |
| 923 | 537 |
|
| 3011 | 538 |
goal thy "!xs n. take n (drop m xs) = drop m (take (n + m) xs)"; |
| 3457 | 539 |
by (nat_ind_tac "m" 1); |
540 |
by (ALLGOALS Asm_simp_tac); |
|
541 |
by (rtac allI 1); |
|
542 |
by (exhaust_tac "xs" 1); |
|
543 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 544 |
qed_spec_mp "take_drop"; |
545 |
||
| 3011 | 546 |
goal thy "!xs. take n (map f xs) = map f (take n xs)"; |
| 3457 | 547 |
by (nat_ind_tac "n" 1); |
548 |
by (ALLGOALS Asm_simp_tac); |
|
549 |
by (rtac allI 1); |
|
550 |
by (exhaust_tac "xs" 1); |
|
551 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 552 |
qed_spec_mp "take_map"; |
553 |
||
| 3011 | 554 |
goal thy "!xs. drop n (map f xs) = map f (drop n xs)"; |
| 3457 | 555 |
by (nat_ind_tac "n" 1); |
556 |
by (ALLGOALS Asm_simp_tac); |
|
557 |
by (rtac allI 1); |
|
558 |
by (exhaust_tac "xs" 1); |
|
559 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 560 |
qed_spec_mp "drop_map"; |
561 |
||
|
3283
0db086394024
Replaced res_inst-list_cases by generic exhaust_tac.
nipkow
parents:
3196
diff
changeset
|
562 |
goal thy "!n i. i < n --> nth i (take n xs) = nth i xs"; |
| 3457 | 563 |
by (induct_tac "xs" 1); |
564 |
by (ALLGOALS Asm_simp_tac); |
|
| 3708 | 565 |
by (Clarify_tac 1); |
| 3457 | 566 |
by (exhaust_tac "n" 1); |
567 |
by (Blast_tac 1); |
|
568 |
by (exhaust_tac "i" 1); |
|
569 |
by (ALLGOALS Asm_full_simp_tac); |
|
| 2608 | 570 |
qed_spec_mp "nth_take"; |
571 |
Addsimps [nth_take]; |
|
| 923 | 572 |
|
| 3585 | 573 |
goal thy "!xs i. n + i <= length xs --> nth i (drop n xs) = nth (n + i) xs"; |
| 3457 | 574 |
by (nat_ind_tac "n" 1); |
575 |
by (ALLGOALS Asm_simp_tac); |
|
576 |
by (rtac allI 1); |
|
577 |
by (exhaust_tac "xs" 1); |
|
578 |
by (ALLGOALS Asm_simp_tac); |
|
| 2608 | 579 |
qed_spec_mp "nth_drop"; |
580 |
Addsimps [nth_drop]; |
|
581 |
||
582 |
(** takeWhile & dropWhile **) |
|
583 |
||
| 3467 | 584 |
section "takeWhile & dropWhile"; |
585 |
||
| 3586 | 586 |
goal thy "takeWhile P xs @ dropWhile P xs = xs"; |
587 |
by (induct_tac "xs" 1); |
|
588 |
by (Simp_tac 1); |
|
589 |
by (asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1); |
|
590 |
qed "takeWhile_dropWhile_id"; |
|
591 |
Addsimps [takeWhile_dropWhile_id]; |
|
592 |
||
593 |
goal thy "x:set xs & ~P(x) --> takeWhile P (xs @ ys) = takeWhile P xs"; |
|
| 3457 | 594 |
by (induct_tac "xs" 1); |
595 |
by (Simp_tac 1); |
|
596 |
by (asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1); |
|
597 |
by (Blast_tac 1); |
|
| 2608 | 598 |
bind_thm("takeWhile_append1", conjI RS (result() RS mp));
|
599 |
Addsimps [takeWhile_append1]; |
|
| 923 | 600 |
|
| 3011 | 601 |
goal thy |
| 3465 | 602 |
"(!x:set xs.P(x)) --> takeWhile P (xs @ ys) = xs @ takeWhile P ys"; |
| 3457 | 603 |
by (induct_tac "xs" 1); |
604 |
by (Simp_tac 1); |
|
605 |
by (asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1); |
|
| 2608 | 606 |
bind_thm("takeWhile_append2", ballI RS (result() RS mp));
|
607 |
Addsimps [takeWhile_append2]; |
|
| 1169 | 608 |
|
| 3011 | 609 |
goal thy |
| 3465 | 610 |
"x:set xs & ~P(x) --> dropWhile P (xs @ ys) = (dropWhile P xs)@ys"; |
| 3457 | 611 |
by (induct_tac "xs" 1); |
612 |
by (Simp_tac 1); |
|
613 |
by (asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1); |
|
614 |
by (Blast_tac 1); |
|
| 2608 | 615 |
bind_thm("dropWhile_append1", conjI RS (result() RS mp));
|
616 |
Addsimps [dropWhile_append1]; |
|
617 |
||
| 3011 | 618 |
goal thy |
| 3465 | 619 |
"(!x:set xs.P(x)) --> dropWhile P (xs @ ys) = dropWhile P ys"; |
| 3457 | 620 |
by (induct_tac "xs" 1); |
621 |
by (Simp_tac 1); |
|
622 |
by (asm_full_simp_tac (!simpset setloop (split_tac[expand_if])) 1); |
|
| 2608 | 623 |
bind_thm("dropWhile_append2", ballI RS (result() RS mp));
|
624 |
Addsimps [dropWhile_append2]; |
|
625 |
||
| 3465 | 626 |
goal thy "x:set(takeWhile P xs) --> x:set xs & P x"; |
| 3457 | 627 |
by (induct_tac "xs" 1); |
628 |
by (Simp_tac 1); |
|
629 |
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
|
630 |
qed_spec_mp"set_take_whileD"; |
| 2608 | 631 |
|
|
3589
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
632 |
(** replicate **) |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
633 |
section "replicate"; |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
634 |
|
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
635 |
goal thy "set(replicate (Suc n) x) = {x}";
|
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
636 |
by(induct_tac "n" 1); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
637 |
by(ALLGOALS Asm_full_simp_tac); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
638 |
val lemma = result(); |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
639 |
|
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
640 |
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
|
641 |
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
|
642 |
qed "set_replicate"; |
|
244daa75f890
Added function `replicate' and lemmas map_cong and set_replicate.
nipkow
parents:
3586
diff
changeset
|
643 |
Addsimps [set_replicate]; |