author | haftmann |
Mon, 21 Aug 2006 11:02:40 +0200 | |
changeset 20401 | f01ae74f29f2 |
parent 20380 | 14f9f2a1caa6 |
child 20439 | 1bf42b262a38 |
permissions | -rw-r--r-- |
13462 | 1 |
(* Title: HOL/List.thy |
2 |
ID: $Id$ |
|
3 |
Author: Tobias Nipkow |
|
923 | 4 |
*) |
5 |
||
13114 | 6 |
header {* The datatype of finite lists *} |
13122 | 7 |
|
15131 | 8 |
theory List |
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
9 |
imports PreList FunDef |
15131 | 10 |
begin |
923 | 11 |
|
13142 | 12 |
datatype 'a list = |
13366 | 13 |
Nil ("[]") |
14 |
| Cons 'a "'a list" (infixr "#" 65) |
|
923 | 15 |
|
15392 | 16 |
subsection{*Basic list processing functions*} |
15302 | 17 |
|
923 | 18 |
consts |
13366 | 19 |
"@" :: "'a list => 'a list => 'a list" (infixr 65) |
20 |
filter:: "('a => bool) => 'a list => 'a list" |
|
21 |
concat:: "'a list list => 'a list" |
|
22 |
foldl :: "('b => 'a => 'b) => 'b => 'a list => 'b" |
|
23 |
foldr :: "('a => 'b => 'b) => 'a list => 'b => 'b" |
|
24 |
hd:: "'a list => 'a" |
|
25 |
tl:: "'a list => 'a list" |
|
26 |
last:: "'a list => 'a" |
|
27 |
butlast :: "'a list => 'a list" |
|
28 |
set :: "'a list => 'a set" |
|
29 |
list_all2 :: "('a => 'b => bool) => 'a list => 'b list => bool" |
|
30 |
map :: "('a=>'b) => ('a list => 'b list)" |
|
31 |
nth :: "'a list => nat => 'a" (infixl "!" 100) |
|
32 |
list_update :: "'a list => nat => 'a => 'a list" |
|
33 |
take:: "nat => 'a list => 'a list" |
|
34 |
drop:: "nat => 'a list => 'a list" |
|
35 |
takeWhile :: "('a => bool) => 'a list => 'a list" |
|
36 |
dropWhile :: "('a => bool) => 'a list => 'a list" |
|
37 |
rev :: "'a list => 'a list" |
|
38 |
zip :: "'a list => 'b list => ('a * 'b) list" |
|
15425 | 39 |
upt :: "nat => nat => nat list" ("(1[_..</_'])") |
13366 | 40 |
remdups :: "'a list => 'a list" |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
41 |
remove1 :: "'a => 'a list => 'a list" |
13366 | 42 |
null:: "'a list => bool" |
43 |
"distinct":: "'a list => bool" |
|
44 |
replicate :: "nat => 'a => 'a list" |
|
15302 | 45 |
rotate1 :: "'a list \<Rightarrow> 'a list" |
46 |
rotate :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" |
|
19390 | 47 |
splice :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" |
15302 | 48 |
sublist :: "'a list => nat set => 'a list" |
17086 | 49 |
(* For efficiency *) |
50 |
mem :: "'a => 'a list => bool" (infixl 55) |
|
51 |
list_inter :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" |
|
52 |
list_ex :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" |
|
53 |
list_all:: "('a => bool) => ('a list => bool)" |
|
54 |
itrev :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" |
|
55 |
filtermap :: "('a \<Rightarrow> 'b option) \<Rightarrow> 'a list \<Rightarrow> 'b list" |
|
56 |
map_filter :: "('a => 'b) => ('a => bool) => 'a list => 'b list" |
|
15302 | 57 |
|
19363 | 58 |
abbreviation |
59 |
upto:: "nat => nat => nat list" ("(1[_../_])") |
|
60 |
"[i..j] == [i..<(Suc j)]" |
|
19302 | 61 |
|
923 | 62 |
|
13146 | 63 |
nonterminals lupdbinds lupdbind |
5077
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
4643
diff
changeset
|
64 |
|
923 | 65 |
syntax |
13366 | 66 |
-- {* list Enumeration *} |
67 |
"@list" :: "args => 'a list" ("[(_)]") |
|
923 | 68 |
|
13366 | 69 |
-- {* Special syntax for filter *} |
70 |
"@filter" :: "[pttrn, 'a list, bool] => 'a list" ("(1[_:_./ _])") |
|
923 | 71 |
|
13366 | 72 |
-- {* list update *} |
73 |
"_lupdbind":: "['a, 'a] => lupdbind" ("(2_ :=/ _)") |
|
74 |
"" :: "lupdbind => lupdbinds" ("_") |
|
75 |
"_lupdbinds" :: "[lupdbind, lupdbinds] => lupdbinds" ("_,/ _") |
|
76 |
"_LUpdate" :: "['a, lupdbinds] => 'a" ("_/[(_)]" [900,0] 900) |
|
5077
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
4643
diff
changeset
|
77 |
|
923 | 78 |
translations |
13366 | 79 |
"[x, xs]" == "x#[xs]" |
80 |
"[x]" == "x#[]" |
|
81 |
"[x:xs . P]"== "filter (%x. P) xs" |
|
923 | 82 |
|
13366 | 83 |
"_LUpdate xs (_lupdbinds b bs)"== "_LUpdate (_LUpdate xs b) bs" |
84 |
"xs[i:=x]" == "list_update xs i x" |
|
5077
71043526295f
* HOL/List: new function list_update written xs[i:=v] that updates the i-th
nipkow
parents:
4643
diff
changeset
|
85 |
|
5427 | 86 |
|
12114
a8e860c86252
eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents:
10832
diff
changeset
|
87 |
syntax (xsymbols) |
13366 | 88 |
"@filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<in>_ ./ _])") |
14565 | 89 |
syntax (HTML output) |
90 |
"@filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<in>_ ./ _])") |
|
3342
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3320
diff
changeset
|
91 |
|
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3320
diff
changeset
|
92 |
|
13142 | 93 |
text {* |
14589 | 94 |
Function @{text size} is overloaded for all datatypes. Users may |
13366 | 95 |
refer to the list version as @{text length}. *} |
13142 | 96 |
|
19363 | 97 |
abbreviation |
98 |
length :: "'a list => nat" |
|
99 |
"length == size" |
|
15302 | 100 |
|
5183 | 101 |
primrec |
15307 | 102 |
"hd(x#xs) = x" |
103 |
||
5183 | 104 |
primrec |
15307 | 105 |
"tl([]) = []" |
106 |
"tl(x#xs) = xs" |
|
107 |
||
5183 | 108 |
primrec |
15307 | 109 |
"null([]) = True" |
110 |
"null(x#xs) = False" |
|
111 |
||
8972 | 112 |
primrec |
15307 | 113 |
"last(x#xs) = (if xs=[] then x else last xs)" |
114 |
||
5183 | 115 |
primrec |
15307 | 116 |
"butlast []= []" |
117 |
"butlast(x#xs) = (if xs=[] then [] else x#butlast xs)" |
|
118 |
||
5183 | 119 |
primrec |
15307 | 120 |
"set [] = {}" |
121 |
"set (x#xs) = insert x (set xs)" |
|
122 |
||
5183 | 123 |
primrec |
15307 | 124 |
"map f [] = []" |
125 |
"map f (x#xs) = f(x)#map f xs" |
|
126 |
||
5183 | 127 |
primrec |
15307 | 128 |
append_Nil:"[]@ys = ys" |
129 |
append_Cons: "(x#xs)@ys = x#(xs@ys)" |
|
130 |
||
5183 | 131 |
primrec |
15307 | 132 |
"rev([]) = []" |
133 |
"rev(x#xs) = rev(xs) @ [x]" |
|
134 |
||
5183 | 135 |
primrec |
15307 | 136 |
"filter P [] = []" |
137 |
"filter P (x#xs) = (if P x then x#filter P xs else filter P xs)" |
|
138 |
||
5183 | 139 |
primrec |
15307 | 140 |
foldl_Nil:"foldl f a [] = a" |
141 |
foldl_Cons: "foldl f a (x#xs) = foldl f (f a x) xs" |
|
142 |
||
8000 | 143 |
primrec |
15307 | 144 |
"foldr f [] a = a" |
145 |
"foldr f (x#xs) a = f x (foldr f xs a)" |
|
146 |
||
5183 | 147 |
primrec |
15307 | 148 |
"concat([]) = []" |
149 |
"concat(x#xs) = x @ concat(xs)" |
|
150 |
||
5183 | 151 |
primrec |
15307 | 152 |
drop_Nil:"drop n [] = []" |
153 |
drop_Cons: "drop n (x#xs) = (case n of 0 => x#xs | Suc(m) => drop m xs)" |
|
154 |
-- {*Warning: simpset does not contain this definition, but separate |
|
155 |
theorems for @{text "n = 0"} and @{text "n = Suc k"} *} |
|
156 |
||
5183 | 157 |
primrec |
15307 | 158 |
take_Nil:"take n [] = []" |
159 |
take_Cons: "take n (x#xs) = (case n of 0 => [] | Suc(m) => x # take m xs)" |
|
160 |
-- {*Warning: simpset does not contain this definition, but separate |
|
161 |
theorems for @{text "n = 0"} and @{text "n = Suc k"} *} |
|
162 |
||
13142 | 163 |
primrec |
15307 | 164 |
nth_Cons:"(x#xs)!n = (case n of 0 => x | (Suc k) => xs!k)" |
165 |
-- {*Warning: simpset does not contain this definition, but separate |
|
166 |
theorems for @{text "n = 0"} and @{text "n = Suc k"} *} |
|
167 |
||
5183 | 168 |
primrec |
15307 | 169 |
"[][i:=v] = []" |
170 |
"(x#xs)[i:=v] = (case i of 0 => v # xs | Suc j => x # xs[j:=v])" |
|
171 |
||
172 |
primrec |
|
173 |
"takeWhile P [] = []" |
|
174 |
"takeWhile P (x#xs) = (if P x then x#takeWhile P xs else [])" |
|
175 |
||
5183 | 176 |
primrec |
15307 | 177 |
"dropWhile P [] = []" |
178 |
"dropWhile P (x#xs) = (if P x then dropWhile P xs else x#xs)" |
|
179 |
||
5183 | 180 |
primrec |
15307 | 181 |
"zip xs [] = []" |
182 |
zip_Cons: "zip xs (y#ys) = (case xs of [] => [] | z#zs => (z,y)#zip zs ys)" |
|
183 |
-- {*Warning: simpset does not contain this definition, but separate |
|
184 |
theorems for @{text "xs = []"} and @{text "xs = z # zs"} *} |
|
185 |
||
5427 | 186 |
primrec |
15425 | 187 |
upt_0: "[i..<0] = []" |
188 |
upt_Suc: "[i..<(Suc j)] = (if i <= j then [i..<j] @ [j] else [])" |
|
15307 | 189 |
|
5183 | 190 |
primrec |
15307 | 191 |
"distinct [] = True" |
192 |
"distinct (x#xs) = (x ~: set xs \<and> distinct xs)" |
|
193 |
||
5183 | 194 |
primrec |
15307 | 195 |
"remdups [] = []" |
196 |
"remdups (x#xs) = (if x : set xs then remdups xs else x # remdups xs)" |
|
197 |
||
5183 | 198 |
primrec |
15307 | 199 |
"remove1 x [] = []" |
200 |
"remove1 x (y#xs) = (if x=y then xs else y # remove1 x xs)" |
|
201 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
202 |
primrec |
15307 | 203 |
replicate_0: "replicate 0 x = []" |
204 |
replicate_Suc: "replicate (Suc n) x = x # replicate n x" |
|
205 |
||
8115 | 206 |
defs |
15302 | 207 |
rotate1_def: "rotate1 xs == (case xs of [] \<Rightarrow> [] | x#xs \<Rightarrow> xs @ [x])" |
208 |
rotate_def: "rotate n == rotate1 ^ n" |
|
209 |
||
210 |
list_all2_def: |
|
211 |
"list_all2 P xs ys == |
|
212 |
length xs = length ys \<and> (\<forall>(x, y) \<in> set (zip xs ys). P x y)" |
|
213 |
||
214 |
sublist_def: |
|
15425 | 215 |
"sublist xs A == map fst (filter (%p. snd p : A) (zip xs [0..<size xs]))" |
5281 | 216 |
|
17086 | 217 |
primrec |
19390 | 218 |
"splice [] ys = ys" |
219 |
"splice (x#xs) ys = (if ys=[] then x#xs else x # hd ys # splice xs (tl ys))" |
|
220 |
-- {*Warning: simpset does not contain the second eqn but a derived one. *} |
|
221 |
||
222 |
primrec |
|
17086 | 223 |
"x mem [] = False" |
224 |
"x mem (y#ys) = (if y=x then True else x mem ys)" |
|
225 |
||
226 |
primrec |
|
227 |
"list_inter [] bs = []" |
|
228 |
"list_inter (a#as) bs = |
|
229 |
(if a \<in> set bs then a#(list_inter as bs) else list_inter as bs)" |
|
230 |
||
231 |
primrec |
|
232 |
"list_all P [] = True" |
|
233 |
"list_all P (x#xs) = (P(x) \<and> list_all P xs)" |
|
234 |
||
235 |
primrec |
|
236 |
"list_ex P [] = False" |
|
237 |
"list_ex P (x#xs) = (P x \<or> list_ex P xs)" |
|
238 |
||
239 |
primrec |
|
240 |
"filtermap f [] = []" |
|
241 |
"filtermap f (x#xs) = |
|
242 |
(case f x of None \<Rightarrow> filtermap f xs |
|
243 |
| Some y \<Rightarrow> y # (filtermap f xs))" |
|
244 |
||
245 |
primrec |
|
246 |
"map_filter f P [] = []" |
|
247 |
"map_filter f P (x#xs) = (if P x then f x # map_filter f P xs else |
|
248 |
map_filter f P xs)" |
|
249 |
||
250 |
primrec |
|
251 |
"itrev [] ys = ys" |
|
252 |
"itrev (x#xs) ys = itrev xs (x#ys)" |
|
253 |
||
13114 | 254 |
|
13142 | 255 |
lemma not_Cons_self [simp]: "xs \<noteq> x # xs" |
13145 | 256 |
by (induct xs) auto |
13114 | 257 |
|
13142 | 258 |
lemmas not_Cons_self2 [simp] = not_Cons_self [symmetric] |
13114 | 259 |
|
13142 | 260 |
lemma neq_Nil_conv: "(xs \<noteq> []) = (\<exists>y ys. xs = y # ys)" |
13145 | 261 |
by (induct xs) auto |
13114 | 262 |
|
13142 | 263 |
lemma length_induct: |
13145 | 264 |
"(!!xs. \<forall>ys. length ys < length xs --> P ys ==> P xs) ==> P xs" |
17589 | 265 |
by (rule measure_induct [of length]) iprover |
13114 | 266 |
|
267 |
||
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
268 |
subsubsection {* @{text null} *} |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
269 |
|
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
270 |
lemma null_empty: "null xs = (xs = [])" |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
271 |
by (cases xs) simp_all |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
272 |
|
20105 | 273 |
lemma empty_null [code inline]: |
19787 | 274 |
"(xs = []) = null xs" |
19817 | 275 |
using null_empty [symmetric] . |
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
276 |
|
15392 | 277 |
subsubsection {* @{text length} *} |
13114 | 278 |
|
13142 | 279 |
text {* |
13145 | 280 |
Needs to come before @{text "@"} because of theorem @{text |
281 |
append_eq_append_conv}. |
|
13142 | 282 |
*} |
13114 | 283 |
|
13142 | 284 |
lemma length_append [simp]: "length (xs @ ys) = length xs + length ys" |
13145 | 285 |
by (induct xs) auto |
13114 | 286 |
|
13142 | 287 |
lemma length_map [simp]: "length (map f xs) = length xs" |
13145 | 288 |
by (induct xs) auto |
13114 | 289 |
|
13142 | 290 |
lemma length_rev [simp]: "length (rev xs) = length xs" |
13145 | 291 |
by (induct xs) auto |
13114 | 292 |
|
13142 | 293 |
lemma length_tl [simp]: "length (tl xs) = length xs - 1" |
13145 | 294 |
by (cases xs) auto |
13114 | 295 |
|
13142 | 296 |
lemma length_0_conv [iff]: "(length xs = 0) = (xs = [])" |
13145 | 297 |
by (induct xs) auto |
13114 | 298 |
|
13142 | 299 |
lemma length_greater_0_conv [iff]: "(0 < length xs) = (xs \<noteq> [])" |
13145 | 300 |
by (induct xs) auto |
13114 | 301 |
|
302 |
lemma length_Suc_conv: |
|
13145 | 303 |
"(length xs = Suc n) = (\<exists>y ys. xs = y # ys \<and> length ys = n)" |
304 |
by (induct xs) auto |
|
13142 | 305 |
|
14025 | 306 |
lemma Suc_length_conv: |
307 |
"(Suc n = length xs) = (\<exists>y ys. xs = y # ys \<and> length ys = n)" |
|
14208 | 308 |
apply (induct xs, simp, simp) |
14025 | 309 |
apply blast |
310 |
done |
|
311 |
||
14099 | 312 |
lemma impossible_Cons [rule_format]: |
313 |
"length xs <= length ys --> xs = x # ys = False" |
|
14208 | 314 |
apply (induct xs, auto) |
14099 | 315 |
done |
316 |
||
14247 | 317 |
lemma list_induct2[consumes 1]: "\<And>ys. |
318 |
\<lbrakk> length xs = length ys; |
|
319 |
P [] []; |
|
320 |
\<And>x xs y ys. \<lbrakk> length xs = length ys; P xs ys \<rbrakk> \<Longrightarrow> P (x#xs) (y#ys) \<rbrakk> |
|
321 |
\<Longrightarrow> P xs ys" |
|
322 |
apply(induct xs) |
|
323 |
apply simp |
|
324 |
apply(case_tac ys) |
|
325 |
apply simp |
|
326 |
apply(simp) |
|
327 |
done |
|
13114 | 328 |
|
15392 | 329 |
subsubsection {* @{text "@"} -- append *} |
13114 | 330 |
|
13142 | 331 |
lemma append_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)" |
13145 | 332 |
by (induct xs) auto |
13114 | 333 |
|
13142 | 334 |
lemma append_Nil2 [simp]: "xs @ [] = xs" |
13145 | 335 |
by (induct xs) auto |
3507 | 336 |
|
13142 | 337 |
lemma append_is_Nil_conv [iff]: "(xs @ ys = []) = (xs = [] \<and> ys = [])" |
13145 | 338 |
by (induct xs) auto |
13114 | 339 |
|
13142 | 340 |
lemma Nil_is_append_conv [iff]: "([] = xs @ ys) = (xs = [] \<and> ys = [])" |
13145 | 341 |
by (induct xs) auto |
13114 | 342 |
|
13142 | 343 |
lemma append_self_conv [iff]: "(xs @ ys = xs) = (ys = [])" |
13145 | 344 |
by (induct xs) auto |
13114 | 345 |
|
13142 | 346 |
lemma self_append_conv [iff]: "(xs = xs @ ys) = (ys = [])" |
13145 | 347 |
by (induct xs) auto |
13114 | 348 |
|
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
349 |
lemma append_eq_append_conv [simp]: |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
350 |
"!!ys. length xs = length ys \<or> length us = length vs |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
351 |
==> (xs@us = ys@vs) = (xs=ys \<and> us=vs)" |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
352 |
apply (induct xs) |
14208 | 353 |
apply (case_tac ys, simp, force) |
354 |
apply (case_tac ys, force, simp) |
|
13145 | 355 |
done |
13142 | 356 |
|
14495 | 357 |
lemma append_eq_append_conv2: "!!ys zs ts. |
358 |
(xs @ ys = zs @ ts) = |
|
359 |
(EX us. xs = zs @ us & us @ ys = ts | xs @ us = zs & ys = us@ ts)" |
|
360 |
apply (induct xs) |
|
361 |
apply fastsimp |
|
362 |
apply(case_tac zs) |
|
363 |
apply simp |
|
364 |
apply fastsimp |
|
365 |
done |
|
366 |
||
13142 | 367 |
lemma same_append_eq [iff]: "(xs @ ys = xs @ zs) = (ys = zs)" |
13145 | 368 |
by simp |
13142 | 369 |
|
370 |
lemma append1_eq_conv [iff]: "(xs @ [x] = ys @ [y]) = (xs = ys \<and> x = y)" |
|
13145 | 371 |
by simp |
13114 | 372 |
|
13142 | 373 |
lemma append_same_eq [iff]: "(ys @ xs = zs @ xs) = (ys = zs)" |
13145 | 374 |
by simp |
13114 | 375 |
|
13142 | 376 |
lemma append_self_conv2 [iff]: "(xs @ ys = ys) = (xs = [])" |
13145 | 377 |
using append_same_eq [of _ _ "[]"] by auto |
3507 | 378 |
|
13142 | 379 |
lemma self_append_conv2 [iff]: "(ys = xs @ ys) = (xs = [])" |
13145 | 380 |
using append_same_eq [of "[]"] by auto |
13114 | 381 |
|
13142 | 382 |
lemma hd_Cons_tl [simp]: "xs \<noteq> [] ==> hd xs # tl xs = xs" |
13145 | 383 |
by (induct xs) auto |
13114 | 384 |
|
13142 | 385 |
lemma hd_append: "hd (xs @ ys) = (if xs = [] then hd ys else hd xs)" |
13145 | 386 |
by (induct xs) auto |
13114 | 387 |
|
13142 | 388 |
lemma hd_append2 [simp]: "xs \<noteq> [] ==> hd (xs @ ys) = hd xs" |
13145 | 389 |
by (simp add: hd_append split: list.split) |
13114 | 390 |
|
13142 | 391 |
lemma tl_append: "tl (xs @ ys) = (case xs of [] => tl ys | z#zs => zs @ ys)" |
13145 | 392 |
by (simp split: list.split) |
13114 | 393 |
|
13142 | 394 |
lemma tl_append2 [simp]: "xs \<noteq> [] ==> tl (xs @ ys) = tl xs @ ys" |
13145 | 395 |
by (simp add: tl_append split: list.split) |
13114 | 396 |
|
397 |
||
14300 | 398 |
lemma Cons_eq_append_conv: "x#xs = ys@zs = |
399 |
(ys = [] & x#xs = zs | (EX ys'. x#ys' = ys & xs = ys'@zs))" |
|
400 |
by(cases ys) auto |
|
401 |
||
15281 | 402 |
lemma append_eq_Cons_conv: "(ys@zs = x#xs) = |
403 |
(ys = [] & zs = x#xs | (EX ys'. ys = x#ys' & ys'@zs = xs))" |
|
404 |
by(cases ys) auto |
|
405 |
||
14300 | 406 |
|
13142 | 407 |
text {* Trivial rules for solving @{text "@"}-equations automatically. *} |
13114 | 408 |
|
409 |
lemma eq_Nil_appendI: "xs = ys ==> xs = [] @ ys" |
|
13145 | 410 |
by simp |
13114 | 411 |
|
13142 | 412 |
lemma Cons_eq_appendI: |
13145 | 413 |
"[| x # xs1 = ys; xs = xs1 @ zs |] ==> x # xs = ys @ zs" |
414 |
by (drule sym) simp |
|
13114 | 415 |
|
13142 | 416 |
lemma append_eq_appendI: |
13145 | 417 |
"[| xs @ xs1 = zs; ys = xs1 @ us |] ==> xs @ ys = zs @ us" |
418 |
by (drule sym) simp |
|
13114 | 419 |
|
420 |
||
13142 | 421 |
text {* |
13145 | 422 |
Simplification procedure for all list equalities. |
423 |
Currently only tries to rearrange @{text "@"} to see if |
|
424 |
- both lists end in a singleton list, |
|
425 |
- or both lists end in the same list. |
|
13142 | 426 |
*} |
427 |
||
428 |
ML_setup {* |
|
3507 | 429 |
local |
430 |
||
13122 | 431 |
val append_assoc = thm "append_assoc"; |
432 |
val append_Nil = thm "append_Nil"; |
|
433 |
val append_Cons = thm "append_Cons"; |
|
434 |
val append1_eq_conv = thm "append1_eq_conv"; |
|
435 |
val append_same_eq = thm "append_same_eq"; |
|
436 |
||
13114 | 437 |
fun last (cons as Const("List.list.Cons",_) $ _ $ xs) = |
13462 | 438 |
(case xs of Const("List.list.Nil",_) => cons | _ => last xs) |
439 |
| last (Const("List.op @",_) $ _ $ ys) = last ys |
|
440 |
| last t = t; |
|
13114 | 441 |
|
442 |
fun list1 (Const("List.list.Cons",_) $ _ $ Const("List.list.Nil",_)) = true |
|
13462 | 443 |
| list1 _ = false; |
13114 | 444 |
|
445 |
fun butlast ((cons as Const("List.list.Cons",_) $ x) $ xs) = |
|
13462 | 446 |
(case xs of Const("List.list.Nil",_) => xs | _ => cons $ butlast xs) |
447 |
| butlast ((app as Const("List.op @",_) $ xs) $ ys) = app $ butlast ys |
|
448 |
| butlast xs = Const("List.list.Nil",fastype_of xs); |
|
13114 | 449 |
|
16973 | 450 |
val rearr_ss = HOL_basic_ss addsimps [append_assoc, append_Nil, append_Cons]; |
451 |
||
20044
92cc2f4c7335
simprocs: no theory argument -- use simpset context instead;
wenzelm
parents:
19890
diff
changeset
|
452 |
fun list_eq ss (F as (eq as Const(_,eqT)) $ lhs $ rhs) = |
13462 | 453 |
let |
454 |
val lastl = last lhs and lastr = last rhs; |
|
455 |
fun rearr conv = |
|
456 |
let |
|
457 |
val lhs1 = butlast lhs and rhs1 = butlast rhs; |
|
458 |
val Type(_,listT::_) = eqT |
|
459 |
val appT = [listT,listT] ---> listT |
|
460 |
val app = Const("List.op @",appT) |
|
461 |
val F2 = eq $ (app$lhs1$lastl) $ (app$rhs1$lastr) |
|
13480
bb72bd43c6c3
use Tactic.prove instead of prove_goalw_cterm in internal proofs!
wenzelm
parents:
13462
diff
changeset
|
462 |
val eq = HOLogic.mk_Trueprop (HOLogic.mk_eq (F,F2)); |
20044
92cc2f4c7335
simprocs: no theory argument -- use simpset context instead;
wenzelm
parents:
19890
diff
changeset
|
463 |
val thm = Goal.prove (Simplifier.the_context ss) [] [] eq |
17877
67d5ab1cb0d8
Simplifier.inherit_context instead of Simplifier.inherit_bounds;
wenzelm
parents:
17830
diff
changeset
|
464 |
(K (simp_tac (Simplifier.inherit_context ss rearr_ss) 1)); |
15531 | 465 |
in SOME ((conv RS (thm RS trans)) RS eq_reflection) end; |
13114 | 466 |
|
13462 | 467 |
in |
468 |
if list1 lastl andalso list1 lastr then rearr append1_eq_conv |
|
469 |
else if lastl aconv lastr then rearr append_same_eq |
|
15531 | 470 |
else NONE |
13462 | 471 |
end; |
472 |
||
13114 | 473 |
in |
13462 | 474 |
|
475 |
val list_eq_simproc = |
|
20044
92cc2f4c7335
simprocs: no theory argument -- use simpset context instead;
wenzelm
parents:
19890
diff
changeset
|
476 |
Simplifier.simproc (Theory.sign_of (the_context ())) "list_eq" ["(xs::'a list) = ys"] (K list_eq); |
13462 | 477 |
|
13114 | 478 |
end; |
479 |
||
480 |
Addsimprocs [list_eq_simproc]; |
|
481 |
*} |
|
482 |
||
483 |
||
15392 | 484 |
subsubsection {* @{text map} *} |
13114 | 485 |
|
13142 | 486 |
lemma map_ext: "(!!x. x : set xs --> f x = g x) ==> map f xs = map g xs" |
13145 | 487 |
by (induct xs) simp_all |
13114 | 488 |
|
13142 | 489 |
lemma map_ident [simp]: "map (\<lambda>x. x) = (\<lambda>xs. xs)" |
13145 | 490 |
by (rule ext, induct_tac xs) auto |
13114 | 491 |
|
13142 | 492 |
lemma map_append [simp]: "map f (xs @ ys) = map f xs @ map f ys" |
13145 | 493 |
by (induct xs) auto |
13114 | 494 |
|
13142 | 495 |
lemma map_compose: "map (f o g) xs = map f (map g xs)" |
13145 | 496 |
by (induct xs) (auto simp add: o_def) |
13114 | 497 |
|
13142 | 498 |
lemma rev_map: "rev (map f xs) = map f (rev xs)" |
13145 | 499 |
by (induct xs) auto |
13114 | 500 |
|
13737 | 501 |
lemma map_eq_conv[simp]: "(map f xs = map g xs) = (!x : set xs. f x = g x)" |
502 |
by (induct xs) auto |
|
503 |
||
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
504 |
lemma map_cong [fundef_cong, recdef_cong]: |
13145 | 505 |
"xs = ys ==> (!!x. x : set ys ==> f x = g x) ==> map f xs = map g ys" |
506 |
-- {* a congruence rule for @{text map} *} |
|
13737 | 507 |
by simp |
13114 | 508 |
|
13142 | 509 |
lemma map_is_Nil_conv [iff]: "(map f xs = []) = (xs = [])" |
13145 | 510 |
by (cases xs) auto |
13114 | 511 |
|
13142 | 512 |
lemma Nil_is_map_conv [iff]: "([] = map f xs) = (xs = [])" |
13145 | 513 |
by (cases xs) auto |
13114 | 514 |
|
18447 | 515 |
lemma map_eq_Cons_conv: |
14025 | 516 |
"(map f xs = y#ys) = (\<exists>z zs. xs = z#zs \<and> f z = y \<and> map f zs = ys)" |
13145 | 517 |
by (cases xs) auto |
13114 | 518 |
|
18447 | 519 |
lemma Cons_eq_map_conv: |
14025 | 520 |
"(x#xs = map f ys) = (\<exists>z zs. ys = z#zs \<and> x = f z \<and> xs = map f zs)" |
521 |
by (cases ys) auto |
|
522 |
||
18447 | 523 |
lemmas map_eq_Cons_D = map_eq_Cons_conv [THEN iffD1] |
524 |
lemmas Cons_eq_map_D = Cons_eq_map_conv [THEN iffD1] |
|
525 |
declare map_eq_Cons_D [dest!] Cons_eq_map_D [dest!] |
|
526 |
||
14111 | 527 |
lemma ex_map_conv: |
528 |
"(EX xs. ys = map f xs) = (ALL y : set ys. EX x. y = f x)" |
|
18447 | 529 |
by(induct ys, auto simp add: Cons_eq_map_conv) |
14111 | 530 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
531 |
lemma map_eq_imp_length_eq: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
532 |
"!!xs. map f xs = map f ys ==> length xs = length ys" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
533 |
apply (induct ys) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
534 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
535 |
apply(simp (no_asm_use)) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
536 |
apply clarify |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
537 |
apply(simp (no_asm_use)) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
538 |
apply fast |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
539 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
540 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
541 |
lemma map_inj_on: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
542 |
"[| map f xs = map f ys; inj_on f (set xs Un set ys) |] |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
543 |
==> xs = ys" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
544 |
apply(frule map_eq_imp_length_eq) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
545 |
apply(rotate_tac -1) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
546 |
apply(induct rule:list_induct2) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
547 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
548 |
apply(simp) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
549 |
apply (blast intro:sym) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
550 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
551 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
552 |
lemma inj_on_map_eq_map: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
553 |
"inj_on f (set xs Un set ys) \<Longrightarrow> (map f xs = map f ys) = (xs = ys)" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
554 |
by(blast dest:map_inj_on) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
555 |
|
13114 | 556 |
lemma map_injective: |
14338 | 557 |
"!!xs. map f xs = map f ys ==> inj f ==> xs = ys" |
558 |
by (induct ys) (auto dest!:injD) |
|
13114 | 559 |
|
14339 | 560 |
lemma inj_map_eq_map[simp]: "inj f \<Longrightarrow> (map f xs = map f ys) = (xs = ys)" |
561 |
by(blast dest:map_injective) |
|
562 |
||
13114 | 563 |
lemma inj_mapI: "inj f ==> inj (map f)" |
17589 | 564 |
by (iprover dest: map_injective injD intro: inj_onI) |
13114 | 565 |
|
566 |
lemma inj_mapD: "inj (map f) ==> inj f" |
|
14208 | 567 |
apply (unfold inj_on_def, clarify) |
13145 | 568 |
apply (erule_tac x = "[x]" in ballE) |
14208 | 569 |
apply (erule_tac x = "[y]" in ballE, simp, blast) |
13145 | 570 |
apply blast |
571 |
done |
|
13114 | 572 |
|
14339 | 573 |
lemma inj_map[iff]: "inj (map f) = inj f" |
13145 | 574 |
by (blast dest: inj_mapD intro: inj_mapI) |
13114 | 575 |
|
15303 | 576 |
lemma inj_on_mapI: "inj_on f (\<Union>(set ` A)) \<Longrightarrow> inj_on (map f) A" |
577 |
apply(rule inj_onI) |
|
578 |
apply(erule map_inj_on) |
|
579 |
apply(blast intro:inj_onI dest:inj_onD) |
|
580 |
done |
|
581 |
||
14343 | 582 |
lemma map_idI: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = x) \<Longrightarrow> map f xs = xs" |
583 |
by (induct xs, auto) |
|
13114 | 584 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
585 |
lemma map_fun_upd [simp]: "y \<notin> set xs \<Longrightarrow> map (f(y:=v)) xs = map f xs" |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
586 |
by (induct xs) auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
587 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
588 |
lemma map_fst_zip[simp]: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
589 |
"length xs = length ys \<Longrightarrow> map fst (zip xs ys) = xs" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
590 |
by (induct rule:list_induct2, simp_all) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
591 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
592 |
lemma map_snd_zip[simp]: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
593 |
"length xs = length ys \<Longrightarrow> map snd (zip xs ys) = ys" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
594 |
by (induct rule:list_induct2, simp_all) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
595 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
596 |
|
15392 | 597 |
subsubsection {* @{text rev} *} |
13114 | 598 |
|
13142 | 599 |
lemma rev_append [simp]: "rev (xs @ ys) = rev ys @ rev xs" |
13145 | 600 |
by (induct xs) auto |
13114 | 601 |
|
13142 | 602 |
lemma rev_rev_ident [simp]: "rev (rev xs) = xs" |
13145 | 603 |
by (induct xs) auto |
13114 | 604 |
|
15870 | 605 |
lemma rev_swap: "(rev xs = ys) = (xs = rev ys)" |
606 |
by auto |
|
607 |
||
13142 | 608 |
lemma rev_is_Nil_conv [iff]: "(rev xs = []) = (xs = [])" |
13145 | 609 |
by (induct xs) auto |
13114 | 610 |
|
13142 | 611 |
lemma Nil_is_rev_conv [iff]: "([] = rev xs) = (xs = [])" |
13145 | 612 |
by (induct xs) auto |
13114 | 613 |
|
15870 | 614 |
lemma rev_singleton_conv [simp]: "(rev xs = [x]) = (xs = [x])" |
615 |
by (cases xs) auto |
|
616 |
||
617 |
lemma singleton_rev_conv [simp]: "([x] = rev xs) = (xs = [x])" |
|
618 |
by (cases xs) auto |
|
619 |
||
13142 | 620 |
lemma rev_is_rev_conv [iff]: "!!ys. (rev xs = rev ys) = (xs = ys)" |
14208 | 621 |
apply (induct xs, force) |
622 |
apply (case_tac ys, simp, force) |
|
13145 | 623 |
done |
13114 | 624 |
|
15439 | 625 |
lemma inj_on_rev[iff]: "inj_on rev A" |
626 |
by(simp add:inj_on_def) |
|
627 |
||
13366 | 628 |
lemma rev_induct [case_names Nil snoc]: |
629 |
"[| P []; !!x xs. P xs ==> P (xs @ [x]) |] ==> P xs" |
|
15489
d136af442665
Replaced application of subst by simplesubst in proof of rev_induct
berghofe
parents:
15439
diff
changeset
|
630 |
apply(simplesubst rev_rev_ident[symmetric]) |
13145 | 631 |
apply(rule_tac list = "rev xs" in list.induct, simp_all) |
632 |
done |
|
13114 | 633 |
|
13145 | 634 |
ML {* val rev_induct_tac = induct_thm_tac (thm "rev_induct") *}-- "compatibility" |
13114 | 635 |
|
13366 | 636 |
lemma rev_exhaust [case_names Nil snoc]: |
637 |
"(xs = [] ==> P) ==>(!!ys y. xs = ys @ [y] ==> P) ==> P" |
|
13145 | 638 |
by (induct xs rule: rev_induct) auto |
13114 | 639 |
|
13366 | 640 |
lemmas rev_cases = rev_exhaust |
641 |
||
18423 | 642 |
lemma rev_eq_Cons_iff[iff]: "(rev xs = y#ys) = (xs = rev ys @ [y])" |
643 |
by(rule rev_cases[of xs]) auto |
|
644 |
||
13114 | 645 |
|
15392 | 646 |
subsubsection {* @{text set} *} |
13114 | 647 |
|
13142 | 648 |
lemma finite_set [iff]: "finite (set xs)" |
13145 | 649 |
by (induct xs) auto |
13114 | 650 |
|
13142 | 651 |
lemma set_append [simp]: "set (xs @ ys) = (set xs \<union> set ys)" |
13145 | 652 |
by (induct xs) auto |
13114 | 653 |
|
17830 | 654 |
lemma hd_in_set[simp]: "xs \<noteq> [] \<Longrightarrow> hd xs : set xs" |
655 |
by(cases xs) auto |
|
14099 | 656 |
|
13142 | 657 |
lemma set_subset_Cons: "set xs \<subseteq> set (x # xs)" |
13145 | 658 |
by auto |
13114 | 659 |
|
14099 | 660 |
lemma set_ConsD: "y \<in> set (x # xs) \<Longrightarrow> y=x \<or> y \<in> set xs" |
661 |
by auto |
|
662 |
||
13142 | 663 |
lemma set_empty [iff]: "(set xs = {}) = (xs = [])" |
13145 | 664 |
by (induct xs) auto |
13114 | 665 |
|
15245 | 666 |
lemma set_empty2[iff]: "({} = set xs) = (xs = [])" |
667 |
by(induct xs) auto |
|
668 |
||
13142 | 669 |
lemma set_rev [simp]: "set (rev xs) = set xs" |
13145 | 670 |
by (induct xs) auto |
13114 | 671 |
|
13142 | 672 |
lemma set_map [simp]: "set (map f xs) = f`(set xs)" |
13145 | 673 |
by (induct xs) auto |
13114 | 674 |
|
13142 | 675 |
lemma set_filter [simp]: "set (filter P xs) = {x. x : set xs \<and> P x}" |
13145 | 676 |
by (induct xs) auto |
13114 | 677 |
|
15425 | 678 |
lemma set_upt [simp]: "set[i..<j] = {k. i \<le> k \<and> k < j}" |
14208 | 679 |
apply (induct j, simp_all) |
680 |
apply (erule ssubst, auto) |
|
13145 | 681 |
done |
13114 | 682 |
|
13142 | 683 |
lemma in_set_conv_decomp: "(x : set xs) = (\<exists>ys zs. xs = ys @ x # zs)" |
15113 | 684 |
proof (induct xs) |
685 |
case Nil show ?case by simp |
|
686 |
case (Cons a xs) |
|
687 |
show ?case |
|
688 |
proof |
|
689 |
assume "x \<in> set (a # xs)" |
|
690 |
with prems show "\<exists>ys zs. a # xs = ys @ x # zs" |
|
691 |
by (simp, blast intro: Cons_eq_appendI) |
|
692 |
next |
|
693 |
assume "\<exists>ys zs. a # xs = ys @ x # zs" |
|
694 |
then obtain ys zs where eq: "a # xs = ys @ x # zs" by blast |
|
695 |
show "x \<in> set (a # xs)" |
|
696 |
by (cases ys, auto simp add: eq) |
|
697 |
qed |
|
698 |
qed |
|
13142 | 699 |
|
18049 | 700 |
lemma in_set_conv_decomp_first: |
701 |
"(x : set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys)" |
|
702 |
proof (induct xs) |
|
703 |
case Nil show ?case by simp |
|
704 |
next |
|
705 |
case (Cons a xs) |
|
706 |
show ?case |
|
707 |
proof cases |
|
708 |
assume "x = a" thus ?case using Cons by force |
|
709 |
next |
|
710 |
assume "x \<noteq> a" |
|
711 |
show ?case |
|
712 |
proof |
|
713 |
assume "x \<in> set (a # xs)" |
|
714 |
from prems show "\<exists>ys zs. a # xs = ys @ x # zs \<and> x \<notin> set ys" |
|
715 |
by(fastsimp intro!: Cons_eq_appendI) |
|
716 |
next |
|
717 |
assume "\<exists>ys zs. a # xs = ys @ x # zs \<and> x \<notin> set ys" |
|
718 |
then obtain ys zs where eq: "a # xs = ys @ x # zs" by blast |
|
719 |
show "x \<in> set (a # xs)" by (cases ys, auto simp add: eq) |
|
720 |
qed |
|
721 |
qed |
|
722 |
qed |
|
723 |
||
724 |
lemmas split_list = in_set_conv_decomp[THEN iffD1, standard] |
|
725 |
lemmas split_list_first = in_set_conv_decomp_first[THEN iffD1, standard] |
|
726 |
||
727 |
||
13508 | 728 |
lemma finite_list: "finite A ==> EX l. set l = A" |
729 |
apply (erule finite_induct, auto) |
|
730 |
apply (rule_tac x="x#l" in exI, auto) |
|
731 |
done |
|
732 |
||
14388 | 733 |
lemma card_length: "card (set xs) \<le> length xs" |
734 |
by (induct xs) (auto simp add: card_insert_if) |
|
13114 | 735 |
|
15168 | 736 |
|
15392 | 737 |
subsubsection {* @{text filter} *} |
13114 | 738 |
|
13142 | 739 |
lemma filter_append [simp]: "filter P (xs @ ys) = filter P xs @ filter P ys" |
13145 | 740 |
by (induct xs) auto |
13114 | 741 |
|
15305 | 742 |
lemma rev_filter: "rev (filter P xs) = filter P (rev xs)" |
743 |
by (induct xs) simp_all |
|
744 |
||
13142 | 745 |
lemma filter_filter [simp]: "filter P (filter Q xs) = filter (\<lambda>x. Q x \<and> P x) xs" |
13145 | 746 |
by (induct xs) auto |
13114 | 747 |
|
16998 | 748 |
lemma length_filter_le [simp]: "length (filter P xs) \<le> length xs" |
749 |
by (induct xs) (auto simp add: le_SucI) |
|
750 |
||
18423 | 751 |
lemma sum_length_filter_compl: |
752 |
"length(filter P xs) + length(filter (%x. ~P x) xs) = length xs" |
|
753 |
by(induct xs) simp_all |
|
754 |
||
13142 | 755 |
lemma filter_True [simp]: "\<forall>x \<in> set xs. P x ==> filter P xs = xs" |
13145 | 756 |
by (induct xs) auto |
13114 | 757 |
|
13142 | 758 |
lemma filter_False [simp]: "\<forall>x \<in> set xs. \<not> P x ==> filter P xs = []" |
13145 | 759 |
by (induct xs) auto |
13114 | 760 |
|
16998 | 761 |
lemma filter_empty_conv: "(filter P xs = []) = (\<forall>x\<in>set xs. \<not> P x)" |
762 |
by (induct xs) simp_all |
|
763 |
||
764 |
lemma filter_id_conv: "(filter P xs = xs) = (\<forall>x\<in>set xs. P x)" |
|
765 |
apply (induct xs) |
|
766 |
apply auto |
|
767 |
apply(cut_tac P=P and xs=xs in length_filter_le) |
|
768 |
apply simp |
|
769 |
done |
|
13114 | 770 |
|
16965 | 771 |
lemma filter_map: |
772 |
"filter P (map f xs) = map f (filter (P o f) xs)" |
|
773 |
by (induct xs) simp_all |
|
774 |
||
775 |
lemma length_filter_map[simp]: |
|
776 |
"length (filter P (map f xs)) = length(filter (P o f) xs)" |
|
777 |
by (simp add:filter_map) |
|
778 |
||
13142 | 779 |
lemma filter_is_subset [simp]: "set (filter P xs) \<le> set xs" |
13145 | 780 |
by auto |
13114 | 781 |
|
15246 | 782 |
lemma length_filter_less: |
783 |
"\<lbrakk> x : set xs; ~ P x \<rbrakk> \<Longrightarrow> length(filter P xs) < length xs" |
|
784 |
proof (induct xs) |
|
785 |
case Nil thus ?case by simp |
|
786 |
next |
|
787 |
case (Cons x xs) thus ?case |
|
788 |
apply (auto split:split_if_asm) |
|
789 |
using length_filter_le[of P xs] apply arith |
|
790 |
done |
|
791 |
qed |
|
13114 | 792 |
|
15281 | 793 |
lemma length_filter_conv_card: |
794 |
"length(filter p xs) = card{i. i < length xs & p(xs!i)}" |
|
795 |
proof (induct xs) |
|
796 |
case Nil thus ?case by simp |
|
797 |
next |
|
798 |
case (Cons x xs) |
|
799 |
let ?S = "{i. i < length xs & p(xs!i)}" |
|
800 |
have fin: "finite ?S" by(fast intro: bounded_nat_set_is_finite) |
|
801 |
show ?case (is "?l = card ?S'") |
|
802 |
proof (cases) |
|
803 |
assume "p x" |
|
804 |
hence eq: "?S' = insert 0 (Suc ` ?S)" |
|
805 |
by(auto simp add: nth_Cons image_def split:nat.split elim:lessE) |
|
806 |
have "length (filter p (x # xs)) = Suc(card ?S)" |
|
807 |
using Cons by simp |
|
808 |
also have "\<dots> = Suc(card(Suc ` ?S))" using fin |
|
809 |
by (simp add: card_image inj_Suc) |
|
810 |
also have "\<dots> = card ?S'" using eq fin |
|
811 |
by (simp add:card_insert_if) (simp add:image_def) |
|
812 |
finally show ?thesis . |
|
813 |
next |
|
814 |
assume "\<not> p x" |
|
815 |
hence eq: "?S' = Suc ` ?S" |
|
816 |
by(auto simp add: nth_Cons image_def split:nat.split elim:lessE) |
|
817 |
have "length (filter p (x # xs)) = card ?S" |
|
818 |
using Cons by simp |
|
819 |
also have "\<dots> = card(Suc ` ?S)" using fin |
|
820 |
by (simp add: card_image inj_Suc) |
|
821 |
also have "\<dots> = card ?S'" using eq fin |
|
822 |
by (simp add:card_insert_if) |
|
823 |
finally show ?thesis . |
|
824 |
qed |
|
825 |
qed |
|
826 |
||
17629 | 827 |
lemma Cons_eq_filterD: |
828 |
"x#xs = filter P ys \<Longrightarrow> |
|
829 |
\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs" |
|
19585 | 830 |
(is "_ \<Longrightarrow> \<exists>us vs. ?P ys us vs") |
17629 | 831 |
proof(induct ys) |
832 |
case Nil thus ?case by simp |
|
833 |
next |
|
834 |
case (Cons y ys) |
|
835 |
show ?case (is "\<exists>x. ?Q x") |
|
836 |
proof cases |
|
837 |
assume Py: "P y" |
|
838 |
show ?thesis |
|
839 |
proof cases |
|
840 |
assume xy: "x = y" |
|
841 |
show ?thesis |
|
842 |
proof from Py xy Cons(2) show "?Q []" by simp qed |
|
843 |
next |
|
844 |
assume "x \<noteq> y" with Py Cons(2) show ?thesis by simp |
|
845 |
qed |
|
846 |
next |
|
847 |
assume Py: "\<not> P y" |
|
848 |
with Cons obtain us vs where 1 : "?P (y#ys) (y#us) vs" by fastsimp |
|
849 |
show ?thesis (is "? us. ?Q us") |
|
850 |
proof show "?Q (y#us)" using 1 by simp qed |
|
851 |
qed |
|
852 |
qed |
|
853 |
||
854 |
lemma filter_eq_ConsD: |
|
855 |
"filter P ys = x#xs \<Longrightarrow> |
|
856 |
\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs" |
|
857 |
by(rule Cons_eq_filterD) simp |
|
858 |
||
859 |
lemma filter_eq_Cons_iff: |
|
860 |
"(filter P ys = x#xs) = |
|
861 |
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)" |
|
862 |
by(auto dest:filter_eq_ConsD) |
|
863 |
||
864 |
lemma Cons_eq_filter_iff: |
|
865 |
"(x#xs = filter P ys) = |
|
866 |
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)" |
|
867 |
by(auto dest:Cons_eq_filterD) |
|
868 |
||
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
869 |
lemma filter_cong[fundef_cong, recdef_cong]: |
17501 | 870 |
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x) \<Longrightarrow> filter P xs = filter Q ys" |
871 |
apply simp |
|
872 |
apply(erule thin_rl) |
|
873 |
by (induct ys) simp_all |
|
874 |
||
15281 | 875 |
|
15392 | 876 |
subsubsection {* @{text concat} *} |
13114 | 877 |
|
13142 | 878 |
lemma concat_append [simp]: "concat (xs @ ys) = concat xs @ concat ys" |
13145 | 879 |
by (induct xs) auto |
13114 | 880 |
|
18447 | 881 |
lemma concat_eq_Nil_conv [simp]: "(concat xss = []) = (\<forall>xs \<in> set xss. xs = [])" |
13145 | 882 |
by (induct xss) auto |
13114 | 883 |
|
18447 | 884 |
lemma Nil_eq_concat_conv [simp]: "([] = concat xss) = (\<forall>xs \<in> set xss. xs = [])" |
13145 | 885 |
by (induct xss) auto |
13114 | 886 |
|
13142 | 887 |
lemma set_concat [simp]: "set (concat xs) = \<Union>(set ` set xs)" |
13145 | 888 |
by (induct xs) auto |
13114 | 889 |
|
13142 | 890 |
lemma map_concat: "map f (concat xs) = concat (map (map f) xs)" |
13145 | 891 |
by (induct xs) auto |
13114 | 892 |
|
13142 | 893 |
lemma filter_concat: "filter p (concat xs) = concat (map (filter p) xs)" |
13145 | 894 |
by (induct xs) auto |
13114 | 895 |
|
13142 | 896 |
lemma rev_concat: "rev (concat xs) = concat (map rev (rev xs))" |
13145 | 897 |
by (induct xs) auto |
13114 | 898 |
|
899 |
||
15392 | 900 |
subsubsection {* @{text nth} *} |
13114 | 901 |
|
13142 | 902 |
lemma nth_Cons_0 [simp]: "(x # xs)!0 = x" |
13145 | 903 |
by auto |
13114 | 904 |
|
13142 | 905 |
lemma nth_Cons_Suc [simp]: "(x # xs)!(Suc n) = xs!n" |
13145 | 906 |
by auto |
13114 | 907 |
|
13142 | 908 |
declare nth.simps [simp del] |
13114 | 909 |
|
910 |
lemma nth_append: |
|
13145 | 911 |
"!!n. (xs @ ys)!n = (if n < length xs then xs!n else ys!(n - length xs))" |
14208 | 912 |
apply (induct "xs", simp) |
913 |
apply (case_tac n, auto) |
|
13145 | 914 |
done |
13114 | 915 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
916 |
lemma nth_append_length [simp]: "(xs @ x # ys) ! length xs = x" |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
917 |
by (induct "xs") auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
918 |
|
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
919 |
lemma nth_append_length_plus[simp]: "(xs @ ys) ! (length xs + n) = ys ! n" |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
920 |
by (induct "xs") auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
921 |
|
13142 | 922 |
lemma nth_map [simp]: "!!n. n < length xs ==> (map f xs)!n = f(xs!n)" |
14208 | 923 |
apply (induct xs, simp) |
924 |
apply (case_tac n, auto) |
|
13145 | 925 |
done |
13114 | 926 |
|
18423 | 927 |
lemma hd_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd xs = xs!0" |
928 |
by(cases xs) simp_all |
|
929 |
||
18049 | 930 |
|
931 |
lemma list_eq_iff_nth_eq: |
|
932 |
"!!ys. (xs = ys) = (length xs = length ys \<and> (ALL i<length xs. xs!i = ys!i))" |
|
933 |
apply(induct xs) |
|
934 |
apply simp apply blast |
|
935 |
apply(case_tac ys) |
|
936 |
apply simp |
|
937 |
apply(simp add:nth_Cons split:nat.split)apply blast |
|
938 |
done |
|
939 |
||
13142 | 940 |
lemma set_conv_nth: "set xs = {xs!i | i. i < length xs}" |
15251 | 941 |
apply (induct xs, simp, simp) |
13145 | 942 |
apply safe |
14208 | 943 |
apply (rule_tac x = 0 in exI, simp) |
944 |
apply (rule_tac x = "Suc i" in exI, simp) |
|
945 |
apply (case_tac i, simp) |
|
13145 | 946 |
apply (rename_tac j) |
14208 | 947 |
apply (rule_tac x = j in exI, simp) |
13145 | 948 |
done |
13114 | 949 |
|
17501 | 950 |
lemma in_set_conv_nth: "(x \<in> set xs) = (\<exists>i < length xs. xs!i = x)" |
951 |
by(auto simp:set_conv_nth) |
|
952 |
||
13145 | 953 |
lemma list_ball_nth: "[| n < length xs; !x : set xs. P x|] ==> P(xs!n)" |
954 |
by (auto simp add: set_conv_nth) |
|
13114 | 955 |
|
13142 | 956 |
lemma nth_mem [simp]: "n < length xs ==> xs!n : set xs" |
13145 | 957 |
by (auto simp add: set_conv_nth) |
13114 | 958 |
|
959 |
lemma all_nth_imp_all_set: |
|
13145 | 960 |
"[| !i < length xs. P(xs!i); x : set xs|] ==> P x" |
961 |
by (auto simp add: set_conv_nth) |
|
13114 | 962 |
|
963 |
lemma all_set_conv_all_nth: |
|
13145 | 964 |
"(\<forall>x \<in> set xs. P x) = (\<forall>i. i < length xs --> P (xs ! i))" |
965 |
by (auto simp add: set_conv_nth) |
|
13114 | 966 |
|
967 |
||
15392 | 968 |
subsubsection {* @{text list_update} *} |
13114 | 969 |
|
13142 | 970 |
lemma length_list_update [simp]: "!!i. length(xs[i:=x]) = length xs" |
13145 | 971 |
by (induct xs) (auto split: nat.split) |
13114 | 972 |
|
973 |
lemma nth_list_update: |
|
13145 | 974 |
"!!i j. i < length xs==> (xs[i:=x])!j = (if i = j then x else xs!j)" |
975 |
by (induct xs) (auto simp add: nth_Cons split: nat.split) |
|
13114 | 976 |
|
13142 | 977 |
lemma nth_list_update_eq [simp]: "i < length xs ==> (xs[i:=x])!i = x" |
13145 | 978 |
by (simp add: nth_list_update) |
13114 | 979 |
|
13142 | 980 |
lemma nth_list_update_neq [simp]: "!!i j. i \<noteq> j ==> xs[i:=x]!j = xs!j" |
13145 | 981 |
by (induct xs) (auto simp add: nth_Cons split: nat.split) |
13114 | 982 |
|
13142 | 983 |
lemma list_update_overwrite [simp]: |
13145 | 984 |
"!!i. i < size xs ==> xs[i:=x, i:=y] = xs[i:=y]" |
985 |
by (induct xs) (auto split: nat.split) |
|
13114 | 986 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
987 |
lemma list_update_id[simp]: "!!i. i < length xs ==> xs[i := xs!i] = xs" |
14208 | 988 |
apply (induct xs, simp) |
14187 | 989 |
apply(simp split:nat.splits) |
990 |
done |
|
991 |
||
17501 | 992 |
lemma list_update_beyond[simp]: "\<And>i. length xs \<le> i \<Longrightarrow> xs[i:=x] = xs" |
993 |
apply (induct xs) |
|
994 |
apply simp |
|
995 |
apply (case_tac i) |
|
996 |
apply simp_all |
|
997 |
done |
|
998 |
||
13114 | 999 |
lemma list_update_same_conv: |
13145 | 1000 |
"!!i. i < length xs ==> (xs[i := x] = xs) = (xs!i = x)" |
1001 |
by (induct xs) (auto split: nat.split) |
|
13114 | 1002 |
|
14187 | 1003 |
lemma list_update_append1: |
1004 |
"!!i. i < size xs \<Longrightarrow> (xs @ ys)[i:=x] = xs[i:=x] @ ys" |
|
14208 | 1005 |
apply (induct xs, simp) |
14187 | 1006 |
apply(simp split:nat.split) |
1007 |
done |
|
1008 |
||
15868 | 1009 |
lemma list_update_append: |
1010 |
"!!n. (xs @ ys) [n:= x] = |
|
1011 |
(if n < length xs then xs[n:= x] @ ys else xs @ (ys [n-length xs:= x]))" |
|
1012 |
by (induct xs) (auto split:nat.splits) |
|
1013 |
||
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1014 |
lemma list_update_length [simp]: |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1015 |
"(xs @ x # ys)[length xs := y] = (xs @ y # ys)" |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1016 |
by (induct xs, auto) |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1017 |
|
13114 | 1018 |
lemma update_zip: |
13145 | 1019 |
"!!i xy xs. length xs = length ys ==> |
1020 |
(zip xs ys)[i:=xy] = zip (xs[i:=fst xy]) (ys[i:=snd xy])" |
|
1021 |
by (induct ys) (auto, case_tac xs, auto split: nat.split) |
|
13114 | 1022 |
|
1023 |
lemma set_update_subset_insert: "!!i. set(xs[i:=x]) <= insert x (set xs)" |
|
13145 | 1024 |
by (induct xs) (auto split: nat.split) |
13114 | 1025 |
|
1026 |
lemma set_update_subsetI: "[| set xs <= A; x:A |] ==> set(xs[i := x]) <= A" |
|
13145 | 1027 |
by (blast dest!: set_update_subset_insert [THEN subsetD]) |
13114 | 1028 |
|
15868 | 1029 |
lemma set_update_memI: "!!n. n < length xs \<Longrightarrow> x \<in> set (xs[n := x])" |
1030 |
by (induct xs) (auto split:nat.splits) |
|
1031 |
||
13114 | 1032 |
|
15392 | 1033 |
subsubsection {* @{text last} and @{text butlast} *} |
13114 | 1034 |
|
13142 | 1035 |
lemma last_snoc [simp]: "last (xs @ [x]) = x" |
13145 | 1036 |
by (induct xs) auto |
13114 | 1037 |
|
13142 | 1038 |
lemma butlast_snoc [simp]: "butlast (xs @ [x]) = xs" |
13145 | 1039 |
by (induct xs) auto |
13114 | 1040 |
|
14302 | 1041 |
lemma last_ConsL: "xs = [] \<Longrightarrow> last(x#xs) = x" |
1042 |
by(simp add:last.simps) |
|
1043 |
||
1044 |
lemma last_ConsR: "xs \<noteq> [] \<Longrightarrow> last(x#xs) = last xs" |
|
1045 |
by(simp add:last.simps) |
|
1046 |
||
1047 |
lemma last_append: "last(xs @ ys) = (if ys = [] then last xs else last ys)" |
|
1048 |
by (induct xs) (auto) |
|
1049 |
||
1050 |
lemma last_appendL[simp]: "ys = [] \<Longrightarrow> last(xs @ ys) = last xs" |
|
1051 |
by(simp add:last_append) |
|
1052 |
||
1053 |
lemma last_appendR[simp]: "ys \<noteq> [] \<Longrightarrow> last(xs @ ys) = last ys" |
|
1054 |
by(simp add:last_append) |
|
1055 |
||
17762 | 1056 |
lemma hd_rev: "xs \<noteq> [] \<Longrightarrow> hd(rev xs) = last xs" |
1057 |
by(rule rev_exhaust[of xs]) simp_all |
|
1058 |
||
1059 |
lemma last_rev: "xs \<noteq> [] \<Longrightarrow> last(rev xs) = hd xs" |
|
1060 |
by(cases xs) simp_all |
|
1061 |
||
17765 | 1062 |
lemma last_in_set[simp]: "as \<noteq> [] \<Longrightarrow> last as \<in> set as" |
1063 |
by (induct as) auto |
|
17762 | 1064 |
|
13142 | 1065 |
lemma length_butlast [simp]: "length (butlast xs) = length xs - 1" |
13145 | 1066 |
by (induct xs rule: rev_induct) auto |
13114 | 1067 |
|
1068 |
lemma butlast_append: |
|
13145 | 1069 |
"!!ys. butlast (xs @ ys) = (if ys = [] then butlast xs else xs @ butlast ys)" |
1070 |
by (induct xs) auto |
|
13114 | 1071 |
|
13142 | 1072 |
lemma append_butlast_last_id [simp]: |
13145 | 1073 |
"xs \<noteq> [] ==> butlast xs @ [last xs] = xs" |
1074 |
by (induct xs) auto |
|
13114 | 1075 |
|
13142 | 1076 |
lemma in_set_butlastD: "x : set (butlast xs) ==> x : set xs" |
13145 | 1077 |
by (induct xs) (auto split: split_if_asm) |
13114 | 1078 |
|
1079 |
lemma in_set_butlast_appendI: |
|
13145 | 1080 |
"x : set (butlast xs) | x : set (butlast ys) ==> x : set (butlast (xs @ ys))" |
1081 |
by (auto dest: in_set_butlastD simp add: butlast_append) |
|
13114 | 1082 |
|
17501 | 1083 |
lemma last_drop[simp]: "!!n. n < length xs \<Longrightarrow> last (drop n xs) = last xs" |
1084 |
apply (induct xs) |
|
1085 |
apply simp |
|
1086 |
apply (auto split:nat.split) |
|
1087 |
done |
|
1088 |
||
17589 | 1089 |
lemma last_conv_nth: "xs\<noteq>[] \<Longrightarrow> last xs = xs!(length xs - 1)" |
1090 |
by(induct xs)(auto simp:neq_Nil_conv) |
|
1091 |
||
15392 | 1092 |
subsubsection {* @{text take} and @{text drop} *} |
13114 | 1093 |
|
13142 | 1094 |
lemma take_0 [simp]: "take 0 xs = []" |
13145 | 1095 |
by (induct xs) auto |
13114 | 1096 |
|
13142 | 1097 |
lemma drop_0 [simp]: "drop 0 xs = xs" |
13145 | 1098 |
by (induct xs) auto |
13114 | 1099 |
|
13142 | 1100 |
lemma take_Suc_Cons [simp]: "take (Suc n) (x # xs) = x # take n xs" |
13145 | 1101 |
by simp |
13114 | 1102 |
|
13142 | 1103 |
lemma drop_Suc_Cons [simp]: "drop (Suc n) (x # xs) = drop n xs" |
13145 | 1104 |
by simp |
13114 | 1105 |
|
13142 | 1106 |
declare take_Cons [simp del] and drop_Cons [simp del] |
13114 | 1107 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1108 |
lemma take_Suc: "xs ~= [] ==> take (Suc n) xs = hd xs # take n (tl xs)" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1109 |
by(clarsimp simp add:neq_Nil_conv) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1110 |
|
14187 | 1111 |
lemma drop_Suc: "drop (Suc n) xs = drop n (tl xs)" |
1112 |
by(cases xs, simp_all) |
|
1113 |
||
1114 |
lemma drop_tl: "!!n. drop n (tl xs) = tl(drop n xs)" |
|
1115 |
by(induct xs, simp_all add:drop_Cons drop_Suc split:nat.split) |
|
1116 |
||
1117 |
lemma nth_via_drop: "!!n. drop n xs = y#ys \<Longrightarrow> xs!n = y" |
|
14208 | 1118 |
apply (induct xs, simp) |
14187 | 1119 |
apply(simp add:drop_Cons nth_Cons split:nat.splits) |
1120 |
done |
|
1121 |
||
13913 | 1122 |
lemma take_Suc_conv_app_nth: |
1123 |
"!!i. i < length xs \<Longrightarrow> take (Suc i) xs = take i xs @ [xs!i]" |
|
14208 | 1124 |
apply (induct xs, simp) |
1125 |
apply (case_tac i, auto) |
|
13913 | 1126 |
done |
1127 |
||
14591 | 1128 |
lemma drop_Suc_conv_tl: |
1129 |
"!!i. i < length xs \<Longrightarrow> (xs!i) # (drop (Suc i) xs) = drop i xs" |
|
1130 |
apply (induct xs, simp) |
|
1131 |
apply (case_tac i, auto) |
|
1132 |
done |
|
1133 |
||
13142 | 1134 |
lemma length_take [simp]: "!!xs. length (take n xs) = min (length xs) n" |
13145 | 1135 |
by (induct n) (auto, case_tac xs, auto) |
13114 | 1136 |
|
13142 | 1137 |
lemma length_drop [simp]: "!!xs. length (drop n xs) = (length xs - n)" |
13145 | 1138 |
by (induct n) (auto, case_tac xs, auto) |
13114 | 1139 |
|
13142 | 1140 |
lemma take_all [simp]: "!!xs. length xs <= n ==> take n xs = xs" |
13145 | 1141 |
by (induct n) (auto, case_tac xs, auto) |
13114 | 1142 |
|
13142 | 1143 |
lemma drop_all [simp]: "!!xs. length xs <= n ==> drop n xs = []" |
13145 | 1144 |
by (induct n) (auto, case_tac xs, auto) |
13114 | 1145 |
|
13142 | 1146 |
lemma take_append [simp]: |
13145 | 1147 |
"!!xs. take n (xs @ ys) = (take n xs @ take (n - length xs) ys)" |
1148 |
by (induct n) (auto, case_tac xs, auto) |
|
13114 | 1149 |
|
13142 | 1150 |
lemma drop_append [simp]: |
13145 | 1151 |
"!!xs. drop n (xs @ ys) = drop n xs @ drop (n - length xs) ys" |
1152 |
by (induct n) (auto, case_tac xs, auto) |
|
13114 | 1153 |
|
13142 | 1154 |
lemma take_take [simp]: "!!xs n. take n (take m xs) = take (min n m) xs" |
14208 | 1155 |
apply (induct m, auto) |
1156 |
apply (case_tac xs, auto) |
|
15236
f289e8ba2bb3
Proofs needed to be updated because induction now preserves name of
nipkow
parents:
15176
diff
changeset
|
1157 |
apply (case_tac n, auto) |
13145 | 1158 |
done |
13114 | 1159 |
|
13142 | 1160 |
lemma drop_drop [simp]: "!!xs. drop n (drop m xs) = drop (n + m) xs" |
14208 | 1161 |
apply (induct m, auto) |
1162 |
apply (case_tac xs, auto) |
|
13145 | 1163 |
done |
13114 | 1164 |
|
1165 |
lemma take_drop: "!!xs n. take n (drop m xs) = drop m (take (n + m) xs)" |
|
14208 | 1166 |
apply (induct m, auto) |
1167 |
apply (case_tac xs, auto) |
|
13145 | 1168 |
done |
13114 | 1169 |
|
14802 | 1170 |
lemma drop_take: "!!m n. drop n (take m xs) = take (m-n) (drop n xs)" |
1171 |
apply(induct xs) |
|
1172 |
apply simp |
|
1173 |
apply(simp add: take_Cons drop_Cons split:nat.split) |
|
1174 |
done |
|
1175 |
||
13142 | 1176 |
lemma append_take_drop_id [simp]: "!!xs. take n xs @ drop n xs = xs" |
14208 | 1177 |
apply (induct n, auto) |
1178 |
apply (case_tac xs, auto) |
|
13145 | 1179 |
done |
13114 | 1180 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1181 |
lemma take_eq_Nil[simp]: "!!n. (take n xs = []) = (n = 0 \<or> xs = [])" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1182 |
apply(induct xs) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1183 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1184 |
apply(simp add:take_Cons split:nat.split) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1185 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1186 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1187 |
lemma drop_eq_Nil[simp]: "!!n. (drop n xs = []) = (length xs <= n)" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1188 |
apply(induct xs) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1189 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1190 |
apply(simp add:drop_Cons split:nat.split) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1191 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1192 |
|
13114 | 1193 |
lemma take_map: "!!xs. take n (map f xs) = map f (take n xs)" |
14208 | 1194 |
apply (induct n, auto) |
1195 |
apply (case_tac xs, auto) |
|
13145 | 1196 |
done |
13114 | 1197 |
|
13142 | 1198 |
lemma drop_map: "!!xs. drop n (map f xs) = map f (drop n xs)" |
14208 | 1199 |
apply (induct n, auto) |
1200 |
apply (case_tac xs, auto) |
|
13145 | 1201 |
done |
13114 | 1202 |
|
1203 |
lemma rev_take: "!!i. rev (take i xs) = drop (length xs - i) (rev xs)" |
|
14208 | 1204 |
apply (induct xs, auto) |
1205 |
apply (case_tac i, auto) |
|
13145 | 1206 |
done |
13114 | 1207 |
|
1208 |
lemma rev_drop: "!!i. rev (drop i xs) = take (length xs - i) (rev xs)" |
|
14208 | 1209 |
apply (induct xs, auto) |
1210 |
apply (case_tac i, auto) |
|
13145 | 1211 |
done |
13114 | 1212 |
|
13142 | 1213 |
lemma nth_take [simp]: "!!n i. i < n ==> (take n xs)!i = xs!i" |
14208 | 1214 |
apply (induct xs, auto) |
1215 |
apply (case_tac n, blast) |
|
1216 |
apply (case_tac i, auto) |
|
13145 | 1217 |
done |
13114 | 1218 |
|
13142 | 1219 |
lemma nth_drop [simp]: |
13145 | 1220 |
"!!xs i. n + i <= length xs ==> (drop n xs)!i = xs!(n + i)" |
14208 | 1221 |
apply (induct n, auto) |
1222 |
apply (case_tac xs, auto) |
|
13145 | 1223 |
done |
3507 | 1224 |
|
18423 | 1225 |
lemma hd_drop_conv_nth: "\<lbrakk> xs \<noteq> []; n < length xs \<rbrakk> \<Longrightarrow> hd(drop n xs) = xs!n" |
1226 |
by(simp add: hd_conv_nth) |
|
1227 |
||
14025 | 1228 |
lemma set_take_subset: "\<And>n. set(take n xs) \<subseteq> set xs" |
1229 |
by(induct xs)(auto simp:take_Cons split:nat.split) |
|
1230 |
||
1231 |
lemma set_drop_subset: "\<And>n. set(drop n xs) \<subseteq> set xs" |
|
1232 |
by(induct xs)(auto simp:drop_Cons split:nat.split) |
|
1233 |
||
14187 | 1234 |
lemma in_set_takeD: "x : set(take n xs) \<Longrightarrow> x : set xs" |
1235 |
using set_take_subset by fast |
|
1236 |
||
1237 |
lemma in_set_dropD: "x : set(drop n xs) \<Longrightarrow> x : set xs" |
|
1238 |
using set_drop_subset by fast |
|
1239 |
||
13114 | 1240 |
lemma append_eq_conv_conj: |
13145 | 1241 |
"!!zs. (xs @ ys = zs) = (xs = take (length xs) zs \<and> ys = drop (length xs) zs)" |
14208 | 1242 |
apply (induct xs, simp, clarsimp) |
1243 |
apply (case_tac zs, auto) |
|
13145 | 1244 |
done |
13142 | 1245 |
|
14050 | 1246 |
lemma take_add [rule_format]: |
1247 |
"\<forall>i. i+j \<le> length(xs) --> take (i+j) xs = take i xs @ take j (drop i xs)" |
|
1248 |
apply (induct xs, auto) |
|
1249 |
apply (case_tac i, simp_all) |
|
1250 |
done |
|
1251 |
||
14300 | 1252 |
lemma append_eq_append_conv_if: |
1253 |
"!! ys\<^isub>1. (xs\<^isub>1 @ xs\<^isub>2 = ys\<^isub>1 @ ys\<^isub>2) = |
|
1254 |
(if size xs\<^isub>1 \<le> size ys\<^isub>1 |
|
1255 |
then xs\<^isub>1 = take (size xs\<^isub>1) ys\<^isub>1 \<and> xs\<^isub>2 = drop (size xs\<^isub>1) ys\<^isub>1 @ ys\<^isub>2 |
|
1256 |
else take (size ys\<^isub>1) xs\<^isub>1 = ys\<^isub>1 \<and> drop (size ys\<^isub>1) xs\<^isub>1 @ xs\<^isub>2 = ys\<^isub>2)" |
|
1257 |
apply(induct xs\<^isub>1) |
|
1258 |
apply simp |
|
1259 |
apply(case_tac ys\<^isub>1) |
|
1260 |
apply simp_all |
|
1261 |
done |
|
1262 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1263 |
lemma take_hd_drop: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1264 |
"!!n. n < length xs \<Longrightarrow> take n xs @ [hd (drop n xs)] = take (n+1) xs" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1265 |
apply(induct xs) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1266 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1267 |
apply(simp add:drop_Cons split:nat.split) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1268 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1269 |
|
17501 | 1270 |
lemma id_take_nth_drop: |
1271 |
"i < length xs \<Longrightarrow> xs = take i xs @ xs!i # drop (Suc i) xs" |
|
1272 |
proof - |
|
1273 |
assume si: "i < length xs" |
|
1274 |
hence "xs = take (Suc i) xs @ drop (Suc i) xs" by auto |
|
1275 |
moreover |
|
1276 |
from si have "take (Suc i) xs = take i xs @ [xs!i]" |
|
1277 |
apply (rule_tac take_Suc_conv_app_nth) by arith |
|
1278 |
ultimately show ?thesis by auto |
|
1279 |
qed |
|
1280 |
||
1281 |
lemma upd_conv_take_nth_drop: |
|
1282 |
"i < length xs \<Longrightarrow> xs[i:=a] = take i xs @ a # drop (Suc i) xs" |
|
1283 |
proof - |
|
1284 |
assume i: "i < length xs" |
|
1285 |
have "xs[i:=a] = (take i xs @ xs!i # drop (Suc i) xs)[i:=a]" |
|
1286 |
by(rule arg_cong[OF id_take_nth_drop[OF i]]) |
|
1287 |
also have "\<dots> = take i xs @ a # drop (Suc i) xs" |
|
1288 |
using i by (simp add: list_update_append) |
|
1289 |
finally show ?thesis . |
|
1290 |
qed |
|
1291 |
||
13114 | 1292 |
|
15392 | 1293 |
subsubsection {* @{text takeWhile} and @{text dropWhile} *} |
13114 | 1294 |
|
13142 | 1295 |
lemma takeWhile_dropWhile_id [simp]: "takeWhile P xs @ dropWhile P xs = xs" |
13145 | 1296 |
by (induct xs) auto |
13114 | 1297 |
|
13142 | 1298 |
lemma takeWhile_append1 [simp]: |
13145 | 1299 |
"[| x:set xs; ~P(x)|] ==> takeWhile P (xs @ ys) = takeWhile P xs" |
1300 |
by (induct xs) auto |
|
13114 | 1301 |
|
13142 | 1302 |
lemma takeWhile_append2 [simp]: |
13145 | 1303 |
"(!!x. x : set xs ==> P x) ==> takeWhile P (xs @ ys) = xs @ takeWhile P ys" |
1304 |
by (induct xs) auto |
|
13114 | 1305 |
|
13142 | 1306 |
lemma takeWhile_tail: "\<not> P x ==> takeWhile P (xs @ (x#l)) = takeWhile P xs" |
13145 | 1307 |
by (induct xs) auto |
13114 | 1308 |
|
13142 | 1309 |
lemma dropWhile_append1 [simp]: |
13145 | 1310 |
"[| x : set xs; ~P(x)|] ==> dropWhile P (xs @ ys) = (dropWhile P xs)@ys" |
1311 |
by (induct xs) auto |
|
13114 | 1312 |
|
13142 | 1313 |
lemma dropWhile_append2 [simp]: |
13145 | 1314 |
"(!!x. x:set xs ==> P(x)) ==> dropWhile P (xs @ ys) = dropWhile P ys" |
1315 |
by (induct xs) auto |
|
13114 | 1316 |
|
13142 | 1317 |
lemma set_take_whileD: "x : set (takeWhile P xs) ==> x : set xs \<and> P x" |
13145 | 1318 |
by (induct xs) (auto split: split_if_asm) |
13114 | 1319 |
|
13913 | 1320 |
lemma takeWhile_eq_all_conv[simp]: |
1321 |
"(takeWhile P xs = xs) = (\<forall>x \<in> set xs. P x)" |
|
1322 |
by(induct xs, auto) |
|
1323 |
||
1324 |
lemma dropWhile_eq_Nil_conv[simp]: |
|
1325 |
"(dropWhile P xs = []) = (\<forall>x \<in> set xs. P x)" |
|
1326 |
by(induct xs, auto) |
|
1327 |
||
1328 |
lemma dropWhile_eq_Cons_conv: |
|
1329 |
"(dropWhile P xs = y#ys) = (xs = takeWhile P xs @ y # ys & \<not> P y)" |
|
1330 |
by(induct xs, auto) |
|
1331 |
||
17501 | 1332 |
text{* The following two lemmmas could be generalized to an arbitrary |
1333 |
property. *} |
|
1334 |
||
1335 |
lemma takeWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow> |
|
1336 |
takeWhile (\<lambda>y. y \<noteq> x) (rev xs) = rev (tl (dropWhile (\<lambda>y. y \<noteq> x) xs))" |
|
1337 |
by(induct xs) (auto simp: takeWhile_tail[where l="[]"]) |
|
1338 |
||
1339 |
lemma dropWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow> |
|
1340 |
dropWhile (\<lambda>y. y \<noteq> x) (rev xs) = x # rev (takeWhile (\<lambda>y. y \<noteq> x) xs)" |
|
1341 |
apply(induct xs) |
|
1342 |
apply simp |
|
1343 |
apply auto |
|
1344 |
apply(subst dropWhile_append2) |
|
1345 |
apply auto |
|
1346 |
done |
|
1347 |
||
18423 | 1348 |
lemma takeWhile_not_last: |
1349 |
"\<lbrakk> xs \<noteq> []; distinct xs\<rbrakk> \<Longrightarrow> takeWhile (\<lambda>y. y \<noteq> last xs) xs = butlast xs" |
|
1350 |
apply(induct xs) |
|
1351 |
apply simp |
|
1352 |
apply(case_tac xs) |
|
1353 |
apply(auto) |
|
1354 |
done |
|
1355 |
||
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
1356 |
lemma takeWhile_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1357 |
"[| l = k; !!x. x : set l ==> P x = Q x |] |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1358 |
==> takeWhile P l = takeWhile Q k" |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1359 |
by (induct k fixing: l, simp_all) |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1360 |
|
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
1361 |
lemma dropWhile_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1362 |
"[| l = k; !!x. x : set l ==> P x = Q x |] |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1363 |
==> dropWhile P l = dropWhile Q k" |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1364 |
by (induct k fixing: l, simp_all) |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1365 |
|
13114 | 1366 |
|
15392 | 1367 |
subsubsection {* @{text zip} *} |
13114 | 1368 |
|
13142 | 1369 |
lemma zip_Nil [simp]: "zip [] ys = []" |
13145 | 1370 |
by (induct ys) auto |
13114 | 1371 |
|
13142 | 1372 |
lemma zip_Cons_Cons [simp]: "zip (x # xs) (y # ys) = (x, y) # zip xs ys" |
13145 | 1373 |
by simp |
13114 | 1374 |
|
13142 | 1375 |
declare zip_Cons [simp del] |
13114 | 1376 |
|
15281 | 1377 |
lemma zip_Cons1: |
1378 |
"zip (x#xs) ys = (case ys of [] \<Rightarrow> [] | y#ys \<Rightarrow> (x,y)#zip xs ys)" |
|
1379 |
by(auto split:list.split) |
|
1380 |
||
13142 | 1381 |
lemma length_zip [simp]: |
13145 | 1382 |
"!!xs. length (zip xs ys) = min (length xs) (length ys)" |
14208 | 1383 |
apply (induct ys, simp) |
1384 |
apply (case_tac xs, auto) |
|
13145 | 1385 |
done |
13114 | 1386 |
|
1387 |
lemma zip_append1: |
|
13145 | 1388 |
"!!xs. zip (xs @ ys) zs = |
1389 |
zip xs (take (length xs) zs) @ zip ys (drop (length xs) zs)" |
|
14208 | 1390 |
apply (induct zs, simp) |
1391 |
apply (case_tac xs, simp_all) |
|
13145 | 1392 |
done |
13114 | 1393 |
|
1394 |
lemma zip_append2: |
|
13145 | 1395 |
"!!ys. zip xs (ys @ zs) = |
1396 |
zip (take (length ys) xs) ys @ zip (drop (length ys) xs) zs" |
|
14208 | 1397 |
apply (induct xs, simp) |
1398 |
apply (case_tac ys, simp_all) |
|
13145 | 1399 |
done |
13114 | 1400 |
|
13142 | 1401 |
lemma zip_append [simp]: |
1402 |
"[| length xs = length us; length ys = length vs |] ==> |
|
13145 | 1403 |
zip (xs@ys) (us@vs) = zip xs us @ zip ys vs" |
1404 |
by (simp add: zip_append1) |
|
13114 | 1405 |
|
1406 |
lemma zip_rev: |
|
14247 | 1407 |
"length xs = length ys ==> zip (rev xs) (rev ys) = rev (zip xs ys)" |
1408 |
by (induct rule:list_induct2, simp_all) |
|
13114 | 1409 |
|
13142 | 1410 |
lemma nth_zip [simp]: |
13145 | 1411 |
"!!i xs. [| i < length xs; i < length ys|] ==> (zip xs ys)!i = (xs!i, ys!i)" |
14208 | 1412 |
apply (induct ys, simp) |
13145 | 1413 |
apply (case_tac xs) |
1414 |
apply (simp_all add: nth.simps split: nat.split) |
|
1415 |
done |
|
13114 | 1416 |
|
1417 |
lemma set_zip: |
|
13145 | 1418 |
"set (zip xs ys) = {(xs!i, ys!i) | i. i < min (length xs) (length ys)}" |
1419 |
by (simp add: set_conv_nth cong: rev_conj_cong) |
|
13114 | 1420 |
|
1421 |
lemma zip_update: |
|
13145 | 1422 |
"length xs = length ys ==> zip (xs[i:=x]) (ys[i:=y]) = (zip xs ys)[i:=(x,y)]" |
1423 |
by (rule sym, simp add: update_zip) |
|
13114 | 1424 |
|
13142 | 1425 |
lemma zip_replicate [simp]: |
13145 | 1426 |
"!!j. zip (replicate i x) (replicate j y) = replicate (min i j) (x,y)" |
14208 | 1427 |
apply (induct i, auto) |
1428 |
apply (case_tac j, auto) |
|
13145 | 1429 |
done |
13114 | 1430 |
|
19487 | 1431 |
lemma take_zip: |
1432 |
"!!xs ys. take n (zip xs ys) = zip (take n xs) (take n ys)" |
|
1433 |
apply (induct n) |
|
1434 |
apply simp |
|
1435 |
apply (case_tac xs, simp) |
|
1436 |
apply (case_tac ys, simp_all) |
|
1437 |
done |
|
1438 |
||
1439 |
lemma drop_zip: |
|
1440 |
"!!xs ys. drop n (zip xs ys) = zip (drop n xs) (drop n ys)" |
|
1441 |
apply (induct n) |
|
1442 |
apply simp |
|
1443 |
apply (case_tac xs, simp) |
|
1444 |
apply (case_tac ys, simp_all) |
|
1445 |
done |
|
1446 |
||
13142 | 1447 |
|
15392 | 1448 |
subsubsection {* @{text list_all2} *} |
13114 | 1449 |
|
14316
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
kleing
parents:
14302
diff
changeset
|
1450 |
lemma list_all2_lengthD [intro?]: |
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
kleing
parents:
14302
diff
changeset
|
1451 |
"list_all2 P xs ys ==> length xs = length ys" |
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
1452 |
by (simp add: list_all2_def) |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
1453 |
|
19787 | 1454 |
lemma list_all2_Nil [iff, code]: "list_all2 P [] ys = (ys = [])" |
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
1455 |
by (simp add: list_all2_def) |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
1456 |
|
19787 | 1457 |
lemma list_all2_Nil2 [iff, code]: "list_all2 P xs [] = (xs = [])" |
1458 |
by (simp add: list_all2_def) |
|
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
1459 |
|
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
1460 |
lemma list_all2_Cons [iff, code]: |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
1461 |
"list_all2 P (x # xs) (y # ys) = (P x y \<and> list_all2 P xs ys)" |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
1462 |
by (auto simp add: list_all2_def) |
13114 | 1463 |
|
1464 |
lemma list_all2_Cons1: |
|
13145 | 1465 |
"list_all2 P (x # xs) ys = (\<exists>z zs. ys = z # zs \<and> P x z \<and> list_all2 P xs zs)" |
1466 |
by (cases ys) auto |
|
13114 | 1467 |
|
1468 |
lemma list_all2_Cons2: |
|
13145 | 1469 |
"list_all2 P xs (y # ys) = (\<exists>z zs. xs = z # zs \<and> P z y \<and> list_all2 P zs ys)" |
1470 |
by (cases xs) auto |
|
13114 | 1471 |
|
13142 | 1472 |
lemma list_all2_rev [iff]: |
13145 | 1473 |
"list_all2 P (rev xs) (rev ys) = list_all2 P xs ys" |
1474 |
by (simp add: list_all2_def zip_rev cong: conj_cong) |
|
13114 | 1475 |
|
13863 | 1476 |
lemma list_all2_rev1: |
1477 |
"list_all2 P (rev xs) ys = list_all2 P xs (rev ys)" |
|
1478 |
by (subst list_all2_rev [symmetric]) simp |
|
1479 |
||
13114 | 1480 |
lemma list_all2_append1: |
13145 | 1481 |
"list_all2 P (xs @ ys) zs = |
1482 |
(EX us vs. zs = us @ vs \<and> length us = length xs \<and> length vs = length ys \<and> |
|
1483 |
list_all2 P xs us \<and> list_all2 P ys vs)" |
|
1484 |
apply (simp add: list_all2_def zip_append1) |
|
1485 |
apply (rule iffI) |
|
1486 |
apply (rule_tac x = "take (length xs) zs" in exI) |
|
1487 |
apply (rule_tac x = "drop (length xs) zs" in exI) |
|
14208 | 1488 |
apply (force split: nat_diff_split simp add: min_def, clarify) |
13145 | 1489 |
apply (simp add: ball_Un) |
1490 |
done |
|
13114 | 1491 |
|
1492 |
lemma list_all2_append2: |
|
13145 | 1493 |
"list_all2 P xs (ys @ zs) = |
1494 |
(EX us vs. xs = us @ vs \<and> length us = length ys \<and> length vs = length zs \<and> |
|
1495 |
list_all2 P us ys \<and> list_all2 P vs zs)" |
|
1496 |
apply (simp add: list_all2_def zip_append2) |
|
1497 |
apply (rule iffI) |
|
1498 |
apply (rule_tac x = "take (length ys) xs" in exI) |
|
1499 |
apply (rule_tac x = "drop (length ys) xs" in exI) |
|
14208 | 1500 |
apply (force split: nat_diff_split simp add: min_def, clarify) |
13145 | 1501 |
apply (simp add: ball_Un) |
1502 |
done |
|
13114 | 1503 |
|
13863 | 1504 |
lemma list_all2_append: |
14247 | 1505 |
"length xs = length ys \<Longrightarrow> |
1506 |
list_all2 P (xs@us) (ys@vs) = (list_all2 P xs ys \<and> list_all2 P us vs)" |
|
1507 |
by (induct rule:list_induct2, simp_all) |
|
13863 | 1508 |
|
1509 |
lemma list_all2_appendI [intro?, trans]: |
|
1510 |
"\<lbrakk> list_all2 P a b; list_all2 P c d \<rbrakk> \<Longrightarrow> list_all2 P (a@c) (b@d)" |
|
1511 |
by (simp add: list_all2_append list_all2_lengthD) |
|
1512 |
||
13114 | 1513 |
lemma list_all2_conv_all_nth: |
13145 | 1514 |
"list_all2 P xs ys = |
1515 |
(length xs = length ys \<and> (\<forall>i < length xs. P (xs!i) (ys!i)))" |
|
1516 |
by (force simp add: list_all2_def set_zip) |
|
13114 | 1517 |
|
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1518 |
lemma list_all2_trans: |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1519 |
assumes tr: "!!a b c. P1 a b ==> P2 b c ==> P3 a c" |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1520 |
shows "!!bs cs. list_all2 P1 as bs ==> list_all2 P2 bs cs ==> list_all2 P3 as cs" |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1521 |
(is "!!bs cs. PROP ?Q as bs cs") |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1522 |
proof (induct as) |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1523 |
fix x xs bs assume I1: "!!bs cs. PROP ?Q xs bs cs" |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1524 |
show "!!cs. PROP ?Q (x # xs) bs cs" |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1525 |
proof (induct bs) |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1526 |
fix y ys cs assume I2: "!!cs. PROP ?Q (x # xs) ys cs" |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1527 |
show "PROP ?Q (x # xs) (y # ys) cs" |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1528 |
by (induct cs) (auto intro: tr I1 I2) |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1529 |
qed simp |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1530 |
qed simp |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1531 |
|
13863 | 1532 |
lemma list_all2_all_nthI [intro?]: |
1533 |
"length a = length b \<Longrightarrow> (\<And>n. n < length a \<Longrightarrow> P (a!n) (b!n)) \<Longrightarrow> list_all2 P a b" |
|
1534 |
by (simp add: list_all2_conv_all_nth) |
|
1535 |
||
14395 | 1536 |
lemma list_all2I: |
1537 |
"\<forall>x \<in> set (zip a b). split P x \<Longrightarrow> length a = length b \<Longrightarrow> list_all2 P a b" |
|
1538 |
by (simp add: list_all2_def) |
|
1539 |
||
14328 | 1540 |
lemma list_all2_nthD: |
13863 | 1541 |
"\<lbrakk> list_all2 P xs ys; p < size xs \<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)" |
1542 |
by (simp add: list_all2_conv_all_nth) |
|
1543 |
||
14302 | 1544 |
lemma list_all2_nthD2: |
1545 |
"\<lbrakk>list_all2 P xs ys; p < size ys\<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)" |
|
1546 |
by (frule list_all2_lengthD) (auto intro: list_all2_nthD) |
|
1547 |
||
13863 | 1548 |
lemma list_all2_map1: |
1549 |
"list_all2 P (map f as) bs = list_all2 (\<lambda>x y. P (f x) y) as bs" |
|
1550 |
by (simp add: list_all2_conv_all_nth) |
|
1551 |
||
1552 |
lemma list_all2_map2: |
|
1553 |
"list_all2 P as (map f bs) = list_all2 (\<lambda>x y. P x (f y)) as bs" |
|
1554 |
by (auto simp add: list_all2_conv_all_nth) |
|
1555 |
||
14316
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
kleing
parents:
14302
diff
changeset
|
1556 |
lemma list_all2_refl [intro?]: |
13863 | 1557 |
"(\<And>x. P x x) \<Longrightarrow> list_all2 P xs xs" |
1558 |
by (simp add: list_all2_conv_all_nth) |
|
1559 |
||
1560 |
lemma list_all2_update_cong: |
|
1561 |
"\<lbrakk> i<size xs; list_all2 P xs ys; P x y \<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])" |
|
1562 |
by (simp add: list_all2_conv_all_nth nth_list_update) |
|
1563 |
||
1564 |
lemma list_all2_update_cong2: |
|
1565 |
"\<lbrakk>list_all2 P xs ys; P x y; i < length ys\<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])" |
|
1566 |
by (simp add: list_all2_lengthD list_all2_update_cong) |
|
1567 |
||
14302 | 1568 |
lemma list_all2_takeI [simp,intro?]: |
1569 |
"\<And>n ys. list_all2 P xs ys \<Longrightarrow> list_all2 P (take n xs) (take n ys)" |
|
1570 |
apply (induct xs) |
|
1571 |
apply simp |
|
1572 |
apply (clarsimp simp add: list_all2_Cons1) |
|
1573 |
apply (case_tac n) |
|
1574 |
apply auto |
|
1575 |
done |
|
1576 |
||
1577 |
lemma list_all2_dropI [simp,intro?]: |
|
13863 | 1578 |
"\<And>n bs. list_all2 P as bs \<Longrightarrow> list_all2 P (drop n as) (drop n bs)" |
14208 | 1579 |
apply (induct as, simp) |
13863 | 1580 |
apply (clarsimp simp add: list_all2_Cons1) |
14208 | 1581 |
apply (case_tac n, simp, simp) |
13863 | 1582 |
done |
1583 |
||
14327 | 1584 |
lemma list_all2_mono [intro?]: |
13863 | 1585 |
"\<And>y. list_all2 P x y \<Longrightarrow> (\<And>x y. P x y \<Longrightarrow> Q x y) \<Longrightarrow> list_all2 Q x y" |
14208 | 1586 |
apply (induct x, simp) |
1587 |
apply (case_tac y, auto) |
|
13863 | 1588 |
done |
1589 |
||
13142 | 1590 |
|
15392 | 1591 |
subsubsection {* @{text foldl} and @{text foldr} *} |
13142 | 1592 |
|
1593 |
lemma foldl_append [simp]: |
|
13145 | 1594 |
"!!a. foldl f a (xs @ ys) = foldl f (foldl f a xs) ys" |
1595 |
by (induct xs) auto |
|
13142 | 1596 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1597 |
lemma foldr_append[simp]: "foldr f (xs @ ys) a = foldr f xs (foldr f ys a)" |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1598 |
by (induct xs) auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1599 |
|
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
1600 |
lemma foldl_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1601 |
"[| a = b; l = k; !!a x. x : set l ==> f a x = g a x |] |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1602 |
==> foldl f a l = foldl g b k" |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1603 |
by (induct k fixing: a b l, simp_all) |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1604 |
|
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
1605 |
lemma foldr_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1606 |
"[| a = b; l = k; !!a x. x : set l ==> f x a = g x a |] |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1607 |
==> foldr f l a = foldr g k b" |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1608 |
by (induct k fixing: a b l, simp_all) |
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1609 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1610 |
lemma foldr_foldl: "foldr f xs a = foldl (%x y. f y x) a (rev xs)" |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1611 |
by (induct xs) auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1612 |
|
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1613 |
lemma foldl_foldr: "foldl f a xs = foldr (%x y. f y x) (rev xs) a" |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1614 |
by (simp add: foldr_foldl [of "%x y. f y x" "rev xs"]) |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1615 |
|
13142 | 1616 |
text {* |
13145 | 1617 |
Note: @{text "n \<le> foldl (op +) n ns"} looks simpler, but is more |
1618 |
difficult to use because it requires an additional transitivity step. |
|
13142 | 1619 |
*} |
1620 |
||
1621 |
lemma start_le_sum: "!!n::nat. m <= n ==> m <= foldl (op +) n ns" |
|
13145 | 1622 |
by (induct ns) auto |
13142 | 1623 |
|
1624 |
lemma elem_le_sum: "!!n::nat. n : set ns ==> n <= foldl (op +) 0 ns" |
|
13145 | 1625 |
by (force intro: start_le_sum simp add: in_set_conv_decomp) |
13142 | 1626 |
|
1627 |
lemma sum_eq_0_conv [iff]: |
|
13145 | 1628 |
"!!m::nat. (foldl (op +) m ns = 0) = (m = 0 \<and> (\<forall>n \<in> set ns. n = 0))" |
1629 |
by (induct ns) auto |
|
13114 | 1630 |
|
1631 |
||
15392 | 1632 |
subsubsection {* @{text upto} *} |
13114 | 1633 |
|
17090 | 1634 |
lemma upt_rec[code]: "[i..<j] = (if i<j then i#[Suc i..<j] else [])" |
1635 |
-- {* simp does not terminate! *} |
|
13145 | 1636 |
by (induct j) auto |
13142 | 1637 |
|
15425 | 1638 |
lemma upt_conv_Nil [simp]: "j <= i ==> [i..<j] = []" |
13145 | 1639 |
by (subst upt_rec) simp |
13114 | 1640 |
|
15425 | 1641 |
lemma upt_eq_Nil_conv[simp]: "([i..<j] = []) = (j = 0 \<or> j <= i)" |
15281 | 1642 |
by(induct j)simp_all |
1643 |
||
1644 |
lemma upt_eq_Cons_conv: |
|
15425 | 1645 |
"!!x xs. ([i..<j] = x#xs) = (i < j & i = x & [i+1..<j] = xs)" |
15281 | 1646 |
apply(induct j) |
1647 |
apply simp |
|
1648 |
apply(clarsimp simp add: append_eq_Cons_conv) |
|
1649 |
apply arith |
|
1650 |
done |
|
1651 |
||
15425 | 1652 |
lemma upt_Suc_append: "i <= j ==> [i..<(Suc j)] = [i..<j]@[j]" |
13145 | 1653 |
-- {* Only needed if @{text upt_Suc} is deleted from the simpset. *} |
1654 |
by simp |
|
13114 | 1655 |
|
15425 | 1656 |
lemma upt_conv_Cons: "i < j ==> [i..<j] = i # [Suc i..<j]" |
13145 | 1657 |
apply(rule trans) |
1658 |
apply(subst upt_rec) |
|
14208 | 1659 |
prefer 2 apply (rule refl, simp) |
13145 | 1660 |
done |
13114 | 1661 |
|
15425 | 1662 |
lemma upt_add_eq_append: "i<=j ==> [i..<j+k] = [i..<j]@[j..<j+k]" |
13145 | 1663 |
-- {* LOOPS as a simprule, since @{text "j <= j"}. *} |
1664 |
by (induct k) auto |
|
13114 | 1665 |
|
15425 | 1666 |
lemma length_upt [simp]: "length [i..<j] = j - i" |
13145 | 1667 |
by (induct j) (auto simp add: Suc_diff_le) |
13114 | 1668 |
|
15425 | 1669 |
lemma nth_upt [simp]: "i + k < j ==> [i..<j] ! k = i + k" |
13145 | 1670 |
apply (induct j) |
1671 |
apply (auto simp add: less_Suc_eq nth_append split: nat_diff_split) |
|
1672 |
done |
|
13114 | 1673 |
|
17906 | 1674 |
|
1675 |
lemma hd_upt[simp]: "i < j \<Longrightarrow> hd[i..<j] = i" |
|
1676 |
by(simp add:upt_conv_Cons) |
|
1677 |
||
1678 |
lemma last_upt[simp]: "i < j \<Longrightarrow> last[i..<j] = j - 1" |
|
1679 |
apply(cases j) |
|
1680 |
apply simp |
|
1681 |
by(simp add:upt_Suc_append) |
|
1682 |
||
15425 | 1683 |
lemma take_upt [simp]: "!!i. i+m <= n ==> take m [i..<n] = [i..<i+m]" |
14208 | 1684 |
apply (induct m, simp) |
13145 | 1685 |
apply (subst upt_rec) |
1686 |
apply (rule sym) |
|
1687 |
apply (subst upt_rec) |
|
1688 |
apply (simp del: upt.simps) |
|
1689 |
done |
|
3507 | 1690 |
|
17501 | 1691 |
lemma drop_upt[simp]: "drop m [i..<j] = [i+m..<j]" |
1692 |
apply(induct j) |
|
1693 |
apply auto |
|
1694 |
done |
|
1695 |
||
15425 | 1696 |
lemma map_Suc_upt: "map Suc [m..<n] = [Suc m..n]" |
13145 | 1697 |
by (induct n) auto |
13114 | 1698 |
|
15425 | 1699 |
lemma nth_map_upt: "!!i. i < n-m ==> (map f [m..<n]) ! i = f(m+i)" |
13145 | 1700 |
apply (induct n m rule: diff_induct) |
1701 |
prefer 3 apply (subst map_Suc_upt[symmetric]) |
|
1702 |
apply (auto simp add: less_diff_conv nth_upt) |
|
1703 |
done |
|
13114 | 1704 |
|
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1705 |
lemma nth_take_lemma: |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1706 |
"!!xs ys. k <= length xs ==> k <= length ys ==> |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1707 |
(!!i. i < k --> xs!i = ys!i) ==> take k xs = take k ys" |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1708 |
apply (atomize, induct k) |
14208 | 1709 |
apply (simp_all add: less_Suc_eq_0_disj all_conj_distrib, clarify) |
13145 | 1710 |
txt {* Both lists must be non-empty *} |
14208 | 1711 |
apply (case_tac xs, simp) |
1712 |
apply (case_tac ys, clarify) |
|
13145 | 1713 |
apply (simp (no_asm_use)) |
1714 |
apply clarify |
|
1715 |
txt {* prenexing's needed, not miniscoping *} |
|
1716 |
apply (simp (no_asm_use) add: all_simps [symmetric] del: all_simps) |
|
1717 |
apply blast |
|
1718 |
done |
|
13114 | 1719 |
|
1720 |
lemma nth_equalityI: |
|
1721 |
"[| length xs = length ys; ALL i < length xs. xs!i = ys!i |] ==> xs = ys" |
|
13145 | 1722 |
apply (frule nth_take_lemma [OF le_refl eq_imp_le]) |
1723 |
apply (simp_all add: take_all) |
|
1724 |
done |
|
13142 | 1725 |
|
13863 | 1726 |
(* needs nth_equalityI *) |
1727 |
lemma list_all2_antisym: |
|
1728 |
"\<lbrakk> (\<And>x y. \<lbrakk>P x y; Q y x\<rbrakk> \<Longrightarrow> x = y); list_all2 P xs ys; list_all2 Q ys xs \<rbrakk> |
|
1729 |
\<Longrightarrow> xs = ys" |
|
1730 |
apply (simp add: list_all2_conv_all_nth) |
|
14208 | 1731 |
apply (rule nth_equalityI, blast, simp) |
13863 | 1732 |
done |
1733 |
||
13142 | 1734 |
lemma take_equalityI: "(\<forall>i. take i xs = take i ys) ==> xs = ys" |
13145 | 1735 |
-- {* The famous take-lemma. *} |
1736 |
apply (drule_tac x = "max (length xs) (length ys)" in spec) |
|
1737 |
apply (simp add: le_max_iff_disj take_all) |
|
1738 |
done |
|
13142 | 1739 |
|
1740 |
||
15302 | 1741 |
lemma take_Cons': |
1742 |
"take n (x # xs) = (if n = 0 then [] else x # take (n - 1) xs)" |
|
1743 |
by (cases n) simp_all |
|
1744 |
||
1745 |
lemma drop_Cons': |
|
1746 |
"drop n (x # xs) = (if n = 0 then x # xs else drop (n - 1) xs)" |
|
1747 |
by (cases n) simp_all |
|
1748 |
||
1749 |
lemma nth_Cons': "(x # xs)!n = (if n = 0 then x else xs!(n - 1))" |
|
1750 |
by (cases n) simp_all |
|
1751 |
||
18622 | 1752 |
lemmas take_Cons_number_of = take_Cons'[of "number_of v",standard] |
1753 |
lemmas drop_Cons_number_of = drop_Cons'[of "number_of v",standard] |
|
1754 |
lemmas nth_Cons_number_of = nth_Cons'[of _ _ "number_of v",standard] |
|
1755 |
||
1756 |
declare take_Cons_number_of [simp] |
|
1757 |
drop_Cons_number_of [simp] |
|
1758 |
nth_Cons_number_of [simp] |
|
15302 | 1759 |
|
1760 |
||
15392 | 1761 |
subsubsection {* @{text "distinct"} and @{text remdups} *} |
13142 | 1762 |
|
1763 |
lemma distinct_append [simp]: |
|
13145 | 1764 |
"distinct (xs @ ys) = (distinct xs \<and> distinct ys \<and> set xs \<inter> set ys = {})" |
1765 |
by (induct xs) auto |
|
13142 | 1766 |
|
15305 | 1767 |
lemma distinct_rev[simp]: "distinct(rev xs) = distinct xs" |
1768 |
by(induct xs) auto |
|
1769 |
||
13142 | 1770 |
lemma set_remdups [simp]: "set (remdups xs) = set xs" |
13145 | 1771 |
by (induct xs) (auto simp add: insert_absorb) |
13142 | 1772 |
|
1773 |
lemma distinct_remdups [iff]: "distinct (remdups xs)" |
|
13145 | 1774 |
by (induct xs) auto |
13142 | 1775 |
|
15072 | 1776 |
lemma remdups_eq_nil_iff [simp]: "(remdups x = []) = (x = [])" |
15251 | 1777 |
by (induct x, auto) |
15072 | 1778 |
|
1779 |
lemma remdups_eq_nil_right_iff [simp]: "([] = remdups x) = (x = [])" |
|
15251 | 1780 |
by (induct x, auto) |
15072 | 1781 |
|
15245 | 1782 |
lemma length_remdups_leq[iff]: "length(remdups xs) <= length xs" |
1783 |
by (induct xs) auto |
|
1784 |
||
1785 |
lemma length_remdups_eq[iff]: |
|
1786 |
"(length (remdups xs) = length xs) = (remdups xs = xs)" |
|
1787 |
apply(induct xs) |
|
1788 |
apply auto |
|
1789 |
apply(subgoal_tac "length (remdups xs) <= length xs") |
|
1790 |
apply arith |
|
1791 |
apply(rule length_remdups_leq) |
|
1792 |
done |
|
1793 |
||
18490 | 1794 |
|
1795 |
lemma distinct_map: |
|
1796 |
"distinct(map f xs) = (distinct xs & inj_on f (set xs))" |
|
1797 |
by (induct xs) auto |
|
1798 |
||
1799 |
||
13142 | 1800 |
lemma distinct_filter [simp]: "distinct xs ==> distinct (filter P xs)" |
13145 | 1801 |
by (induct xs) auto |
13114 | 1802 |
|
17501 | 1803 |
lemma distinct_upt[simp]: "distinct[i..<j]" |
1804 |
by (induct j) auto |
|
1805 |
||
1806 |
lemma distinct_take[simp]: "\<And>i. distinct xs \<Longrightarrow> distinct (take i xs)" |
|
1807 |
apply(induct xs) |
|
1808 |
apply simp |
|
1809 |
apply (case_tac i) |
|
1810 |
apply simp_all |
|
1811 |
apply(blast dest:in_set_takeD) |
|
1812 |
done |
|
1813 |
||
1814 |
lemma distinct_drop[simp]: "\<And>i. distinct xs \<Longrightarrow> distinct (drop i xs)" |
|
1815 |
apply(induct xs) |
|
1816 |
apply simp |
|
1817 |
apply (case_tac i) |
|
1818 |
apply simp_all |
|
1819 |
done |
|
1820 |
||
1821 |
lemma distinct_list_update: |
|
1822 |
assumes d: "distinct xs" and a: "a \<notin> set xs - {xs!i}" |
|
1823 |
shows "distinct (xs[i:=a])" |
|
1824 |
proof (cases "i < length xs") |
|
1825 |
case True |
|
1826 |
with a have "a \<notin> set (take i xs @ xs ! i # drop (Suc i) xs) - {xs!i}" |
|
1827 |
apply (drule_tac id_take_nth_drop) by simp |
|
1828 |
with d True show ?thesis |
|
1829 |
apply (simp add: upd_conv_take_nth_drop) |
|
1830 |
apply (drule subst [OF id_take_nth_drop]) apply assumption |
|
1831 |
apply simp apply (cases "a = xs!i") apply simp by blast |
|
1832 |
next |
|
1833 |
case False with d show ?thesis by auto |
|
1834 |
qed |
|
1835 |
||
1836 |
||
1837 |
text {* It is best to avoid this indexed version of distinct, but |
|
1838 |
sometimes it is useful. *} |
|
1839 |
||
13142 | 1840 |
lemma distinct_conv_nth: |
17501 | 1841 |
"distinct xs = (\<forall>i < size xs. \<forall>j < size xs. i \<noteq> j --> xs!i \<noteq> xs!j)" |
15251 | 1842 |
apply (induct xs, simp, simp) |
14208 | 1843 |
apply (rule iffI, clarsimp) |
13145 | 1844 |
apply (case_tac i) |
14208 | 1845 |
apply (case_tac j, simp) |
13145 | 1846 |
apply (simp add: set_conv_nth) |
1847 |
apply (case_tac j) |
|
14208 | 1848 |
apply (clarsimp simp add: set_conv_nth, simp) |
13145 | 1849 |
apply (rule conjI) |
1850 |
apply (clarsimp simp add: set_conv_nth) |
|
17501 | 1851 |
apply (erule_tac x = 0 in allE, simp) |
14208 | 1852 |
apply (erule_tac x = "Suc i" in allE, simp, clarsimp) |
17501 | 1853 |
apply (erule_tac x = "Suc i" in allE, simp) |
14208 | 1854 |
apply (erule_tac x = "Suc j" in allE, simp) |
13145 | 1855 |
done |
13114 | 1856 |
|
18490 | 1857 |
lemma nth_eq_iff_index_eq: |
1858 |
"\<lbrakk> distinct xs; i < length xs; j < length xs \<rbrakk> \<Longrightarrow> (xs!i = xs!j) = (i = j)" |
|
1859 |
by(auto simp: distinct_conv_nth) |
|
1860 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1861 |
lemma distinct_card: "distinct xs ==> card (set xs) = size xs" |
14388 | 1862 |
by (induct xs) auto |
1863 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1864 |
lemma card_distinct: "card (set xs) = size xs ==> distinct xs" |
14388 | 1865 |
proof (induct xs) |
1866 |
case Nil thus ?case by simp |
|
1867 |
next |
|
1868 |
case (Cons x xs) |
|
1869 |
show ?case |
|
1870 |
proof (cases "x \<in> set xs") |
|
1871 |
case False with Cons show ?thesis by simp |
|
1872 |
next |
|
1873 |
case True with Cons.prems |
|
1874 |
have "card (set xs) = Suc (length xs)" |
|
1875 |
by (simp add: card_insert_if split: split_if_asm) |
|
1876 |
moreover have "card (set xs) \<le> length xs" by (rule card_length) |
|
1877 |
ultimately have False by simp |
|
1878 |
thus ?thesis .. |
|
1879 |
qed |
|
1880 |
qed |
|
1881 |
||
18490 | 1882 |
|
1883 |
lemma length_remdups_concat: |
|
1884 |
"length(remdups(concat xss)) = card(\<Union>xs \<in> set xss. set xs)" |
|
1885 |
by(simp add: distinct_card[symmetric]) |
|
17906 | 1886 |
|
1887 |
||
15392 | 1888 |
subsubsection {* @{text remove1} *} |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1889 |
|
18049 | 1890 |
lemma remove1_append: |
1891 |
"remove1 x (xs @ ys) = |
|
1892 |
(if x \<in> set xs then remove1 x xs @ ys else xs @ remove1 x ys)" |
|
1893 |
by (induct xs) auto |
|
1894 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1895 |
lemma set_remove1_subset: "set(remove1 x xs) <= set xs" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1896 |
apply(induct xs) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1897 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1898 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1899 |
apply blast |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1900 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1901 |
|
17724 | 1902 |
lemma set_remove1_eq [simp]: "distinct xs ==> set(remove1 x xs) = set xs - {x}" |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1903 |
apply(induct xs) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1904 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1905 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1906 |
apply blast |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1907 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1908 |
|
18049 | 1909 |
lemma remove1_filter_not[simp]: |
1910 |
"\<not> P x \<Longrightarrow> remove1 x (filter P xs) = filter P xs" |
|
1911 |
by(induct xs) auto |
|
1912 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1913 |
lemma notin_set_remove1[simp]: "x ~: set xs ==> x ~: set(remove1 y xs)" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1914 |
apply(insert set_remove1_subset) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1915 |
apply fast |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1916 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1917 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1918 |
lemma distinct_remove1[simp]: "distinct xs ==> distinct(remove1 x xs)" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1919 |
by (induct xs) simp_all |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1920 |
|
13114 | 1921 |
|
15392 | 1922 |
subsubsection {* @{text replicate} *} |
13114 | 1923 |
|
13142 | 1924 |
lemma length_replicate [simp]: "length (replicate n x) = n" |
13145 | 1925 |
by (induct n) auto |
13124 | 1926 |
|
13142 | 1927 |
lemma map_replicate [simp]: "map f (replicate n x) = replicate n (f x)" |
13145 | 1928 |
by (induct n) auto |
13114 | 1929 |
|
1930 |
lemma replicate_app_Cons_same: |
|
13145 | 1931 |
"(replicate n x) @ (x # xs) = x # replicate n x @ xs" |
1932 |
by (induct n) auto |
|
13114 | 1933 |
|
13142 | 1934 |
lemma rev_replicate [simp]: "rev (replicate n x) = replicate n x" |
14208 | 1935 |
apply (induct n, simp) |
13145 | 1936 |
apply (simp add: replicate_app_Cons_same) |
1937 |
done |
|
13114 | 1938 |
|
13142 | 1939 |
lemma replicate_add: "replicate (n + m) x = replicate n x @ replicate m x" |
13145 | 1940 |
by (induct n) auto |
13114 | 1941 |
|
16397 | 1942 |
text{* Courtesy of Matthias Daum: *} |
1943 |
lemma append_replicate_commute: |
|
1944 |
"replicate n x @ replicate k x = replicate k x @ replicate n x" |
|
1945 |
apply (simp add: replicate_add [THEN sym]) |
|
1946 |
apply (simp add: add_commute) |
|
1947 |
done |
|
1948 |
||
13142 | 1949 |
lemma hd_replicate [simp]: "n \<noteq> 0 ==> hd (replicate n x) = x" |
13145 | 1950 |
by (induct n) auto |
13114 | 1951 |
|
13142 | 1952 |
lemma tl_replicate [simp]: "n \<noteq> 0 ==> tl (replicate n x) = replicate (n - 1) x" |
13145 | 1953 |
by (induct n) auto |
13114 | 1954 |
|
13142 | 1955 |
lemma last_replicate [simp]: "n \<noteq> 0 ==> last (replicate n x) = x" |
13145 | 1956 |
by (atomize (full), induct n) auto |
13114 | 1957 |
|
13142 | 1958 |
lemma nth_replicate[simp]: "!!i. i < n ==> (replicate n x)!i = x" |
14208 | 1959 |
apply (induct n, simp) |
13145 | 1960 |
apply (simp add: nth_Cons split: nat.split) |
1961 |
done |
|
13114 | 1962 |
|
16397 | 1963 |
text{* Courtesy of Matthias Daum (2 lemmas): *} |
1964 |
lemma take_replicate[simp]: "take i (replicate k x) = replicate (min i k) x" |
|
1965 |
apply (case_tac "k \<le> i") |
|
1966 |
apply (simp add: min_def) |
|
1967 |
apply (drule not_leE) |
|
1968 |
apply (simp add: min_def) |
|
1969 |
apply (subgoal_tac "replicate k x = replicate i x @ replicate (k - i) x") |
|
1970 |
apply simp |
|
1971 |
apply (simp add: replicate_add [symmetric]) |
|
1972 |
done |
|
1973 |
||
1974 |
lemma drop_replicate[simp]: "!!i. drop i (replicate k x) = replicate (k-i) x" |
|
1975 |
apply (induct k) |
|
1976 |
apply simp |
|
1977 |
apply clarsimp |
|
1978 |
apply (case_tac i) |
|
1979 |
apply simp |
|
1980 |
apply clarsimp |
|
1981 |
done |
|
1982 |
||
1983 |
||
13142 | 1984 |
lemma set_replicate_Suc: "set (replicate (Suc n) x) = {x}" |
13145 | 1985 |
by (induct n) auto |
13114 | 1986 |
|
13142 | 1987 |
lemma set_replicate [simp]: "n \<noteq> 0 ==> set (replicate n x) = {x}" |
13145 | 1988 |
by (fast dest!: not0_implies_Suc intro!: set_replicate_Suc) |
13114 | 1989 |
|
13142 | 1990 |
lemma set_replicate_conv_if: "set (replicate n x) = (if n = 0 then {} else {x})" |
13145 | 1991 |
by auto |
13114 | 1992 |
|
13142 | 1993 |
lemma in_set_replicateD: "x : set (replicate n y) ==> x = y" |
13145 | 1994 |
by (simp add: set_replicate_conv_if split: split_if_asm) |
13114 | 1995 |
|
1996 |
||
15392 | 1997 |
subsubsection{*@{text rotate1} and @{text rotate}*} |
15302 | 1998 |
|
1999 |
lemma rotate_simps[simp]: "rotate1 [] = [] \<and> rotate1 (x#xs) = xs @ [x]" |
|
2000 |
by(simp add:rotate1_def) |
|
2001 |
||
2002 |
lemma rotate0[simp]: "rotate 0 = id" |
|
2003 |
by(simp add:rotate_def) |
|
2004 |
||
2005 |
lemma rotate_Suc[simp]: "rotate (Suc n) xs = rotate1(rotate n xs)" |
|
2006 |
by(simp add:rotate_def) |
|
2007 |
||
2008 |
lemma rotate_add: |
|
2009 |
"rotate (m+n) = rotate m o rotate n" |
|
2010 |
by(simp add:rotate_def funpow_add) |
|
2011 |
||
2012 |
lemma rotate_rotate: "rotate m (rotate n xs) = rotate (m+n) xs" |
|
2013 |
by(simp add:rotate_add) |
|
2014 |
||
18049 | 2015 |
lemma rotate1_rotate_swap: "rotate1 (rotate n xs) = rotate n (rotate1 xs)" |
2016 |
by(simp add:rotate_def funpow_swap1) |
|
2017 |
||
15302 | 2018 |
lemma rotate1_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate1 xs = xs" |
2019 |
by(cases xs) simp_all |
|
2020 |
||
2021 |
lemma rotate_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate n xs = xs" |
|
2022 |
apply(induct n) |
|
2023 |
apply simp |
|
2024 |
apply (simp add:rotate_def) |
|
13145 | 2025 |
done |
13114 | 2026 |
|
15302 | 2027 |
lemma rotate1_hd_tl: "xs \<noteq> [] \<Longrightarrow> rotate1 xs = tl xs @ [hd xs]" |
2028 |
by(simp add:rotate1_def split:list.split) |
|
2029 |
||
2030 |
lemma rotate_drop_take: |
|
2031 |
"rotate n xs = drop (n mod length xs) xs @ take (n mod length xs) xs" |
|
2032 |
apply(induct n) |
|
2033 |
apply simp |
|
2034 |
apply(simp add:rotate_def) |
|
2035 |
apply(cases "xs = []") |
|
2036 |
apply (simp) |
|
2037 |
apply(case_tac "n mod length xs = 0") |
|
2038 |
apply(simp add:mod_Suc) |
|
2039 |
apply(simp add: rotate1_hd_tl drop_Suc take_Suc) |
|
2040 |
apply(simp add:mod_Suc rotate1_hd_tl drop_Suc[symmetric] drop_tl[symmetric] |
|
2041 |
take_hd_drop linorder_not_le) |
|
13145 | 2042 |
done |
13114 | 2043 |
|
15302 | 2044 |
lemma rotate_conv_mod: "rotate n xs = rotate (n mod length xs) xs" |
2045 |
by(simp add:rotate_drop_take) |
|
2046 |
||
2047 |
lemma rotate_id[simp]: "n mod length xs = 0 \<Longrightarrow> rotate n xs = xs" |
|
2048 |
by(simp add:rotate_drop_take) |
|
2049 |
||
2050 |
lemma length_rotate1[simp]: "length(rotate1 xs) = length xs" |
|
2051 |
by(simp add:rotate1_def split:list.split) |
|
2052 |
||
2053 |
lemma length_rotate[simp]: "!!xs. length(rotate n xs) = length xs" |
|
2054 |
by (induct n) (simp_all add:rotate_def) |
|
2055 |
||
2056 |
lemma distinct1_rotate[simp]: "distinct(rotate1 xs) = distinct xs" |
|
2057 |
by(simp add:rotate1_def split:list.split) blast |
|
2058 |
||
2059 |
lemma distinct_rotate[simp]: "distinct(rotate n xs) = distinct xs" |
|
2060 |
by (induct n) (simp_all add:rotate_def) |
|
2061 |
||
2062 |
lemma rotate_map: "rotate n (map f xs) = map f (rotate n xs)" |
|
2063 |
by(simp add:rotate_drop_take take_map drop_map) |
|
2064 |
||
2065 |
lemma set_rotate1[simp]: "set(rotate1 xs) = set xs" |
|
2066 |
by(simp add:rotate1_def split:list.split) |
|
2067 |
||
2068 |
lemma set_rotate[simp]: "set(rotate n xs) = set xs" |
|
2069 |
by (induct n) (simp_all add:rotate_def) |
|
2070 |
||
2071 |
lemma rotate1_is_Nil_conv[simp]: "(rotate1 xs = []) = (xs = [])" |
|
2072 |
by(simp add:rotate1_def split:list.split) |
|
2073 |
||
2074 |
lemma rotate_is_Nil_conv[simp]: "(rotate n xs = []) = (xs = [])" |
|
2075 |
by (induct n) (simp_all add:rotate_def) |
|
13114 | 2076 |
|
15439 | 2077 |
lemma rotate_rev: |
2078 |
"rotate n (rev xs) = rev(rotate (length xs - (n mod length xs)) xs)" |
|
2079 |
apply(simp add:rotate_drop_take rev_drop rev_take) |
|
2080 |
apply(cases "length xs = 0") |
|
2081 |
apply simp |
|
2082 |
apply(cases "n mod length xs = 0") |
|
2083 |
apply simp |
|
2084 |
apply(simp add:rotate_drop_take rev_drop rev_take) |
|
2085 |
done |
|
2086 |
||
18423 | 2087 |
lemma hd_rotate_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd(rotate n xs) = xs!(n mod length xs)" |
2088 |
apply(simp add:rotate_drop_take hd_append hd_drop_conv_nth hd_conv_nth) |
|
2089 |
apply(subgoal_tac "length xs \<noteq> 0") |
|
2090 |
prefer 2 apply simp |
|
2091 |
using mod_less_divisor[of "length xs" n] by arith |
|
2092 |
||
13114 | 2093 |
|
15392 | 2094 |
subsubsection {* @{text sublist} --- a generalization of @{text nth} to sets *} |
13114 | 2095 |
|
13142 | 2096 |
lemma sublist_empty [simp]: "sublist xs {} = []" |
13145 | 2097 |
by (auto simp add: sublist_def) |
13114 | 2098 |
|
13142 | 2099 |
lemma sublist_nil [simp]: "sublist [] A = []" |
13145 | 2100 |
by (auto simp add: sublist_def) |
13114 | 2101 |
|
15281 | 2102 |
lemma length_sublist: |
2103 |
"length(sublist xs I) = card{i. i < length xs \<and> i : I}" |
|
2104 |
by(simp add: sublist_def length_filter_conv_card cong:conj_cong) |
|
2105 |
||
2106 |
lemma sublist_shift_lemma_Suc: |
|
2107 |
"!!is. map fst (filter (%p. P(Suc(snd p))) (zip xs is)) = |
|
2108 |
map fst (filter (%p. P(snd p)) (zip xs (map Suc is)))" |
|
2109 |
apply(induct xs) |
|
2110 |
apply simp |
|
2111 |
apply (case_tac "is") |
|
2112 |
apply simp |
|
2113 |
apply simp |
|
2114 |
done |
|
2115 |
||
13114 | 2116 |
lemma sublist_shift_lemma: |
15425 | 2117 |
"map fst [p:zip xs [i..<i + length xs] . snd p : A] = |
2118 |
map fst [p:zip xs [0..<length xs] . snd p + i : A]" |
|
13145 | 2119 |
by (induct xs rule: rev_induct) (simp_all add: add_commute) |
13114 | 2120 |
|
2121 |
lemma sublist_append: |
|
15168 | 2122 |
"sublist (l @ l') A = sublist l A @ sublist l' {j. j + length l : A}" |
13145 | 2123 |
apply (unfold sublist_def) |
14208 | 2124 |
apply (induct l' rule: rev_induct, simp) |
13145 | 2125 |
apply (simp add: upt_add_eq_append[of 0] zip_append sublist_shift_lemma) |
2126 |
apply (simp add: add_commute) |
|
2127 |
done |
|
13114 | 2128 |
|
2129 |
lemma sublist_Cons: |
|
13145 | 2130 |
"sublist (x # l) A = (if 0:A then [x] else []) @ sublist l {j. Suc j : A}" |
2131 |
apply (induct l rule: rev_induct) |
|
2132 |
apply (simp add: sublist_def) |
|
2133 |
apply (simp del: append_Cons add: append_Cons[symmetric] sublist_append) |
|
2134 |
done |
|
13114 | 2135 |
|
15281 | 2136 |
lemma set_sublist: "!!I. set(sublist xs I) = {xs!i|i. i<size xs \<and> i \<in> I}" |
2137 |
apply(induct xs) |
|
2138 |
apply simp |
|
2139 |
apply(auto simp add:sublist_Cons nth_Cons split:nat.split elim: lessE) |
|
2140 |
apply(erule lessE) |
|
2141 |
apply auto |
|
2142 |
apply(erule lessE) |
|
2143 |
apply auto |
|
2144 |
done |
|
2145 |
||
2146 |
lemma set_sublist_subset: "set(sublist xs I) \<subseteq> set xs" |
|
2147 |
by(auto simp add:set_sublist) |
|
2148 |
||
2149 |
lemma notin_set_sublistI[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(sublist xs I)" |
|
2150 |
by(auto simp add:set_sublist) |
|
2151 |
||
2152 |
lemma in_set_sublistD: "x \<in> set(sublist xs I) \<Longrightarrow> x \<in> set xs" |
|
2153 |
by(auto simp add:set_sublist) |
|
2154 |
||
13142 | 2155 |
lemma sublist_singleton [simp]: "sublist [x] A = (if 0 : A then [x] else [])" |
13145 | 2156 |
by (simp add: sublist_Cons) |
13114 | 2157 |
|
15281 | 2158 |
|
2159 |
lemma distinct_sublistI[simp]: "!!I. distinct xs \<Longrightarrow> distinct(sublist xs I)" |
|
2160 |
apply(induct xs) |
|
2161 |
apply simp |
|
2162 |
apply(auto simp add:sublist_Cons) |
|
2163 |
done |
|
2164 |
||
2165 |
||
15045 | 2166 |
lemma sublist_upt_eq_take [simp]: "sublist l {..<n} = take n l" |
14208 | 2167 |
apply (induct l rule: rev_induct, simp) |
13145 | 2168 |
apply (simp split: nat_diff_split add: sublist_append) |
2169 |
done |
|
13114 | 2170 |
|
17501 | 2171 |
lemma filter_in_sublist: "\<And>s. distinct xs \<Longrightarrow> |
2172 |
filter (%x. x \<in> set(sublist xs s)) xs = sublist xs s" |
|
2173 |
proof (induct xs) |
|
2174 |
case Nil thus ?case by simp |
|
2175 |
next |
|
2176 |
case (Cons a xs) |
|
2177 |
moreover hence "!x. x: set xs \<longrightarrow> x \<noteq> a" by auto |
|
2178 |
ultimately show ?case by(simp add: sublist_Cons cong:filter_cong) |
|
2179 |
qed |
|
2180 |
||
13114 | 2181 |
|
19390 | 2182 |
subsubsection {* @{const splice} *} |
2183 |
||
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2184 |
lemma splice_Nil2 [simp, code]: |
19390 | 2185 |
"splice xs [] = xs" |
2186 |
by (cases xs) simp_all |
|
2187 |
||
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2188 |
lemma splice_Cons_Cons [simp, code]: |
19390 | 2189 |
"splice (x#xs) (y#ys) = x # y # splice xs ys" |
2190 |
by simp |
|
2191 |
||
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2192 |
declare splice.simps(2) [simp del, code del] |
19390 | 2193 |
|
15392 | 2194 |
subsubsection{*Sets of Lists*} |
2195 |
||
2196 |
subsubsection {* @{text lists}: the list-forming operator over sets *} |
|
15302 | 2197 |
|
2198 |
consts lists :: "'a set => 'a list set" |
|
2199 |
inductive "lists A" |
|
2200 |
intros |
|
2201 |
Nil [intro!]: "[]: lists A" |
|
2202 |
Cons [intro!]: "[| a: A;l: lists A|] ==> a#l : lists A" |
|
2203 |
||
2204 |
inductive_cases listsE [elim!]: "x#l : lists A" |
|
2205 |
||
2206 |
lemma lists_mono [mono]: "A \<subseteq> B ==> lists A \<subseteq> lists B" |
|
2207 |
by (unfold lists.defs) (blast intro!: lfp_mono) |
|
2208 |
||
2209 |
lemma lists_IntI: |
|
2210 |
assumes l: "l: lists A" shows "l: lists B ==> l: lists (A Int B)" using l |
|
2211 |
by induct blast+ |
|
2212 |
||
2213 |
lemma lists_Int_eq [simp]: "lists (A \<inter> B) = lists A \<inter> lists B" |
|
2214 |
proof (rule mono_Int [THEN equalityI]) |
|
2215 |
show "mono lists" by (simp add: mono_def lists_mono) |
|
2216 |
show "lists A \<inter> lists B \<subseteq> lists (A \<inter> B)" by (blast intro: lists_IntI) |
|
14388 | 2217 |
qed |
2218 |
||
15302 | 2219 |
lemma append_in_lists_conv [iff]: |
2220 |
"(xs @ ys : lists A) = (xs : lists A \<and> ys : lists A)" |
|
2221 |
by (induct xs) auto |
|
2222 |
||
2223 |
lemma in_lists_conv_set: "(xs : lists A) = (\<forall>x \<in> set xs. x : A)" |
|
2224 |
-- {* eliminate @{text lists} in favour of @{text set} *} |
|
2225 |
by (induct xs) auto |
|
2226 |
||
2227 |
lemma in_listsD [dest!]: "xs \<in> lists A ==> \<forall>x\<in>set xs. x \<in> A" |
|
2228 |
by (rule in_lists_conv_set [THEN iffD1]) |
|
2229 |
||
2230 |
lemma in_listsI [intro!]: "\<forall>x\<in>set xs. x \<in> A ==> xs \<in> lists A" |
|
2231 |
by (rule in_lists_conv_set [THEN iffD2]) |
|
2232 |
||
2233 |
lemma lists_UNIV [simp]: "lists UNIV = UNIV" |
|
2234 |
by auto |
|
2235 |
||
17086 | 2236 |
subsubsection {* For efficiency *} |
2237 |
||
2238 |
text{* Only use @{text mem} for generating executable code. Otherwise |
|
2239 |
use @{prop"x : set xs"} instead --- it is much easier to reason about. |
|
2240 |
The same is true for @{const list_all} and @{const list_ex}: write |
|
2241 |
@{text"\<forall>x\<in>set xs"} and @{text"\<exists>x\<in>set xs"} instead because the HOL |
|
19817 | 2242 |
quantifiers are aleady known to the automatic provers. In fact, |
2243 |
the declarations in the code subsection make sure that @{text"\<in>"}, @{text"\<forall>x\<in>set xs"} |
|
17090 | 2244 |
and @{text"\<exists>x\<in>set xs"} are implemented efficiently. |
17086 | 2245 |
|
2246 |
The functions @{const itrev}, @{const filtermap} and @{const |
|
2247 |
map_filter} are just there to generate efficient code. Do not use them |
|
2248 |
for modelling and proving. *} |
|
2249 |
||
2250 |
lemma mem_iff: "(x mem xs) = (x : set xs)" |
|
2251 |
by (induct xs) auto |
|
2252 |
||
2253 |
lemma list_inter_conv: "set(list_inter xs ys) = set xs \<inter> set ys" |
|
2254 |
by (induct xs) auto |
|
2255 |
||
2256 |
lemma list_all_iff: "list_all P xs = (\<forall>x \<in> set xs. P x)" |
|
2257 |
by (induct xs) auto |
|
2258 |
||
2259 |
lemma list_all_append [simp]: |
|
2260 |
"list_all P (xs @ ys) = (list_all P xs \<and> list_all P ys)" |
|
2261 |
by (induct xs) auto |
|
2262 |
||
2263 |
lemma list_all_rev [simp]: "list_all P (rev xs) = list_all P xs" |
|
2264 |
by (simp add: list_all_iff) |
|
2265 |
||
2266 |
lemma list_ex_iff: "list_ex P xs = (\<exists>x \<in> set xs. P x)" |
|
2267 |
by (induct xs) simp_all |
|
2268 |
||
2269 |
lemma itrev[simp]: "ALL ys. itrev xs ys = rev xs @ ys" |
|
2270 |
by (induct xs) simp_all |
|
2271 |
||
2272 |
lemma filtermap_conv: |
|
18447 | 2273 |
"filtermap f xs = map (%x. the(f x)) (filter (%x. f x \<noteq> None) xs)" |
2274 |
by (induct xs) (simp_all split: option.split) |
|
17086 | 2275 |
|
2276 |
lemma map_filter_conv[simp]: "map_filter f P xs = map f (filter P xs)" |
|
2277 |
by (induct xs) auto |
|
2278 |
||
2279 |
||
2280 |
subsubsection {* Code generation *} |
|
2281 |
||
2282 |
text{* Defaults for generating efficient code for some standard functions. *} |
|
2283 |
||
17090 | 2284 |
lemmas in_set_code[code unfold] = mem_iff[symmetric, THEN eq_reflection] |
2285 |
||
2286 |
lemma rev_code[code unfold]: "rev xs == itrev xs []" |
|
17086 | 2287 |
by simp |
2288 |
||
17090 | 2289 |
lemma distinct_Cons_mem[code]: "distinct (x#xs) = (~(x mem xs) \<and> distinct xs)" |
17086 | 2290 |
by (simp add:mem_iff) |
2291 |
||
17090 | 2292 |
lemma remdups_Cons_mem[code]: |
17086 | 2293 |
"remdups (x#xs) = (if x mem xs then remdups xs else x # remdups xs)" |
2294 |
by (simp add:mem_iff) |
|
2295 |
||
17090 | 2296 |
lemma list_inter_Cons_mem[code]: "list_inter (a#as) bs = |
17086 | 2297 |
(if a mem bs then a#(list_inter as bs) else list_inter as bs)" |
2298 |
by(simp add:mem_iff) |
|
2299 |
||
17090 | 2300 |
text{* For implementing bounded quantifiers over lists by |
2301 |
@{const list_ex}/@{const list_all}: *} |
|
2302 |
||
2303 |
lemmas list_bex_code[code unfold] = list_ex_iff[symmetric, THEN eq_reflection] |
|
2304 |
lemmas list_ball_code[code unfold] = list_all_iff[symmetric, THEN eq_reflection] |
|
17086 | 2305 |
|
2306 |
||
2307 |
subsubsection{* Inductive definition for membership *} |
|
2308 |
||
2309 |
consts ListMem :: "('a \<times> 'a list)set" |
|
2310 |
inductive ListMem |
|
2311 |
intros |
|
2312 |
elem: "(x,x#xs) \<in> ListMem" |
|
2313 |
insert: "(x,xs) \<in> ListMem \<Longrightarrow> (x,y#xs) \<in> ListMem" |
|
2314 |
||
2315 |
lemma ListMem_iff: "((x,xs) \<in> ListMem) = (x \<in> set xs)" |
|
2316 |
apply (rule iffI) |
|
2317 |
apply (induct set: ListMem) |
|
2318 |
apply auto |
|
2319 |
apply (induct xs) |
|
2320 |
apply (auto intro: ListMem.intros) |
|
2321 |
done |
|
2322 |
||
2323 |
||
2324 |
||
15392 | 2325 |
subsubsection{*Lists as Cartesian products*} |
15302 | 2326 |
|
2327 |
text{*@{text"set_Cons A Xs"}: the set of lists with head drawn from |
|
2328 |
@{term A} and tail drawn from @{term Xs}.*} |
|
2329 |
||
2330 |
constdefs |
|
2331 |
set_Cons :: "'a set \<Rightarrow> 'a list set \<Rightarrow> 'a list set" |
|
2332 |
"set_Cons A XS == {z. \<exists>x xs. z = x#xs & x \<in> A & xs \<in> XS}" |
|
2333 |
||
17724 | 2334 |
lemma set_Cons_sing_Nil [simp]: "set_Cons A {[]} = (%x. [x])`A" |
15302 | 2335 |
by (auto simp add: set_Cons_def) |
2336 |
||
2337 |
text{*Yields the set of lists, all of the same length as the argument and |
|
2338 |
with elements drawn from the corresponding element of the argument.*} |
|
2339 |
||
2340 |
consts listset :: "'a set list \<Rightarrow> 'a list set" |
|
2341 |
primrec |
|
2342 |
"listset [] = {[]}" |
|
2343 |
"listset(A#As) = set_Cons A (listset As)" |
|
2344 |
||
2345 |
||
15656 | 2346 |
subsection{*Relations on Lists*} |
2347 |
||
2348 |
subsubsection {* Length Lexicographic Ordering *} |
|
2349 |
||
2350 |
text{*These orderings preserve well-foundedness: shorter lists |
|
2351 |
precede longer lists. These ordering are not used in dictionaries.*} |
|
2352 |
||
2353 |
consts lexn :: "('a * 'a)set => nat => ('a list * 'a list)set" |
|
2354 |
--{*The lexicographic ordering for lists of the specified length*} |
|
15302 | 2355 |
primrec |
15656 | 2356 |
"lexn r 0 = {}" |
2357 |
"lexn r (Suc n) = |
|
2358 |
(prod_fun (%(x,xs). x#xs) (%(x,xs). x#xs) ` (r <*lex*> lexn r n)) Int |
|
2359 |
{(xs,ys). length xs = Suc n \<and> length ys = Suc n}" |
|
15302 | 2360 |
|
2361 |
constdefs |
|
15656 | 2362 |
lex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set" |
2363 |
"lex r == \<Union>n. lexn r n" |
|
2364 |
--{*Holds only between lists of the same length*} |
|
2365 |
||
15693 | 2366 |
lenlex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set" |
2367 |
"lenlex r == inv_image (less_than <*lex*> lex r) (%xs. (length xs, xs))" |
|
15656 | 2368 |
--{*Compares lists by their length and then lexicographically*} |
15302 | 2369 |
|
2370 |
||
2371 |
lemma wf_lexn: "wf r ==> wf (lexn r n)" |
|
2372 |
apply (induct n, simp, simp) |
|
2373 |
apply(rule wf_subset) |
|
2374 |
prefer 2 apply (rule Int_lower1) |
|
2375 |
apply(rule wf_prod_fun_image) |
|
2376 |
prefer 2 apply (rule inj_onI, auto) |
|
2377 |
done |
|
2378 |
||
2379 |
lemma lexn_length: |
|
2380 |
"!!xs ys. (xs, ys) : lexn r n ==> length xs = n \<and> length ys = n" |
|
2381 |
by (induct n) auto |
|
2382 |
||
2383 |
lemma wf_lex [intro!]: "wf r ==> wf (lex r)" |
|
2384 |
apply (unfold lex_def) |
|
2385 |
apply (rule wf_UN) |
|
2386 |
apply (blast intro: wf_lexn, clarify) |
|
2387 |
apply (rename_tac m n) |
|
2388 |
apply (subgoal_tac "m \<noteq> n") |
|
2389 |
prefer 2 apply blast |
|
2390 |
apply (blast dest: lexn_length not_sym) |
|
2391 |
done |
|
2392 |
||
2393 |
lemma lexn_conv: |
|
15656 | 2394 |
"lexn r n = |
2395 |
{(xs,ys). length xs = n \<and> length ys = n \<and> |
|
2396 |
(\<exists>xys x y xs' ys'. xs= xys @ x#xs' \<and> ys= xys @ y # ys' \<and> (x, y):r)}" |
|
18423 | 2397 |
apply (induct n, simp) |
15302 | 2398 |
apply (simp add: image_Collect lex_prod_def, safe, blast) |
2399 |
apply (rule_tac x = "ab # xys" in exI, simp) |
|
2400 |
apply (case_tac xys, simp_all, blast) |
|
2401 |
done |
|
2402 |
||
2403 |
lemma lex_conv: |
|
15656 | 2404 |
"lex r = |
2405 |
{(xs,ys). length xs = length ys \<and> |
|
2406 |
(\<exists>xys x y xs' ys'. xs = xys @ x # xs' \<and> ys = xys @ y # ys' \<and> (x, y):r)}" |
|
15302 | 2407 |
by (force simp add: lex_def lexn_conv) |
2408 |
||
15693 | 2409 |
lemma wf_lenlex [intro!]: "wf r ==> wf (lenlex r)" |
2410 |
by (unfold lenlex_def) blast |
|
2411 |
||
2412 |
lemma lenlex_conv: |
|
2413 |
"lenlex r = {(xs,ys). length xs < length ys | |
|
15656 | 2414 |
length xs = length ys \<and> (xs, ys) : lex r}" |
19623 | 2415 |
by (simp add: lenlex_def diag_def lex_prod_def inv_image_def) |
15302 | 2416 |
|
2417 |
lemma Nil_notin_lex [iff]: "([], ys) \<notin> lex r" |
|
2418 |
by (simp add: lex_conv) |
|
2419 |
||
2420 |
lemma Nil2_notin_lex [iff]: "(xs, []) \<notin> lex r" |
|
2421 |
by (simp add:lex_conv) |
|
2422 |
||
18447 | 2423 |
lemma Cons_in_lex [simp]: |
15656 | 2424 |
"((x # xs, y # ys) : lex r) = |
2425 |
((x, y) : r \<and> length xs = length ys | x = y \<and> (xs, ys) : lex r)" |
|
15302 | 2426 |
apply (simp add: lex_conv) |
2427 |
apply (rule iffI) |
|
2428 |
prefer 2 apply (blast intro: Cons_eq_appendI, clarify) |
|
2429 |
apply (case_tac xys, simp, simp) |
|
2430 |
apply blast |
|
2431 |
done |
|
2432 |
||
2433 |
||
15656 | 2434 |
subsubsection {* Lexicographic Ordering *} |
2435 |
||
2436 |
text {* Classical lexicographic ordering on lists, ie. "a" < "ab" < "b". |
|
2437 |
This ordering does \emph{not} preserve well-foundedness. |
|
17090 | 2438 |
Author: N. Voelker, March 2005. *} |
15656 | 2439 |
|
2440 |
constdefs |
|
2441 |
lexord :: "('a * 'a)set \<Rightarrow> ('a list * 'a list) set" |
|
2442 |
"lexord r == {(x,y). \<exists> a v. y = x @ a # v \<or> |
|
2443 |
(\<exists> u a b v w. (a,b) \<in> r \<and> x = u @ (a # v) \<and> y = u @ (b # w))}" |
|
2444 |
||
2445 |
lemma lexord_Nil_left[simp]: "([],y) \<in> lexord r = (\<exists> a x. y = a # x)" |
|
2446 |
by (unfold lexord_def, induct_tac y, auto) |
|
2447 |
||
2448 |
lemma lexord_Nil_right[simp]: "(x,[]) \<notin> lexord r" |
|
2449 |
by (unfold lexord_def, induct_tac x, auto) |
|
2450 |
||
2451 |
lemma lexord_cons_cons[simp]: |
|
2452 |
"((a # x, b # y) \<in> lexord r) = ((a,b)\<in> r | (a = b & (x,y)\<in> lexord r))" |
|
2453 |
apply (unfold lexord_def, safe, simp_all) |
|
2454 |
apply (case_tac u, simp, simp) |
|
2455 |
apply (case_tac u, simp, clarsimp, blast, blast, clarsimp) |
|
2456 |
apply (erule_tac x="b # u" in allE) |
|
2457 |
by force |
|
2458 |
||
2459 |
lemmas lexord_simps = lexord_Nil_left lexord_Nil_right lexord_cons_cons |
|
2460 |
||
2461 |
lemma lexord_append_rightI: "\<exists> b z. y = b # z \<Longrightarrow> (x, x @ y) \<in> lexord r" |
|
2462 |
by (induct_tac x, auto) |
|
2463 |
||
2464 |
lemma lexord_append_left_rightI: |
|
2465 |
"(a,b) \<in> r \<Longrightarrow> (u @ a # x, u @ b # y) \<in> lexord r" |
|
2466 |
by (induct_tac u, auto) |
|
2467 |
||
2468 |
lemma lexord_append_leftI: " (u,v) \<in> lexord r \<Longrightarrow> (x @ u, x @ v) \<in> lexord r" |
|
2469 |
by (induct x, auto) |
|
2470 |
||
2471 |
lemma lexord_append_leftD: |
|
2472 |
"\<lbrakk> (x @ u, x @ v) \<in> lexord r; (! a. (a,a) \<notin> r) \<rbrakk> \<Longrightarrow> (u,v) \<in> lexord r" |
|
2473 |
by (erule rev_mp, induct_tac x, auto) |
|
2474 |
||
2475 |
lemma lexord_take_index_conv: |
|
2476 |
"((x,y) : lexord r) = |
|
2477 |
((length x < length y \<and> take (length x) y = x) \<or> |
|
2478 |
(\<exists>i. i < min(length x)(length y) & take i x = take i y & (x!i,y!i) \<in> r))" |
|
2479 |
apply (unfold lexord_def Let_def, clarsimp) |
|
2480 |
apply (rule_tac f = "(% a b. a \<or> b)" in arg_cong2) |
|
2481 |
apply auto |
|
2482 |
apply (rule_tac x="hd (drop (length x) y)" in exI) |
|
2483 |
apply (rule_tac x="tl (drop (length x) y)" in exI) |
|
2484 |
apply (erule subst, simp add: min_def) |
|
2485 |
apply (rule_tac x ="length u" in exI, simp) |
|
2486 |
apply (rule_tac x ="take i x" in exI) |
|
2487 |
apply (rule_tac x ="x ! i" in exI) |
|
2488 |
apply (rule_tac x ="y ! i" in exI, safe) |
|
2489 |
apply (rule_tac x="drop (Suc i) x" in exI) |
|
2490 |
apply (drule sym, simp add: drop_Suc_conv_tl) |
|
2491 |
apply (rule_tac x="drop (Suc i) y" in exI) |
|
2492 |
by (simp add: drop_Suc_conv_tl) |
|
2493 |
||
2494 |
-- {* lexord is extension of partial ordering List.lex *} |
|
2495 |
lemma lexord_lex: " (x,y) \<in> lex r = ((x,y) \<in> lexord r \<and> length x = length y)" |
|
2496 |
apply (rule_tac x = y in spec) |
|
2497 |
apply (induct_tac x, clarsimp) |
|
2498 |
by (clarify, case_tac x, simp, force) |
|
2499 |
||
2500 |
lemma lexord_irreflexive: "(! x. (x,x) \<notin> r) \<Longrightarrow> (y,y) \<notin> lexord r" |
|
2501 |
by (induct y, auto) |
|
2502 |
||
2503 |
lemma lexord_trans: |
|
2504 |
"\<lbrakk> (x, y) \<in> lexord r; (y, z) \<in> lexord r; trans r \<rbrakk> \<Longrightarrow> (x, z) \<in> lexord r" |
|
2505 |
apply (erule rev_mp)+ |
|
2506 |
apply (rule_tac x = x in spec) |
|
2507 |
apply (rule_tac x = z in spec) |
|
2508 |
apply ( induct_tac y, simp, clarify) |
|
2509 |
apply (case_tac xa, erule ssubst) |
|
2510 |
apply (erule allE, erule allE) -- {* avoid simp recursion *} |
|
2511 |
apply (case_tac x, simp, simp) |
|
2512 |
apply (case_tac x, erule allE, erule allE, simp) |
|
2513 |
apply (erule_tac x = listb in allE) |
|
2514 |
apply (erule_tac x = lista in allE, simp) |
|
2515 |
apply (unfold trans_def) |
|
2516 |
by blast |
|
2517 |
||
2518 |
lemma lexord_transI: "trans r \<Longrightarrow> trans (lexord r)" |
|
2519 |
by (rule transI, drule lexord_trans, blast) |
|
2520 |
||
2521 |
lemma lexord_linear: "(! a b. (a,b)\<in> r | a = b | (b,a) \<in> r) \<Longrightarrow> (x,y) : lexord r | x = y | (y,x) : lexord r" |
|
2522 |
apply (rule_tac x = y in spec) |
|
2523 |
apply (induct_tac x, rule allI) |
|
2524 |
apply (case_tac x, simp, simp) |
|
2525 |
apply (rule allI, case_tac x, simp, simp) |
|
2526 |
by blast |
|
2527 |
||
2528 |
||
15392 | 2529 |
subsubsection{*Lifting a Relation on List Elements to the Lists*} |
15302 | 2530 |
|
2531 |
consts listrel :: "('a * 'a)set => ('a list * 'a list)set" |
|
2532 |
||
2533 |
inductive "listrel(r)" |
|
2534 |
intros |
|
2535 |
Nil: "([],[]) \<in> listrel r" |
|
2536 |
Cons: "[| (x,y) \<in> r; (xs,ys) \<in> listrel r |] ==> (x#xs, y#ys) \<in> listrel r" |
|
2537 |
||
2538 |
inductive_cases listrel_Nil1 [elim!]: "([],xs) \<in> listrel r" |
|
2539 |
inductive_cases listrel_Nil2 [elim!]: "(xs,[]) \<in> listrel r" |
|
2540 |
inductive_cases listrel_Cons1 [elim!]: "(y#ys,xs) \<in> listrel r" |
|
2541 |
inductive_cases listrel_Cons2 [elim!]: "(xs,y#ys) \<in> listrel r" |
|
2542 |
||
2543 |
||
2544 |
lemma listrel_mono: "r \<subseteq> s \<Longrightarrow> listrel r \<subseteq> listrel s" |
|
2545 |
apply clarify |
|
2546 |
apply (erule listrel.induct) |
|
2547 |
apply (blast intro: listrel.intros)+ |
|
2548 |
done |
|
2549 |
||
2550 |
lemma listrel_subset: "r \<subseteq> A \<times> A \<Longrightarrow> listrel r \<subseteq> lists A \<times> lists A" |
|
2551 |
apply clarify |
|
2552 |
apply (erule listrel.induct, auto) |
|
2553 |
done |
|
2554 |
||
2555 |
lemma listrel_refl: "refl A r \<Longrightarrow> refl (lists A) (listrel r)" |
|
2556 |
apply (simp add: refl_def listrel_subset Ball_def) |
|
2557 |
apply (rule allI) |
|
2558 |
apply (induct_tac x) |
|
2559 |
apply (auto intro: listrel.intros) |
|
2560 |
done |
|
2561 |
||
2562 |
lemma listrel_sym: "sym r \<Longrightarrow> sym (listrel r)" |
|
2563 |
apply (auto simp add: sym_def) |
|
2564 |
apply (erule listrel.induct) |
|
2565 |
apply (blast intro: listrel.intros)+ |
|
2566 |
done |
|
2567 |
||
2568 |
lemma listrel_trans: "trans r \<Longrightarrow> trans (listrel r)" |
|
2569 |
apply (simp add: trans_def) |
|
2570 |
apply (intro allI) |
|
2571 |
apply (rule impI) |
|
2572 |
apply (erule listrel.induct) |
|
2573 |
apply (blast intro: listrel.intros)+ |
|
2574 |
done |
|
2575 |
||
2576 |
theorem equiv_listrel: "equiv A r \<Longrightarrow> equiv (lists A) (listrel r)" |
|
2577 |
by (simp add: equiv_def listrel_refl listrel_sym listrel_trans) |
|
2578 |
||
2579 |
lemma listrel_Nil [simp]: "listrel r `` {[]} = {[]}" |
|
2580 |
by (blast intro: listrel.intros) |
|
2581 |
||
2582 |
lemma listrel_Cons: |
|
2583 |
"listrel r `` {x#xs} = set_Cons (r``{x}) (listrel r `` {xs})"; |
|
2584 |
by (auto simp add: set_Cons_def intro: listrel.intros) |
|
2585 |
||
2586 |
||
15392 | 2587 |
subsection{*Miscellany*} |
2588 |
||
2589 |
subsubsection {* Characters and strings *} |
|
13366 | 2590 |
|
2591 |
datatype nibble = |
|
2592 |
Nibble0 | Nibble1 | Nibble2 | Nibble3 | Nibble4 | Nibble5 | Nibble6 | Nibble7 |
|
2593 |
| Nibble8 | Nibble9 | NibbleA | NibbleB | NibbleC | NibbleD | NibbleE | NibbleF |
|
2594 |
||
2595 |
datatype char = Char nibble nibble |
|
2596 |
-- "Note: canonical order of character encoding coincides with standard term ordering" |
|
2597 |
||
2598 |
types string = "char list" |
|
2599 |
||
2600 |
syntax |
|
2601 |
"_Char" :: "xstr => char" ("CHR _") |
|
2602 |
"_String" :: "xstr => string" ("_") |
|
2603 |
||
2604 |
parse_ast_translation {* |
|
2605 |
let |
|
2606 |
val constants = Syntax.Appl o map Syntax.Constant; |
|
2607 |
||
2608 |
fun mk_nib n = "Nibble" ^ chr (n + (if n <= 9 then ord "0" else ord "A" - 10)); |
|
2609 |
fun mk_char c = |
|
2610 |
if Symbol.is_ascii c andalso Symbol.is_printable c then |
|
2611 |
constants ["Char", mk_nib (ord c div 16), mk_nib (ord c mod 16)] |
|
2612 |
else error ("Printable ASCII character expected: " ^ quote c); |
|
2613 |
||
2614 |
fun mk_string [] = Syntax.Constant "Nil" |
|
2615 |
| mk_string (c :: cs) = Syntax.Appl [Syntax.Constant "Cons", mk_char c, mk_string cs]; |
|
2616 |
||
2617 |
fun char_ast_tr [Syntax.Variable xstr] = |
|
2618 |
(case Syntax.explode_xstr xstr of |
|
2619 |
[c] => mk_char c |
|
2620 |
| _ => error ("Single character expected: " ^ xstr)) |
|
2621 |
| char_ast_tr asts = raise AST ("char_ast_tr", asts); |
|
2622 |
||
2623 |
fun string_ast_tr [Syntax.Variable xstr] = |
|
2624 |
(case Syntax.explode_xstr xstr of |
|
2625 |
[] => constants [Syntax.constrainC, "Nil", "string"] |
|
2626 |
| cs => mk_string cs) |
|
2627 |
| string_ast_tr asts = raise AST ("string_tr", asts); |
|
2628 |
in [("_Char", char_ast_tr), ("_String", string_ast_tr)] end; |
|
2629 |
*} |
|
2630 |
||
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2631 |
ML {* |
20184 | 2632 |
structure HOList = |
2633 |
struct |
|
2634 |
||
2635 |
local |
|
2636 |
val thy = the_context (); |
|
2637 |
in |
|
2638 |
val typ_string = Type (Sign.intern_type thy "string", []); |
|
2639 |
fun typ_list ty = Type (Sign.intern_type thy "list", [ty]); |
|
2640 |
fun term_list ty f [] = Const (Sign.intern_const thy "Nil", typ_list ty) |
|
2641 |
| term_list ty f (x::xs) = Const (Sign.intern_const thy "Cons", |
|
2642 |
ty --> typ_list ty --> typ_list ty) $ f x $ term_list ty f xs; |
|
2643 |
end; |
|
2644 |
||
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2645 |
fun int_of_nibble h = |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2646 |
if "0" <= h andalso h <= "9" then ord h - ord "0" |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2647 |
else if "A" <= h andalso h <= "F" then ord h - ord "A" + 10 |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2648 |
else raise Match; |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2649 |
|
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2650 |
fun nibble_of_int i = |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2651 |
if i <= 9 then chr (ord "0" + i) else chr (ord "A" + i - 10); |
20181 | 2652 |
|
20184 | 2653 |
fun term_string s = |
20181 | 2654 |
let |
2655 |
val ty_n = Type ("List.nibble", []); |
|
2656 |
val ty_c = Type ("List.char", []); |
|
2657 |
val ty_l = Type ("List.list", [ty_c]); |
|
2658 |
fun mk_nib n = Const ("List.nibble.Nibble" ^ chr (n + (if n <= 9 then ord "0" else ord "A" - 10)), ty_n); |
|
2659 |
fun mk_char c = |
|
2660 |
if Symbol.is_ascii c andalso Symbol.is_printable c then |
|
2661 |
Const ("List.char.Char", ty_n --> ty_n --> ty_c) $ mk_nib (ord c div 16) $ mk_nib (ord c mod 16) |
|
2662 |
else error ("Printable ASCII character expected: " ^ quote c); |
|
2663 |
fun mk_string c t = Const ("List.list.Cons", ty_c --> ty_l --> ty_l) |
|
2664 |
$ mk_char c $ t; |
|
2665 |
in fold_rev mk_string (explode s) (Const ("List.list.Nil", ty_l)) end; |
|
20184 | 2666 |
|
2667 |
end; |
|
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2668 |
*} |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2669 |
|
13366 | 2670 |
print_ast_translation {* |
2671 |
let |
|
2672 |
fun dest_nib (Syntax.Constant c) = |
|
2673 |
(case explode c of |
|
20184 | 2674 |
["N", "i", "b", "b", "l", "e", h] => HOList.int_of_nibble h |
13366 | 2675 |
| _ => raise Match) |
2676 |
| dest_nib _ = raise Match; |
|
2677 |
||
2678 |
fun dest_chr c1 c2 = |
|
2679 |
let val c = chr (dest_nib c1 * 16 + dest_nib c2) |
|
2680 |
in if Symbol.is_printable c then c else raise Match end; |
|
2681 |
||
2682 |
fun dest_char (Syntax.Appl [Syntax.Constant "Char", c1, c2]) = dest_chr c1 c2 |
|
2683 |
| dest_char _ = raise Match; |
|
2684 |
||
2685 |
fun xstr cs = Syntax.Appl [Syntax.Constant "_xstr", Syntax.Variable (Syntax.implode_xstr cs)]; |
|
2686 |
||
2687 |
fun char_ast_tr' [c1, c2] = Syntax.Appl [Syntax.Constant "_Char", xstr [dest_chr c1 c2]] |
|
2688 |
| char_ast_tr' _ = raise Match; |
|
2689 |
||
2690 |
fun list_ast_tr' [args] = Syntax.Appl [Syntax.Constant "_String", |
|
2691 |
xstr (map dest_char (Syntax.unfold_ast "_args" args))] |
|
2692 |
| list_ast_tr' ts = raise Match; |
|
2693 |
in [("Char", char_ast_tr'), ("@list", list_ast_tr')] end; |
|
2694 |
*} |
|
2695 |
||
15392 | 2696 |
subsubsection {* Code generator setup *} |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2697 |
|
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2698 |
ML {* |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2699 |
local |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2700 |
|
16634 | 2701 |
fun list_codegen thy defs gr dep thyname b t = |
2702 |
let val (gr', ps) = foldl_map (Codegen.invoke_codegen thy defs dep thyname false) |
|
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2703 |
(gr, HOLogic.dest_list t) |
15531 | 2704 |
in SOME (gr', Pretty.list "[" "]" ps) end handle TERM _ => NONE; |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2705 |
|
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2706 |
fun dest_char (Const ("List.char.Char", _) $ c1 $ c2) = |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2707 |
let |
20184 | 2708 |
fun dest_nibble (Const (s, _)) = (HOList.int_of_nibble o unprefix "List.nibble.Nibble") s |
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2709 |
| dest_nibble _ = raise Match; |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2710 |
in |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2711 |
(SOME (dest_nibble c1 * 16 + dest_nibble c2) |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2712 |
handle Fail _ => NONE | Match => NONE) |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2713 |
end |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2714 |
| dest_char _ = NONE; |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2715 |
|
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2716 |
fun char_codegen thy defs gr dep thyname b t = |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2717 |
case (Option.map chr o dest_char) t |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2718 |
of SOME c => |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2719 |
if Symbol.is_printable c |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2720 |
then SOME (gr, (Pretty.quote o Pretty.str) c) |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2721 |
else NONE |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2722 |
| NONE => NONE; |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2723 |
|
20401 | 2724 |
val print_list = Pretty.enum "," "[" "]"; |
2725 |
||
2726 |
fun print_char c = |
|
2727 |
let |
|
2728 |
val i = ord c |
|
2729 |
in if i < 32 |
|
2730 |
then prefix "\\" (string_of_int i) |
|
2731 |
else c |
|
2732 |
end; |
|
2733 |
||
2734 |
val print_string = quote; |
|
2735 |
||
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2736 |
in |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2737 |
|
18708 | 2738 |
val list_codegen_setup = |
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2739 |
Codegen.add_codegen "list_codegen" list_codegen |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2740 |
#> Codegen.add_codegen "char_codegen" char_codegen |
20401 | 2741 |
#> CodegenPackage.add_pretty_list "ml" "Nil" "Cons" |
2742 |
print_list NONE (7, "::") |
|
2743 |
#> CodegenPackage.add_pretty_list "haskell" "Nil" "Cons" |
|
2744 |
print_list (SOME (print_char, print_string)) (5, ":") |
|
2745 |
#> CodegenPackage.add_appconst_i |
|
20105 | 2746 |
("List.char.Char", CodegenPackage.appgen_char dest_char); |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2747 |
|
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2748 |
end; |
16770
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2749 |
*} |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2750 |
|
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2751 |
types_code |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2752 |
"list" ("_ list") |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2753 |
attach (term_of) {* |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2754 |
val term_of_list = HOLogic.mk_list; |
16770
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2755 |
*} |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2756 |
attach (test) {* |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2757 |
fun gen_list' aG i j = frequency |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2758 |
[(i, fn () => aG j :: gen_list' aG (i-1) j), (1, fn () => [])] () |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2759 |
and gen_list aG i = gen_list' aG i i; |
16770
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2760 |
*} |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2761 |
"char" ("string") |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2762 |
attach (term_of) {* |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2763 |
val nibbleT = Type ("List.nibble", []); |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2764 |
|
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2765 |
fun term_of_char c = |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2766 |
Const ("List.char.Char", nibbleT --> nibbleT --> Type ("List.char", [])) $ |
20184 | 2767 |
Const ("List.nibble.Nibble" ^ HOList.nibble_of_int (ord c div 16), nibbleT) $ |
2768 |
Const ("List.nibble.Nibble" ^ HOList.nibble_of_int (ord c mod 16), nibbleT); |
|
16770
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2769 |
*} |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
2770 |
attach (test) {* |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2771 |
fun gen_char i = chr (random_range (ord "a") (Int.min (ord "a" + i, ord "z"))); |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2772 |
*} |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2773 |
|
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2774 |
consts_code "Cons" ("(_ ::/ _)") |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2775 |
|
19890 | 2776 |
code_typapp |
18702 | 2777 |
list |
2778 |
ml ("_ list") |
|
18757 | 2779 |
haskell (target_atom "[_]") |
18702 | 2780 |
|
19890 | 2781 |
code_constapp |
18702 | 2782 |
Nil |
18757 | 2783 |
ml (target_atom "[]") |
2784 |
haskell (target_atom "[]") |
|
18702 | 2785 |
|
19890 | 2786 |
code_typapp |
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2787 |
char |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2788 |
ml (target_atom "char") |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2789 |
haskell (target_atom "Char") |
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2790 |
|
20401 | 2791 |
code_constapp |
2792 |
Char |
|
2793 |
ml (target_atom "(__,/ __)") |
|
2794 |
haskell (target_atom "(__,/ __)") |
|
20189 | 2795 |
|
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2796 |
setup list_codegen_setup |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
2797 |
|
13122 | 2798 |
end |