author | paulson |
Tue, 16 Jul 1996 15:49:46 +0200 | |
changeset 1868 | 836950047d85 |
parent 1812 | debfc40b7756 |
child 1908 | 55d8e38262a8 |
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 |
||
9 |
open List; |
|
10 |
||
11 |
val [Nil_not_Cons,Cons_not_Nil] = list.distinct; |
|
12 |
||
13 |
bind_thm("Cons_neq_Nil", Cons_not_Nil RS notE); |
|
14 |
bind_thm("Nil_neq_Cons", sym RS Cons_neq_Nil); |
|
15 |
||
16 |
bind_thm("Cons_inject", (hd list.inject) RS iffD1 RS conjE); |
|
17 |
||
18 |
goal List.thy "!x. xs ~= x#xs"; |
|
19 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
20 |
by (ALLGOALS Asm_simp_tac); |
923 | 21 |
qed "not_Cons_self"; |
22 |
||
23 |
goal List.thy "(xs ~= []) = (? y ys. xs = y#ys)"; |
|
24 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
25 |
by (Simp_tac 1); |
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
26 |
by (Asm_simp_tac 1); |
1169 | 27 |
by (REPEAT(resolve_tac [exI,refl,conjI] 1)); |
923 | 28 |
qed "neq_Nil_conv"; |
29 |
||
30 |
||
31 |
(** @ - append **) |
|
32 |
||
33 |
goal List.thy "(xs@ys)@zs = xs@(ys@zs)"; |
|
34 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
35 |
by (ALLGOALS Asm_simp_tac); |
923 | 36 |
qed "append_assoc"; |
37 |
||
38 |
goal List.thy "xs @ [] = xs"; |
|
39 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
40 |
by (ALLGOALS Asm_simp_tac); |
923 | 41 |
qed "append_Nil2"; |
42 |
||
43 |
goal List.thy "(xs@ys = []) = (xs=[] & ys=[])"; |
|
44 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
45 |
by (ALLGOALS Asm_simp_tac); |
923 | 46 |
qed "append_is_Nil"; |
47 |
||
48 |
goal List.thy "(xs @ ys = xs @ zs) = (ys=zs)"; |
|
49 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
50 |
by (ALLGOALS Asm_simp_tac); |
923 | 51 |
qed "same_append_eq"; |
52 |
||
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
53 |
goal List.thy "hd(xs@ys) = (if xs=[] then hd ys else hd xs)"; |
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
54 |
by (list.induct_tac "xs" 1); |
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
55 |
by (ALLGOALS Asm_simp_tac); |
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
56 |
qed "hd_append"; |
923 | 57 |
|
1169 | 58 |
(** rev **) |
59 |
||
60 |
goal List.thy "rev(xs@ys) = rev(ys) @ rev(xs)"; |
|
61 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
62 |
by (ALLGOALS (asm_simp_tac (!simpset addsimps [append_Nil2,append_assoc]))); |
1169 | 63 |
qed "rev_append"; |
64 |
||
65 |
goal List.thy "rev(rev l) = l"; |
|
66 |
by (list.induct_tac "l" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
67 |
by (ALLGOALS (asm_simp_tac (!simpset addsimps [rev_append]))); |
1169 | 68 |
qed "rev_rev_ident"; |
69 |
||
70 |
||
923 | 71 |
(** mem **) |
72 |
||
73 |
goal List.thy "x mem (xs@ys) = (x mem xs | x mem ys)"; |
|
74 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
75 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
923 | 76 |
qed "mem_append"; |
77 |
||
78 |
goal List.thy "x mem [x:xs.P(x)] = (x mem xs & P(x))"; |
|
79 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
80 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
923 | 81 |
qed "mem_filter"; |
82 |
||
1812 | 83 |
(** setOfList **) |
84 |
||
85 |
goal thy "setOfList (xs@ys) = (setOfList xs Un setOfList ys)"; |
|
86 |
by (list.induct_tac "xs" 1); |
|
87 |
by (ALLGOALS Asm_simp_tac); |
|
88 |
by (Fast_tac 1); |
|
89 |
qed "setOfList_append"; |
|
90 |
||
91 |
goal thy "(x mem xs) = (x: setOfList xs)"; |
|
92 |
by (list.induct_tac "xs" 1); |
|
93 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
|
94 |
by (Fast_tac 1); |
|
95 |
qed "setOfList_mem_eq"; |
|
96 |
||
97 |
||
923 | 98 |
(** list_all **) |
99 |
||
100 |
goal List.thy "(Alls x:xs.True) = True"; |
|
101 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
102 |
by (ALLGOALS Asm_simp_tac); |
923 | 103 |
qed "list_all_True"; |
104 |
||
105 |
goal List.thy "list_all p (xs@ys) = (list_all p xs & list_all p ys)"; |
|
106 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
107 |
by (ALLGOALS Asm_simp_tac); |
923 | 108 |
qed "list_all_conj"; |
109 |
||
110 |
goal List.thy "(Alls x:xs.P(x)) = (!x. x mem xs --> P(x))"; |
|
111 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
112 |
by (ALLGOALS (asm_simp_tac (!simpset setloop (split_tac [expand_if])))); |
1760
6f41a494f3b1
Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents:
1552
diff
changeset
|
113 |
by (Fast_tac 1); |
923 | 114 |
qed "list_all_mem_conv"; |
115 |
||
116 |
||
117 |
(** list_case **) |
|
118 |
||
119 |
goal List.thy |
|
120 |
"P(list_case a f xs) = ((xs=[] --> P(a)) & \ |
|
121 |
\ (!y ys. xs=y#ys --> P(f y ys)))"; |
|
122 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
123 |
by (ALLGOALS Asm_simp_tac); |
1760
6f41a494f3b1
Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents:
1552
diff
changeset
|
124 |
by (Fast_tac 1); |
923 | 125 |
qed "expand_list_case"; |
126 |
||
127 |
goal List.thy "(xs=[] --> P([])) & (!y ys. xs=y#ys --> P(y#ys)) --> P(xs)"; |
|
1169 | 128 |
by (list.induct_tac "xs" 1); |
1760
6f41a494f3b1
Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents:
1552
diff
changeset
|
129 |
by (Fast_tac 1); |
6f41a494f3b1
Replaced fast_tac by Fast_tac (which uses default claset)
berghofe
parents:
1552
diff
changeset
|
130 |
by (Fast_tac 1); |
923 | 131 |
bind_thm("list_eq_cases", |
132 |
impI RSN (2,allI RSN (2,allI RSN (2,impI RS (conjI RS (result() RS mp)))))); |
|
133 |
||
134 |
(** flat **) |
|
135 |
||
136 |
goal List.thy "flat(xs@ys) = flat(xs)@flat(ys)"; |
|
137 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
138 |
by (ALLGOALS (asm_simp_tac (!simpset addsimps [append_assoc]))); |
923 | 139 |
qed"flat_append"; |
140 |
||
962 | 141 |
(** length **) |
142 |
||
143 |
goal List.thy "length(xs@ys) = length(xs)+length(ys)"; |
|
144 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
145 |
by (ALLGOALS Asm_simp_tac); |
962 | 146 |
qed"length_append"; |
1301 | 147 |
Addsimps [length_append]; |
148 |
||
149 |
goal List.thy "length (map f l) = length l"; |
|
150 |
by (list.induct_tac "l" 1); |
|
151 |
by (ALLGOALS Simp_tac); |
|
152 |
qed "length_map"; |
|
153 |
Addsimps [length_map]; |
|
962 | 154 |
|
1169 | 155 |
goal List.thy "length(rev xs) = length(xs)"; |
156 |
by (list.induct_tac "xs" 1); |
|
1301 | 157 |
by (ALLGOALS Asm_simp_tac); |
1169 | 158 |
qed "length_rev"; |
1301 | 159 |
Addsimps [length_rev]; |
1169 | 160 |
|
923 | 161 |
(** nth **) |
162 |
||
163 |
val [nth_0,nth_Suc] = nat_recs nth_def; |
|
164 |
store_thm("nth_0",nth_0); |
|
165 |
store_thm("nth_Suc",nth_Suc); |
|
1301 | 166 |
Addsimps [nth_0,nth_Suc]; |
167 |
||
168 |
goal List.thy "!n. n < length xs --> nth n (map f xs) = f (nth n xs)"; |
|
169 |
by (list.induct_tac "xs" 1); |
|
170 |
(* case [] *) |
|
171 |
by (Asm_full_simp_tac 1); |
|
172 |
(* case x#xl *) |
|
173 |
by (rtac allI 1); |
|
174 |
by (nat_ind_tac "n" 1); |
|
175 |
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
|
176 |
qed_spec_mp "nth_map"; |
1301 | 177 |
Addsimps [nth_map]; |
178 |
||
179 |
goal List.thy "!n. n < length xs --> list_all P xs --> P(nth n xs)"; |
|
180 |
by (list.induct_tac "xs" 1); |
|
181 |
(* case [] *) |
|
182 |
by (Simp_tac 1); |
|
183 |
(* case x#xl *) |
|
184 |
by (rtac allI 1); |
|
185 |
by (nat_ind_tac "n" 1); |
|
186 |
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
|
187 |
qed_spec_mp "list_all_nth"; |
1301 | 188 |
|
189 |
goal List.thy "!n. n < length xs --> (nth n xs) mem xs"; |
|
190 |
by (list.induct_tac "xs" 1); |
|
191 |
(* case [] *) |
|
192 |
by (Simp_tac 1); |
|
193 |
(* case x#xl *) |
|
194 |
by (rtac allI 1); |
|
195 |
by (nat_ind_tac "n" 1); |
|
196 |
(* case 0 *) |
|
197 |
by (Asm_full_simp_tac 1); |
|
198 |
(* case Suc x *) |
|
199 |
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
|
200 |
qed_spec_mp "nth_mem"; |
1301 | 201 |
Addsimps [nth_mem]; |
202 |
||
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
203 |
(** drop **) |
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
204 |
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
205 |
goal thy "drop 0 xs = xs"; |
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
206 |
by (list.induct_tac "xs" 1); |
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
207 |
by (ALLGOALS Asm_simp_tac); |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
208 |
qed "drop_0"; |
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
209 |
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
210 |
goal thy "drop (Suc n) (x#xs) = drop n xs"; |
1552 | 211 |
by (Simp_tac 1); |
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
212 |
qed "drop_Suc_Cons"; |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
213 |
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
214 |
Delsimps [drop_Cons]; |
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
215 |
Addsimps [drop_0,drop_Suc_Cons]; |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
216 |
|
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
217 |
(** take **) |
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
218 |
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
219 |
goal thy "take 0 xs = []"; |
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
220 |
by (list.induct_tac "xs" 1); |
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
221 |
by (ALLGOALS Asm_simp_tac); |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
222 |
qed "take_0"; |
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
223 |
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
224 |
goal thy "take (Suc n) (x#xs) = x # take n xs"; |
1552 | 225 |
by (Simp_tac 1); |
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
226 |
qed "take_Suc_Cons"; |
1327
6c29cfab679c
added new arithmetic lemmas and the functions take and drop.
nipkow
parents:
1301
diff
changeset
|
227 |
|
1419
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
228 |
Delsimps [take_Cons]; |
a6a034a47a71
defined take/drop by induction over list rather than nat.
nipkow
parents:
1327
diff
changeset
|
229 |
Addsimps [take_0,take_Suc_Cons]; |
923 | 230 |
|
231 |
(** Additional mapping lemmas **) |
|
232 |
||
995
95c148a7b9c4
generalized map (%x.x) xs = xs to map (%x.x) = (%xs.xs)
nipkow
parents:
974
diff
changeset
|
233 |
goal List.thy "map (%x.x) = (%xs.xs)"; |
95c148a7b9c4
generalized map (%x.x) xs = xs to map (%x.x) = (%xs.xs)
nipkow
parents:
974
diff
changeset
|
234 |
by (rtac ext 1); |
923 | 235 |
by (list.induct_tac "xs" 1); |
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
236 |
by (ALLGOALS Asm_simp_tac); |
923 | 237 |
qed "map_ident"; |
238 |
||
239 |
goal List.thy "map f (xs@ys) = map f xs @ map f ys"; |
|
240 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
241 |
by (ALLGOALS Asm_simp_tac); |
923 | 242 |
qed "map_append"; |
243 |
||
244 |
goalw List.thy [o_def] "map (f o g) xs = map f (map g xs)"; |
|
245 |
by (list.induct_tac "xs" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
246 |
by (ALLGOALS Asm_simp_tac); |
923 | 247 |
qed "map_compose"; |
248 |
||
1169 | 249 |
goal List.thy "rev(map f l) = map f (rev l)"; |
250 |
by (list.induct_tac "l" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
251 |
by (ALLGOALS (asm_simp_tac (!simpset addsimps [map_append]))); |
1169 | 252 |
qed "rev_map_distrib"; |
253 |
||
254 |
goal List.thy "rev(flat ls) = flat (map rev (rev ls))"; |
|
255 |
by (list.induct_tac "ls" 1); |
|
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
256 |
by (ALLGOALS (asm_simp_tac (!simpset addsimps |
1169 | 257 |
[map_append, flat_append, rev_append, append_Nil2]))); |
258 |
qed "rev_flat"; |
|
259 |
||
1264
3eb91524b938
added local simpsets; removed IOA from 'make test'
clasohm
parents:
1202
diff
changeset
|
260 |
Addsimps |
923 | 261 |
[not_Cons_self, append_assoc, append_Nil2, append_is_Nil, same_append_eq, |
262 |
mem_append, mem_filter, |
|
1202 | 263 |
rev_append, rev_rev_ident, |
923 | 264 |
map_ident, map_append, map_compose, |
1301 | 265 |
flat_append, list_all_True, list_all_conj]; |
923 | 266 |