author | nipkow |
Mon, 01 Sep 2008 22:10:42 +0200 | |
changeset 28072 | a45e8c872dc1 |
parent 28068 | f6b2d1995171 |
child 28090 | 29af3c712d2b |
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 |
27368 | 9 |
imports Plain Relation_Power Presburger Recdef ATP_Linkup |
21754
6316163ae934
moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents:
21548
diff
changeset
|
10 |
uses "Tools/string_syntax.ML" |
15131 | 11 |
begin |
923 | 12 |
|
13142 | 13 |
datatype 'a list = |
13366 | 14 |
Nil ("[]") |
15 |
| Cons 'a "'a list" (infixr "#" 65) |
|
923 | 16 |
|
15392 | 17 |
subsection{*Basic list processing functions*} |
15302 | 18 |
|
923 | 19 |
consts |
13366 | 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 |
map :: "('a=>'b) => ('a list => 'b list)" |
|
23096 | 30 |
listsum :: "'a list => 'a::monoid_add" |
13366 | 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" |
27693 | 42 |
removeAll :: "'a => 'a list => 'a list" |
13366 | 43 |
"distinct":: "'a list => bool" |
44 |
replicate :: "nat => 'a => 'a list" |
|
19390 | 45 |
splice :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" |
15302 | 46 |
|
923 | 47 |
|
13146 | 48 |
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
|
49 |
|
923 | 50 |
syntax |
13366 | 51 |
-- {* list Enumeration *} |
52 |
"@list" :: "args => 'a list" ("[(_)]") |
|
923 | 53 |
|
13366 | 54 |
-- {* Special syntax for filter *} |
23279
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
55 |
"@filter" :: "[pttrn, 'a list, bool] => 'a list" ("(1[_<-_./ _])") |
923 | 56 |
|
13366 | 57 |
-- {* list update *} |
58 |
"_lupdbind":: "['a, 'a] => lupdbind" ("(2_ :=/ _)") |
|
59 |
"" :: "lupdbind => lupdbinds" ("_") |
|
60 |
"_lupdbinds" :: "[lupdbind, lupdbinds] => lupdbinds" ("_,/ _") |
|
61 |
"_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
|
62 |
|
923 | 63 |
translations |
13366 | 64 |
"[x, xs]" == "x#[xs]" |
65 |
"[x]" == "x#[]" |
|
23279
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
66 |
"[x<-xs . P]"== "filter (%x. P) xs" |
923 | 67 |
|
13366 | 68 |
"_LUpdate xs (_lupdbinds b bs)"== "_LUpdate (_LUpdate xs b) bs" |
69 |
"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
|
70 |
|
5427 | 71 |
|
12114
a8e860c86252
eliminated old "symbols" syntax, use "xsymbols" instead;
wenzelm
parents:
10832
diff
changeset
|
72 |
syntax (xsymbols) |
23279
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
73 |
"@filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<leftarrow>_ ./ _])") |
14565 | 74 |
syntax (HTML output) |
23279
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
75 |
"@filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<leftarrow>_ ./ _])") |
3342
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3320
diff
changeset
|
76 |
|
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3320
diff
changeset
|
77 |
|
13142 | 78 |
text {* |
14589 | 79 |
Function @{text size} is overloaded for all datatypes. Users may |
13366 | 80 |
refer to the list version as @{text length}. *} |
13142 | 81 |
|
19363 | 82 |
abbreviation |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
83 |
length :: "'a list => nat" where |
19363 | 84 |
"length == size" |
15302 | 85 |
|
5183 | 86 |
primrec |
15307 | 87 |
"hd(x#xs) = x" |
88 |
||
5183 | 89 |
primrec |
15307 | 90 |
"tl([]) = []" |
91 |
"tl(x#xs) = xs" |
|
92 |
||
5183 | 93 |
primrec |
15307 | 94 |
"last(x#xs) = (if xs=[] then x else last xs)" |
95 |
||
5183 | 96 |
primrec |
15307 | 97 |
"butlast []= []" |
98 |
"butlast(x#xs) = (if xs=[] then [] else x#butlast xs)" |
|
99 |
||
5183 | 100 |
primrec |
15307 | 101 |
"set [] = {}" |
102 |
"set (x#xs) = insert x (set xs)" |
|
103 |
||
5183 | 104 |
primrec |
15307 | 105 |
"map f [] = []" |
106 |
"map f (x#xs) = f(x)#map f xs" |
|
107 |
||
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
108 |
primrec |
25559 | 109 |
append :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" (infixr "@" 65) |
110 |
where |
|
111 |
append_Nil:"[] @ ys = ys" |
|
112 |
| append_Cons: "(x#xs) @ ys = x # xs @ ys" |
|
15307 | 113 |
|
5183 | 114 |
primrec |
15307 | 115 |
"rev([]) = []" |
116 |
"rev(x#xs) = rev(xs) @ [x]" |
|
117 |
||
5183 | 118 |
primrec |
15307 | 119 |
"filter P [] = []" |
120 |
"filter P (x#xs) = (if P x then x#filter P xs else filter P xs)" |
|
121 |
||
5183 | 122 |
primrec |
15307 | 123 |
foldl_Nil:"foldl f a [] = a" |
124 |
foldl_Cons: "foldl f a (x#xs) = foldl f (f a x) xs" |
|
125 |
||
8000 | 126 |
primrec |
15307 | 127 |
"foldr f [] a = a" |
128 |
"foldr f (x#xs) a = f x (foldr f xs a)" |
|
129 |
||
5183 | 130 |
primrec |
15307 | 131 |
"concat([]) = []" |
132 |
"concat(x#xs) = x @ concat(xs)" |
|
133 |
||
5183 | 134 |
primrec |
23096 | 135 |
"listsum [] = 0" |
136 |
"listsum (x # xs) = x + listsum xs" |
|
137 |
||
138 |
primrec |
|
15307 | 139 |
drop_Nil:"drop n [] = []" |
140 |
drop_Cons: "drop n (x#xs) = (case n of 0 => x#xs | Suc(m) => drop m xs)" |
|
141 |
-- {*Warning: simpset does not contain this definition, but separate |
|
142 |
theorems for @{text "n = 0"} and @{text "n = Suc k"} *} |
|
143 |
||
5183 | 144 |
primrec |
15307 | 145 |
take_Nil:"take n [] = []" |
146 |
take_Cons: "take n (x#xs) = (case n of 0 => [] | Suc(m) => x # take m xs)" |
|
147 |
-- {*Warning: simpset does not contain this definition, but separate |
|
148 |
theorems for @{text "n = 0"} and @{text "n = Suc k"} *} |
|
149 |
||
13142 | 150 |
primrec |
15307 | 151 |
nth_Cons:"(x#xs)!n = (case n of 0 => x | (Suc k) => xs!k)" |
152 |
-- {*Warning: simpset does not contain this definition, but separate |
|
153 |
theorems for @{text "n = 0"} and @{text "n = Suc k"} *} |
|
154 |
||
5183 | 155 |
primrec |
15307 | 156 |
"[][i:=v] = []" |
157 |
"(x#xs)[i:=v] = (case i of 0 => v # xs | Suc j => x # xs[j:=v])" |
|
158 |
||
159 |
primrec |
|
160 |
"takeWhile P [] = []" |
|
161 |
"takeWhile P (x#xs) = (if P x then x#takeWhile P xs else [])" |
|
162 |
||
5183 | 163 |
primrec |
15307 | 164 |
"dropWhile P [] = []" |
165 |
"dropWhile P (x#xs) = (if P x then dropWhile P xs else x#xs)" |
|
166 |
||
5183 | 167 |
primrec |
15307 | 168 |
"zip xs [] = []" |
169 |
zip_Cons: "zip xs (y#ys) = (case xs of [] => [] | z#zs => (z,y)#zip zs ys)" |
|
170 |
-- {*Warning: simpset does not contain this definition, but separate |
|
171 |
theorems for @{text "xs = []"} and @{text "xs = z # zs"} *} |
|
172 |
||
5427 | 173 |
primrec |
15425 | 174 |
upt_0: "[i..<0] = []" |
175 |
upt_Suc: "[i..<(Suc j)] = (if i <= j then [i..<j] @ [j] else [])" |
|
15307 | 176 |
|
5183 | 177 |
primrec |
15307 | 178 |
"distinct [] = True" |
179 |
"distinct (x#xs) = (x ~: set xs \<and> distinct xs)" |
|
180 |
||
5183 | 181 |
primrec |
15307 | 182 |
"remdups [] = []" |
183 |
"remdups (x#xs) = (if x : set xs then remdups xs else x # remdups xs)" |
|
184 |
||
5183 | 185 |
primrec |
15307 | 186 |
"remove1 x [] = []" |
187 |
"remove1 x (y#xs) = (if x=y then xs else y # remove1 x xs)" |
|
188 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
189 |
primrec |
27693 | 190 |
"removeAll x [] = []" |
191 |
"removeAll x (y#xs) = (if x=y then removeAll x xs else y # removeAll x xs)" |
|
192 |
||
193 |
primrec |
|
15307 | 194 |
replicate_0: "replicate 0 x = []" |
195 |
replicate_Suc: "replicate (Suc n) x = x # replicate n x" |
|
196 |
||
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
197 |
definition |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
198 |
rotate1 :: "'a list \<Rightarrow> 'a list" where |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
199 |
"rotate1 xs = (case xs of [] \<Rightarrow> [] | x#xs \<Rightarrow> xs @ [x])" |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
200 |
|
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
201 |
definition |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
202 |
rotate :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
203 |
"rotate n = rotate1 ^ n" |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
204 |
|
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
205 |
definition |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
206 |
list_all2 :: "('a => 'b => bool) => 'a list => 'b list => bool" where |
25966 | 207 |
[code func del]: "list_all2 P xs ys = |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
208 |
(length xs = length ys \<and> (\<forall>(x, y) \<in> set (zip xs ys). P x y))" |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
209 |
|
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
210 |
definition |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
211 |
sublist :: "'a list => nat set => 'a list" where |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
212 |
"sublist xs A = map fst (filter (\<lambda>p. snd p \<in> A) (zip xs [0..<size xs]))" |
17086 | 213 |
|
214 |
primrec |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
215 |
"splice [] ys = ys" |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
216 |
"splice (x#xs) ys = (if ys=[] then x#xs else x # hd ys # splice xs (tl ys))" |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
217 |
-- {*Warning: simpset does not contain the second eqn but a derived one. *} |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
218 |
|
26771 | 219 |
text{* |
220 |
\begin{figure}[htbp] |
|
221 |
\fbox{ |
|
222 |
\begin{tabular}{l} |
|
27381 | 223 |
@{lemma "[a,b]@[c,d] = [a,b,c,d]" by simp}\\ |
224 |
@{lemma "length [a,b,c] = 3" by simp}\\ |
|
225 |
@{lemma "set [a,b,c] = {a,b,c}" by simp}\\ |
|
226 |
@{lemma "map f [a,b,c] = [f a, f b, f c]" by simp}\\ |
|
227 |
@{lemma "rev [a,b,c] = [c,b,a]" by simp}\\ |
|
228 |
@{lemma "hd [a,b,c,d] = a" by simp}\\ |
|
229 |
@{lemma "tl [a,b,c,d] = [b,c,d]" by simp}\\ |
|
230 |
@{lemma "last [a,b,c,d] = d" by simp}\\ |
|
231 |
@{lemma "butlast [a,b,c,d] = [a,b,c]" by simp}\\ |
|
232 |
@{lemma[source] "filter (\<lambda>n::nat. n<2) [0,2,1] = [0,1]" by simp}\\ |
|
233 |
@{lemma "concat [[a,b],[c,d,e],[],[f]] = [a,b,c,d,e,f]" by simp}\\ |
|
234 |
@{lemma "foldl f x [a,b,c] = f (f (f x a) b) c" by simp}\\ |
|
235 |
@{lemma "foldr f [a,b,c] x = f a (f b (f c x))" by simp}\\ |
|
236 |
@{lemma "zip [a,b,c] [x,y,z] = [(a,x),(b,y),(c,z)]" by simp}\\ |
|
237 |
@{lemma "zip [a,b] [x,y,z] = [(a,x),(b,y)]" by simp}\\ |
|
238 |
@{lemma "splice [a,b,c] [x,y,z] = [a,x,b,y,c,z]" by simp}\\ |
|
239 |
@{lemma "splice [a,b,c,d] [x,y] = [a,x,b,y,c,d]" by simp}\\ |
|
240 |
@{lemma "take 2 [a,b,c,d] = [a,b]" by simp}\\ |
|
241 |
@{lemma "take 6 [a,b,c,d] = [a,b,c,d]" by simp}\\ |
|
242 |
@{lemma "drop 2 [a,b,c,d] = [c,d]" by simp}\\ |
|
243 |
@{lemma "drop 6 [a,b,c,d] = []" by simp}\\ |
|
244 |
@{lemma "takeWhile (%n::nat. n<3) [1,2,3,0] = [1,2]" by simp}\\ |
|
245 |
@{lemma "dropWhile (%n::nat. n<3) [1,2,3,0] = [3,0]" by simp}\\ |
|
246 |
@{lemma "distinct [2,0,1::nat]" by simp}\\ |
|
247 |
@{lemma "remdups [2,0,2,1::nat,2] = [0,1,2]" by simp}\\ |
|
248 |
@{lemma "remove1 2 [2,0,2,1::nat,2] = [0,2,1,2]" by simp}\\ |
|
27693 | 249 |
@{lemma "removeAll 2 [2,0,2,1::nat,2] = [0,1]" by simp}\\ |
27381 | 250 |
@{lemma "nth [a,b,c,d] 2 = c" by simp}\\ |
251 |
@{lemma "[a,b,c,d][2 := x] = [a,b,x,d]" by simp}\\ |
|
252 |
@{lemma "sublist [a,b,c,d,e] {0,2,3} = [a,c,d]" by (simp add:sublist_def)}\\ |
|
253 |
@{lemma "rotate1 [a,b,c,d] = [b,c,d,a]" by (simp add:rotate1_def)}\\ |
|
254 |
@{lemma "rotate 3 [a,b,c,d] = [d,a,b,c]" by (simp add:rotate1_def rotate_def nat_number)}\\ |
|
255 |
@{lemma "replicate 4 a = [a,a,a,a]" by (simp add:nat_number)}\\ |
|
256 |
@{lemma "[2..<5] = [2,3,4]" by (simp add:nat_number)}\\ |
|
257 |
@{lemma "listsum [1,2,3::nat] = 6" by simp} |
|
26771 | 258 |
\end{tabular}} |
259 |
\caption{Characteristic examples} |
|
260 |
\label{fig:Characteristic} |
|
261 |
\end{figure} |
|
262 |
Figure~\ref{fig:Characteristic} shows charachteristic examples |
|
263 |
that should give an intuitive understanding of the above functions. |
|
264 |
*} |
|
265 |
||
24616 | 266 |
text{* The following simple sort functions are intended for proofs, |
267 |
not for efficient implementations. *} |
|
268 |
||
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
269 |
context linorder |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
270 |
begin |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
271 |
|
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
272 |
fun sorted :: "'a list \<Rightarrow> bool" where |
24697 | 273 |
"sorted [] \<longleftrightarrow> True" | |
274 |
"sorted [x] \<longleftrightarrow> True" | |
|
25062 | 275 |
"sorted (x#y#zs) \<longleftrightarrow> x <= y \<and> sorted (y#zs)" |
24697 | 276 |
|
25559 | 277 |
primrec insort :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
24697 | 278 |
"insort x [] = [x]" | |
25062 | 279 |
"insort x (y#ys) = (if x <= y then (x#y#ys) else y#(insort x ys))" |
24697 | 280 |
|
25559 | 281 |
primrec sort :: "'a list \<Rightarrow> 'a list" where |
24697 | 282 |
"sort [] = []" | |
283 |
"sort (x#xs) = insort x (sort xs)" |
|
24616 | 284 |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
285 |
end |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
286 |
|
24616 | 287 |
|
23388 | 288 |
subsubsection {* List comprehension *} |
23192 | 289 |
|
24349 | 290 |
text{* Input syntax for Haskell-like list comprehension notation. |
291 |
Typical example: @{text"[(x,y). x \<leftarrow> xs, y \<leftarrow> ys, x \<noteq> y]"}, |
|
292 |
the list of all pairs of distinct elements from @{text xs} and @{text ys}. |
|
293 |
The syntax is as in Haskell, except that @{text"|"} becomes a dot |
|
294 |
(like in Isabelle's set comprehension): @{text"[e. x \<leftarrow> xs, \<dots>]"} rather than |
|
295 |
\verb![e| x <- xs, ...]!. |
|
296 |
||
297 |
The qualifiers after the dot are |
|
298 |
\begin{description} |
|
299 |
\item[generators] @{text"p \<leftarrow> xs"}, |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
300 |
where @{text p} is a pattern and @{text xs} an expression of list type, or |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
301 |
\item[guards] @{text"b"}, where @{text b} is a boolean expression. |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
302 |
%\item[local bindings] @ {text"let x = e"}. |
24349 | 303 |
\end{description} |
23240 | 304 |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
305 |
Just like in Haskell, list comprehension is just a shorthand. To avoid |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
306 |
misunderstandings, the translation into desugared form is not reversed |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
307 |
upon output. Note that the translation of @{text"[e. x \<leftarrow> xs]"} is |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
308 |
optmized to @{term"map (%x. e) xs"}. |
23240 | 309 |
|
24349 | 310 |
It is easy to write short list comprehensions which stand for complex |
311 |
expressions. During proofs, they may become unreadable (and |
|
312 |
mangled). In such cases it can be advisable to introduce separate |
|
313 |
definitions for the list comprehensions in question. *} |
|
314 |
||
23209 | 315 |
(* |
23240 | 316 |
Proper theorem proving support would be nice. For example, if |
23192 | 317 |
@{text"set[f x y. x \<leftarrow> xs, y \<leftarrow> ys, P x y]"} |
318 |
produced something like |
|
23209 | 319 |
@{term"{z. EX x: set xs. EX y:set ys. P x y \<and> z = f x y}"}. |
320 |
*) |
|
321 |
||
23240 | 322 |
nonterminals lc_qual lc_quals |
23192 | 323 |
|
324 |
syntax |
|
23240 | 325 |
"_listcompr" :: "'a \<Rightarrow> lc_qual \<Rightarrow> lc_quals \<Rightarrow> 'a list" ("[_ . __") |
24349 | 326 |
"_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual" ("_ <- _") |
23240 | 327 |
"_lc_test" :: "bool \<Rightarrow> lc_qual" ("_") |
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
328 |
(*"_lc_let" :: "letbinds => lc_qual" ("let _")*) |
23240 | 329 |
"_lc_end" :: "lc_quals" ("]") |
330 |
"_lc_quals" :: "lc_qual \<Rightarrow> lc_quals \<Rightarrow> lc_quals" (", __") |
|
24349 | 331 |
"_lc_abs" :: "'a => 'b list => 'b list" |
23192 | 332 |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
333 |
(* These are easier than ML code but cannot express the optimized |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
334 |
translation of [e. p<-xs] |
23192 | 335 |
translations |
24349 | 336 |
"[e. p<-xs]" => "concat(map (_lc_abs p [e]) xs)" |
23240 | 337 |
"_listcompr e (_lc_gen p xs) (_lc_quals Q Qs)" |
24349 | 338 |
=> "concat (map (_lc_abs p (_listcompr e Q Qs)) xs)" |
23240 | 339 |
"[e. P]" => "if P then [e] else []" |
340 |
"_listcompr e (_lc_test P) (_lc_quals Q Qs)" |
|
341 |
=> "if P then (_listcompr e Q Qs) else []" |
|
24349 | 342 |
"_listcompr e (_lc_let b) (_lc_quals Q Qs)" |
343 |
=> "_Let b (_listcompr e Q Qs)" |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
344 |
*) |
23240 | 345 |
|
23279
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
346 |
syntax (xsymbols) |
24349 | 347 |
"_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual" ("_ \<leftarrow> _") |
23279
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
348 |
syntax (HTML output) |
24349 | 349 |
"_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual" ("_ \<leftarrow> _") |
350 |
||
351 |
parse_translation (advanced) {* |
|
352 |
let |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
353 |
val NilC = Syntax.const @{const_name Nil}; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
354 |
val ConsC = Syntax.const @{const_name Cons}; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
355 |
val mapC = Syntax.const @{const_name map}; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
356 |
val concatC = Syntax.const @{const_name concat}; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
357 |
val IfC = Syntax.const @{const_name If}; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
358 |
fun singl x = ConsC $ x $ NilC; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
359 |
|
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
360 |
fun pat_tr ctxt p e opti = (* %x. case x of p => e | _ => [] *) |
24349 | 361 |
let |
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
362 |
val x = Free (Name.variant (add_term_free_names (p$e, [])) "x", dummyT); |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
363 |
val e = if opti then singl e else e; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
364 |
val case1 = Syntax.const "_case1" $ p $ e; |
24349 | 365 |
val case2 = Syntax.const "_case1" $ Syntax.const Term.dummy_patternN |
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
366 |
$ NilC; |
24349 | 367 |
val cs = Syntax.const "_case2" $ case1 $ case2 |
368 |
val ft = DatatypeCase.case_tr false DatatypePackage.datatype_of_constr |
|
369 |
ctxt [x, cs] |
|
370 |
in lambda x ft end; |
|
371 |
||
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
372 |
fun abs_tr ctxt (p as Free(s,T)) e opti = |
24349 | 373 |
let val thy = ProofContext.theory_of ctxt; |
374 |
val s' = Sign.intern_const thy s |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
375 |
in if Sign.declared_const thy s' |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
376 |
then (pat_tr ctxt p e opti, false) |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
377 |
else (lambda p e, true) |
24349 | 378 |
end |
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
379 |
| abs_tr ctxt p e opti = (pat_tr ctxt p e opti, false); |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
380 |
|
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
381 |
fun lc_tr ctxt [e, Const("_lc_test",_)$b, qs] = |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
382 |
let val res = case qs of Const("_lc_end",_) => singl e |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
383 |
| Const("_lc_quals",_)$q$qs => lc_tr ctxt [e,q,qs]; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
384 |
in IfC $ b $ res $ NilC end |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
385 |
| lc_tr ctxt [e, Const("_lc_gen",_) $ p $ es, Const("_lc_end",_)] = |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
386 |
(case abs_tr ctxt p e true of |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
387 |
(f,true) => mapC $ f $ es |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
388 |
| (f, false) => concatC $ (mapC $ f $ es)) |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
389 |
| lc_tr ctxt [e, Const("_lc_gen",_) $ p $ es, Const("_lc_quals",_)$q$qs] = |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
390 |
let val e' = lc_tr ctxt [e,q,qs]; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
391 |
in concatC $ (mapC $ (fst(abs_tr ctxt p e' false)) $ es) end |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
392 |
|
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
393 |
in [("_listcompr", lc_tr)] end |
24349 | 394 |
*} |
23279
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
395 |
|
23240 | 396 |
(* |
397 |
term "[(x,y,z). b]" |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
398 |
term "[(x,y,z). x\<leftarrow>xs]" |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
399 |
term "[e x y. x\<leftarrow>xs, y\<leftarrow>ys]" |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
400 |
term "[(x,y,z). x<a, x>b]" |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
401 |
term "[(x,y,z). x\<leftarrow>xs, x>b]" |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
402 |
term "[(x,y,z). x<a, x\<leftarrow>xs]" |
24349 | 403 |
term "[(x,y). Cons True x \<leftarrow> xs]" |
404 |
term "[(x,y,z). Cons x [] \<leftarrow> xs]" |
|
23240 | 405 |
term "[(x,y,z). x<a, x>b, x=d]" |
406 |
term "[(x,y,z). x<a, x>b, y\<leftarrow>ys]" |
|
407 |
term "[(x,y,z). x<a, x\<leftarrow>xs,y>b]" |
|
408 |
term "[(x,y,z). x<a, x\<leftarrow>xs, y\<leftarrow>ys]" |
|
409 |
term "[(x,y,z). x\<leftarrow>xs, x>b, y<a]" |
|
410 |
term "[(x,y,z). x\<leftarrow>xs, x>b, y\<leftarrow>ys]" |
|
411 |
term "[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,y>x]" |
|
412 |
term "[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,z\<leftarrow>zs]" |
|
24349 | 413 |
term "[(x,y). x\<leftarrow>xs, let xx = x+x, y\<leftarrow>ys, y \<noteq> xx]" |
23192 | 414 |
*) |
415 |
||
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
416 |
subsubsection {* @{const Nil} and @{const Cons} *} |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
417 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
418 |
lemma not_Cons_self [simp]: |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
419 |
"xs \<noteq> x # xs" |
13145 | 420 |
by (induct xs) auto |
13114 | 421 |
|
13142 | 422 |
lemmas not_Cons_self2 [simp] = not_Cons_self [symmetric] |
13114 | 423 |
|
13142 | 424 |
lemma neq_Nil_conv: "(xs \<noteq> []) = (\<exists>y ys. xs = y # ys)" |
13145 | 425 |
by (induct xs) auto |
13114 | 426 |
|
13142 | 427 |
lemma length_induct: |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
428 |
"(\<And>xs. \<forall>ys. length ys < length xs \<longrightarrow> P ys \<Longrightarrow> P xs) \<Longrightarrow> P xs" |
17589 | 429 |
by (rule measure_induct [of length]) iprover |
13114 | 430 |
|
431 |
||
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
432 |
subsubsection {* @{const length} *} |
13114 | 433 |
|
13142 | 434 |
text {* |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
435 |
Needs to come before @{text "@"} because of theorem @{text |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
436 |
append_eq_append_conv}. |
13142 | 437 |
*} |
13114 | 438 |
|
13142 | 439 |
lemma length_append [simp]: "length (xs @ ys) = length xs + length ys" |
13145 | 440 |
by (induct xs) auto |
13114 | 441 |
|
13142 | 442 |
lemma length_map [simp]: "length (map f xs) = length xs" |
13145 | 443 |
by (induct xs) auto |
13114 | 444 |
|
13142 | 445 |
lemma length_rev [simp]: "length (rev xs) = length xs" |
13145 | 446 |
by (induct xs) auto |
13114 | 447 |
|
13142 | 448 |
lemma length_tl [simp]: "length (tl xs) = length xs - 1" |
13145 | 449 |
by (cases xs) auto |
13114 | 450 |
|
13142 | 451 |
lemma length_0_conv [iff]: "(length xs = 0) = (xs = [])" |
13145 | 452 |
by (induct xs) auto |
13114 | 453 |
|
13142 | 454 |
lemma length_greater_0_conv [iff]: "(0 < length xs) = (xs \<noteq> [])" |
13145 | 455 |
by (induct xs) auto |
13114 | 456 |
|
23479 | 457 |
lemma length_pos_if_in_set: "x : set xs \<Longrightarrow> length xs > 0" |
458 |
by auto |
|
459 |
||
13114 | 460 |
lemma length_Suc_conv: |
13145 | 461 |
"(length xs = Suc n) = (\<exists>y ys. xs = y # ys \<and> length ys = n)" |
462 |
by (induct xs) auto |
|
13142 | 463 |
|
14025 | 464 |
lemma Suc_length_conv: |
465 |
"(Suc n = length xs) = (\<exists>y ys. xs = y # ys \<and> length ys = n)" |
|
14208 | 466 |
apply (induct xs, simp, simp) |
14025 | 467 |
apply blast |
468 |
done |
|
469 |
||
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
470 |
lemma impossible_Cons: "length xs <= length ys ==> xs = x # ys = False" |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
471 |
by (induct xs) auto |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
472 |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
473 |
lemma list_induct2 [consumes 1, case_names Nil Cons]: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
474 |
"length xs = length ys \<Longrightarrow> P [] [] \<Longrightarrow> |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
475 |
(\<And>x xs y ys. length xs = length ys \<Longrightarrow> P xs ys \<Longrightarrow> P (x#xs) (y#ys)) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
476 |
\<Longrightarrow> P xs ys" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
477 |
proof (induct xs arbitrary: ys) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
478 |
case Nil then show ?case by simp |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
479 |
next |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
480 |
case (Cons x xs ys) then show ?case by (cases ys) simp_all |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
481 |
qed |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
482 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
483 |
lemma list_induct3 [consumes 2, case_names Nil Cons]: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
484 |
"length xs = length ys \<Longrightarrow> length ys = length zs \<Longrightarrow> P [] [] [] \<Longrightarrow> |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
485 |
(\<And>x xs y ys z zs. length xs = length ys \<Longrightarrow> length ys = length zs \<Longrightarrow> P xs ys zs \<Longrightarrow> P (x#xs) (y#ys) (z#zs)) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
486 |
\<Longrightarrow> P xs ys zs" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
487 |
proof (induct xs arbitrary: ys zs) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
488 |
case Nil then show ?case by simp |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
489 |
next |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
490 |
case (Cons x xs ys zs) then show ?case by (cases ys, simp_all) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
491 |
(cases zs, simp_all) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
492 |
qed |
13114 | 493 |
|
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
494 |
lemma list_induct2': |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
495 |
"\<lbrakk> P [] []; |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
496 |
\<And>x xs. P (x#xs) []; |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
497 |
\<And>y ys. P [] (y#ys); |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
498 |
\<And>x xs y ys. P xs ys \<Longrightarrow> P (x#xs) (y#ys) \<rbrakk> |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
499 |
\<Longrightarrow> P xs ys" |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
500 |
by (induct xs arbitrary: ys) (case_tac x, auto)+ |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
501 |
|
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
502 |
lemma neq_if_length_neq: "length xs \<noteq> length ys \<Longrightarrow> (xs = ys) == False" |
24349 | 503 |
by (rule Eq_FalseI) auto |
24037 | 504 |
|
505 |
simproc_setup list_neq ("(xs::'a list) = ys") = {* |
|
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
506 |
(* |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
507 |
Reduces xs=ys to False if xs and ys cannot be of the same length. |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
508 |
This is the case if the atomic sublists of one are a submultiset |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
509 |
of those of the other list and there are fewer Cons's in one than the other. |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
510 |
*) |
24037 | 511 |
|
512 |
let |
|
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
513 |
|
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
514 |
fun len (Const("List.list.Nil",_)) acc = acc |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
515 |
| len (Const("List.list.Cons",_) $ _ $ xs) (ts,n) = len xs (ts,n+1) |
23029 | 516 |
| len (Const("List.append",_) $ xs $ ys) acc = len xs (len ys acc) |
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
517 |
| len (Const("List.rev",_) $ xs) acc = len xs acc |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
518 |
| len (Const("List.map",_) $ _ $ xs) acc = len xs acc |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
519 |
| len t (ts,n) = (t::ts,n); |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
520 |
|
24037 | 521 |
fun list_neq _ ss ct = |
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
522 |
let |
24037 | 523 |
val (Const(_,eqT) $ lhs $ rhs) = Thm.term_of ct; |
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
524 |
val (ls,m) = len lhs ([],0) and (rs,n) = len rhs ([],0); |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
525 |
fun prove_neq() = |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
526 |
let |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
527 |
val Type(_,listT::_) = eqT; |
22994 | 528 |
val size = HOLogic.size_const listT; |
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
529 |
val eq_len = HOLogic.mk_eq (size $ lhs, size $ rhs); |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
530 |
val neq_len = HOLogic.mk_Trueprop (HOLogic.Not $ eq_len); |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
531 |
val thm = Goal.prove (Simplifier.the_context ss) [] [] neq_len |
22633 | 532 |
(K (simp_tac (Simplifier.inherit_context ss @{simpset}) 1)); |
533 |
in SOME (thm RS @{thm neq_if_length_neq}) end |
|
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
534 |
in |
23214 | 535 |
if m < n andalso submultiset (op aconv) (ls,rs) orelse |
536 |
n < m andalso submultiset (op aconv) (rs,ls) |
|
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
537 |
then prove_neq() else NONE |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
538 |
end; |
24037 | 539 |
in list_neq end; |
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
540 |
*} |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
541 |
|
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
542 |
|
15392 | 543 |
subsubsection {* @{text "@"} -- append *} |
13114 | 544 |
|
13142 | 545 |
lemma append_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)" |
13145 | 546 |
by (induct xs) auto |
13114 | 547 |
|
13142 | 548 |
lemma append_Nil2 [simp]: "xs @ [] = xs" |
13145 | 549 |
by (induct xs) auto |
3507 | 550 |
|
24449 | 551 |
interpretation semigroup_append: semigroup_add ["op @"] |
552 |
by unfold_locales simp |
|
553 |
interpretation monoid_append: monoid_add ["[]" "op @"] |
|
554 |
by unfold_locales (simp+) |
|
555 |
||
13142 | 556 |
lemma append_is_Nil_conv [iff]: "(xs @ ys = []) = (xs = [] \<and> ys = [])" |
13145 | 557 |
by (induct xs) auto |
13114 | 558 |
|
13142 | 559 |
lemma Nil_is_append_conv [iff]: "([] = xs @ ys) = (xs = [] \<and> ys = [])" |
13145 | 560 |
by (induct xs) auto |
13114 | 561 |
|
13142 | 562 |
lemma append_self_conv [iff]: "(xs @ ys = xs) = (ys = [])" |
13145 | 563 |
by (induct xs) auto |
13114 | 564 |
|
13142 | 565 |
lemma self_append_conv [iff]: "(xs = xs @ ys) = (ys = [])" |
13145 | 566 |
by (induct xs) auto |
13114 | 567 |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
568 |
lemma append_eq_append_conv [simp, noatp]: |
24526 | 569 |
"length xs = length ys \<or> length us = length vs |
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
570 |
==> (xs@us = ys@vs) = (xs=ys \<and> us=vs)" |
24526 | 571 |
apply (induct xs arbitrary: ys) |
14208 | 572 |
apply (case_tac ys, simp, force) |
573 |
apply (case_tac ys, force, simp) |
|
13145 | 574 |
done |
13142 | 575 |
|
24526 | 576 |
lemma append_eq_append_conv2: "(xs @ ys = zs @ ts) = |
577 |
(EX us. xs = zs @ us & us @ ys = ts | xs @ us = zs & ys = us@ ts)" |
|
578 |
apply (induct xs arbitrary: ys zs ts) |
|
14495 | 579 |
apply fastsimp |
580 |
apply(case_tac zs) |
|
581 |
apply simp |
|
582 |
apply fastsimp |
|
583 |
done |
|
584 |
||
13142 | 585 |
lemma same_append_eq [iff]: "(xs @ ys = xs @ zs) = (ys = zs)" |
13145 | 586 |
by simp |
13142 | 587 |
|
588 |
lemma append1_eq_conv [iff]: "(xs @ [x] = ys @ [y]) = (xs = ys \<and> x = y)" |
|
13145 | 589 |
by simp |
13114 | 590 |
|
13142 | 591 |
lemma append_same_eq [iff]: "(ys @ xs = zs @ xs) = (ys = zs)" |
13145 | 592 |
by simp |
13114 | 593 |
|
13142 | 594 |
lemma append_self_conv2 [iff]: "(xs @ ys = ys) = (xs = [])" |
13145 | 595 |
using append_same_eq [of _ _ "[]"] by auto |
3507 | 596 |
|
13142 | 597 |
lemma self_append_conv2 [iff]: "(ys = xs @ ys) = (xs = [])" |
13145 | 598 |
using append_same_eq [of "[]"] by auto |
13114 | 599 |
|
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
600 |
lemma hd_Cons_tl [simp,noatp]: "xs \<noteq> [] ==> hd xs # tl xs = xs" |
13145 | 601 |
by (induct xs) auto |
13114 | 602 |
|
13142 | 603 |
lemma hd_append: "hd (xs @ ys) = (if xs = [] then hd ys else hd xs)" |
13145 | 604 |
by (induct xs) auto |
13114 | 605 |
|
13142 | 606 |
lemma hd_append2 [simp]: "xs \<noteq> [] ==> hd (xs @ ys) = hd xs" |
13145 | 607 |
by (simp add: hd_append split: list.split) |
13114 | 608 |
|
13142 | 609 |
lemma tl_append: "tl (xs @ ys) = (case xs of [] => tl ys | z#zs => zs @ ys)" |
13145 | 610 |
by (simp split: list.split) |
13114 | 611 |
|
13142 | 612 |
lemma tl_append2 [simp]: "xs \<noteq> [] ==> tl (xs @ ys) = tl xs @ ys" |
13145 | 613 |
by (simp add: tl_append split: list.split) |
13114 | 614 |
|
615 |
||
14300 | 616 |
lemma Cons_eq_append_conv: "x#xs = ys@zs = |
617 |
(ys = [] & x#xs = zs | (EX ys'. x#ys' = ys & xs = ys'@zs))" |
|
618 |
by(cases ys) auto |
|
619 |
||
15281 | 620 |
lemma append_eq_Cons_conv: "(ys@zs = x#xs) = |
621 |
(ys = [] & zs = x#xs | (EX ys'. ys = x#ys' & ys'@zs = xs))" |
|
622 |
by(cases ys) auto |
|
623 |
||
14300 | 624 |
|
13142 | 625 |
text {* Trivial rules for solving @{text "@"}-equations automatically. *} |
13114 | 626 |
|
627 |
lemma eq_Nil_appendI: "xs = ys ==> xs = [] @ ys" |
|
13145 | 628 |
by simp |
13114 | 629 |
|
13142 | 630 |
lemma Cons_eq_appendI: |
13145 | 631 |
"[| x # xs1 = ys; xs = xs1 @ zs |] ==> x # xs = ys @ zs" |
632 |
by (drule sym) simp |
|
13114 | 633 |
|
13142 | 634 |
lemma append_eq_appendI: |
13145 | 635 |
"[| xs @ xs1 = zs; ys = xs1 @ us |] ==> xs @ ys = zs @ us" |
636 |
by (drule sym) simp |
|
13114 | 637 |
|
638 |
||
13142 | 639 |
text {* |
13145 | 640 |
Simplification procedure for all list equalities. |
641 |
Currently only tries to rearrange @{text "@"} to see if |
|
642 |
- both lists end in a singleton list, |
|
643 |
- or both lists end in the same list. |
|
13142 | 644 |
*} |
645 |
||
26480 | 646 |
ML {* |
3507 | 647 |
local |
648 |
||
13114 | 649 |
fun last (cons as Const("List.list.Cons",_) $ _ $ xs) = |
13462 | 650 |
(case xs of Const("List.list.Nil",_) => cons | _ => last xs) |
23029 | 651 |
| last (Const("List.append",_) $ _ $ ys) = last ys |
13462 | 652 |
| last t = t; |
13114 | 653 |
|
654 |
fun list1 (Const("List.list.Cons",_) $ _ $ Const("List.list.Nil",_)) = true |
|
13462 | 655 |
| list1 _ = false; |
13114 | 656 |
|
657 |
fun butlast ((cons as Const("List.list.Cons",_) $ x) $ xs) = |
|
13462 | 658 |
(case xs of Const("List.list.Nil",_) => xs | _ => cons $ butlast xs) |
23029 | 659 |
| butlast ((app as Const("List.append",_) $ xs) $ ys) = app $ butlast ys |
13462 | 660 |
| butlast xs = Const("List.list.Nil",fastype_of xs); |
13114 | 661 |
|
22633 | 662 |
val rearr_ss = HOL_basic_ss addsimps [@{thm append_assoc}, |
663 |
@{thm append_Nil}, @{thm append_Cons}]; |
|
16973 | 664 |
|
20044
92cc2f4c7335
simprocs: no theory argument -- use simpset context instead;
wenzelm
parents:
19890
diff
changeset
|
665 |
fun list_eq ss (F as (eq as Const(_,eqT)) $ lhs $ rhs) = |
13462 | 666 |
let |
667 |
val lastl = last lhs and lastr = last rhs; |
|
668 |
fun rearr conv = |
|
669 |
let |
|
670 |
val lhs1 = butlast lhs and rhs1 = butlast rhs; |
|
671 |
val Type(_,listT::_) = eqT |
|
672 |
val appT = [listT,listT] ---> listT |
|
23029 | 673 |
val app = Const("List.append",appT) |
13462 | 674 |
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
|
675 |
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
|
676 |
val thm = Goal.prove (Simplifier.the_context ss) [] [] eq |
17877
67d5ab1cb0d8
Simplifier.inherit_context instead of Simplifier.inherit_bounds;
wenzelm
parents:
17830
diff
changeset
|
677 |
(K (simp_tac (Simplifier.inherit_context ss rearr_ss) 1)); |
15531 | 678 |
in SOME ((conv RS (thm RS trans)) RS eq_reflection) end; |
13114 | 679 |
|
13462 | 680 |
in |
22633 | 681 |
if list1 lastl andalso list1 lastr then rearr @{thm append1_eq_conv} |
682 |
else if lastl aconv lastr then rearr @{thm append_same_eq} |
|
15531 | 683 |
else NONE |
13462 | 684 |
end; |
685 |
||
13114 | 686 |
in |
13462 | 687 |
|
688 |
val list_eq_simproc = |
|
22633 | 689 |
Simplifier.simproc @{theory} "list_eq" ["(xs::'a list) = ys"] (K list_eq); |
13462 | 690 |
|
13114 | 691 |
end; |
692 |
||
693 |
Addsimprocs [list_eq_simproc]; |
|
694 |
*} |
|
695 |
||
696 |
||
15392 | 697 |
subsubsection {* @{text map} *} |
13114 | 698 |
|
13142 | 699 |
lemma map_ext: "(!!x. x : set xs --> f x = g x) ==> map f xs = map g xs" |
13145 | 700 |
by (induct xs) simp_all |
13114 | 701 |
|
13142 | 702 |
lemma map_ident [simp]: "map (\<lambda>x. x) = (\<lambda>xs. xs)" |
13145 | 703 |
by (rule ext, induct_tac xs) auto |
13114 | 704 |
|
13142 | 705 |
lemma map_append [simp]: "map f (xs @ ys) = map f xs @ map f ys" |
13145 | 706 |
by (induct xs) auto |
13114 | 707 |
|
13142 | 708 |
lemma map_compose: "map (f o g) xs = map f (map g xs)" |
13145 | 709 |
by (induct xs) (auto simp add: o_def) |
13114 | 710 |
|
13142 | 711 |
lemma rev_map: "rev (map f xs) = map f (rev xs)" |
13145 | 712 |
by (induct xs) auto |
13114 | 713 |
|
13737 | 714 |
lemma map_eq_conv[simp]: "(map f xs = map g xs) = (!x : set xs. f x = g x)" |
715 |
by (induct xs) auto |
|
716 |
||
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
717 |
lemma map_cong [fundef_cong, recdef_cong]: |
13145 | 718 |
"xs = ys ==> (!!x. x : set ys ==> f x = g x) ==> map f xs = map g ys" |
719 |
-- {* a congruence rule for @{text map} *} |
|
13737 | 720 |
by simp |
13114 | 721 |
|
13142 | 722 |
lemma map_is_Nil_conv [iff]: "(map f xs = []) = (xs = [])" |
13145 | 723 |
by (cases xs) auto |
13114 | 724 |
|
13142 | 725 |
lemma Nil_is_map_conv [iff]: "([] = map f xs) = (xs = [])" |
13145 | 726 |
by (cases xs) auto |
13114 | 727 |
|
18447 | 728 |
lemma map_eq_Cons_conv: |
14025 | 729 |
"(map f xs = y#ys) = (\<exists>z zs. xs = z#zs \<and> f z = y \<and> map f zs = ys)" |
13145 | 730 |
by (cases xs) auto |
13114 | 731 |
|
18447 | 732 |
lemma Cons_eq_map_conv: |
14025 | 733 |
"(x#xs = map f ys) = (\<exists>z zs. ys = z#zs \<and> x = f z \<and> xs = map f zs)" |
734 |
by (cases ys) auto |
|
735 |
||
18447 | 736 |
lemmas map_eq_Cons_D = map_eq_Cons_conv [THEN iffD1] |
737 |
lemmas Cons_eq_map_D = Cons_eq_map_conv [THEN iffD1] |
|
738 |
declare map_eq_Cons_D [dest!] Cons_eq_map_D [dest!] |
|
739 |
||
14111 | 740 |
lemma ex_map_conv: |
741 |
"(EX xs. ys = map f xs) = (ALL y : set ys. EX x. y = f x)" |
|
18447 | 742 |
by(induct ys, auto simp add: Cons_eq_map_conv) |
14111 | 743 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
744 |
lemma map_eq_imp_length_eq: |
26734 | 745 |
assumes "map f xs = map f ys" |
746 |
shows "length xs = length ys" |
|
747 |
using assms proof (induct ys arbitrary: xs) |
|
748 |
case Nil then show ?case by simp |
|
749 |
next |
|
750 |
case (Cons y ys) then obtain z zs where xs: "xs = z # zs" by auto |
|
751 |
from Cons xs have "map f zs = map f ys" by simp |
|
752 |
moreover with Cons have "length zs = length ys" by blast |
|
753 |
with xs show ?case by simp |
|
754 |
qed |
|
755 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
756 |
lemma map_inj_on: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
757 |
"[| 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
|
758 |
==> xs = ys" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
759 |
apply(frule map_eq_imp_length_eq) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
760 |
apply(rotate_tac -1) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
761 |
apply(induct rule:list_induct2) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
762 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
763 |
apply(simp) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
764 |
apply (blast intro:sym) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
765 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
766 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
767 |
lemma inj_on_map_eq_map: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
768 |
"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
|
769 |
by(blast dest:map_inj_on) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
770 |
|
13114 | 771 |
lemma map_injective: |
24526 | 772 |
"map f xs = map f ys ==> inj f ==> xs = ys" |
773 |
by (induct ys arbitrary: xs) (auto dest!:injD) |
|
13114 | 774 |
|
14339 | 775 |
lemma inj_map_eq_map[simp]: "inj f \<Longrightarrow> (map f xs = map f ys) = (xs = ys)" |
776 |
by(blast dest:map_injective) |
|
777 |
||
13114 | 778 |
lemma inj_mapI: "inj f ==> inj (map f)" |
17589 | 779 |
by (iprover dest: map_injective injD intro: inj_onI) |
13114 | 780 |
|
781 |
lemma inj_mapD: "inj (map f) ==> inj f" |
|
14208 | 782 |
apply (unfold inj_on_def, clarify) |
13145 | 783 |
apply (erule_tac x = "[x]" in ballE) |
14208 | 784 |
apply (erule_tac x = "[y]" in ballE, simp, blast) |
13145 | 785 |
apply blast |
786 |
done |
|
13114 | 787 |
|
14339 | 788 |
lemma inj_map[iff]: "inj (map f) = inj f" |
13145 | 789 |
by (blast dest: inj_mapD intro: inj_mapI) |
13114 | 790 |
|
15303 | 791 |
lemma inj_on_mapI: "inj_on f (\<Union>(set ` A)) \<Longrightarrow> inj_on (map f) A" |
792 |
apply(rule inj_onI) |
|
793 |
apply(erule map_inj_on) |
|
794 |
apply(blast intro:inj_onI dest:inj_onD) |
|
795 |
done |
|
796 |
||
14343 | 797 |
lemma map_idI: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = x) \<Longrightarrow> map f xs = xs" |
798 |
by (induct xs, auto) |
|
13114 | 799 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
800 |
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
|
801 |
by (induct xs) auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
802 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
803 |
lemma map_fst_zip[simp]: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
804 |
"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
|
805 |
by (induct rule:list_induct2, simp_all) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
806 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
807 |
lemma map_snd_zip[simp]: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
808 |
"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
|
809 |
by (induct rule:list_induct2, simp_all) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
810 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
811 |
|
15392 | 812 |
subsubsection {* @{text rev} *} |
13114 | 813 |
|
13142 | 814 |
lemma rev_append [simp]: "rev (xs @ ys) = rev ys @ rev xs" |
13145 | 815 |
by (induct xs) auto |
13114 | 816 |
|
13142 | 817 |
lemma rev_rev_ident [simp]: "rev (rev xs) = xs" |
13145 | 818 |
by (induct xs) auto |
13114 | 819 |
|
15870 | 820 |
lemma rev_swap: "(rev xs = ys) = (xs = rev ys)" |
821 |
by auto |
|
822 |
||
13142 | 823 |
lemma rev_is_Nil_conv [iff]: "(rev xs = []) = (xs = [])" |
13145 | 824 |
by (induct xs) auto |
13114 | 825 |
|
13142 | 826 |
lemma Nil_is_rev_conv [iff]: "([] = rev xs) = (xs = [])" |
13145 | 827 |
by (induct xs) auto |
13114 | 828 |
|
15870 | 829 |
lemma rev_singleton_conv [simp]: "(rev xs = [x]) = (xs = [x])" |
830 |
by (cases xs) auto |
|
831 |
||
832 |
lemma singleton_rev_conv [simp]: "([x] = rev xs) = (xs = [x])" |
|
833 |
by (cases xs) auto |
|
834 |
||
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
835 |
lemma rev_is_rev_conv [iff]: "(rev xs = rev ys) = (xs = ys)" |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
836 |
apply (induct xs arbitrary: ys, force) |
14208 | 837 |
apply (case_tac ys, simp, force) |
13145 | 838 |
done |
13114 | 839 |
|
15439 | 840 |
lemma inj_on_rev[iff]: "inj_on rev A" |
841 |
by(simp add:inj_on_def) |
|
842 |
||
13366 | 843 |
lemma rev_induct [case_names Nil snoc]: |
844 |
"[| 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
|
845 |
apply(simplesubst rev_rev_ident[symmetric]) |
13145 | 846 |
apply(rule_tac list = "rev xs" in list.induct, simp_all) |
847 |
done |
|
13114 | 848 |
|
13366 | 849 |
lemma rev_exhaust [case_names Nil snoc]: |
850 |
"(xs = [] ==> P) ==>(!!ys y. xs = ys @ [y] ==> P) ==> P" |
|
13145 | 851 |
by (induct xs rule: rev_induct) auto |
13114 | 852 |
|
13366 | 853 |
lemmas rev_cases = rev_exhaust |
854 |
||
18423 | 855 |
lemma rev_eq_Cons_iff[iff]: "(rev xs = y#ys) = (xs = rev ys @ [y])" |
856 |
by(rule rev_cases[of xs]) auto |
|
857 |
||
13114 | 858 |
|
15392 | 859 |
subsubsection {* @{text set} *} |
13114 | 860 |
|
13142 | 861 |
lemma finite_set [iff]: "finite (set xs)" |
13145 | 862 |
by (induct xs) auto |
13114 | 863 |
|
13142 | 864 |
lemma set_append [simp]: "set (xs @ ys) = (set xs \<union> set ys)" |
13145 | 865 |
by (induct xs) auto |
13114 | 866 |
|
17830 | 867 |
lemma hd_in_set[simp]: "xs \<noteq> [] \<Longrightarrow> hd xs : set xs" |
868 |
by(cases xs) auto |
|
14099 | 869 |
|
13142 | 870 |
lemma set_subset_Cons: "set xs \<subseteq> set (x # xs)" |
13145 | 871 |
by auto |
13114 | 872 |
|
14099 | 873 |
lemma set_ConsD: "y \<in> set (x # xs) \<Longrightarrow> y=x \<or> y \<in> set xs" |
874 |
by auto |
|
875 |
||
13142 | 876 |
lemma set_empty [iff]: "(set xs = {}) = (xs = [])" |
13145 | 877 |
by (induct xs) auto |
13114 | 878 |
|
15245 | 879 |
lemma set_empty2[iff]: "({} = set xs) = (xs = [])" |
880 |
by(induct xs) auto |
|
881 |
||
13142 | 882 |
lemma set_rev [simp]: "set (rev xs) = set xs" |
13145 | 883 |
by (induct xs) auto |
13114 | 884 |
|
13142 | 885 |
lemma set_map [simp]: "set (map f xs) = f`(set xs)" |
13145 | 886 |
by (induct xs) auto |
13114 | 887 |
|
13142 | 888 |
lemma set_filter [simp]: "set (filter P xs) = {x. x : set xs \<and> P x}" |
13145 | 889 |
by (induct xs) auto |
13114 | 890 |
|
15425 | 891 |
lemma set_upt [simp]: "set[i..<j] = {k. i \<le> k \<and> k < j}" |
14208 | 892 |
apply (induct j, simp_all) |
893 |
apply (erule ssubst, auto) |
|
13145 | 894 |
done |
13114 | 895 |
|
13142 | 896 |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
897 |
lemma split_list: "x : set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs" |
18049 | 898 |
proof (induct xs) |
26073 | 899 |
case Nil thus ?case by simp |
900 |
next |
|
901 |
case Cons thus ?case by (auto intro: Cons_eq_appendI) |
|
902 |
qed |
|
903 |
||
26734 | 904 |
lemma in_set_conv_decomp: "x \<in> set xs \<longleftrightarrow> (\<exists>ys zs. xs = ys @ x # zs)" |
905 |
by (auto elim: split_list) |
|
26073 | 906 |
|
907 |
lemma split_list_first: "x : set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys" |
|
908 |
proof (induct xs) |
|
909 |
case Nil thus ?case by simp |
|
18049 | 910 |
next |
911 |
case (Cons a xs) |
|
912 |
show ?case |
|
913 |
proof cases |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
914 |
assume "x = a" thus ?case using Cons by fastsimp |
18049 | 915 |
next |
26073 | 916 |
assume "x \<noteq> a" thus ?case using Cons by(fastsimp intro!: Cons_eq_appendI) |
917 |
qed |
|
918 |
qed |
|
919 |
||
920 |
lemma in_set_conv_decomp_first: |
|
921 |
"(x : set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys)" |
|
26734 | 922 |
by (auto dest!: split_list_first) |
26073 | 923 |
|
924 |
lemma split_list_last: "x : set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set zs" |
|
925 |
proof (induct xs rule:rev_induct) |
|
926 |
case Nil thus ?case by simp |
|
927 |
next |
|
928 |
case (snoc a xs) |
|
929 |
show ?case |
|
930 |
proof cases |
|
931 |
assume "x = a" thus ?case using snoc by simp (metis ex_in_conv set_empty2) |
|
932 |
next |
|
933 |
assume "x \<noteq> a" thus ?case using snoc by fastsimp |
|
18049 | 934 |
qed |
935 |
qed |
|
936 |
||
26073 | 937 |
lemma in_set_conv_decomp_last: |
938 |
"(x : set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set zs)" |
|
26734 | 939 |
by (auto dest!: split_list_last) |
26073 | 940 |
|
941 |
lemma split_list_prop: "\<exists>x \<in> set xs. P x \<Longrightarrow> \<exists>ys x zs. xs = ys @ x # zs & P x" |
|
942 |
proof (induct xs) |
|
943 |
case Nil thus ?case by simp |
|
944 |
next |
|
945 |
case Cons thus ?case |
|
946 |
by(simp add:Bex_def)(metis append_Cons append.simps(1)) |
|
947 |
qed |
|
948 |
||
949 |
lemma split_list_propE: |
|
26734 | 950 |
assumes "\<exists>x \<in> set xs. P x" |
951 |
obtains ys x zs where "xs = ys @ x # zs" and "P x" |
|
952 |
using split_list_prop [OF assms] by blast |
|
26073 | 953 |
|
954 |
lemma split_list_first_prop: |
|
955 |
"\<exists>x \<in> set xs. P x \<Longrightarrow> |
|
956 |
\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y)" |
|
26734 | 957 |
proof (induct xs) |
26073 | 958 |
case Nil thus ?case by simp |
959 |
next |
|
960 |
case (Cons x xs) |
|
961 |
show ?case |
|
962 |
proof cases |
|
963 |
assume "P x" |
|
26734 | 964 |
thus ?thesis by simp |
965 |
(metis Un_upper1 contra_subsetD in_set_conv_decomp_first self_append_conv2 set_append) |
|
26073 | 966 |
next |
967 |
assume "\<not> P x" |
|
968 |
hence "\<exists>x\<in>set xs. P x" using Cons(2) by simp |
|
969 |
thus ?thesis using `\<not> P x` Cons(1) by (metis append_Cons set_ConsD) |
|
970 |
qed |
|
971 |
qed |
|
972 |
||
973 |
lemma split_list_first_propE: |
|
26734 | 974 |
assumes "\<exists>x \<in> set xs. P x" |
975 |
obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>y \<in> set ys. \<not> P y" |
|
976 |
using split_list_first_prop [OF assms] by blast |
|
26073 | 977 |
|
978 |
lemma split_list_first_prop_iff: |
|
979 |
"(\<exists>x \<in> set xs. P x) \<longleftrightarrow> |
|
980 |
(\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y))" |
|
26734 | 981 |
by (rule, erule split_list_first_prop) auto |
26073 | 982 |
|
983 |
lemma split_list_last_prop: |
|
984 |
"\<exists>x \<in> set xs. P x \<Longrightarrow> |
|
985 |
\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z)" |
|
986 |
proof(induct xs rule:rev_induct) |
|
987 |
case Nil thus ?case by simp |
|
988 |
next |
|
989 |
case (snoc x xs) |
|
990 |
show ?case |
|
991 |
proof cases |
|
992 |
assume "P x" thus ?thesis by (metis emptyE set_empty) |
|
993 |
next |
|
994 |
assume "\<not> P x" |
|
995 |
hence "\<exists>x\<in>set xs. P x" using snoc(2) by simp |
|
996 |
thus ?thesis using `\<not> P x` snoc(1) by fastsimp |
|
997 |
qed |
|
998 |
qed |
|
999 |
||
1000 |
lemma split_list_last_propE: |
|
26734 | 1001 |
assumes "\<exists>x \<in> set xs. P x" |
1002 |
obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>z \<in> set zs. \<not> P z" |
|
1003 |
using split_list_last_prop [OF assms] by blast |
|
26073 | 1004 |
|
1005 |
lemma split_list_last_prop_iff: |
|
1006 |
"(\<exists>x \<in> set xs. P x) \<longleftrightarrow> |
|
1007 |
(\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z))" |
|
26734 | 1008 |
by (metis split_list_last_prop [where P=P] in_set_conv_decomp) |
26073 | 1009 |
|
1010 |
lemma finite_list: "finite A ==> EX xs. set xs = A" |
|
26734 | 1011 |
by (erule finite_induct) |
1012 |
(auto simp add: set.simps(2) [symmetric] simp del: set.simps(2)) |
|
13508 | 1013 |
|
14388 | 1014 |
lemma card_length: "card (set xs) \<le> length xs" |
1015 |
by (induct xs) (auto simp add: card_insert_if) |
|
13114 | 1016 |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1017 |
lemma set_minus_filter_out: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1018 |
"set xs - {y} = set (filter (\<lambda>x. \<not> (x = y)) xs)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1019 |
by (induct xs) auto |
15168 | 1020 |
|
15392 | 1021 |
subsubsection {* @{text filter} *} |
13114 | 1022 |
|
13142 | 1023 |
lemma filter_append [simp]: "filter P (xs @ ys) = filter P xs @ filter P ys" |
13145 | 1024 |
by (induct xs) auto |
13114 | 1025 |
|
15305 | 1026 |
lemma rev_filter: "rev (filter P xs) = filter P (rev xs)" |
1027 |
by (induct xs) simp_all |
|
1028 |
||
13142 | 1029 |
lemma filter_filter [simp]: "filter P (filter Q xs) = filter (\<lambda>x. Q x \<and> P x) xs" |
13145 | 1030 |
by (induct xs) auto |
13114 | 1031 |
|
16998 | 1032 |
lemma length_filter_le [simp]: "length (filter P xs) \<le> length xs" |
1033 |
by (induct xs) (auto simp add: le_SucI) |
|
1034 |
||
18423 | 1035 |
lemma sum_length_filter_compl: |
1036 |
"length(filter P xs) + length(filter (%x. ~P x) xs) = length xs" |
|
1037 |
by(induct xs) simp_all |
|
1038 |
||
13142 | 1039 |
lemma filter_True [simp]: "\<forall>x \<in> set xs. P x ==> filter P xs = xs" |
13145 | 1040 |
by (induct xs) auto |
13114 | 1041 |
|
13142 | 1042 |
lemma filter_False [simp]: "\<forall>x \<in> set xs. \<not> P x ==> filter P xs = []" |
13145 | 1043 |
by (induct xs) auto |
13114 | 1044 |
|
16998 | 1045 |
lemma filter_empty_conv: "(filter P xs = []) = (\<forall>x\<in>set xs. \<not> P x)" |
24349 | 1046 |
by (induct xs) simp_all |
16998 | 1047 |
|
1048 |
lemma filter_id_conv: "(filter P xs = xs) = (\<forall>x\<in>set xs. P x)" |
|
1049 |
apply (induct xs) |
|
1050 |
apply auto |
|
1051 |
apply(cut_tac P=P and xs=xs in length_filter_le) |
|
1052 |
apply simp |
|
1053 |
done |
|
13114 | 1054 |
|
16965 | 1055 |
lemma filter_map: |
1056 |
"filter P (map f xs) = map f (filter (P o f) xs)" |
|
1057 |
by (induct xs) simp_all |
|
1058 |
||
1059 |
lemma length_filter_map[simp]: |
|
1060 |
"length (filter P (map f xs)) = length(filter (P o f) xs)" |
|
1061 |
by (simp add:filter_map) |
|
1062 |
||
13142 | 1063 |
lemma filter_is_subset [simp]: "set (filter P xs) \<le> set xs" |
13145 | 1064 |
by auto |
13114 | 1065 |
|
15246 | 1066 |
lemma length_filter_less: |
1067 |
"\<lbrakk> x : set xs; ~ P x \<rbrakk> \<Longrightarrow> length(filter P xs) < length xs" |
|
1068 |
proof (induct xs) |
|
1069 |
case Nil thus ?case by simp |
|
1070 |
next |
|
1071 |
case (Cons x xs) thus ?case |
|
1072 |
apply (auto split:split_if_asm) |
|
1073 |
using length_filter_le[of P xs] apply arith |
|
1074 |
done |
|
1075 |
qed |
|
13114 | 1076 |
|
15281 | 1077 |
lemma length_filter_conv_card: |
1078 |
"length(filter p xs) = card{i. i < length xs & p(xs!i)}" |
|
1079 |
proof (induct xs) |
|
1080 |
case Nil thus ?case by simp |
|
1081 |
next |
|
1082 |
case (Cons x xs) |
|
1083 |
let ?S = "{i. i < length xs & p(xs!i)}" |
|
1084 |
have fin: "finite ?S" by(fast intro: bounded_nat_set_is_finite) |
|
1085 |
show ?case (is "?l = card ?S'") |
|
1086 |
proof (cases) |
|
1087 |
assume "p x" |
|
1088 |
hence eq: "?S' = insert 0 (Suc ` ?S)" |
|
25162 | 1089 |
by(auto simp: image_def split:nat.split dest:gr0_implies_Suc) |
15281 | 1090 |
have "length (filter p (x # xs)) = Suc(card ?S)" |
23388 | 1091 |
using Cons `p x` by simp |
15281 | 1092 |
also have "\<dots> = Suc(card(Suc ` ?S))" using fin |
1093 |
by (simp add: card_image inj_Suc) |
|
1094 |
also have "\<dots> = card ?S'" using eq fin |
|
1095 |
by (simp add:card_insert_if) (simp add:image_def) |
|
1096 |
finally show ?thesis . |
|
1097 |
next |
|
1098 |
assume "\<not> p x" |
|
1099 |
hence eq: "?S' = Suc ` ?S" |
|
25162 | 1100 |
by(auto simp add: image_def split:nat.split elim:lessE) |
15281 | 1101 |
have "length (filter p (x # xs)) = card ?S" |
23388 | 1102 |
using Cons `\<not> p x` by simp |
15281 | 1103 |
also have "\<dots> = card(Suc ` ?S)" using fin |
1104 |
by (simp add: card_image inj_Suc) |
|
1105 |
also have "\<dots> = card ?S'" using eq fin |
|
1106 |
by (simp add:card_insert_if) |
|
1107 |
finally show ?thesis . |
|
1108 |
qed |
|
1109 |
qed |
|
1110 |
||
17629 | 1111 |
lemma Cons_eq_filterD: |
1112 |
"x#xs = filter P ys \<Longrightarrow> |
|
1113 |
\<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 | 1114 |
(is "_ \<Longrightarrow> \<exists>us vs. ?P ys us vs") |
17629 | 1115 |
proof(induct ys) |
1116 |
case Nil thus ?case by simp |
|
1117 |
next |
|
1118 |
case (Cons y ys) |
|
1119 |
show ?case (is "\<exists>x. ?Q x") |
|
1120 |
proof cases |
|
1121 |
assume Py: "P y" |
|
1122 |
show ?thesis |
|
1123 |
proof cases |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1124 |
assume "x = y" |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1125 |
with Py Cons.prems have "?Q []" by simp |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1126 |
then show ?thesis .. |
17629 | 1127 |
next |
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1128 |
assume "x \<noteq> y" |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1129 |
with Py Cons.prems show ?thesis by simp |
17629 | 1130 |
qed |
1131 |
next |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1132 |
assume "\<not> P y" |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1133 |
with Cons obtain us vs where "?P (y#ys) (y#us) vs" by fastsimp |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1134 |
then have "?Q (y#us)" by simp |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1135 |
then show ?thesis .. |
17629 | 1136 |
qed |
1137 |
qed |
|
1138 |
||
1139 |
lemma filter_eq_ConsD: |
|
1140 |
"filter P ys = x#xs \<Longrightarrow> |
|
1141 |
\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs" |
|
1142 |
by(rule Cons_eq_filterD) simp |
|
1143 |
||
1144 |
lemma filter_eq_Cons_iff: |
|
1145 |
"(filter P ys = x#xs) = |
|
1146 |
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)" |
|
1147 |
by(auto dest:filter_eq_ConsD) |
|
1148 |
||
1149 |
lemma Cons_eq_filter_iff: |
|
1150 |
"(x#xs = filter P ys) = |
|
1151 |
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)" |
|
1152 |
by(auto dest:Cons_eq_filterD) |
|
1153 |
||
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
1154 |
lemma filter_cong[fundef_cong, recdef_cong]: |
17501 | 1155 |
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x) \<Longrightarrow> filter P xs = filter Q ys" |
1156 |
apply simp |
|
1157 |
apply(erule thin_rl) |
|
1158 |
by (induct ys) simp_all |
|
1159 |
||
15281 | 1160 |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1161 |
subsubsection {* List partitioning *} |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1162 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1163 |
primrec partition :: "('a \<Rightarrow> bool) \<Rightarrow>'a list \<Rightarrow> 'a list \<times> 'a list" where |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1164 |
"partition P [] = ([], [])" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1165 |
| "partition P (x # xs) = |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1166 |
(let (yes, no) = partition P xs |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1167 |
in if P x then (x # yes, no) else (yes, x # no))" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1168 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1169 |
lemma partition_filter1: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1170 |
"fst (partition P xs) = filter P xs" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1171 |
by (induct xs) (auto simp add: Let_def split_def) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1172 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1173 |
lemma partition_filter2: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1174 |
"snd (partition P xs) = filter (Not o P) xs" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1175 |
by (induct xs) (auto simp add: Let_def split_def) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1176 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1177 |
lemma partition_P: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1178 |
assumes "partition P xs = (yes, no)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1179 |
shows "(\<forall>p \<in> set yes. P p) \<and> (\<forall>p \<in> set no. \<not> P p)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1180 |
proof - |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1181 |
from assms have "yes = fst (partition P xs)" and "no = snd (partition P xs)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1182 |
by simp_all |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1183 |
then show ?thesis by (simp_all add: partition_filter1 partition_filter2) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1184 |
qed |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1185 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1186 |
lemma partition_set: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1187 |
assumes "partition P xs = (yes, no)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1188 |
shows "set yes \<union> set no = set xs" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1189 |
proof - |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1190 |
from assms have "yes = fst (partition P xs)" and "no = snd (partition P xs)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1191 |
by simp_all |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1192 |
then show ?thesis by (auto simp add: partition_filter1 partition_filter2) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1193 |
qed |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1194 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1195 |
|
15392 | 1196 |
subsubsection {* @{text concat} *} |
13114 | 1197 |
|
13142 | 1198 |
lemma concat_append [simp]: "concat (xs @ ys) = concat xs @ concat ys" |
13145 | 1199 |
by (induct xs) auto |
13114 | 1200 |
|
18447 | 1201 |
lemma concat_eq_Nil_conv [simp]: "(concat xss = []) = (\<forall>xs \<in> set xss. xs = [])" |
13145 | 1202 |
by (induct xss) auto |
13114 | 1203 |
|
18447 | 1204 |
lemma Nil_eq_concat_conv [simp]: "([] = concat xss) = (\<forall>xs \<in> set xss. xs = [])" |
13145 | 1205 |
by (induct xss) auto |
13114 | 1206 |
|
24308 | 1207 |
lemma set_concat [simp]: "set (concat xs) = (UN x:set xs. set x)" |
13145 | 1208 |
by (induct xs) auto |
13114 | 1209 |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
1210 |
lemma concat_map_singleton[simp]: "concat(map (%x. [f x]) xs) = map f xs" |
24349 | 1211 |
by (induct xs) auto |
1212 |
||
13142 | 1213 |
lemma map_concat: "map f (concat xs) = concat (map (map f) xs)" |
13145 | 1214 |
by (induct xs) auto |
13114 | 1215 |
|
13142 | 1216 |
lemma filter_concat: "filter p (concat xs) = concat (map (filter p) xs)" |
13145 | 1217 |
by (induct xs) auto |
13114 | 1218 |
|
13142 | 1219 |
lemma rev_concat: "rev (concat xs) = concat (map rev (rev xs))" |
13145 | 1220 |
by (induct xs) auto |
13114 | 1221 |
|
1222 |
||
15392 | 1223 |
subsubsection {* @{text nth} *} |
13114 | 1224 |
|
13142 | 1225 |
lemma nth_Cons_0 [simp]: "(x # xs)!0 = x" |
13145 | 1226 |
by auto |
13114 | 1227 |
|
13142 | 1228 |
lemma nth_Cons_Suc [simp]: "(x # xs)!(Suc n) = xs!n" |
13145 | 1229 |
by auto |
13114 | 1230 |
|
13142 | 1231 |
declare nth.simps [simp del] |
13114 | 1232 |
|
1233 |
lemma nth_append: |
|
24526 | 1234 |
"(xs @ ys)!n = (if n < length xs then xs!n else ys!(n - length xs))" |
1235 |
apply (induct xs arbitrary: n, simp) |
|
14208 | 1236 |
apply (case_tac n, auto) |
13145 | 1237 |
done |
13114 | 1238 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1239 |
lemma nth_append_length [simp]: "(xs @ x # ys) ! length xs = x" |
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1240 |
by (induct xs) auto |
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1241 |
|
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1242 |
lemma nth_append_length_plus[simp]: "(xs @ ys) ! (length xs + n) = ys ! n" |
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1243 |
by (induct xs) auto |
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1244 |
|
24526 | 1245 |
lemma nth_map [simp]: "n < length xs ==> (map f xs)!n = f(xs!n)" |
1246 |
apply (induct xs arbitrary: n, simp) |
|
14208 | 1247 |
apply (case_tac n, auto) |
13145 | 1248 |
done |
13114 | 1249 |
|
18423 | 1250 |
lemma hd_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd xs = xs!0" |
1251 |
by(cases xs) simp_all |
|
1252 |
||
18049 | 1253 |
|
1254 |
lemma list_eq_iff_nth_eq: |
|
24526 | 1255 |
"(xs = ys) = (length xs = length ys \<and> (ALL i<length xs. xs!i = ys!i))" |
1256 |
apply(induct xs arbitrary: ys) |
|
24632 | 1257 |
apply force |
18049 | 1258 |
apply(case_tac ys) |
1259 |
apply simp |
|
1260 |
apply(simp add:nth_Cons split:nat.split)apply blast |
|
1261 |
done |
|
1262 |
||
13142 | 1263 |
lemma set_conv_nth: "set xs = {xs!i | i. i < length xs}" |
15251 | 1264 |
apply (induct xs, simp, simp) |
13145 | 1265 |
apply safe |
24632 | 1266 |
apply (metis nat_case_0 nth.simps zero_less_Suc) |
1267 |
apply (metis less_Suc_eq_0_disj nth_Cons_Suc) |
|
14208 | 1268 |
apply (case_tac i, simp) |
24632 | 1269 |
apply (metis diff_Suc_Suc nat_case_Suc nth.simps zero_less_diff) |
13145 | 1270 |
done |
13114 | 1271 |
|
17501 | 1272 |
lemma in_set_conv_nth: "(x \<in> set xs) = (\<exists>i < length xs. xs!i = x)" |
1273 |
by(auto simp:set_conv_nth) |
|
1274 |
||
13145 | 1275 |
lemma list_ball_nth: "[| n < length xs; !x : set xs. P x|] ==> P(xs!n)" |
1276 |
by (auto simp add: set_conv_nth) |
|
13114 | 1277 |
|
13142 | 1278 |
lemma nth_mem [simp]: "n < length xs ==> xs!n : set xs" |
13145 | 1279 |
by (auto simp add: set_conv_nth) |
13114 | 1280 |
|
1281 |
lemma all_nth_imp_all_set: |
|
13145 | 1282 |
"[| !i < length xs. P(xs!i); x : set xs|] ==> P x" |
1283 |
by (auto simp add: set_conv_nth) |
|
13114 | 1284 |
|
1285 |
lemma all_set_conv_all_nth: |
|
13145 | 1286 |
"(\<forall>x \<in> set xs. P x) = (\<forall>i. i < length xs --> P (xs ! i))" |
1287 |
by (auto simp add: set_conv_nth) |
|
13114 | 1288 |
|
25296 | 1289 |
lemma rev_nth: |
1290 |
"n < size xs \<Longrightarrow> rev xs ! n = xs ! (length xs - Suc n)" |
|
1291 |
proof (induct xs arbitrary: n) |
|
1292 |
case Nil thus ?case by simp |
|
1293 |
next |
|
1294 |
case (Cons x xs) |
|
1295 |
hence n: "n < Suc (length xs)" by simp |
|
1296 |
moreover |
|
1297 |
{ assume "n < length xs" |
|
1298 |
with n obtain n' where "length xs - n = Suc n'" |
|
1299 |
by (cases "length xs - n", auto) |
|
1300 |
moreover |
|
1301 |
then have "length xs - Suc n = n'" by simp |
|
1302 |
ultimately |
|
1303 |
have "xs ! (length xs - Suc n) = (x # xs) ! (length xs - n)" by simp |
|
1304 |
} |
|
1305 |
ultimately |
|
1306 |
show ?case by (clarsimp simp add: Cons nth_append) |
|
1307 |
qed |
|
13114 | 1308 |
|
15392 | 1309 |
subsubsection {* @{text list_update} *} |
13114 | 1310 |
|
24526 | 1311 |
lemma length_list_update [simp]: "length(xs[i:=x]) = length xs" |
1312 |
by (induct xs arbitrary: i) (auto split: nat.split) |
|
13114 | 1313 |
|
1314 |
lemma nth_list_update: |
|
24526 | 1315 |
"i < length xs==> (xs[i:=x])!j = (if i = j then x else xs!j)" |
1316 |
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split) |
|
13114 | 1317 |
|
13142 | 1318 |
lemma nth_list_update_eq [simp]: "i < length xs ==> (xs[i:=x])!i = x" |
13145 | 1319 |
by (simp add: nth_list_update) |
13114 | 1320 |
|
24526 | 1321 |
lemma nth_list_update_neq [simp]: "i \<noteq> j ==> xs[i:=x]!j = xs!j" |
1322 |
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split) |
|
13114 | 1323 |
|
24526 | 1324 |
lemma list_update_id[simp]: "xs[i := xs!i] = xs" |
1325 |
by (induct xs arbitrary: i) (simp_all split:nat.splits) |
|
1326 |
||
1327 |
lemma list_update_beyond[simp]: "length xs \<le> i \<Longrightarrow> xs[i:=x] = xs" |
|
1328 |
apply (induct xs arbitrary: i) |
|
17501 | 1329 |
apply simp |
1330 |
apply (case_tac i) |
|
1331 |
apply simp_all |
|
1332 |
done |
|
1333 |
||
13114 | 1334 |
lemma list_update_same_conv: |
24526 | 1335 |
"i < length xs ==> (xs[i := x] = xs) = (xs!i = x)" |
1336 |
by (induct xs arbitrary: i) (auto split: nat.split) |
|
13114 | 1337 |
|
14187 | 1338 |
lemma list_update_append1: |
24526 | 1339 |
"i < size xs \<Longrightarrow> (xs @ ys)[i:=x] = xs[i:=x] @ ys" |
1340 |
apply (induct xs arbitrary: i, simp) |
|
14187 | 1341 |
apply(simp split:nat.split) |
1342 |
done |
|
1343 |
||
15868 | 1344 |
lemma list_update_append: |
24526 | 1345 |
"(xs @ ys) [n:= x] = |
15868 | 1346 |
(if n < length xs then xs[n:= x] @ ys else xs @ (ys [n-length xs:= x]))" |
24526 | 1347 |
by (induct xs arbitrary: n) (auto split:nat.splits) |
15868 | 1348 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1349 |
lemma list_update_length [simp]: |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1350 |
"(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
|
1351 |
by (induct xs, auto) |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1352 |
|
13114 | 1353 |
lemma update_zip: |
24526 | 1354 |
"length xs = length ys ==> |
1355 |
(zip xs ys)[i:=xy] = zip (xs[i:=fst xy]) (ys[i:=snd xy])" |
|
1356 |
by (induct ys arbitrary: i xy xs) (auto, case_tac xs, auto split: nat.split) |
|
1357 |
||
1358 |
lemma set_update_subset_insert: "set(xs[i:=x]) <= insert x (set xs)" |
|
1359 |
by (induct xs arbitrary: i) (auto split: nat.split) |
|
13114 | 1360 |
|
1361 |
lemma set_update_subsetI: "[| set xs <= A; x:A |] ==> set(xs[i := x]) <= A" |
|
13145 | 1362 |
by (blast dest!: set_update_subset_insert [THEN subsetD]) |
13114 | 1363 |
|
24526 | 1364 |
lemma set_update_memI: "n < length xs \<Longrightarrow> x \<in> set (xs[n := x])" |
1365 |
by (induct xs arbitrary: n) (auto split:nat.splits) |
|
15868 | 1366 |
|
24796 | 1367 |
lemma list_update_overwrite: |
1368 |
"xs [i := x, i := y] = xs [i := y]" |
|
1369 |
apply (induct xs arbitrary: i) |
|
1370 |
apply simp |
|
1371 |
apply (case_tac i) |
|
1372 |
apply simp_all |
|
1373 |
done |
|
1374 |
||
1375 |
lemma list_update_swap: |
|
1376 |
"i \<noteq> i' \<Longrightarrow> xs [i := x, i' := x'] = xs [i' := x', i := x]" |
|
1377 |
apply (induct xs arbitrary: i i') |
|
1378 |
apply simp |
|
1379 |
apply (case_tac i, case_tac i') |
|
1380 |
apply auto |
|
1381 |
apply (case_tac i') |
|
1382 |
apply auto |
|
1383 |
done |
|
1384 |
||
13114 | 1385 |
|
15392 | 1386 |
subsubsection {* @{text last} and @{text butlast} *} |
13114 | 1387 |
|
13142 | 1388 |
lemma last_snoc [simp]: "last (xs @ [x]) = x" |
13145 | 1389 |
by (induct xs) auto |
13114 | 1390 |
|
13142 | 1391 |
lemma butlast_snoc [simp]: "butlast (xs @ [x]) = xs" |
13145 | 1392 |
by (induct xs) auto |
13114 | 1393 |
|
14302 | 1394 |
lemma last_ConsL: "xs = [] \<Longrightarrow> last(x#xs) = x" |
1395 |
by(simp add:last.simps) |
|
1396 |
||
1397 |
lemma last_ConsR: "xs \<noteq> [] \<Longrightarrow> last(x#xs) = last xs" |
|
1398 |
by(simp add:last.simps) |
|
1399 |
||
1400 |
lemma last_append: "last(xs @ ys) = (if ys = [] then last xs else last ys)" |
|
1401 |
by (induct xs) (auto) |
|
1402 |
||
1403 |
lemma last_appendL[simp]: "ys = [] \<Longrightarrow> last(xs @ ys) = last xs" |
|
1404 |
by(simp add:last_append) |
|
1405 |
||
1406 |
lemma last_appendR[simp]: "ys \<noteq> [] \<Longrightarrow> last(xs @ ys) = last ys" |
|
1407 |
by(simp add:last_append) |
|
1408 |
||
17762 | 1409 |
lemma hd_rev: "xs \<noteq> [] \<Longrightarrow> hd(rev xs) = last xs" |
1410 |
by(rule rev_exhaust[of xs]) simp_all |
|
1411 |
||
1412 |
lemma last_rev: "xs \<noteq> [] \<Longrightarrow> last(rev xs) = hd xs" |
|
1413 |
by(cases xs) simp_all |
|
1414 |
||
17765 | 1415 |
lemma last_in_set[simp]: "as \<noteq> [] \<Longrightarrow> last as \<in> set as" |
1416 |
by (induct as) auto |
|
17762 | 1417 |
|
13142 | 1418 |
lemma length_butlast [simp]: "length (butlast xs) = length xs - 1" |
13145 | 1419 |
by (induct xs rule: rev_induct) auto |
13114 | 1420 |
|
1421 |
lemma butlast_append: |
|
24526 | 1422 |
"butlast (xs @ ys) = (if ys = [] then butlast xs else xs @ butlast ys)" |
1423 |
by (induct xs arbitrary: ys) auto |
|
13114 | 1424 |
|
13142 | 1425 |
lemma append_butlast_last_id [simp]: |
13145 | 1426 |
"xs \<noteq> [] ==> butlast xs @ [last xs] = xs" |
1427 |
by (induct xs) auto |
|
13114 | 1428 |
|
13142 | 1429 |
lemma in_set_butlastD: "x : set (butlast xs) ==> x : set xs" |
13145 | 1430 |
by (induct xs) (auto split: split_if_asm) |
13114 | 1431 |
|
1432 |
lemma in_set_butlast_appendI: |
|
13145 | 1433 |
"x : set (butlast xs) | x : set (butlast ys) ==> x : set (butlast (xs @ ys))" |
1434 |
by (auto dest: in_set_butlastD simp add: butlast_append) |
|
13114 | 1435 |
|
24526 | 1436 |
lemma last_drop[simp]: "n < length xs \<Longrightarrow> last (drop n xs) = last xs" |
1437 |
apply (induct xs arbitrary: n) |
|
17501 | 1438 |
apply simp |
1439 |
apply (auto split:nat.split) |
|
1440 |
done |
|
1441 |
||
17589 | 1442 |
lemma last_conv_nth: "xs\<noteq>[] \<Longrightarrow> last xs = xs!(length xs - 1)" |
1443 |
by(induct xs)(auto simp:neq_Nil_conv) |
|
1444 |
||
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1445 |
lemma butlast_conv_take: "butlast xs = take (length xs - 1) xs" |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1446 |
by (induct xs, simp, case_tac xs, simp_all) |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1447 |
|
24796 | 1448 |
|
15392 | 1449 |
subsubsection {* @{text take} and @{text drop} *} |
13114 | 1450 |
|
13142 | 1451 |
lemma take_0 [simp]: "take 0 xs = []" |
13145 | 1452 |
by (induct xs) auto |
13114 | 1453 |
|
13142 | 1454 |
lemma drop_0 [simp]: "drop 0 xs = xs" |
13145 | 1455 |
by (induct xs) auto |
13114 | 1456 |
|
13142 | 1457 |
lemma take_Suc_Cons [simp]: "take (Suc n) (x # xs) = x # take n xs" |
13145 | 1458 |
by simp |
13114 | 1459 |
|
13142 | 1460 |
lemma drop_Suc_Cons [simp]: "drop (Suc n) (x # xs) = drop n xs" |
13145 | 1461 |
by simp |
13114 | 1462 |
|
13142 | 1463 |
declare take_Cons [simp del] and drop_Cons [simp del] |
13114 | 1464 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1465 |
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
|
1466 |
by(clarsimp simp add:neq_Nil_conv) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1467 |
|
14187 | 1468 |
lemma drop_Suc: "drop (Suc n) xs = drop n (tl xs)" |
1469 |
by(cases xs, simp_all) |
|
1470 |
||
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1471 |
lemma take_tl: "take n (tl xs) = tl (take (Suc n) xs)" |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1472 |
by (induct xs arbitrary: n) simp_all |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1473 |
|
24526 | 1474 |
lemma drop_tl: "drop n (tl xs) = tl(drop n xs)" |
1475 |
by(induct xs arbitrary: n, simp_all add:drop_Cons drop_Suc split:nat.split) |
|
1476 |
||
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1477 |
lemma tl_take: "tl (take n xs) = take (n - 1) (tl xs)" |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1478 |
by (cases n, simp, cases xs, auto) |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1479 |
|
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1480 |
lemma tl_drop: "tl (drop n xs) = drop n (tl xs)" |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1481 |
by (simp only: drop_tl) |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1482 |
|
24526 | 1483 |
lemma nth_via_drop: "drop n xs = y#ys \<Longrightarrow> xs!n = y" |
1484 |
apply (induct xs arbitrary: n, simp) |
|
14187 | 1485 |
apply(simp add:drop_Cons nth_Cons split:nat.splits) |
1486 |
done |
|
1487 |
||
13913 | 1488 |
lemma take_Suc_conv_app_nth: |
24526 | 1489 |
"i < length xs \<Longrightarrow> take (Suc i) xs = take i xs @ [xs!i]" |
1490 |
apply (induct xs arbitrary: i, simp) |
|
14208 | 1491 |
apply (case_tac i, auto) |
13913 | 1492 |
done |
1493 |
||
14591 | 1494 |
lemma drop_Suc_conv_tl: |
24526 | 1495 |
"i < length xs \<Longrightarrow> (xs!i) # (drop (Suc i) xs) = drop i xs" |
1496 |
apply (induct xs arbitrary: i, simp) |
|
14591 | 1497 |
apply (case_tac i, auto) |
1498 |
done |
|
1499 |
||
24526 | 1500 |
lemma length_take [simp]: "length (take n xs) = min (length xs) n" |
1501 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
1502 |
||
1503 |
lemma length_drop [simp]: "length (drop n xs) = (length xs - n)" |
|
1504 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
1505 |
||
1506 |
lemma take_all [simp]: "length xs <= n ==> take n xs = xs" |
|
1507 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
1508 |
||
1509 |
lemma drop_all [simp]: "length xs <= n ==> drop n xs = []" |
|
1510 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
13114 | 1511 |
|
13142 | 1512 |
lemma take_append [simp]: |
24526 | 1513 |
"take n (xs @ ys) = (take n xs @ take (n - length xs) ys)" |
1514 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
13114 | 1515 |
|
13142 | 1516 |
lemma drop_append [simp]: |
24526 | 1517 |
"drop n (xs @ ys) = drop n xs @ drop (n - length xs) ys" |
1518 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
1519 |
||
1520 |
lemma take_take [simp]: "take n (take m xs) = take (min n m) xs" |
|
1521 |
apply (induct m arbitrary: xs n, auto) |
|
14208 | 1522 |
apply (case_tac xs, auto) |
15236
f289e8ba2bb3
Proofs needed to be updated because induction now preserves name of
nipkow
parents:
15176
diff
changeset
|
1523 |
apply (case_tac n, auto) |
13145 | 1524 |
done |
13114 | 1525 |
|
24526 | 1526 |
lemma drop_drop [simp]: "drop n (drop m xs) = drop (n + m) xs" |
1527 |
apply (induct m arbitrary: xs, auto) |
|
14208 | 1528 |
apply (case_tac xs, auto) |
13145 | 1529 |
done |
13114 | 1530 |
|
24526 | 1531 |
lemma take_drop: "take n (drop m xs) = drop m (take (n + m) xs)" |
1532 |
apply (induct m arbitrary: xs n, auto) |
|
14208 | 1533 |
apply (case_tac xs, auto) |
13145 | 1534 |
done |
13114 | 1535 |
|
24526 | 1536 |
lemma drop_take: "drop n (take m xs) = take (m-n) (drop n xs)" |
1537 |
apply(induct xs arbitrary: m n) |
|
14802 | 1538 |
apply simp |
1539 |
apply(simp add: take_Cons drop_Cons split:nat.split) |
|
1540 |
done |
|
1541 |
||
24526 | 1542 |
lemma append_take_drop_id [simp]: "take n xs @ drop n xs = xs" |
1543 |
apply (induct n arbitrary: xs, auto) |
|
14208 | 1544 |
apply (case_tac xs, auto) |
13145 | 1545 |
done |
13114 | 1546 |
|
24526 | 1547 |
lemma take_eq_Nil[simp]: "(take n xs = []) = (n = 0 \<or> xs = [])" |
1548 |
apply(induct xs arbitrary: n) |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1549 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1550 |
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
|
1551 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1552 |
|
24526 | 1553 |
lemma drop_eq_Nil[simp]: "(drop n xs = []) = (length xs <= n)" |
1554 |
apply(induct xs arbitrary: n) |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1555 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1556 |
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
|
1557 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1558 |
|
24526 | 1559 |
lemma take_map: "take n (map f xs) = map f (take n xs)" |
1560 |
apply (induct n arbitrary: xs, auto) |
|
14208 | 1561 |
apply (case_tac xs, auto) |
13145 | 1562 |
done |
13114 | 1563 |
|
24526 | 1564 |
lemma drop_map: "drop n (map f xs) = map f (drop n xs)" |
1565 |
apply (induct n arbitrary: xs, auto) |
|
14208 | 1566 |
apply (case_tac xs, auto) |
13145 | 1567 |
done |
13114 | 1568 |
|
24526 | 1569 |
lemma rev_take: "rev (take i xs) = drop (length xs - i) (rev xs)" |
1570 |
apply (induct xs arbitrary: i, auto) |
|
14208 | 1571 |
apply (case_tac i, auto) |
13145 | 1572 |
done |
13114 | 1573 |
|
24526 | 1574 |
lemma rev_drop: "rev (drop i xs) = take (length xs - i) (rev xs)" |
1575 |
apply (induct xs arbitrary: i, auto) |
|
14208 | 1576 |
apply (case_tac i, auto) |
13145 | 1577 |
done |
13114 | 1578 |
|
24526 | 1579 |
lemma nth_take [simp]: "i < n ==> (take n xs)!i = xs!i" |
1580 |
apply (induct xs arbitrary: i n, auto) |
|
14208 | 1581 |
apply (case_tac n, blast) |
1582 |
apply (case_tac i, auto) |
|
13145 | 1583 |
done |
13114 | 1584 |
|
13142 | 1585 |
lemma nth_drop [simp]: |
24526 | 1586 |
"n + i <= length xs ==> (drop n xs)!i = xs!(n + i)" |
1587 |
apply (induct n arbitrary: xs i, auto) |
|
14208 | 1588 |
apply (case_tac xs, auto) |
13145 | 1589 |
done |
3507 | 1590 |
|
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1591 |
lemma butlast_take: |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1592 |
"n <= length xs ==> butlast (take n xs) = take (n - 1) xs" |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1593 |
by (simp add: butlast_conv_take min_max.inf_absorb1 min_max.inf_absorb2) |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1594 |
|
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1595 |
lemma butlast_drop: "butlast (drop n xs) = drop n (butlast xs)" |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1596 |
by (simp add: butlast_conv_take drop_take) |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1597 |
|
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1598 |
lemma take_butlast: "n < length xs ==> take n (butlast xs) = take n xs" |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1599 |
by (simp add: butlast_conv_take min_max.inf_absorb1) |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1600 |
|
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1601 |
lemma drop_butlast: "drop n (butlast xs) = butlast (drop n xs)" |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1602 |
by (simp add: butlast_conv_take drop_take) |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1603 |
|
18423 | 1604 |
lemma hd_drop_conv_nth: "\<lbrakk> xs \<noteq> []; n < length xs \<rbrakk> \<Longrightarrow> hd(drop n xs) = xs!n" |
1605 |
by(simp add: hd_conv_nth) |
|
1606 |
||
24526 | 1607 |
lemma set_take_subset: "set(take n xs) \<subseteq> set xs" |
1608 |
by(induct xs arbitrary: n)(auto simp:take_Cons split:nat.split) |
|
1609 |
||
1610 |
lemma set_drop_subset: "set(drop n xs) \<subseteq> set xs" |
|
1611 |
by(induct xs arbitrary: n)(auto simp:drop_Cons split:nat.split) |
|
14025 | 1612 |
|
14187 | 1613 |
lemma in_set_takeD: "x : set(take n xs) \<Longrightarrow> x : set xs" |
1614 |
using set_take_subset by fast |
|
1615 |
||
1616 |
lemma in_set_dropD: "x : set(drop n xs) \<Longrightarrow> x : set xs" |
|
1617 |
using set_drop_subset by fast |
|
1618 |
||
13114 | 1619 |
lemma append_eq_conv_conj: |
24526 | 1620 |
"(xs @ ys = zs) = (xs = take (length xs) zs \<and> ys = drop (length xs) zs)" |
1621 |
apply (induct xs arbitrary: zs, simp, clarsimp) |
|
14208 | 1622 |
apply (case_tac zs, auto) |
13145 | 1623 |
done |
13142 | 1624 |
|
24526 | 1625 |
lemma take_add: |
1626 |
"i+j \<le> length(xs) \<Longrightarrow> take (i+j) xs = take i xs @ take j (drop i xs)" |
|
1627 |
apply (induct xs arbitrary: i, auto) |
|
1628 |
apply (case_tac i, simp_all) |
|
14050 | 1629 |
done |
1630 |
||
14300 | 1631 |
lemma append_eq_append_conv_if: |
24526 | 1632 |
"(xs\<^isub>1 @ xs\<^isub>2 = ys\<^isub>1 @ ys\<^isub>2) = |
14300 | 1633 |
(if size xs\<^isub>1 \<le> size ys\<^isub>1 |
1634 |
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 |
|
1635 |
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)" |
|
24526 | 1636 |
apply(induct xs\<^isub>1 arbitrary: ys\<^isub>1) |
14300 | 1637 |
apply simp |
1638 |
apply(case_tac ys\<^isub>1) |
|
1639 |
apply simp_all |
|
1640 |
done |
|
1641 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1642 |
lemma take_hd_drop: |
24526 | 1643 |
"n < length xs \<Longrightarrow> take n xs @ [hd (drop n xs)] = take (n+1) xs" |
1644 |
apply(induct xs arbitrary: n) |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1645 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1646 |
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
|
1647 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1648 |
|
17501 | 1649 |
lemma id_take_nth_drop: |
1650 |
"i < length xs \<Longrightarrow> xs = take i xs @ xs!i # drop (Suc i) xs" |
|
1651 |
proof - |
|
1652 |
assume si: "i < length xs" |
|
1653 |
hence "xs = take (Suc i) xs @ drop (Suc i) xs" by auto |
|
1654 |
moreover |
|
1655 |
from si have "take (Suc i) xs = take i xs @ [xs!i]" |
|
1656 |
apply (rule_tac take_Suc_conv_app_nth) by arith |
|
1657 |
ultimately show ?thesis by auto |
|
1658 |
qed |
|
1659 |
||
1660 |
lemma upd_conv_take_nth_drop: |
|
1661 |
"i < length xs \<Longrightarrow> xs[i:=a] = take i xs @ a # drop (Suc i) xs" |
|
1662 |
proof - |
|
1663 |
assume i: "i < length xs" |
|
1664 |
have "xs[i:=a] = (take i xs @ xs!i # drop (Suc i) xs)[i:=a]" |
|
1665 |
by(rule arg_cong[OF id_take_nth_drop[OF i]]) |
|
1666 |
also have "\<dots> = take i xs @ a # drop (Suc i) xs" |
|
1667 |
using i by (simp add: list_update_append) |
|
1668 |
finally show ?thesis . |
|
1669 |
qed |
|
1670 |
||
24796 | 1671 |
lemma nth_drop': |
1672 |
"i < length xs \<Longrightarrow> xs ! i # drop (Suc i) xs = drop i xs" |
|
1673 |
apply (induct i arbitrary: xs) |
|
1674 |
apply (simp add: neq_Nil_conv) |
|
1675 |
apply (erule exE)+ |
|
1676 |
apply simp |
|
1677 |
apply (case_tac xs) |
|
1678 |
apply simp_all |
|
1679 |
done |
|
1680 |
||
13114 | 1681 |
|
15392 | 1682 |
subsubsection {* @{text takeWhile} and @{text dropWhile} *} |
13114 | 1683 |
|
13142 | 1684 |
lemma takeWhile_dropWhile_id [simp]: "takeWhile P xs @ dropWhile P xs = xs" |
13145 | 1685 |
by (induct xs) auto |
13114 | 1686 |
|
13142 | 1687 |
lemma takeWhile_append1 [simp]: |
13145 | 1688 |
"[| x:set xs; ~P(x)|] ==> takeWhile P (xs @ ys) = takeWhile P xs" |
1689 |
by (induct xs) auto |
|
13114 | 1690 |
|
13142 | 1691 |
lemma takeWhile_append2 [simp]: |
13145 | 1692 |
"(!!x. x : set xs ==> P x) ==> takeWhile P (xs @ ys) = xs @ takeWhile P ys" |
1693 |
by (induct xs) auto |
|
13114 | 1694 |
|
13142 | 1695 |
lemma takeWhile_tail: "\<not> P x ==> takeWhile P (xs @ (x#l)) = takeWhile P xs" |
13145 | 1696 |
by (induct xs) auto |
13114 | 1697 |
|
13142 | 1698 |
lemma dropWhile_append1 [simp]: |
13145 | 1699 |
"[| x : set xs; ~P(x)|] ==> dropWhile P (xs @ ys) = (dropWhile P xs)@ys" |
1700 |
by (induct xs) auto |
|
13114 | 1701 |
|
13142 | 1702 |
lemma dropWhile_append2 [simp]: |
13145 | 1703 |
"(!!x. x:set xs ==> P(x)) ==> dropWhile P (xs @ ys) = dropWhile P ys" |
1704 |
by (induct xs) auto |
|
13114 | 1705 |
|
23971
e6d505d5b03d
renamed lemma "set_take_whileD" to "set_takeWhileD"
krauss
parents:
23740
diff
changeset
|
1706 |
lemma set_takeWhileD: "x : set (takeWhile P xs) ==> x : set xs \<and> P x" |
13145 | 1707 |
by (induct xs) (auto split: split_if_asm) |
13114 | 1708 |
|
13913 | 1709 |
lemma takeWhile_eq_all_conv[simp]: |
1710 |
"(takeWhile P xs = xs) = (\<forall>x \<in> set xs. P x)" |
|
1711 |
by(induct xs, auto) |
|
1712 |
||
1713 |
lemma dropWhile_eq_Nil_conv[simp]: |
|
1714 |
"(dropWhile P xs = []) = (\<forall>x \<in> set xs. P x)" |
|
1715 |
by(induct xs, auto) |
|
1716 |
||
1717 |
lemma dropWhile_eq_Cons_conv: |
|
1718 |
"(dropWhile P xs = y#ys) = (xs = takeWhile P xs @ y # ys & \<not> P y)" |
|
1719 |
by(induct xs, auto) |
|
1720 |
||
17501 | 1721 |
text{* The following two lemmmas could be generalized to an arbitrary |
1722 |
property. *} |
|
1723 |
||
1724 |
lemma takeWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow> |
|
1725 |
takeWhile (\<lambda>y. y \<noteq> x) (rev xs) = rev (tl (dropWhile (\<lambda>y. y \<noteq> x) xs))" |
|
1726 |
by(induct xs) (auto simp: takeWhile_tail[where l="[]"]) |
|
1727 |
||
1728 |
lemma dropWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow> |
|
1729 |
dropWhile (\<lambda>y. y \<noteq> x) (rev xs) = x # rev (takeWhile (\<lambda>y. y \<noteq> x) xs)" |
|
1730 |
apply(induct xs) |
|
1731 |
apply simp |
|
1732 |
apply auto |
|
1733 |
apply(subst dropWhile_append2) |
|
1734 |
apply auto |
|
1735 |
done |
|
1736 |
||
18423 | 1737 |
lemma takeWhile_not_last: |
1738 |
"\<lbrakk> xs \<noteq> []; distinct xs\<rbrakk> \<Longrightarrow> takeWhile (\<lambda>y. y \<noteq> last xs) xs = butlast xs" |
|
1739 |
apply(induct xs) |
|
1740 |
apply simp |
|
1741 |
apply(case_tac xs) |
|
1742 |
apply(auto) |
|
1743 |
done |
|
1744 |
||
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
1745 |
lemma takeWhile_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1746 |
"[| 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
|
1747 |
==> takeWhile P l = takeWhile Q k" |
24349 | 1748 |
by (induct k arbitrary: l) (simp_all) |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1749 |
|
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
1750 |
lemma dropWhile_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1751 |
"[| 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
|
1752 |
==> dropWhile P l = dropWhile Q k" |
24349 | 1753 |
by (induct k arbitrary: l, simp_all) |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1754 |
|
13114 | 1755 |
|
15392 | 1756 |
subsubsection {* @{text zip} *} |
13114 | 1757 |
|
13142 | 1758 |
lemma zip_Nil [simp]: "zip [] ys = []" |
13145 | 1759 |
by (induct ys) auto |
13114 | 1760 |
|
13142 | 1761 |
lemma zip_Cons_Cons [simp]: "zip (x # xs) (y # ys) = (x, y) # zip xs ys" |
13145 | 1762 |
by simp |
13114 | 1763 |
|
13142 | 1764 |
declare zip_Cons [simp del] |
13114 | 1765 |
|
15281 | 1766 |
lemma zip_Cons1: |
1767 |
"zip (x#xs) ys = (case ys of [] \<Rightarrow> [] | y#ys \<Rightarrow> (x,y)#zip xs ys)" |
|
1768 |
by(auto split:list.split) |
|
1769 |
||
13142 | 1770 |
lemma length_zip [simp]: |
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1771 |
"length (zip xs ys) = min (length xs) (length ys)" |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1772 |
by (induct xs ys rule:list_induct2') auto |
13114 | 1773 |
|
1774 |
lemma zip_append1: |
|
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1775 |
"zip (xs @ ys) zs = |
13145 | 1776 |
zip xs (take (length xs) zs) @ zip ys (drop (length xs) zs)" |
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1777 |
by (induct xs zs rule:list_induct2') auto |
13114 | 1778 |
|
1779 |
lemma zip_append2: |
|
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1780 |
"zip xs (ys @ zs) = |
13145 | 1781 |
zip (take (length ys) xs) ys @ zip (drop (length ys) xs) zs" |
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1782 |
by (induct xs ys rule:list_induct2') auto |
13114 | 1783 |
|
13142 | 1784 |
lemma zip_append [simp]: |
1785 |
"[| length xs = length us; length ys = length vs |] ==> |
|
13145 | 1786 |
zip (xs@ys) (us@vs) = zip xs us @ zip ys vs" |
1787 |
by (simp add: zip_append1) |
|
13114 | 1788 |
|
1789 |
lemma zip_rev: |
|
14247 | 1790 |
"length xs = length ys ==> zip (rev xs) (rev ys) = rev (zip xs ys)" |
1791 |
by (induct rule:list_induct2, simp_all) |
|
13114 | 1792 |
|
23096 | 1793 |
lemma map_zip_map: |
1794 |
"map f (zip (map g xs) ys) = map (%(x,y). f(g x, y)) (zip xs ys)" |
|
1795 |
apply(induct xs arbitrary:ys) apply simp |
|
1796 |
apply(case_tac ys) |
|
1797 |
apply simp_all |
|
1798 |
done |
|
1799 |
||
1800 |
lemma map_zip_map2: |
|
1801 |
"map f (zip xs (map g ys)) = map (%(x,y). f(x, g y)) (zip xs ys)" |
|
1802 |
apply(induct xs arbitrary:ys) apply simp |
|
1803 |
apply(case_tac ys) |
|
1804 |
apply simp_all |
|
1805 |
done |
|
1806 |
||
13142 | 1807 |
lemma nth_zip [simp]: |
24526 | 1808 |
"[| i < length xs; i < length ys|] ==> (zip xs ys)!i = (xs!i, ys!i)" |
1809 |
apply (induct ys arbitrary: i xs, simp) |
|
13145 | 1810 |
apply (case_tac xs) |
1811 |
apply (simp_all add: nth.simps split: nat.split) |
|
1812 |
done |
|
13114 | 1813 |
|
1814 |
lemma set_zip: |
|
13145 | 1815 |
"set (zip xs ys) = {(xs!i, ys!i) | i. i < min (length xs) (length ys)}" |
1816 |
by (simp add: set_conv_nth cong: rev_conj_cong) |
|
13114 | 1817 |
|
1818 |
lemma zip_update: |
|
13145 | 1819 |
"length xs = length ys ==> zip (xs[i:=x]) (ys[i:=y]) = (zip xs ys)[i:=(x,y)]" |
1820 |
by (rule sym, simp add: update_zip) |
|
13114 | 1821 |
|
13142 | 1822 |
lemma zip_replicate [simp]: |
24526 | 1823 |
"zip (replicate i x) (replicate j y) = replicate (min i j) (x,y)" |
1824 |
apply (induct i arbitrary: j, auto) |
|
14208 | 1825 |
apply (case_tac j, auto) |
13145 | 1826 |
done |
13114 | 1827 |
|
19487 | 1828 |
lemma take_zip: |
24526 | 1829 |
"take n (zip xs ys) = zip (take n xs) (take n ys)" |
1830 |
apply (induct n arbitrary: xs ys) |
|
19487 | 1831 |
apply simp |
1832 |
apply (case_tac xs, simp) |
|
1833 |
apply (case_tac ys, simp_all) |
|
1834 |
done |
|
1835 |
||
1836 |
lemma drop_zip: |
|
24526 | 1837 |
"drop n (zip xs ys) = zip (drop n xs) (drop n ys)" |
1838 |
apply (induct n arbitrary: xs ys) |
|
19487 | 1839 |
apply simp |
1840 |
apply (case_tac xs, simp) |
|
1841 |
apply (case_tac ys, simp_all) |
|
1842 |
done |
|
1843 |
||
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1844 |
lemma set_zip_leftD: |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1845 |
"(x,y)\<in> set (zip xs ys) \<Longrightarrow> x \<in> set xs" |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1846 |
by (induct xs ys rule:list_induct2') auto |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1847 |
|
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1848 |
lemma set_zip_rightD: |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1849 |
"(x,y)\<in> set (zip xs ys) \<Longrightarrow> y \<in> set ys" |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1850 |
by (induct xs ys rule:list_induct2') auto |
13142 | 1851 |
|
23983 | 1852 |
lemma in_set_zipE: |
1853 |
"(x,y) : set(zip xs ys) \<Longrightarrow> (\<lbrakk> x : set xs; y : set ys \<rbrakk> \<Longrightarrow> R) \<Longrightarrow> R" |
|
1854 |
by(blast dest: set_zip_leftD set_zip_rightD) |
|
1855 |
||
15392 | 1856 |
subsubsection {* @{text list_all2} *} |
13114 | 1857 |
|
14316
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
kleing
parents:
14302
diff
changeset
|
1858 |
lemma list_all2_lengthD [intro?]: |
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
kleing
parents:
14302
diff
changeset
|
1859 |
"list_all2 P xs ys ==> length xs = length ys" |
24349 | 1860 |
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
|
1861 |
|
19787 | 1862 |
lemma list_all2_Nil [iff, code]: "list_all2 P [] ys = (ys = [])" |
24349 | 1863 |
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
|
1864 |
|
19787 | 1865 |
lemma list_all2_Nil2 [iff, code]: "list_all2 P xs [] = (xs = [])" |
24349 | 1866 |
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
|
1867 |
|
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
1868 |
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
|
1869 |
"list_all2 P (x # xs) (y # ys) = (P x y \<and> list_all2 P xs ys)" |
24349 | 1870 |
by (auto simp add: list_all2_def) |
13114 | 1871 |
|
1872 |
lemma list_all2_Cons1: |
|
13145 | 1873 |
"list_all2 P (x # xs) ys = (\<exists>z zs. ys = z # zs \<and> P x z \<and> list_all2 P xs zs)" |
1874 |
by (cases ys) auto |
|
13114 | 1875 |
|
1876 |
lemma list_all2_Cons2: |
|
13145 | 1877 |
"list_all2 P xs (y # ys) = (\<exists>z zs. xs = z # zs \<and> P z y \<and> list_all2 P zs ys)" |
1878 |
by (cases xs) auto |
|
13114 | 1879 |
|
13142 | 1880 |
lemma list_all2_rev [iff]: |
13145 | 1881 |
"list_all2 P (rev xs) (rev ys) = list_all2 P xs ys" |
1882 |
by (simp add: list_all2_def zip_rev cong: conj_cong) |
|
13114 | 1883 |
|
13863 | 1884 |
lemma list_all2_rev1: |
1885 |
"list_all2 P (rev xs) ys = list_all2 P xs (rev ys)" |
|
1886 |
by (subst list_all2_rev [symmetric]) simp |
|
1887 |
||
13114 | 1888 |
lemma list_all2_append1: |
13145 | 1889 |
"list_all2 P (xs @ ys) zs = |
1890 |
(EX us vs. zs = us @ vs \<and> length us = length xs \<and> length vs = length ys \<and> |
|
1891 |
list_all2 P xs us \<and> list_all2 P ys vs)" |
|
1892 |
apply (simp add: list_all2_def zip_append1) |
|
1893 |
apply (rule iffI) |
|
1894 |
apply (rule_tac x = "take (length xs) zs" in exI) |
|
1895 |
apply (rule_tac x = "drop (length xs) zs" in exI) |
|
14208 | 1896 |
apply (force split: nat_diff_split simp add: min_def, clarify) |
13145 | 1897 |
apply (simp add: ball_Un) |
1898 |
done |
|
13114 | 1899 |
|
1900 |
lemma list_all2_append2: |
|
13145 | 1901 |
"list_all2 P xs (ys @ zs) = |
1902 |
(EX us vs. xs = us @ vs \<and> length us = length ys \<and> length vs = length zs \<and> |
|
1903 |
list_all2 P us ys \<and> list_all2 P vs zs)" |
|
1904 |
apply (simp add: list_all2_def zip_append2) |
|
1905 |
apply (rule iffI) |
|
1906 |
apply (rule_tac x = "take (length ys) xs" in exI) |
|
1907 |
apply (rule_tac x = "drop (length ys) xs" in exI) |
|
14208 | 1908 |
apply (force split: nat_diff_split simp add: min_def, clarify) |
13145 | 1909 |
apply (simp add: ball_Un) |
1910 |
done |
|
13114 | 1911 |
|
13863 | 1912 |
lemma list_all2_append: |
14247 | 1913 |
"length xs = length ys \<Longrightarrow> |
1914 |
list_all2 P (xs@us) (ys@vs) = (list_all2 P xs ys \<and> list_all2 P us vs)" |
|
1915 |
by (induct rule:list_induct2, simp_all) |
|
13863 | 1916 |
|
1917 |
lemma list_all2_appendI [intro?, trans]: |
|
1918 |
"\<lbrakk> list_all2 P a b; list_all2 P c d \<rbrakk> \<Longrightarrow> list_all2 P (a@c) (b@d)" |
|
24349 | 1919 |
by (simp add: list_all2_append list_all2_lengthD) |
13863 | 1920 |
|
13114 | 1921 |
lemma list_all2_conv_all_nth: |
13145 | 1922 |
"list_all2 P xs ys = |
1923 |
(length xs = length ys \<and> (\<forall>i < length xs. P (xs!i) (ys!i)))" |
|
1924 |
by (force simp add: list_all2_def set_zip) |
|
13114 | 1925 |
|
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1926 |
lemma list_all2_trans: |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1927 |
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
|
1928 |
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
|
1929 |
(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
|
1930 |
proof (induct as) |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1931 |
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
|
1932 |
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
|
1933 |
proof (induct bs) |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1934 |
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
|
1935 |
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
|
1936 |
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
|
1937 |
qed simp |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1938 |
qed simp |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
1939 |
|
13863 | 1940 |
lemma list_all2_all_nthI [intro?]: |
1941 |
"length a = length b \<Longrightarrow> (\<And>n. n < length a \<Longrightarrow> P (a!n) (b!n)) \<Longrightarrow> list_all2 P a b" |
|
24349 | 1942 |
by (simp add: list_all2_conv_all_nth) |
13863 | 1943 |
|
14395 | 1944 |
lemma list_all2I: |
1945 |
"\<forall>x \<in> set (zip a b). split P x \<Longrightarrow> length a = length b \<Longrightarrow> list_all2 P a b" |
|
24349 | 1946 |
by (simp add: list_all2_def) |
14395 | 1947 |
|
14328 | 1948 |
lemma list_all2_nthD: |
13863 | 1949 |
"\<lbrakk> list_all2 P xs ys; p < size xs \<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)" |
24349 | 1950 |
by (simp add: list_all2_conv_all_nth) |
13863 | 1951 |
|
14302 | 1952 |
lemma list_all2_nthD2: |
1953 |
"\<lbrakk>list_all2 P xs ys; p < size ys\<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)" |
|
24349 | 1954 |
by (frule list_all2_lengthD) (auto intro: list_all2_nthD) |
14302 | 1955 |
|
13863 | 1956 |
lemma list_all2_map1: |
1957 |
"list_all2 P (map f as) bs = list_all2 (\<lambda>x y. P (f x) y) as bs" |
|
24349 | 1958 |
by (simp add: list_all2_conv_all_nth) |
13863 | 1959 |
|
1960 |
lemma list_all2_map2: |
|
1961 |
"list_all2 P as (map f bs) = list_all2 (\<lambda>x y. P x (f y)) as bs" |
|
24349 | 1962 |
by (auto simp add: list_all2_conv_all_nth) |
13863 | 1963 |
|
14316
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
kleing
parents:
14302
diff
changeset
|
1964 |
lemma list_all2_refl [intro?]: |
13863 | 1965 |
"(\<And>x. P x x) \<Longrightarrow> list_all2 P xs xs" |
24349 | 1966 |
by (simp add: list_all2_conv_all_nth) |
13863 | 1967 |
|
1968 |
lemma list_all2_update_cong: |
|
1969 |
"\<lbrakk> i<size xs; list_all2 P xs ys; P x y \<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])" |
|
24349 | 1970 |
by (simp add: list_all2_conv_all_nth nth_list_update) |
13863 | 1971 |
|
1972 |
lemma list_all2_update_cong2: |
|
1973 |
"\<lbrakk>list_all2 P xs ys; P x y; i < length ys\<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])" |
|
24349 | 1974 |
by (simp add: list_all2_lengthD list_all2_update_cong) |
13863 | 1975 |
|
14302 | 1976 |
lemma list_all2_takeI [simp,intro?]: |
24526 | 1977 |
"list_all2 P xs ys \<Longrightarrow> list_all2 P (take n xs) (take n ys)" |
1978 |
apply (induct xs arbitrary: n ys) |
|
1979 |
apply simp |
|
1980 |
apply (clarsimp simp add: list_all2_Cons1) |
|
1981 |
apply (case_tac n) |
|
1982 |
apply auto |
|
1983 |
done |
|
14302 | 1984 |
|
1985 |
lemma list_all2_dropI [simp,intro?]: |
|
24526 | 1986 |
"list_all2 P as bs \<Longrightarrow> list_all2 P (drop n as) (drop n bs)" |
1987 |
apply (induct as arbitrary: n bs, simp) |
|
1988 |
apply (clarsimp simp add: list_all2_Cons1) |
|
1989 |
apply (case_tac n, simp, simp) |
|
1990 |
done |
|
13863 | 1991 |
|
14327 | 1992 |
lemma list_all2_mono [intro?]: |
24526 | 1993 |
"list_all2 P xs ys \<Longrightarrow> (\<And>xs ys. P xs ys \<Longrightarrow> Q xs ys) \<Longrightarrow> list_all2 Q xs ys" |
1994 |
apply (induct xs arbitrary: ys, simp) |
|
1995 |
apply (case_tac ys, auto) |
|
1996 |
done |
|
13863 | 1997 |
|
22551 | 1998 |
lemma list_all2_eq: |
1999 |
"xs = ys \<longleftrightarrow> list_all2 (op =) xs ys" |
|
24349 | 2000 |
by (induct xs ys rule: list_induct2') auto |
22551 | 2001 |
|
13142 | 2002 |
|
15392 | 2003 |
subsubsection {* @{text foldl} and @{text foldr} *} |
13142 | 2004 |
|
2005 |
lemma foldl_append [simp]: |
|
24526 | 2006 |
"foldl f a (xs @ ys) = foldl f (foldl f a xs) ys" |
2007 |
by (induct xs arbitrary: a) auto |
|
13142 | 2008 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
2009 |
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
|
2010 |
by (induct xs) auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
2011 |
|
23096 | 2012 |
lemma foldr_map: "foldr g (map f xs) a = foldr (g o f) xs a" |
2013 |
by(induct xs) simp_all |
|
2014 |
||
24449 | 2015 |
text{* For efficient code generation: avoid intermediate list. *} |
2016 |
lemma foldl_map[code unfold]: |
|
2017 |
"foldl g a (map f xs) = foldl (%a x. g a (f x)) a xs" |
|
23096 | 2018 |
by(induct xs arbitrary:a) simp_all |
2019 |
||
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
2020 |
lemma foldl_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
2021 |
"[| 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
|
2022 |
==> foldl f a l = foldl g b k" |
24349 | 2023 |
by (induct k arbitrary: a b l) simp_all |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
2024 |
|
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
2025 |
lemma foldr_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
2026 |
"[| 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
|
2027 |
==> foldr f l a = foldr g k b" |
24349 | 2028 |
by (induct k arbitrary: a b l) simp_all |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
2029 |
|
24449 | 2030 |
lemma (in semigroup_add) foldl_assoc: |
25062 | 2031 |
shows "foldl op+ (x+y) zs = x + (foldl op+ y zs)" |
24449 | 2032 |
by (induct zs arbitrary: y) (simp_all add:add_assoc) |
2033 |
||
2034 |
lemma (in monoid_add) foldl_absorb0: |
|
25062 | 2035 |
shows "x + (foldl op+ 0 zs) = foldl op+ x zs" |
24449 | 2036 |
by (induct zs) (simp_all add:foldl_assoc) |
2037 |
||
2038 |
||
23096 | 2039 |
text{* The ``First Duality Theorem'' in Bird \& Wadler: *} |
2040 |
||
2041 |
lemma foldl_foldr1_lemma: |
|
2042 |
"foldl op + a xs = a + foldr op + xs (0\<Colon>'a::monoid_add)" |
|
2043 |
by (induct xs arbitrary: a) (auto simp:add_assoc) |
|
2044 |
||
2045 |
corollary foldl_foldr1: |
|
2046 |
"foldl op + 0 xs = foldr op + xs (0\<Colon>'a::monoid_add)" |
|
2047 |
by (simp add:foldl_foldr1_lemma) |
|
2048 |
||
2049 |
||
2050 |
text{* The ``Third Duality Theorem'' in Bird \& Wadler: *} |
|
2051 |
||
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
2052 |
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
|
2053 |
by (induct xs) auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
2054 |
|
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
2055 |
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
|
2056 |
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
|
2057 |
|
25062 | 2058 |
lemma (in ab_semigroup_add) foldr_conv_foldl: "foldr op + xs a = foldl op + a xs" |
24471
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2059 |
by (induct xs, auto simp add: foldl_assoc add_commute) |
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2060 |
|
13142 | 2061 |
text {* |
13145 | 2062 |
Note: @{text "n \<le> foldl (op +) n ns"} looks simpler, but is more |
2063 |
difficult to use because it requires an additional transitivity step. |
|
13142 | 2064 |
*} |
2065 |
||
24526 | 2066 |
lemma start_le_sum: "(m::nat) <= n ==> m <= foldl (op +) n ns" |
2067 |
by (induct ns arbitrary: n) auto |
|
2068 |
||
2069 |
lemma elem_le_sum: "(n::nat) : set ns ==> n <= foldl (op +) 0 ns" |
|
13145 | 2070 |
by (force intro: start_le_sum simp add: in_set_conv_decomp) |
13142 | 2071 |
|
2072 |
lemma sum_eq_0_conv [iff]: |
|
24526 | 2073 |
"(foldl (op +) (m::nat) ns = 0) = (m = 0 \<and> (\<forall>n \<in> set ns. n = 0))" |
2074 |
by (induct ns arbitrary: m) auto |
|
13114 | 2075 |
|
24471
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2076 |
lemma foldr_invariant: |
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2077 |
"\<lbrakk>Q x ; \<forall> x\<in> set xs. P x; \<forall> x y. P x \<and> Q y \<longrightarrow> Q (f x y) \<rbrakk> \<Longrightarrow> Q (foldr f xs x)" |
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2078 |
by (induct xs, simp_all) |
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2079 |
|
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2080 |
lemma foldl_invariant: |
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2081 |
"\<lbrakk>Q x ; \<forall> x\<in> set xs. P x; \<forall> x y. P x \<and> Q y \<longrightarrow> Q (f y x) \<rbrakk> \<Longrightarrow> Q (foldl f x xs)" |
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2082 |
by (induct xs arbitrary: x, simp_all) |
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2083 |
|
24449 | 2084 |
text{* @{const foldl} and @{text concat} *} |
2085 |
||
2086 |
lemma concat_conv_foldl: "concat xss = foldl op@ [] xss" |
|
2087 |
by (induct xss) (simp_all add:monoid_append.foldl_absorb0) |
|
2088 |
||
2089 |
lemma foldl_conv_concat: |
|
2090 |
"foldl (op @) xs xxs = xs @ (concat xxs)" |
|
2091 |
by(simp add:concat_conv_foldl monoid_append.foldl_absorb0) |
|
2092 |
||
23096 | 2093 |
subsubsection {* List summation: @{const listsum} and @{text"\<Sum>"}*} |
2094 |
||
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2095 |
lemma listsum_append [simp]: "listsum (xs @ ys) = listsum xs + listsum ys" |
24449 | 2096 |
by (induct xs) (simp_all add:add_assoc) |
2097 |
||
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2098 |
lemma listsum_rev [simp]: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2099 |
fixes xs :: "'a\<Colon>comm_monoid_add list" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2100 |
shows "listsum (rev xs) = listsum xs" |
24449 | 2101 |
by (induct xs) (simp_all add:add_ac) |
2102 |
||
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2103 |
lemma listsum_foldr: "listsum xs = foldr (op +) xs 0" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2104 |
by (induct xs) auto |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2105 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2106 |
lemma length_concat: "length (concat xss) = listsum (map length xss)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2107 |
by (induct xss) simp_all |
23096 | 2108 |
|
24449 | 2109 |
text{* For efficient code generation --- |
2110 |
@{const listsum} is not tail recursive but @{const foldl} is. *} |
|
2111 |
lemma listsum[code unfold]: "listsum xs = foldl (op +) 0 xs" |
|
23096 | 2112 |
by(simp add:listsum_foldr foldl_foldr1) |
2113 |
||
24449 | 2114 |
|
23096 | 2115 |
text{* Some syntactic sugar for summing a function over a list: *} |
2116 |
||
2117 |
syntax |
|
2118 |
"_listsum" :: "pttrn => 'a list => 'b => 'b" ("(3SUM _<-_. _)" [0, 51, 10] 10) |
|
2119 |
syntax (xsymbols) |
|
2120 |
"_listsum" :: "pttrn => 'a list => 'b => 'b" ("(3\<Sum>_\<leftarrow>_. _)" [0, 51, 10] 10) |
|
2121 |
syntax (HTML output) |
|
2122 |
"_listsum" :: "pttrn => 'a list => 'b => 'b" ("(3\<Sum>_\<leftarrow>_. _)" [0, 51, 10] 10) |
|
2123 |
||
2124 |
translations -- {* Beware of argument permutation! *} |
|
2125 |
"SUM x<-xs. b" == "CONST listsum (map (%x. b) xs)" |
|
2126 |
"\<Sum>x\<leftarrow>xs. b" == "CONST listsum (map (%x. b) xs)" |
|
2127 |
||
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2128 |
lemma listsum_triv: "(\<Sum>x\<leftarrow>xs. r) = of_nat (length xs) * r" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2129 |
by (induct xs) (simp_all add: left_distrib) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2130 |
|
23096 | 2131 |
lemma listsum_0 [simp]: "(\<Sum>x\<leftarrow>xs. 0) = 0" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2132 |
by (induct xs) (simp_all add: left_distrib) |
23096 | 2133 |
|
2134 |
text{* For non-Abelian groups @{text xs} needs to be reversed on one side: *} |
|
2135 |
lemma uminus_listsum_map: |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2136 |
fixes f :: "'a \<Rightarrow> 'b\<Colon>ab_group_add" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2137 |
shows "- listsum (map f xs) = (listsum (map (uminus o f) xs))" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2138 |
by (induct xs) simp_all |
23096 | 2139 |
|
13114 | 2140 |
|
24645 | 2141 |
subsubsection {* @{text upt} *} |
13114 | 2142 |
|
17090 | 2143 |
lemma upt_rec[code]: "[i..<j] = (if i<j then i#[Suc i..<j] else [])" |
2144 |
-- {* simp does not terminate! *} |
|
13145 | 2145 |
by (induct j) auto |
13142 | 2146 |
|
15425 | 2147 |
lemma upt_conv_Nil [simp]: "j <= i ==> [i..<j] = []" |
13145 | 2148 |
by (subst upt_rec) simp |
13114 | 2149 |
|
15425 | 2150 |
lemma upt_eq_Nil_conv[simp]: "([i..<j] = []) = (j = 0 \<or> j <= i)" |
15281 | 2151 |
by(induct j)simp_all |
2152 |
||
2153 |
lemma upt_eq_Cons_conv: |
|
24526 | 2154 |
"([i..<j] = x#xs) = (i < j & i = x & [i+1..<j] = xs)" |
2155 |
apply(induct j arbitrary: x xs) |
|
15281 | 2156 |
apply simp |
2157 |
apply(clarsimp simp add: append_eq_Cons_conv) |
|
2158 |
apply arith |
|
2159 |
done |
|
2160 |
||
15425 | 2161 |
lemma upt_Suc_append: "i <= j ==> [i..<(Suc j)] = [i..<j]@[j]" |
13145 | 2162 |
-- {* Only needed if @{text upt_Suc} is deleted from the simpset. *} |
2163 |
by simp |
|
13114 | 2164 |
|
15425 | 2165 |
lemma upt_conv_Cons: "i < j ==> [i..<j] = i # [Suc i..<j]" |
26734 | 2166 |
by (simp add: upt_rec) |
13114 | 2167 |
|
15425 | 2168 |
lemma upt_add_eq_append: "i<=j ==> [i..<j+k] = [i..<j]@[j..<j+k]" |
13145 | 2169 |
-- {* LOOPS as a simprule, since @{text "j <= j"}. *} |
2170 |
by (induct k) auto |
|
13114 | 2171 |
|
15425 | 2172 |
lemma length_upt [simp]: "length [i..<j] = j - i" |
13145 | 2173 |
by (induct j) (auto simp add: Suc_diff_le) |
13114 | 2174 |
|
15425 | 2175 |
lemma nth_upt [simp]: "i + k < j ==> [i..<j] ! k = i + k" |
13145 | 2176 |
apply (induct j) |
2177 |
apply (auto simp add: less_Suc_eq nth_append split: nat_diff_split) |
|
2178 |
done |
|
13114 | 2179 |
|
17906 | 2180 |
|
2181 |
lemma hd_upt[simp]: "i < j \<Longrightarrow> hd[i..<j] = i" |
|
2182 |
by(simp add:upt_conv_Cons) |
|
2183 |
||
2184 |
lemma last_upt[simp]: "i < j \<Longrightarrow> last[i..<j] = j - 1" |
|
2185 |
apply(cases j) |
|
2186 |
apply simp |
|
2187 |
by(simp add:upt_Suc_append) |
|
2188 |
||
24526 | 2189 |
lemma take_upt [simp]: "i+m <= n ==> take m [i..<n] = [i..<i+m]" |
2190 |
apply (induct m arbitrary: i, simp) |
|
13145 | 2191 |
apply (subst upt_rec) |
2192 |
apply (rule sym) |
|
2193 |
apply (subst upt_rec) |
|
2194 |
apply (simp del: upt.simps) |
|
2195 |
done |
|
3507 | 2196 |
|
17501 | 2197 |
lemma drop_upt[simp]: "drop m [i..<j] = [i+m..<j]" |
2198 |
apply(induct j) |
|
2199 |
apply auto |
|
2200 |
done |
|
2201 |
||
24645 | 2202 |
lemma map_Suc_upt: "map Suc [m..<n] = [Suc m..<Suc n]" |
13145 | 2203 |
by (induct n) auto |
13114 | 2204 |
|
24526 | 2205 |
lemma nth_map_upt: "i < n-m ==> (map f [m..<n]) ! i = f(m+i)" |
2206 |
apply (induct n m arbitrary: i rule: diff_induct) |
|
13145 | 2207 |
prefer 3 apply (subst map_Suc_upt[symmetric]) |
2208 |
apply (auto simp add: less_diff_conv nth_upt) |
|
2209 |
done |
|
13114 | 2210 |
|
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2211 |
lemma nth_take_lemma: |
24526 | 2212 |
"k <= length xs ==> k <= length ys ==> |
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2213 |
(!!i. i < k --> xs!i = ys!i) ==> take k xs = take k ys" |
24526 | 2214 |
apply (atomize, induct k arbitrary: xs ys) |
14208 | 2215 |
apply (simp_all add: less_Suc_eq_0_disj all_conj_distrib, clarify) |
13145 | 2216 |
txt {* Both lists must be non-empty *} |
14208 | 2217 |
apply (case_tac xs, simp) |
2218 |
apply (case_tac ys, clarify) |
|
13145 | 2219 |
apply (simp (no_asm_use)) |
2220 |
apply clarify |
|
2221 |
txt {* prenexing's needed, not miniscoping *} |
|
2222 |
apply (simp (no_asm_use) add: all_simps [symmetric] del: all_simps) |
|
2223 |
apply blast |
|
2224 |
done |
|
13114 | 2225 |
|
2226 |
lemma nth_equalityI: |
|
2227 |
"[| length xs = length ys; ALL i < length xs. xs!i = ys!i |] ==> xs = ys" |
|
13145 | 2228 |
apply (frule nth_take_lemma [OF le_refl eq_imp_le]) |
2229 |
apply (simp_all add: take_all) |
|
2230 |
done |
|
13142 | 2231 |
|
24796 | 2232 |
lemma map_nth: |
2233 |
"map (\<lambda>i. xs ! i) [0..<length xs] = xs" |
|
2234 |
by (rule nth_equalityI, auto) |
|
2235 |
||
13863 | 2236 |
(* needs nth_equalityI *) |
2237 |
lemma list_all2_antisym: |
|
2238 |
"\<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> |
|
2239 |
\<Longrightarrow> xs = ys" |
|
2240 |
apply (simp add: list_all2_conv_all_nth) |
|
14208 | 2241 |
apply (rule nth_equalityI, blast, simp) |
13863 | 2242 |
done |
2243 |
||
13142 | 2244 |
lemma take_equalityI: "(\<forall>i. take i xs = take i ys) ==> xs = ys" |
13145 | 2245 |
-- {* The famous take-lemma. *} |
2246 |
apply (drule_tac x = "max (length xs) (length ys)" in spec) |
|
2247 |
apply (simp add: le_max_iff_disj take_all) |
|
2248 |
done |
|
13142 | 2249 |
|
2250 |
||
15302 | 2251 |
lemma take_Cons': |
2252 |
"take n (x # xs) = (if n = 0 then [] else x # take (n - 1) xs)" |
|
2253 |
by (cases n) simp_all |
|
2254 |
||
2255 |
lemma drop_Cons': |
|
2256 |
"drop n (x # xs) = (if n = 0 then x # xs else drop (n - 1) xs)" |
|
2257 |
by (cases n) simp_all |
|
2258 |
||
2259 |
lemma nth_Cons': "(x # xs)!n = (if n = 0 then x else xs!(n - 1))" |
|
2260 |
by (cases n) simp_all |
|
2261 |
||
18622 | 2262 |
lemmas take_Cons_number_of = take_Cons'[of "number_of v",standard] |
2263 |
lemmas drop_Cons_number_of = drop_Cons'[of "number_of v",standard] |
|
2264 |
lemmas nth_Cons_number_of = nth_Cons'[of _ _ "number_of v",standard] |
|
2265 |
||
2266 |
declare take_Cons_number_of [simp] |
|
2267 |
drop_Cons_number_of [simp] |
|
2268 |
nth_Cons_number_of [simp] |
|
15302 | 2269 |
|
2270 |
||
15392 | 2271 |
subsubsection {* @{text "distinct"} and @{text remdups} *} |
13142 | 2272 |
|
2273 |
lemma distinct_append [simp]: |
|
13145 | 2274 |
"distinct (xs @ ys) = (distinct xs \<and> distinct ys \<and> set xs \<inter> set ys = {})" |
2275 |
by (induct xs) auto |
|
13142 | 2276 |
|
15305 | 2277 |
lemma distinct_rev[simp]: "distinct(rev xs) = distinct xs" |
2278 |
by(induct xs) auto |
|
2279 |
||
13142 | 2280 |
lemma set_remdups [simp]: "set (remdups xs) = set xs" |
13145 | 2281 |
by (induct xs) (auto simp add: insert_absorb) |
13142 | 2282 |
|
2283 |
lemma distinct_remdups [iff]: "distinct (remdups xs)" |
|
13145 | 2284 |
by (induct xs) auto |
13142 | 2285 |
|
25287 | 2286 |
lemma distinct_remdups_id: "distinct xs ==> remdups xs = xs" |
2287 |
by (induct xs, auto) |
|
2288 |
||
26734 | 2289 |
lemma remdups_id_iff_distinct [simp]: "remdups xs = xs \<longleftrightarrow> distinct xs" |
2290 |
by (metis distinct_remdups distinct_remdups_id) |
|
25287 | 2291 |
|
24566 | 2292 |
lemma finite_distinct_list: "finite A \<Longrightarrow> EX xs. set xs = A & distinct xs" |
24632 | 2293 |
by (metis distinct_remdups finite_list set_remdups) |
24566 | 2294 |
|
15072 | 2295 |
lemma remdups_eq_nil_iff [simp]: "(remdups x = []) = (x = [])" |
24349 | 2296 |
by (induct x, auto) |
15072 | 2297 |
|
2298 |
lemma remdups_eq_nil_right_iff [simp]: "([] = remdups x) = (x = [])" |
|
24349 | 2299 |
by (induct x, auto) |
15072 | 2300 |
|
15245 | 2301 |
lemma length_remdups_leq[iff]: "length(remdups xs) <= length xs" |
2302 |
by (induct xs) auto |
|
2303 |
||
2304 |
lemma length_remdups_eq[iff]: |
|
2305 |
"(length (remdups xs) = length xs) = (remdups xs = xs)" |
|
2306 |
apply(induct xs) |
|
2307 |
apply auto |
|
2308 |
apply(subgoal_tac "length (remdups xs) <= length xs") |
|
2309 |
apply arith |
|
2310 |
apply(rule length_remdups_leq) |
|
2311 |
done |
|
2312 |
||
18490 | 2313 |
|
2314 |
lemma distinct_map: |
|
2315 |
"distinct(map f xs) = (distinct xs & inj_on f (set xs))" |
|
2316 |
by (induct xs) auto |
|
2317 |
||
2318 |
||
13142 | 2319 |
lemma distinct_filter [simp]: "distinct xs ==> distinct (filter P xs)" |
13145 | 2320 |
by (induct xs) auto |
13114 | 2321 |
|
17501 | 2322 |
lemma distinct_upt[simp]: "distinct[i..<j]" |
2323 |
by (induct j) auto |
|
2324 |
||
24526 | 2325 |
lemma distinct_take[simp]: "distinct xs \<Longrightarrow> distinct (take i xs)" |
2326 |
apply(induct xs arbitrary: i) |
|
17501 | 2327 |
apply simp |
2328 |
apply (case_tac i) |
|
2329 |
apply simp_all |
|
2330 |
apply(blast dest:in_set_takeD) |
|
2331 |
done |
|
2332 |
||
24526 | 2333 |
lemma distinct_drop[simp]: "distinct xs \<Longrightarrow> distinct (drop i xs)" |
2334 |
apply(induct xs arbitrary: i) |
|
17501 | 2335 |
apply simp |
2336 |
apply (case_tac i) |
|
2337 |
apply simp_all |
|
2338 |
done |
|
2339 |
||
2340 |
lemma distinct_list_update: |
|
2341 |
assumes d: "distinct xs" and a: "a \<notin> set xs - {xs!i}" |
|
2342 |
shows "distinct (xs[i:=a])" |
|
2343 |
proof (cases "i < length xs") |
|
2344 |
case True |
|
2345 |
with a have "a \<notin> set (take i xs @ xs ! i # drop (Suc i) xs) - {xs!i}" |
|
2346 |
apply (drule_tac id_take_nth_drop) by simp |
|
2347 |
with d True show ?thesis |
|
2348 |
apply (simp add: upd_conv_take_nth_drop) |
|
2349 |
apply (drule subst [OF id_take_nth_drop]) apply assumption |
|
2350 |
apply simp apply (cases "a = xs!i") apply simp by blast |
|
2351 |
next |
|
2352 |
case False with d show ?thesis by auto |
|
2353 |
qed |
|
2354 |
||
2355 |
||
2356 |
text {* It is best to avoid this indexed version of distinct, but |
|
2357 |
sometimes it is useful. *} |
|
2358 |
||
13142 | 2359 |
lemma distinct_conv_nth: |
17501 | 2360 |
"distinct xs = (\<forall>i < size xs. \<forall>j < size xs. i \<noteq> j --> xs!i \<noteq> xs!j)" |
15251 | 2361 |
apply (induct xs, simp, simp) |
14208 | 2362 |
apply (rule iffI, clarsimp) |
13145 | 2363 |
apply (case_tac i) |
14208 | 2364 |
apply (case_tac j, simp) |
13145 | 2365 |
apply (simp add: set_conv_nth) |
2366 |
apply (case_tac j) |
|
24648 | 2367 |
apply (clarsimp simp add: set_conv_nth, simp) |
13145 | 2368 |
apply (rule conjI) |
24648 | 2369 |
(*TOO SLOW |
24632 | 2370 |
apply (metis Zero_neq_Suc gr0_conv_Suc in_set_conv_nth lessI less_trans_Suc nth_Cons' nth_Cons_Suc) |
24648 | 2371 |
*) |
2372 |
apply (clarsimp simp add: set_conv_nth) |
|
2373 |
apply (erule_tac x = 0 in allE, simp) |
|
2374 |
apply (erule_tac x = "Suc i" in allE, simp, clarsimp) |
|
25130 | 2375 |
(*TOO SLOW |
24632 | 2376 |
apply (metis Suc_Suc_eq lessI less_trans_Suc nth_Cons_Suc) |
25130 | 2377 |
*) |
2378 |
apply (erule_tac x = "Suc i" in allE, simp) |
|
2379 |
apply (erule_tac x = "Suc j" in allE, simp) |
|
13145 | 2380 |
done |
13114 | 2381 |
|
18490 | 2382 |
lemma nth_eq_iff_index_eq: |
2383 |
"\<lbrakk> distinct xs; i < length xs; j < length xs \<rbrakk> \<Longrightarrow> (xs!i = xs!j) = (i = j)" |
|
2384 |
by(auto simp: distinct_conv_nth) |
|
2385 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2386 |
lemma distinct_card: "distinct xs ==> card (set xs) = size xs" |
24349 | 2387 |
by (induct xs) auto |
14388 | 2388 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2389 |
lemma card_distinct: "card (set xs) = size xs ==> distinct xs" |
14388 | 2390 |
proof (induct xs) |
2391 |
case Nil thus ?case by simp |
|
2392 |
next |
|
2393 |
case (Cons x xs) |
|
2394 |
show ?case |
|
2395 |
proof (cases "x \<in> set xs") |
|
2396 |
case False with Cons show ?thesis by simp |
|
2397 |
next |
|
2398 |
case True with Cons.prems |
|
2399 |
have "card (set xs) = Suc (length xs)" |
|
2400 |
by (simp add: card_insert_if split: split_if_asm) |
|
2401 |
moreover have "card (set xs) \<le> length xs" by (rule card_length) |
|
2402 |
ultimately have False by simp |
|
2403 |
thus ?thesis .. |
|
2404 |
qed |
|
2405 |
qed |
|
2406 |
||
25287 | 2407 |
lemma not_distinct_decomp: "~ distinct ws ==> EX xs ys zs y. ws = xs@[y]@ys@[y]@zs" |
2408 |
apply (induct n == "length ws" arbitrary:ws) apply simp |
|
2409 |
apply(case_tac ws) apply simp |
|
2410 |
apply (simp split:split_if_asm) |
|
2411 |
apply (metis Cons_eq_appendI eq_Nil_appendI split_list) |
|
2412 |
done |
|
18490 | 2413 |
|
2414 |
lemma length_remdups_concat: |
|
2415 |
"length(remdups(concat xss)) = card(\<Union>xs \<in> set xss. set xs)" |
|
24308 | 2416 |
by(simp add: set_concat distinct_card[symmetric]) |
17906 | 2417 |
|
2418 |
||
15392 | 2419 |
subsubsection {* @{text remove1} *} |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2420 |
|
18049 | 2421 |
lemma remove1_append: |
2422 |
"remove1 x (xs @ ys) = |
|
2423 |
(if x \<in> set xs then remove1 x xs @ ys else xs @ remove1 x ys)" |
|
2424 |
by (induct xs) auto |
|
2425 |
||
23479 | 2426 |
lemma in_set_remove1[simp]: |
2427 |
"a \<noteq> b \<Longrightarrow> a : set(remove1 b xs) = (a : set xs)" |
|
2428 |
apply (induct xs) |
|
2429 |
apply auto |
|
2430 |
done |
|
2431 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2432 |
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
|
2433 |
apply(induct xs) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2434 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2435 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2436 |
apply blast |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2437 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2438 |
|
17724 | 2439 |
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
|
2440 |
apply(induct xs) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2441 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2442 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2443 |
apply blast |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2444 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2445 |
|
23479 | 2446 |
lemma length_remove1: |
2447 |
"length(remove1 x xs) = (if x : set xs then length xs - 1 else length xs)" |
|
2448 |
apply (induct xs) |
|
2449 |
apply (auto dest!:length_pos_if_in_set) |
|
2450 |
done |
|
2451 |
||
18049 | 2452 |
lemma remove1_filter_not[simp]: |
2453 |
"\<not> P x \<Longrightarrow> remove1 x (filter P xs) = filter P xs" |
|
2454 |
by(induct xs) auto |
|
2455 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2456 |
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
|
2457 |
apply(insert set_remove1_subset) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2458 |
apply fast |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2459 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2460 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2461 |
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
|
2462 |
by (induct xs) simp_all |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2463 |
|
13114 | 2464 |
|
27693 | 2465 |
subsubsection {* @{text removeAll} *} |
2466 |
||
2467 |
lemma removeAll_append[simp]: |
|
2468 |
"removeAll x (xs @ ys) = removeAll x xs @ removeAll x ys" |
|
2469 |
by (induct xs) auto |
|
2470 |
||
2471 |
lemma set_removeAll[simp]: "set(removeAll x xs) = set xs - {x}" |
|
2472 |
by (induct xs) auto |
|
2473 |
||
2474 |
lemma removeAll_id[simp]: "x \<notin> set xs \<Longrightarrow> removeAll x xs = xs" |
|
2475 |
by (induct xs) auto |
|
2476 |
||
2477 |
(* Needs count:: 'a \<Rightarrow> a' list \<Rightarrow> nat |
|
2478 |
lemma length_removeAll: |
|
2479 |
"length(removeAll x xs) = length xs - count x xs" |
|
2480 |
*) |
|
2481 |
||
2482 |
lemma removeAll_filter_not[simp]: |
|
2483 |
"\<not> P x \<Longrightarrow> removeAll x (filter P xs) = filter P xs" |
|
2484 |
by(induct xs) auto |
|
2485 |
||
2486 |
||
2487 |
lemma distinct_remove1_removeAll: |
|
2488 |
"distinct xs ==> remove1 x xs = removeAll x xs" |
|
2489 |
by (induct xs) simp_all |
|
2490 |
||
2491 |
lemma map_removeAll_inj_on: "inj_on f (insert x (set xs)) \<Longrightarrow> |
|
2492 |
map f (removeAll x xs) = removeAll (f x) (map f xs)" |
|
2493 |
by (induct xs) (simp_all add:inj_on_def) |
|
2494 |
||
2495 |
lemma map_removeAll_inj: "inj f \<Longrightarrow> |
|
2496 |
map f (removeAll x xs) = removeAll (f x) (map f xs)" |
|
2497 |
by(metis map_removeAll_inj_on subset_inj_on subset_UNIV) |
|
2498 |
||
2499 |
||
15392 | 2500 |
subsubsection {* @{text replicate} *} |
13114 | 2501 |
|
13142 | 2502 |
lemma length_replicate [simp]: "length (replicate n x) = n" |
13145 | 2503 |
by (induct n) auto |
13124 | 2504 |
|
13142 | 2505 |
lemma map_replicate [simp]: "map f (replicate n x) = replicate n (f x)" |
13145 | 2506 |
by (induct n) auto |
13114 | 2507 |
|
2508 |
lemma replicate_app_Cons_same: |
|
13145 | 2509 |
"(replicate n x) @ (x # xs) = x # replicate n x @ xs" |
2510 |
by (induct n) auto |
|
13114 | 2511 |
|
13142 | 2512 |
lemma rev_replicate [simp]: "rev (replicate n x) = replicate n x" |
14208 | 2513 |
apply (induct n, simp) |
13145 | 2514 |
apply (simp add: replicate_app_Cons_same) |
2515 |
done |
|
13114 | 2516 |
|
13142 | 2517 |
lemma replicate_add: "replicate (n + m) x = replicate n x @ replicate m x" |
13145 | 2518 |
by (induct n) auto |
13114 | 2519 |
|
16397 | 2520 |
text{* Courtesy of Matthias Daum: *} |
2521 |
lemma append_replicate_commute: |
|
2522 |
"replicate n x @ replicate k x = replicate k x @ replicate n x" |
|
2523 |
apply (simp add: replicate_add [THEN sym]) |
|
2524 |
apply (simp add: add_commute) |
|
2525 |
done |
|
2526 |
||
13142 | 2527 |
lemma hd_replicate [simp]: "n \<noteq> 0 ==> hd (replicate n x) = x" |
13145 | 2528 |
by (induct n) auto |
13114 | 2529 |
|
13142 | 2530 |
lemma tl_replicate [simp]: "n \<noteq> 0 ==> tl (replicate n x) = replicate (n - 1) x" |
13145 | 2531 |
by (induct n) auto |
13114 | 2532 |
|
13142 | 2533 |
lemma last_replicate [simp]: "n \<noteq> 0 ==> last (replicate n x) = x" |
13145 | 2534 |
by (atomize (full), induct n) auto |
13114 | 2535 |
|
24526 | 2536 |
lemma nth_replicate[simp]: "i < n ==> (replicate n x)!i = x" |
2537 |
apply (induct n arbitrary: i, simp) |
|
13145 | 2538 |
apply (simp add: nth_Cons split: nat.split) |
2539 |
done |
|
13114 | 2540 |
|
16397 | 2541 |
text{* Courtesy of Matthias Daum (2 lemmas): *} |
2542 |
lemma take_replicate[simp]: "take i (replicate k x) = replicate (min i k) x" |
|
2543 |
apply (case_tac "k \<le> i") |
|
2544 |
apply (simp add: min_def) |
|
2545 |
apply (drule not_leE) |
|
2546 |
apply (simp add: min_def) |
|
2547 |
apply (subgoal_tac "replicate k x = replicate i x @ replicate (k - i) x") |
|
2548 |
apply simp |
|
2549 |
apply (simp add: replicate_add [symmetric]) |
|
2550 |
done |
|
2551 |
||
24526 | 2552 |
lemma drop_replicate[simp]: "drop i (replicate k x) = replicate (k-i) x" |
2553 |
apply (induct k arbitrary: i) |
|
16397 | 2554 |
apply simp |
2555 |
apply clarsimp |
|
2556 |
apply (case_tac i) |
|
2557 |
apply simp |
|
2558 |
apply clarsimp |
|
2559 |
done |
|
2560 |
||
2561 |
||
13142 | 2562 |
lemma set_replicate_Suc: "set (replicate (Suc n) x) = {x}" |
13145 | 2563 |
by (induct n) auto |
13114 | 2564 |
|
13142 | 2565 |
lemma set_replicate [simp]: "n \<noteq> 0 ==> set (replicate n x) = {x}" |
13145 | 2566 |
by (fast dest!: not0_implies_Suc intro!: set_replicate_Suc) |
13114 | 2567 |
|
13142 | 2568 |
lemma set_replicate_conv_if: "set (replicate n x) = (if n = 0 then {} else {x})" |
13145 | 2569 |
by auto |
13114 | 2570 |
|
13142 | 2571 |
lemma in_set_replicateD: "x : set (replicate n y) ==> x = y" |
13145 | 2572 |
by (simp add: set_replicate_conv_if split: split_if_asm) |
13114 | 2573 |
|
24796 | 2574 |
lemma replicate_append_same: |
2575 |
"replicate i x @ [x] = x # replicate i x" |
|
2576 |
by (induct i) simp_all |
|
2577 |
||
2578 |
lemma map_replicate_trivial: |
|
2579 |
"map (\<lambda>i. x) [0..<i] = replicate i x" |
|
2580 |
by (induct i) (simp_all add: replicate_append_same) |
|
2581 |
||
13114 | 2582 |
|
15392 | 2583 |
subsubsection{*@{text rotate1} and @{text rotate}*} |
15302 | 2584 |
|
2585 |
lemma rotate_simps[simp]: "rotate1 [] = [] \<and> rotate1 (x#xs) = xs @ [x]" |
|
2586 |
by(simp add:rotate1_def) |
|
2587 |
||
2588 |
lemma rotate0[simp]: "rotate 0 = id" |
|
2589 |
by(simp add:rotate_def) |
|
2590 |
||
2591 |
lemma rotate_Suc[simp]: "rotate (Suc n) xs = rotate1(rotate n xs)" |
|
2592 |
by(simp add:rotate_def) |
|
2593 |
||
2594 |
lemma rotate_add: |
|
2595 |
"rotate (m+n) = rotate m o rotate n" |
|
2596 |
by(simp add:rotate_def funpow_add) |
|
2597 |
||
2598 |
lemma rotate_rotate: "rotate m (rotate n xs) = rotate (m+n) xs" |
|
2599 |
by(simp add:rotate_add) |
|
2600 |
||
18049 | 2601 |
lemma rotate1_rotate_swap: "rotate1 (rotate n xs) = rotate n (rotate1 xs)" |
2602 |
by(simp add:rotate_def funpow_swap1) |
|
2603 |
||
15302 | 2604 |
lemma rotate1_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate1 xs = xs" |
2605 |
by(cases xs) simp_all |
|
2606 |
||
2607 |
lemma rotate_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate n xs = xs" |
|
2608 |
apply(induct n) |
|
2609 |
apply simp |
|
2610 |
apply (simp add:rotate_def) |
|
13145 | 2611 |
done |
13114 | 2612 |
|
15302 | 2613 |
lemma rotate1_hd_tl: "xs \<noteq> [] \<Longrightarrow> rotate1 xs = tl xs @ [hd xs]" |
2614 |
by(simp add:rotate1_def split:list.split) |
|
2615 |
||
2616 |
lemma rotate_drop_take: |
|
2617 |
"rotate n xs = drop (n mod length xs) xs @ take (n mod length xs) xs" |
|
2618 |
apply(induct n) |
|
2619 |
apply simp |
|
2620 |
apply(simp add:rotate_def) |
|
2621 |
apply(cases "xs = []") |
|
2622 |
apply (simp) |
|
2623 |
apply(case_tac "n mod length xs = 0") |
|
2624 |
apply(simp add:mod_Suc) |
|
2625 |
apply(simp add: rotate1_hd_tl drop_Suc take_Suc) |
|
2626 |
apply(simp add:mod_Suc rotate1_hd_tl drop_Suc[symmetric] drop_tl[symmetric] |
|
2627 |
take_hd_drop linorder_not_le) |
|
13145 | 2628 |
done |
13114 | 2629 |
|
15302 | 2630 |
lemma rotate_conv_mod: "rotate n xs = rotate (n mod length xs) xs" |
2631 |
by(simp add:rotate_drop_take) |
|
2632 |
||
2633 |
lemma rotate_id[simp]: "n mod length xs = 0 \<Longrightarrow> rotate n xs = xs" |
|
2634 |
by(simp add:rotate_drop_take) |
|
2635 |
||
2636 |
lemma length_rotate1[simp]: "length(rotate1 xs) = length xs" |
|
2637 |
by(simp add:rotate1_def split:list.split) |
|
2638 |
||
24526 | 2639 |
lemma length_rotate[simp]: "length(rotate n xs) = length xs" |
2640 |
by (induct n arbitrary: xs) (simp_all add:rotate_def) |
|
15302 | 2641 |
|
2642 |
lemma distinct1_rotate[simp]: "distinct(rotate1 xs) = distinct xs" |
|
2643 |
by(simp add:rotate1_def split:list.split) blast |
|
2644 |
||
2645 |
lemma distinct_rotate[simp]: "distinct(rotate n xs) = distinct xs" |
|
2646 |
by (induct n) (simp_all add:rotate_def) |
|
2647 |
||
2648 |
lemma rotate_map: "rotate n (map f xs) = map f (rotate n xs)" |
|
2649 |
by(simp add:rotate_drop_take take_map drop_map) |
|
2650 |
||
2651 |
lemma set_rotate1[simp]: "set(rotate1 xs) = set xs" |
|
2652 |
by(simp add:rotate1_def split:list.split) |
|
2653 |
||
2654 |
lemma set_rotate[simp]: "set(rotate n xs) = set xs" |
|
2655 |
by (induct n) (simp_all add:rotate_def) |
|
2656 |
||
2657 |
lemma rotate1_is_Nil_conv[simp]: "(rotate1 xs = []) = (xs = [])" |
|
2658 |
by(simp add:rotate1_def split:list.split) |
|
2659 |
||
2660 |
lemma rotate_is_Nil_conv[simp]: "(rotate n xs = []) = (xs = [])" |
|
2661 |
by (induct n) (simp_all add:rotate_def) |
|
13114 | 2662 |
|
15439 | 2663 |
lemma rotate_rev: |
2664 |
"rotate n (rev xs) = rev(rotate (length xs - (n mod length xs)) xs)" |
|
2665 |
apply(simp add:rotate_drop_take rev_drop rev_take) |
|
2666 |
apply(cases "length xs = 0") |
|
2667 |
apply simp |
|
2668 |
apply(cases "n mod length xs = 0") |
|
2669 |
apply simp |
|
2670 |
apply(simp add:rotate_drop_take rev_drop rev_take) |
|
2671 |
done |
|
2672 |
||
18423 | 2673 |
lemma hd_rotate_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd(rotate n xs) = xs!(n mod length xs)" |
2674 |
apply(simp add:rotate_drop_take hd_append hd_drop_conv_nth hd_conv_nth) |
|
2675 |
apply(subgoal_tac "length xs \<noteq> 0") |
|
2676 |
prefer 2 apply simp |
|
2677 |
using mod_less_divisor[of "length xs" n] by arith |
|
2678 |
||
13114 | 2679 |
|
15392 | 2680 |
subsubsection {* @{text sublist} --- a generalization of @{text nth} to sets *} |
13114 | 2681 |
|
13142 | 2682 |
lemma sublist_empty [simp]: "sublist xs {} = []" |
13145 | 2683 |
by (auto simp add: sublist_def) |
13114 | 2684 |
|
13142 | 2685 |
lemma sublist_nil [simp]: "sublist [] A = []" |
13145 | 2686 |
by (auto simp add: sublist_def) |
13114 | 2687 |
|
15281 | 2688 |
lemma length_sublist: |
2689 |
"length(sublist xs I) = card{i. i < length xs \<and> i : I}" |
|
2690 |
by(simp add: sublist_def length_filter_conv_card cong:conj_cong) |
|
2691 |
||
2692 |
lemma sublist_shift_lemma_Suc: |
|
24526 | 2693 |
"map fst (filter (%p. P(Suc(snd p))) (zip xs is)) = |
2694 |
map fst (filter (%p. P(snd p)) (zip xs (map Suc is)))" |
|
2695 |
apply(induct xs arbitrary: "is") |
|
15281 | 2696 |
apply simp |
2697 |
apply (case_tac "is") |
|
2698 |
apply simp |
|
2699 |
apply simp |
|
2700 |
done |
|
2701 |
||
13114 | 2702 |
lemma sublist_shift_lemma: |
23279
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
2703 |
"map fst [p<-zip xs [i..<i + length xs] . snd p : A] = |
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
2704 |
map fst [p<-zip xs [0..<length xs] . snd p + i : A]" |
13145 | 2705 |
by (induct xs rule: rev_induct) (simp_all add: add_commute) |
13114 | 2706 |
|
2707 |
lemma sublist_append: |
|
15168 | 2708 |
"sublist (l @ l') A = sublist l A @ sublist l' {j. j + length l : A}" |
13145 | 2709 |
apply (unfold sublist_def) |
14208 | 2710 |
apply (induct l' rule: rev_induct, simp) |
13145 | 2711 |
apply (simp add: upt_add_eq_append[of 0] zip_append sublist_shift_lemma) |
2712 |
apply (simp add: add_commute) |
|
2713 |
done |
|
13114 | 2714 |
|
2715 |
lemma sublist_Cons: |
|
13145 | 2716 |
"sublist (x # l) A = (if 0:A then [x] else []) @ sublist l {j. Suc j : A}" |
2717 |
apply (induct l rule: rev_induct) |
|
2718 |
apply (simp add: sublist_def) |
|
2719 |
apply (simp del: append_Cons add: append_Cons[symmetric] sublist_append) |
|
2720 |
done |
|
13114 | 2721 |
|
24526 | 2722 |
lemma set_sublist: "set(sublist xs I) = {xs!i|i. i<size xs \<and> i \<in> I}" |
2723 |
apply(induct xs arbitrary: I) |
|
25162 | 2724 |
apply(auto simp: sublist_Cons nth_Cons split:nat.split dest!: gr0_implies_Suc) |
15281 | 2725 |
done |
2726 |
||
2727 |
lemma set_sublist_subset: "set(sublist xs I) \<subseteq> set xs" |
|
2728 |
by(auto simp add:set_sublist) |
|
2729 |
||
2730 |
lemma notin_set_sublistI[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(sublist xs I)" |
|
2731 |
by(auto simp add:set_sublist) |
|
2732 |
||
2733 |
lemma in_set_sublistD: "x \<in> set(sublist xs I) \<Longrightarrow> x \<in> set xs" |
|
2734 |
by(auto simp add:set_sublist) |
|
2735 |
||
13142 | 2736 |
lemma sublist_singleton [simp]: "sublist [x] A = (if 0 : A then [x] else [])" |
13145 | 2737 |
by (simp add: sublist_Cons) |
13114 | 2738 |
|
15281 | 2739 |
|
24526 | 2740 |
lemma distinct_sublistI[simp]: "distinct xs \<Longrightarrow> distinct(sublist xs I)" |
2741 |
apply(induct xs arbitrary: I) |
|
15281 | 2742 |
apply simp |
2743 |
apply(auto simp add:sublist_Cons) |
|
2744 |
done |
|
2745 |
||
2746 |
||
15045 | 2747 |
lemma sublist_upt_eq_take [simp]: "sublist l {..<n} = take n l" |
14208 | 2748 |
apply (induct l rule: rev_induct, simp) |
13145 | 2749 |
apply (simp split: nat_diff_split add: sublist_append) |
2750 |
done |
|
13114 | 2751 |
|
24526 | 2752 |
lemma filter_in_sublist: |
2753 |
"distinct xs \<Longrightarrow> filter (%x. x \<in> set(sublist xs s)) xs = sublist xs s" |
|
2754 |
proof (induct xs arbitrary: s) |
|
17501 | 2755 |
case Nil thus ?case by simp |
2756 |
next |
|
2757 |
case (Cons a xs) |
|
2758 |
moreover hence "!x. x: set xs \<longrightarrow> x \<noteq> a" by auto |
|
2759 |
ultimately show ?case by(simp add: sublist_Cons cong:filter_cong) |
|
2760 |
qed |
|
2761 |
||
13114 | 2762 |
|
19390 | 2763 |
subsubsection {* @{const splice} *} |
2764 |
||
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2765 |
lemma splice_Nil2 [simp, code]: |
19390 | 2766 |
"splice xs [] = xs" |
2767 |
by (cases xs) simp_all |
|
2768 |
||
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2769 |
lemma splice_Cons_Cons [simp, code]: |
19390 | 2770 |
"splice (x#xs) (y#ys) = x # y # splice xs ys" |
2771 |
by simp |
|
2772 |
||
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2773 |
declare splice.simps(2) [simp del, code del] |
19390 | 2774 |
|
24526 | 2775 |
lemma length_splice[simp]: "length(splice xs ys) = length xs + length ys" |
2776 |
apply(induct xs arbitrary: ys) apply simp |
|
22793 | 2777 |
apply(case_tac ys) |
2778 |
apply auto |
|
2779 |
done |
|
2780 |
||
24616 | 2781 |
|
2782 |
subsection {*Sorting*} |
|
2783 |
||
24617 | 2784 |
text{* Currently it is not shown that @{const sort} returns a |
2785 |
permutation of its input because the nicest proof is via multisets, |
|
2786 |
which are not yet available. Alternatively one could define a function |
|
2787 |
that counts the number of occurrences of an element in a list and use |
|
2788 |
that instead of multisets to state the correctness property. *} |
|
2789 |
||
24616 | 2790 |
context linorder |
2791 |
begin |
|
2792 |
||
25062 | 2793 |
lemma sorted_Cons: "sorted (x#xs) = (sorted xs & (ALL y:set xs. x <= y))" |
24616 | 2794 |
apply(induct xs arbitrary: x) apply simp |
2795 |
by simp (blast intro: order_trans) |
|
2796 |
||
2797 |
lemma sorted_append: |
|
25062 | 2798 |
"sorted (xs@ys) = (sorted xs & sorted ys & (\<forall>x \<in> set xs. \<forall>y \<in> set ys. x\<le>y))" |
24616 | 2799 |
by (induct xs) (auto simp add:sorted_Cons) |
2800 |
||
2801 |
lemma set_insort: "set(insort x xs) = insert x (set xs)" |
|
2802 |
by (induct xs) auto |
|
2803 |
||
24617 | 2804 |
lemma set_sort[simp]: "set(sort xs) = set xs" |
24616 | 2805 |
by (induct xs) (simp_all add:set_insort) |
2806 |
||
2807 |
lemma distinct_insort: "distinct (insort x xs) = (x \<notin> set xs \<and> distinct xs)" |
|
2808 |
by(induct xs)(auto simp:set_insort) |
|
2809 |
||
24617 | 2810 |
lemma distinct_sort[simp]: "distinct (sort xs) = distinct xs" |
24616 | 2811 |
by(induct xs)(simp_all add:distinct_insort set_sort) |
2812 |
||
2813 |
lemma sorted_insort: "sorted (insort x xs) = sorted xs" |
|
2814 |
apply (induct xs) |
|
24650 | 2815 |
apply(auto simp:sorted_Cons set_insort) |
24616 | 2816 |
done |
2817 |
||
2818 |
theorem sorted_sort[simp]: "sorted (sort xs)" |
|
2819 |
by (induct xs) (auto simp:sorted_insort) |
|
2820 |
||
26143
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2821 |
lemma insort_is_Cons: "\<forall>x\<in>set xs. a \<le> x \<Longrightarrow> insort a xs = a # xs" |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2822 |
by (cases xs) auto |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2823 |
|
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2824 |
lemma sorted_remove1: "sorted xs \<Longrightarrow> sorted (remove1 a xs)" |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2825 |
by (induct xs, auto simp add: sorted_Cons) |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2826 |
|
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2827 |
lemma insort_remove1: "\<lbrakk> a \<in> set xs; sorted xs \<rbrakk> \<Longrightarrow> insort a (remove1 a xs) = xs" |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2828 |
by (induct xs, auto simp add: sorted_Cons insort_is_Cons) |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2829 |
|
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2830 |
lemma sorted_remdups[simp]: |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2831 |
"sorted l \<Longrightarrow> sorted (remdups l)" |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2832 |
by (induct l) (auto simp: sorted_Cons) |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
2833 |
|
24645 | 2834 |
lemma sorted_distinct_set_unique: |
2835 |
assumes "sorted xs" "distinct xs" "sorted ys" "distinct ys" "set xs = set ys" |
|
2836 |
shows "xs = ys" |
|
2837 |
proof - |
|
26734 | 2838 |
from assms have 1: "length xs = length ys" by (auto dest!: distinct_card) |
24645 | 2839 |
from assms show ?thesis |
2840 |
proof(induct rule:list_induct2[OF 1]) |
|
2841 |
case 1 show ?case by simp |
|
2842 |
next |
|
2843 |
case 2 thus ?case by (simp add:sorted_Cons) |
|
2844 |
(metis Diff_insert_absorb antisym insertE insert_iff) |
|
2845 |
qed |
|
2846 |
qed |
|
2847 |
||
2848 |
lemma finite_sorted_distinct_unique: |
|
2849 |
shows "finite A \<Longrightarrow> EX! xs. set xs = A & sorted xs & distinct xs" |
|
2850 |
apply(drule finite_distinct_list) |
|
2851 |
apply clarify |
|
2852 |
apply(rule_tac a="sort xs" in ex1I) |
|
2853 |
apply (auto simp: sorted_distinct_set_unique) |
|
2854 |
done |
|
2855 |
||
24616 | 2856 |
end |
2857 |
||
25277 | 2858 |
lemma sorted_upt[simp]: "sorted[i..<j]" |
2859 |
by (induct j) (simp_all add:sorted_append) |
|
2860 |
||
24616 | 2861 |
|
25069 | 2862 |
subsubsection {* @{text sorted_list_of_set} *} |
2863 |
||
2864 |
text{* This function maps (finite) linearly ordered sets to sorted |
|
2865 |
lists. Warning: in most cases it is not a good idea to convert from |
|
2866 |
sets to lists but one should convert in the other direction (via |
|
2867 |
@{const set}). *} |
|
2868 |
||
2869 |
||
2870 |
context linorder |
|
2871 |
begin |
|
2872 |
||
2873 |
definition |
|
2874 |
sorted_list_of_set :: "'a set \<Rightarrow> 'a list" where |
|
27106 | 2875 |
[code func del]: "sorted_list_of_set A == THE xs. set xs = A & sorted xs & distinct xs" |
25069 | 2876 |
|
2877 |
lemma sorted_list_of_set[simp]: "finite A \<Longrightarrow> |
|
2878 |
set(sorted_list_of_set A) = A & |
|
2879 |
sorted(sorted_list_of_set A) & distinct(sorted_list_of_set A)" |
|
2880 |
apply(simp add:sorted_list_of_set_def) |
|
2881 |
apply(rule the1I2) |
|
2882 |
apply(simp_all add: finite_sorted_distinct_unique) |
|
2883 |
done |
|
2884 |
||
2885 |
lemma sorted_list_of_empty[simp]: "sorted_list_of_set {} = []" |
|
2886 |
unfolding sorted_list_of_set_def |
|
2887 |
apply(subst the_equality[of _ "[]"]) |
|
2888 |
apply simp_all |
|
2889 |
done |
|
2890 |
||
2891 |
end |
|
2892 |
||
2893 |
||
24645 | 2894 |
subsubsection {* @{text upto}: the generic interval-list *} |
2895 |
||
24697 | 2896 |
class finite_intvl_succ = linorder + |
2897 |
fixes successor :: "'a \<Rightarrow> 'a" |
|
25069 | 2898 |
assumes finite_intvl: "finite{a..b}" |
25062 | 2899 |
and successor_incr: "a < successor a" |
2900 |
and ord_discrete: "\<not>(\<exists>x. a < x & x < successor a)" |
|
24697 | 2901 |
|
2902 |
context finite_intvl_succ |
|
2903 |
begin |
|
2904 |
||
2905 |
definition |
|
25062 | 2906 |
upto :: "'a \<Rightarrow> 'a \<Rightarrow> 'a list" ("(1[_../_])") where |
25069 | 2907 |
"upto i j == sorted_list_of_set {i..j}" |
2908 |
||
2909 |
lemma upto[simp]: "set[a..b] = {a..b} & sorted[a..b] & distinct[a..b]" |
|
2910 |
by(simp add:upto_def finite_intvl) |
|
24697 | 2911 |
|
25062 | 2912 |
lemma insert_intvl: "i \<le> j \<Longrightarrow> insert i {successor i..j} = {i..j}" |
24697 | 2913 |
apply(insert successor_incr[of i]) |
2914 |
apply(auto simp: atLeastAtMost_def atLeast_def atMost_def) |
|
26734 | 2915 |
apply(metis ord_discrete less_le not_le) |
24645 | 2916 |
done |
2917 |
||
25069 | 2918 |
lemma sorted_list_of_set_rec: "i \<le> j \<Longrightarrow> |
2919 |
sorted_list_of_set {i..j} = i # sorted_list_of_set {successor i..j}" |
|
2920 |
apply(simp add:sorted_list_of_set_def upto_def) |
|
2921 |
apply (rule the1_equality[OF finite_sorted_distinct_unique]) |
|
2922 |
apply (simp add:finite_intvl) |
|
2923 |
apply(rule the1I2[OF finite_sorted_distinct_unique]) |
|
2924 |
apply (simp add:finite_intvl) |
|
2925 |
apply (simp add: sorted_Cons insert_intvl Ball_def) |
|
2926 |
apply (metis successor_incr leD less_imp_le order_trans) |
|
2927 |
done |
|
2928 |
||
27715 | 2929 |
lemma sorted_list_of_set_rec2: "i \<le> j \<Longrightarrow> |
2930 |
sorted_list_of_set {i..successor j} = |
|
2931 |
sorted_list_of_set {i..j} @ [successor j]" |
|
2932 |
apply(simp add:sorted_list_of_set_def upto_def) |
|
2933 |
apply (rule the1_equality[OF finite_sorted_distinct_unique]) |
|
2934 |
apply (simp add:finite_intvl) |
|
2935 |
apply(rule the1I2[OF finite_sorted_distinct_unique]) |
|
2936 |
apply (simp add:finite_intvl) |
|
2937 |
apply (simp add: sorted_append Ball_def expand_set_eq) |
|
2938 |
apply(rule conjI) |
|
2939 |
apply (metis eq_iff leD linear not_leE ord_discrete order_trans successor_incr) |
|
2940 |
apply (metis leD linear order_trans successor_incr) |
|
2941 |
done |
|
2942 |
||
25062 | 2943 |
lemma upto_rec[code]: "[i..j] = (if i \<le> j then i # [successor i..j] else [])" |
25069 | 2944 |
by(simp add: upto_def sorted_list_of_set_rec) |
24697 | 2945 |
|
27715 | 2946 |
lemma upto_empty[simp]: "j < i \<Longrightarrow> [i..j] = []" |
2947 |
by(simp add: upto_rec) |
|
2948 |
||
2949 |
lemma upto_rec2: "i \<le> j \<Longrightarrow> [i..successor j] = [i..j] @ [successor j]" |
|
2950 |
by(simp add: upto_def sorted_list_of_set_rec2) |
|
2951 |
||
24697 | 2952 |
end |
2953 |
||
2954 |
text{* The integers are an instance of the above class: *} |
|
2955 |
||
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25563
diff
changeset
|
2956 |
instantiation int:: finite_intvl_succ |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25563
diff
changeset
|
2957 |
begin |
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25563
diff
changeset
|
2958 |
|
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25563
diff
changeset
|
2959 |
definition |
27715 | 2960 |
successor_int_def: "successor = (%i\<Colon>int. i+1)" |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25563
diff
changeset
|
2961 |
|
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25563
diff
changeset
|
2962 |
instance |
27715 | 2963 |
by intro_classes (simp_all add: successor_int_def) |
25571
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25563
diff
changeset
|
2964 |
|
c9e39eafc7a0
instantiation target rather than legacy instance
haftmann
parents:
25563
diff
changeset
|
2965 |
end |
24645 | 2966 |
|
24697 | 2967 |
text{* Now @{term"[i..j::int]"} is defined for integers. *} |
2968 |
||
24698 | 2969 |
hide (open) const successor |
2970 |
||
27715 | 2971 |
lemma upto_rec2_int: "(i::int) \<le> j \<Longrightarrow> [i..j+1] = [i..j] @ [j+1]" |
2972 |
by(rule upto_rec2[where 'a = int, simplified successor_int_def]) |
|
2973 |
||
24645 | 2974 |
|
15392 | 2975 |
subsubsection {* @{text lists}: the list-forming operator over sets *} |
15302 | 2976 |
|
23740 | 2977 |
inductive_set |
22262 | 2978 |
lists :: "'a set => 'a list set" |
23740 | 2979 |
for A :: "'a set" |
2980 |
where |
|
2981 |
Nil [intro!]: "[]: lists A" |
|
27715 | 2982 |
| Cons [intro!,noatp]: "[| a: A; l: lists A|] ==> a#l : lists A" |
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
2983 |
|
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
2984 |
inductive_cases listsE [elim!,noatp]: "x#l : lists A" |
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
2985 |
inductive_cases listspE [elim!,noatp]: "listsp A (x # l)" |
23740 | 2986 |
|
2987 |
lemma listsp_mono [mono]: "A \<le> B ==> listsp A \<le> listsp B" |
|
26795
a27607030a1c
- Explicitely applied predicate1I in a few proofs, because it is no longer
berghofe
parents:
26771
diff
changeset
|
2988 |
by (rule predicate1I, erule listsp.induct, blast+) |
a27607030a1c
- Explicitely applied predicate1I in a few proofs, because it is no longer
berghofe
parents:
26771
diff
changeset
|
2989 |
|
a27607030a1c
- Explicitely applied predicate1I in a few proofs, because it is no longer
berghofe
parents:
26771
diff
changeset
|
2990 |
lemmas lists_mono = listsp_mono [to_set pred_subset_eq] |
22262 | 2991 |
|
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
2992 |
lemma listsp_infI: |
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
2993 |
assumes l: "listsp A l" shows "listsp B l ==> listsp (inf A B) l" using l |
24349 | 2994 |
by induct blast+ |
15302 | 2995 |
|
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
2996 |
lemmas lists_IntI = listsp_infI [to_set] |
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
2997 |
|
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
2998 |
lemma listsp_inf_eq [simp]: "listsp (inf A B) = inf (listsp A) (listsp B)" |
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
2999 |
proof (rule mono_inf [where f=listsp, THEN order_antisym]) |
22262 | 3000 |
show "mono listsp" by (simp add: mono_def listsp_mono) |
26795
a27607030a1c
- Explicitely applied predicate1I in a few proofs, because it is no longer
berghofe
parents:
26771
diff
changeset
|
3001 |
show "inf (listsp A) (listsp B) \<le> listsp (inf A B)" by (blast intro!: listsp_infI predicate1I) |
14388 | 3002 |
qed |
3003 |
||
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3004 |
lemmas listsp_conj_eq [simp] = listsp_inf_eq [simplified inf_fun_eq inf_bool_eq] |
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3005 |
|
26795
a27607030a1c
- Explicitely applied predicate1I in a few proofs, because it is no longer
berghofe
parents:
26771
diff
changeset
|
3006 |
lemmas lists_Int_eq [simp] = listsp_inf_eq [to_set pred_equals_eq] |
22262 | 3007 |
|
3008 |
lemma append_in_listsp_conv [iff]: |
|
3009 |
"(listsp A (xs @ ys)) = (listsp A xs \<and> listsp A ys)" |
|
15302 | 3010 |
by (induct xs) auto |
3011 |
||
22262 | 3012 |
lemmas append_in_lists_conv [iff] = append_in_listsp_conv [to_set] |
3013 |
||
3014 |
lemma in_listsp_conv_set: "(listsp A xs) = (\<forall>x \<in> set xs. A x)" |
|
3015 |
-- {* eliminate @{text listsp} in favour of @{text set} *} |
|
15302 | 3016 |
by (induct xs) auto |
3017 |
||
22262 | 3018 |
lemmas in_lists_conv_set = in_listsp_conv_set [to_set] |
3019 |
||
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3020 |
lemma in_listspD [dest!,noatp]: "listsp A xs ==> \<forall>x\<in>set xs. A x" |
22262 | 3021 |
by (rule in_listsp_conv_set [THEN iffD1]) |
3022 |
||
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3023 |
lemmas in_listsD [dest!,noatp] = in_listspD [to_set] |
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3024 |
|
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3025 |
lemma in_listspI [intro!,noatp]: "\<forall>x\<in>set xs. A x ==> listsp A xs" |
22262 | 3026 |
by (rule in_listsp_conv_set [THEN iffD2]) |
3027 |
||
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3028 |
lemmas in_listsI [intro!,noatp] = in_listspI [to_set] |
15302 | 3029 |
|
3030 |
lemma lists_UNIV [simp]: "lists UNIV = UNIV" |
|
3031 |
by auto |
|
3032 |
||
17086 | 3033 |
|
3034 |
||
3035 |
subsubsection{* Inductive definition for membership *} |
|
3036 |
||
23740 | 3037 |
inductive ListMem :: "'a \<Rightarrow> 'a list \<Rightarrow> bool" |
22262 | 3038 |
where |
3039 |
elem: "ListMem x (x # xs)" |
|
3040 |
| insert: "ListMem x xs \<Longrightarrow> ListMem x (y # xs)" |
|
3041 |
||
3042 |
lemma ListMem_iff: "(ListMem x xs) = (x \<in> set xs)" |
|
17086 | 3043 |
apply (rule iffI) |
3044 |
apply (induct set: ListMem) |
|
3045 |
apply auto |
|
3046 |
apply (induct xs) |
|
3047 |
apply (auto intro: ListMem.intros) |
|
3048 |
done |
|
3049 |
||
3050 |
||
3051 |
||
15392 | 3052 |
subsubsection{*Lists as Cartesian products*} |
15302 | 3053 |
|
3054 |
text{*@{text"set_Cons A Xs"}: the set of lists with head drawn from |
|
3055 |
@{term A} and tail drawn from @{term Xs}.*} |
|
3056 |
||
3057 |
constdefs |
|
3058 |
set_Cons :: "'a set \<Rightarrow> 'a list set \<Rightarrow> 'a list set" |
|
3059 |
"set_Cons A XS == {z. \<exists>x xs. z = x#xs & x \<in> A & xs \<in> XS}" |
|
27106 | 3060 |
declare set_Cons_def [code func del] |
15302 | 3061 |
|
17724 | 3062 |
lemma set_Cons_sing_Nil [simp]: "set_Cons A {[]} = (%x. [x])`A" |
15302 | 3063 |
by (auto simp add: set_Cons_def) |
3064 |
||
3065 |
text{*Yields the set of lists, all of the same length as the argument and |
|
3066 |
with elements drawn from the corresponding element of the argument.*} |
|
3067 |
||
3068 |
consts listset :: "'a set list \<Rightarrow> 'a list set" |
|
3069 |
primrec |
|
3070 |
"listset [] = {[]}" |
|
3071 |
"listset(A#As) = set_Cons A (listset As)" |
|
3072 |
||
3073 |
||
15656 | 3074 |
subsection{*Relations on Lists*} |
3075 |
||
3076 |
subsubsection {* Length Lexicographic Ordering *} |
|
3077 |
||
3078 |
text{*These orderings preserve well-foundedness: shorter lists |
|
3079 |
precede longer lists. These ordering are not used in dictionaries.*} |
|
3080 |
||
3081 |
consts lexn :: "('a * 'a)set => nat => ('a list * 'a list)set" |
|
3082 |
--{*The lexicographic ordering for lists of the specified length*} |
|
15302 | 3083 |
primrec |
15656 | 3084 |
"lexn r 0 = {}" |
3085 |
"lexn r (Suc n) = |
|
3086 |
(prod_fun (%(x,xs). x#xs) (%(x,xs). x#xs) ` (r <*lex*> lexn r n)) Int |
|
3087 |
{(xs,ys). length xs = Suc n \<and> length ys = Suc n}" |
|
15302 | 3088 |
|
3089 |
constdefs |
|
15656 | 3090 |
lex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set" |
3091 |
"lex r == \<Union>n. lexn r n" |
|
3092 |
--{*Holds only between lists of the same length*} |
|
3093 |
||
15693 | 3094 |
lenlex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set" |
3095 |
"lenlex r == inv_image (less_than <*lex*> lex r) (%xs. (length xs, xs))" |
|
15656 | 3096 |
--{*Compares lists by their length and then lexicographically*} |
15302 | 3097 |
|
27106 | 3098 |
declare lex_def [code func del] |
3099 |
||
15302 | 3100 |
|
3101 |
lemma wf_lexn: "wf r ==> wf (lexn r n)" |
|
3102 |
apply (induct n, simp, simp) |
|
3103 |
apply(rule wf_subset) |
|
3104 |
prefer 2 apply (rule Int_lower1) |
|
3105 |
apply(rule wf_prod_fun_image) |
|
3106 |
prefer 2 apply (rule inj_onI, auto) |
|
3107 |
done |
|
3108 |
||
3109 |
lemma lexn_length: |
|
24526 | 3110 |
"(xs, ys) : lexn r n ==> length xs = n \<and> length ys = n" |
3111 |
by (induct n arbitrary: xs ys) auto |
|
15302 | 3112 |
|
3113 |
lemma wf_lex [intro!]: "wf r ==> wf (lex r)" |
|
3114 |
apply (unfold lex_def) |
|
3115 |
apply (rule wf_UN) |
|
3116 |
apply (blast intro: wf_lexn, clarify) |
|
3117 |
apply (rename_tac m n) |
|
3118 |
apply (subgoal_tac "m \<noteq> n") |
|
3119 |
prefer 2 apply blast |
|
3120 |
apply (blast dest: lexn_length not_sym) |
|
3121 |
done |
|
3122 |
||
3123 |
lemma lexn_conv: |
|
15656 | 3124 |
"lexn r n = |
3125 |
{(xs,ys). length xs = n \<and> length ys = n \<and> |
|
3126 |
(\<exists>xys x y xs' ys'. xs= xys @ x#xs' \<and> ys= xys @ y # ys' \<and> (x, y):r)}" |
|
18423 | 3127 |
apply (induct n, simp) |
15302 | 3128 |
apply (simp add: image_Collect lex_prod_def, safe, blast) |
3129 |
apply (rule_tac x = "ab # xys" in exI, simp) |
|
3130 |
apply (case_tac xys, simp_all, blast) |
|
3131 |
done |
|
3132 |
||
3133 |
lemma lex_conv: |
|
15656 | 3134 |
"lex r = |
3135 |
{(xs,ys). length xs = length ys \<and> |
|
3136 |
(\<exists>xys x y xs' ys'. xs = xys @ x # xs' \<and> ys = xys @ y # ys' \<and> (x, y):r)}" |
|
15302 | 3137 |
by (force simp add: lex_def lexn_conv) |
3138 |
||
15693 | 3139 |
lemma wf_lenlex [intro!]: "wf r ==> wf (lenlex r)" |
3140 |
by (unfold lenlex_def) blast |
|
3141 |
||
3142 |
lemma lenlex_conv: |
|
3143 |
"lenlex r = {(xs,ys). length xs < length ys | |
|
15656 | 3144 |
length xs = length ys \<and> (xs, ys) : lex r}" |
19623 | 3145 |
by (simp add: lenlex_def diag_def lex_prod_def inv_image_def) |
15302 | 3146 |
|
3147 |
lemma Nil_notin_lex [iff]: "([], ys) \<notin> lex r" |
|
3148 |
by (simp add: lex_conv) |
|
3149 |
||
3150 |
lemma Nil2_notin_lex [iff]: "(xs, []) \<notin> lex r" |
|
3151 |
by (simp add:lex_conv) |
|
3152 |
||
18447 | 3153 |
lemma Cons_in_lex [simp]: |
15656 | 3154 |
"((x # xs, y # ys) : lex r) = |
3155 |
((x, y) : r \<and> length xs = length ys | x = y \<and> (xs, ys) : lex r)" |
|
15302 | 3156 |
apply (simp add: lex_conv) |
3157 |
apply (rule iffI) |
|
3158 |
prefer 2 apply (blast intro: Cons_eq_appendI, clarify) |
|
3159 |
apply (case_tac xys, simp, simp) |
|
3160 |
apply blast |
|
3161 |
done |
|
3162 |
||
3163 |
||
15656 | 3164 |
subsubsection {* Lexicographic Ordering *} |
3165 |
||
3166 |
text {* Classical lexicographic ordering on lists, ie. "a" < "ab" < "b". |
|
3167 |
This ordering does \emph{not} preserve well-foundedness. |
|
17090 | 3168 |
Author: N. Voelker, March 2005. *} |
15656 | 3169 |
|
3170 |
constdefs |
|
3171 |
lexord :: "('a * 'a)set \<Rightarrow> ('a list * 'a list) set" |
|
3172 |
"lexord r == {(x,y). \<exists> a v. y = x @ a # v \<or> |
|
3173 |
(\<exists> u a b v w. (a,b) \<in> r \<and> x = u @ (a # v) \<and> y = u @ (b # w))}" |
|
27106 | 3174 |
declare lexord_def [code func del] |
15656 | 3175 |
|
3176 |
lemma lexord_Nil_left[simp]: "([],y) \<in> lexord r = (\<exists> a x. y = a # x)" |
|
24349 | 3177 |
by (unfold lexord_def, induct_tac y, auto) |
15656 | 3178 |
|
3179 |
lemma lexord_Nil_right[simp]: "(x,[]) \<notin> lexord r" |
|
24349 | 3180 |
by (unfold lexord_def, induct_tac x, auto) |
15656 | 3181 |
|
3182 |
lemma lexord_cons_cons[simp]: |
|
3183 |
"((a # x, b # y) \<in> lexord r) = ((a,b)\<in> r | (a = b & (x,y)\<in> lexord r))" |
|
3184 |
apply (unfold lexord_def, safe, simp_all) |
|
3185 |
apply (case_tac u, simp, simp) |
|
3186 |
apply (case_tac u, simp, clarsimp, blast, blast, clarsimp) |
|
3187 |
apply (erule_tac x="b # u" in allE) |
|
3188 |
by force |
|
3189 |
||
3190 |
lemmas lexord_simps = lexord_Nil_left lexord_Nil_right lexord_cons_cons |
|
3191 |
||
3192 |
lemma lexord_append_rightI: "\<exists> b z. y = b # z \<Longrightarrow> (x, x @ y) \<in> lexord r" |
|
24349 | 3193 |
by (induct_tac x, auto) |
15656 | 3194 |
|
3195 |
lemma lexord_append_left_rightI: |
|
3196 |
"(a,b) \<in> r \<Longrightarrow> (u @ a # x, u @ b # y) \<in> lexord r" |
|
24349 | 3197 |
by (induct_tac u, auto) |
15656 | 3198 |
|
3199 |
lemma lexord_append_leftI: " (u,v) \<in> lexord r \<Longrightarrow> (x @ u, x @ v) \<in> lexord r" |
|
24349 | 3200 |
by (induct x, auto) |
15656 | 3201 |
|
3202 |
lemma lexord_append_leftD: |
|
3203 |
"\<lbrakk> (x @ u, x @ v) \<in> lexord r; (! a. (a,a) \<notin> r) \<rbrakk> \<Longrightarrow> (u,v) \<in> lexord r" |
|
24349 | 3204 |
by (erule rev_mp, induct_tac x, auto) |
15656 | 3205 |
|
3206 |
lemma lexord_take_index_conv: |
|
3207 |
"((x,y) : lexord r) = |
|
3208 |
((length x < length y \<and> take (length x) y = x) \<or> |
|
3209 |
(\<exists>i. i < min(length x)(length y) & take i x = take i y & (x!i,y!i) \<in> r))" |
|
3210 |
apply (unfold lexord_def Let_def, clarsimp) |
|
3211 |
apply (rule_tac f = "(% a b. a \<or> b)" in arg_cong2) |
|
3212 |
apply auto |
|
3213 |
apply (rule_tac x="hd (drop (length x) y)" in exI) |
|
3214 |
apply (rule_tac x="tl (drop (length x) y)" in exI) |
|
3215 |
apply (erule subst, simp add: min_def) |
|
3216 |
apply (rule_tac x ="length u" in exI, simp) |
|
3217 |
apply (rule_tac x ="take i x" in exI) |
|
3218 |
apply (rule_tac x ="x ! i" in exI) |
|
3219 |
apply (rule_tac x ="y ! i" in exI, safe) |
|
3220 |
apply (rule_tac x="drop (Suc i) x" in exI) |
|
3221 |
apply (drule sym, simp add: drop_Suc_conv_tl) |
|
3222 |
apply (rule_tac x="drop (Suc i) y" in exI) |
|
3223 |
by (simp add: drop_Suc_conv_tl) |
|
3224 |
||
3225 |
-- {* lexord is extension of partial ordering List.lex *} |
|
3226 |
lemma lexord_lex: " (x,y) \<in> lex r = ((x,y) \<in> lexord r \<and> length x = length y)" |
|
3227 |
apply (rule_tac x = y in spec) |
|
3228 |
apply (induct_tac x, clarsimp) |
|
3229 |
by (clarify, case_tac x, simp, force) |
|
3230 |
||
3231 |
lemma lexord_irreflexive: "(! x. (x,x) \<notin> r) \<Longrightarrow> (y,y) \<notin> lexord r" |
|
3232 |
by (induct y, auto) |
|
3233 |
||
3234 |
lemma lexord_trans: |
|
3235 |
"\<lbrakk> (x, y) \<in> lexord r; (y, z) \<in> lexord r; trans r \<rbrakk> \<Longrightarrow> (x, z) \<in> lexord r" |
|
3236 |
apply (erule rev_mp)+ |
|
3237 |
apply (rule_tac x = x in spec) |
|
3238 |
apply (rule_tac x = z in spec) |
|
3239 |
apply ( induct_tac y, simp, clarify) |
|
3240 |
apply (case_tac xa, erule ssubst) |
|
3241 |
apply (erule allE, erule allE) -- {* avoid simp recursion *} |
|
3242 |
apply (case_tac x, simp, simp) |
|
24632 | 3243 |
apply (case_tac x, erule allE, erule allE, simp) |
15656 | 3244 |
apply (erule_tac x = listb in allE) |
3245 |
apply (erule_tac x = lista in allE, simp) |
|
3246 |
apply (unfold trans_def) |
|
3247 |
by blast |
|
3248 |
||
3249 |
lemma lexord_transI: "trans r \<Longrightarrow> trans (lexord r)" |
|
24349 | 3250 |
by (rule transI, drule lexord_trans, blast) |
15656 | 3251 |
|
3252 |
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" |
|
3253 |
apply (rule_tac x = y in spec) |
|
3254 |
apply (induct_tac x, rule allI) |
|
3255 |
apply (case_tac x, simp, simp) |
|
3256 |
apply (rule allI, case_tac x, simp, simp) |
|
3257 |
by blast |
|
3258 |
||
3259 |
||
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3260 |
subsection {* Lexicographic combination of measure functions *} |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3261 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3262 |
text {* These are useful for termination proofs *} |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3263 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3264 |
definition |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3265 |
"measures fs = inv_image (lex less_than) (%a. map (%f. f a) fs)" |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3266 |
|
21106
51599a81b308
Added "recdef_wf" and "simp" attribute to "wf_measures"
krauss
parents:
21103
diff
changeset
|
3267 |
lemma wf_measures[recdef_wf, simp]: "wf (measures fs)" |
24349 | 3268 |
unfolding measures_def |
3269 |
by blast |
|
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3270 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3271 |
lemma in_measures[simp]: |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3272 |
"(x, y) \<in> measures [] = False" |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3273 |
"(x, y) \<in> measures (f # fs) |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3274 |
= (f x < f y \<or> (f x = f y \<and> (x, y) \<in> measures fs))" |
24349 | 3275 |
unfolding measures_def |
3276 |
by auto |
|
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3277 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3278 |
lemma measures_less: "f x < f y ==> (x, y) \<in> measures (f#fs)" |
24349 | 3279 |
by simp |
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3280 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3281 |
lemma measures_lesseq: "f x <= f y ==> (x, y) \<in> measures fs ==> (x, y) \<in> measures (f#fs)" |
24349 | 3282 |
by auto |
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3283 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
3284 |
|
15392 | 3285 |
subsubsection{*Lifting a Relation on List Elements to the Lists*} |
15302 | 3286 |
|
23740 | 3287 |
inductive_set |
3288 |
listrel :: "('a * 'a)set => ('a list * 'a list)set" |
|
3289 |
for r :: "('a * 'a)set" |
|
22262 | 3290 |
where |
23740 | 3291 |
Nil: "([],[]) \<in> listrel r" |
3292 |
| Cons: "[| (x,y) \<in> r; (xs,ys) \<in> listrel r |] ==> (x#xs, y#ys) \<in> listrel r" |
|
3293 |
||
3294 |
inductive_cases listrel_Nil1 [elim!]: "([],xs) \<in> listrel r" |
|
3295 |
inductive_cases listrel_Nil2 [elim!]: "(xs,[]) \<in> listrel r" |
|
3296 |
inductive_cases listrel_Cons1 [elim!]: "(y#ys,xs) \<in> listrel r" |
|
3297 |
inductive_cases listrel_Cons2 [elim!]: "(xs,y#ys) \<in> listrel r" |
|
15302 | 3298 |
|
3299 |
||
3300 |
lemma listrel_mono: "r \<subseteq> s \<Longrightarrow> listrel r \<subseteq> listrel s" |
|
3301 |
apply clarify |
|
23740 | 3302 |
apply (erule listrel.induct) |
3303 |
apply (blast intro: listrel.intros)+ |
|
15302 | 3304 |
done |
3305 |
||
3306 |
lemma listrel_subset: "r \<subseteq> A \<times> A \<Longrightarrow> listrel r \<subseteq> lists A \<times> lists A" |
|
3307 |
apply clarify |
|
23740 | 3308 |
apply (erule listrel.induct, auto) |
15302 | 3309 |
done |
3310 |
||
3311 |
lemma listrel_refl: "refl A r \<Longrightarrow> refl (lists A) (listrel r)" |
|
3312 |
apply (simp add: refl_def listrel_subset Ball_def) |
|
3313 |
apply (rule allI) |
|
3314 |
apply (induct_tac x) |
|
23740 | 3315 |
apply (auto intro: listrel.intros) |
15302 | 3316 |
done |
3317 |
||
3318 |
lemma listrel_sym: "sym r \<Longrightarrow> sym (listrel r)" |
|
3319 |
apply (auto simp add: sym_def) |
|
23740 | 3320 |
apply (erule listrel.induct) |
3321 |
apply (blast intro: listrel.intros)+ |
|
15302 | 3322 |
done |
3323 |
||
3324 |
lemma listrel_trans: "trans r \<Longrightarrow> trans (listrel r)" |
|
3325 |
apply (simp add: trans_def) |
|
3326 |
apply (intro allI) |
|
3327 |
apply (rule impI) |
|
23740 | 3328 |
apply (erule listrel.induct) |
3329 |
apply (blast intro: listrel.intros)+ |
|
15302 | 3330 |
done |
3331 |
||
3332 |
theorem equiv_listrel: "equiv A r \<Longrightarrow> equiv (lists A) (listrel r)" |
|
3333 |
by (simp add: equiv_def listrel_refl listrel_sym listrel_trans) |
|
3334 |
||
3335 |
lemma listrel_Nil [simp]: "listrel r `` {[]} = {[]}" |
|
23740 | 3336 |
by (blast intro: listrel.intros) |
15302 | 3337 |
|
3338 |
lemma listrel_Cons: |
|
3339 |
"listrel r `` {x#xs} = set_Cons (r``{x}) (listrel r `` {xs})"; |
|
23740 | 3340 |
by (auto simp add: set_Cons_def intro: listrel.intros) |
15302 | 3341 |
|
3342 |
||
15392 | 3343 |
subsection{*Miscellany*} |
3344 |
||
3345 |
subsubsection {* Characters and strings *} |
|
13366 | 3346 |
|
3347 |
datatype nibble = |
|
3348 |
Nibble0 | Nibble1 | Nibble2 | Nibble3 | Nibble4 | Nibble5 | Nibble6 | Nibble7 |
|
3349 |
| Nibble8 | Nibble9 | NibbleA | NibbleB | NibbleC | NibbleD | NibbleE | NibbleF |
|
3350 |
||
26148 | 3351 |
lemma UNIV_nibble: |
3352 |
"UNIV = {Nibble0, Nibble1, Nibble2, Nibble3, Nibble4, Nibble5, Nibble6, Nibble7, |
|
3353 |
Nibble8, Nibble9, NibbleA, NibbleB, NibbleC, NibbleD, NibbleE, NibbleF}" (is "_ = ?A") |
|
3354 |
proof (rule UNIV_eq_I) |
|
3355 |
fix x show "x \<in> ?A" by (cases x) simp_all |
|
3356 |
qed |
|
3357 |
||
3358 |
instance nibble :: finite |
|
3359 |
by default (simp add: UNIV_nibble) |
|
3360 |
||
13366 | 3361 |
datatype char = Char nibble nibble |
3362 |
-- "Note: canonical order of character encoding coincides with standard term ordering" |
|
3363 |
||
26148 | 3364 |
lemma UNIV_char: |
3365 |
"UNIV = image (split Char) (UNIV \<times> UNIV)" |
|
3366 |
proof (rule UNIV_eq_I) |
|
3367 |
fix x show "x \<in> image (split Char) (UNIV \<times> UNIV)" by (cases x) auto |
|
3368 |
qed |
|
3369 |
||
3370 |
instance char :: finite |
|
3371 |
by default (simp add: UNIV_char) |
|
3372 |
||
13366 | 3373 |
types string = "char list" |
3374 |
||
3375 |
syntax |
|
3376 |
"_Char" :: "xstr => char" ("CHR _") |
|
3377 |
"_String" :: "xstr => string" ("_") |
|
3378 |
||
21754
6316163ae934
moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents:
21548
diff
changeset
|
3379 |
setup StringSyntax.setup |
13366 | 3380 |
|
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3381 |
|
26749
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
3382 |
subsection {* Size function *} |
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
3383 |
|
26875
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3384 |
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (list_size f)" |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3385 |
by (rule is_measure_trivial) |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3386 |
|
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3387 |
lemma [measure_function]: "is_measure f \<Longrightarrow> is_measure (option_size f)" |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3388 |
by (rule is_measure_trivial) |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3389 |
|
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3390 |
lemma list_size_estimation[termination_simp]: |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3391 |
"x \<in> set xs \<Longrightarrow> y < f x \<Longrightarrow> y < list_size f xs" |
26749
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
3392 |
by (induct xs) auto |
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
3393 |
|
26875
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3394 |
lemma list_size_estimation'[termination_simp]: |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3395 |
"x \<in> set xs \<Longrightarrow> y \<le> f x \<Longrightarrow> y \<le> list_size f xs" |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3396 |
by (induct xs) auto |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3397 |
|
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3398 |
lemma list_size_map[simp]: "list_size f (map g xs) = list_size (f o g) xs" |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3399 |
by (induct xs) auto |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3400 |
|
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3401 |
lemma list_size_pointwise[termination_simp]: |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3402 |
"(\<And>x. x \<in> set xs \<Longrightarrow> f x < g x) \<Longrightarrow> list_size f xs \<le> list_size g xs" |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
3403 |
by (induct xs) force+ |
26749
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
3404 |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3405 |
subsection {* Code generator *} |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3406 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3407 |
subsubsection {* Setup *} |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
3408 |
|
16770
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
3409 |
types_code |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
3410 |
"list" ("_ list") |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
3411 |
attach (term_of) {* |
21760 | 3412 |
fun term_of_list f T = HOLogic.mk_list T o map f; |
16770
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
3413 |
*} |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
3414 |
attach (test) {* |
25885 | 3415 |
fun gen_list' aG aT i j = frequency |
3416 |
[(i, fn () => |
|
3417 |
let |
|
3418 |
val (x, t) = aG j; |
|
3419 |
val (xs, ts) = gen_list' aG aT (i-1) j |
|
3420 |
in (x :: xs, fn () => HOLogic.cons_const aT $ t () $ ts ()) end), |
|
3421 |
(1, fn () => ([], fn () => HOLogic.nil_const aT))] () |
|
3422 |
and gen_list aG aT i = gen_list' aG aT i i; |
|
16770
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
3423 |
*} |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
3424 |
"char" ("string") |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
3425 |
attach (term_of) {* |
24130 | 3426 |
val term_of_char = HOLogic.mk_char o ord; |
16770
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
3427 |
*} |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
3428 |
attach (test) {* |
25885 | 3429 |
fun gen_char i = |
3430 |
let val j = random_range (ord "a") (Int.min (ord "a" + i, ord "z")) |
|
3431 |
in (chr j, fn () => HOLogic.mk_char j) end; |
|
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
3432 |
*} |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
3433 |
|
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
3434 |
consts_code "Cons" ("(_ ::/ _)") |
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
3435 |
|
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3436 |
code_type list |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3437 |
(SML "_ list") |
21911
e29bcab0c81c
added OCaml code generation (without dictionaries)
haftmann
parents:
21891
diff
changeset
|
3438 |
(OCaml "_ list") |
21113 | 3439 |
(Haskell "![_]") |
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3440 |
|
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3441 |
code_reserved SML |
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3442 |
list |
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3443 |
|
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3444 |
code_reserved OCaml |
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3445 |
list |
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3446 |
|
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3447 |
code_const Nil |
21113 | 3448 |
(SML "[]") |
21911
e29bcab0c81c
added OCaml code generation (without dictionaries)
haftmann
parents:
21891
diff
changeset
|
3449 |
(OCaml "[]") |
21113 | 3450 |
(Haskell "[]") |
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3451 |
|
21911
e29bcab0c81c
added OCaml code generation (without dictionaries)
haftmann
parents:
21891
diff
changeset
|
3452 |
setup {* |
28064 | 3453 |
fold (fn target => Code_Target.add_literal_list target |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3454 |
@{const_name Nil} @{const_name Cons} |
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3455 |
) ["SML", "OCaml", "Haskell"] |
21911
e29bcab0c81c
added OCaml code generation (without dictionaries)
haftmann
parents:
21891
diff
changeset
|
3456 |
*} |
e29bcab0c81c
added OCaml code generation (without dictionaries)
haftmann
parents:
21891
diff
changeset
|
3457 |
|
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3458 |
code_instance list :: eq |
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3459 |
(Haskell -) |
20588 | 3460 |
|
21455 | 3461 |
code_const "op = \<Colon> 'a\<Colon>eq list \<Rightarrow> 'a list \<Rightarrow> bool" |
20588 | 3462 |
(Haskell infixl 4 "==") |
3463 |
||
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3464 |
setup {* |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3465 |
let |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3466 |
|
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3467 |
fun list_codegen thy defs gr dep thyname b t = |
24902
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3468 |
let |
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3469 |
val ts = HOLogic.dest_list t; |
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3470 |
val (gr', _) = Codegen.invoke_tycodegen thy defs dep thyname false |
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3471 |
(gr, fastype_of t); |
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3472 |
val (gr'', ps) = foldl_map |
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3473 |
(Codegen.invoke_codegen thy defs dep thyname false) (gr', ts) |
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3474 |
in SOME (gr'', Pretty.list "[" "]" ps) end handle TERM _ => NONE; |
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3475 |
|
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3476 |
fun char_codegen thy defs gr dep thyname b t = |
24902
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3477 |
let |
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3478 |
val i = HOLogic.dest_char t; |
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3479 |
val (gr', _) = Codegen.invoke_tycodegen thy defs dep thyname false |
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3480 |
(gr, fastype_of t) |
26975
103dca19ef2e
Replaced Pretty.str and Pretty.string_of by specific functions (from Codegen) that
berghofe
parents:
26875
diff
changeset
|
3481 |
in SOME (gr', Codegen.str (ML_Syntax.print_string (chr i))) |
24902
49f002c3964e
list_codegen and char_codegen now call invoke_tycodegen to ensure
berghofe
parents:
24796
diff
changeset
|
3482 |
end handle TERM _ => NONE; |
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3483 |
|
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3484 |
in |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3485 |
Codegen.add_codegen "list_codegen" list_codegen |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3486 |
#> Codegen.add_codegen "char_codegen" char_codegen |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3487 |
end; |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
3488 |
*} |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
3489 |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3490 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3491 |
subsubsection {* Generation of efficient code *} |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3492 |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
3493 |
primrec |
25559 | 3494 |
member :: "'a \<Rightarrow> 'a list \<Rightarrow> bool" (infixl "mem" 55) |
3495 |
where |
|
3496 |
"x mem [] \<longleftrightarrow> False" |
|
3497 |
| "x mem (y#ys) \<longleftrightarrow> (if y = x then True else x mem ys)" |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3498 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3499 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3500 |
null:: "'a list \<Rightarrow> bool" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3501 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3502 |
"null [] = True" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3503 |
| "null (x#xs) = False" |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3504 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3505 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3506 |
list_inter :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3507 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3508 |
"list_inter [] bs = []" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3509 |
| "list_inter (a#as) bs = |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3510 |
(if a \<in> set bs then a # list_inter as bs else list_inter as bs)" |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3511 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3512 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3513 |
list_all :: "('a \<Rightarrow> bool) \<Rightarrow> ('a list \<Rightarrow> bool)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3514 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3515 |
"list_all P [] = True" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3516 |
| "list_all P (x#xs) = (P x \<and> list_all P xs)" |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3517 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3518 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3519 |
list_ex :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3520 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3521 |
"list_ex P [] = False" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3522 |
| "list_ex P (x#xs) = (P x \<or> list_ex P xs)" |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3523 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3524 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3525 |
filtermap :: "('a \<Rightarrow> 'b option) \<Rightarrow> 'a list \<Rightarrow> 'b list" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3526 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3527 |
"filtermap f [] = []" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3528 |
| "filtermap f (x#xs) = |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3529 |
(case f x of None \<Rightarrow> filtermap f xs |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3530 |
| Some y \<Rightarrow> y # filtermap f xs)" |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3531 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3532 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3533 |
map_filter :: "('a \<Rightarrow> 'b) \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'b list" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3534 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3535 |
"map_filter f P [] = []" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3536 |
| "map_filter f P (x#xs) = |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3537 |
(if P x then f x # map_filter f P xs else map_filter f P xs)" |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3538 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3539 |
text {* |
21754
6316163ae934
moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents:
21548
diff
changeset
|
3540 |
Only use @{text mem} for generating executable code. Otherwise use |
6316163ae934
moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents:
21548
diff
changeset
|
3541 |
@{prop "x : set xs"} instead --- it is much easier to reason about. |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3542 |
The same is true for @{const list_all} and @{const list_ex}: write |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3543 |
@{text "\<forall>x\<in>set xs"} and @{text "\<exists>x\<in>set xs"} instead because the HOL |
21754
6316163ae934
moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents:
21548
diff
changeset
|
3544 |
quantifiers are aleady known to the automatic provers. In fact, the |
6316163ae934
moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents:
21548
diff
changeset
|
3545 |
declarations in the code subsection make sure that @{text "\<in>"}, |
6316163ae934
moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents:
21548
diff
changeset
|
3546 |
@{text "\<forall>x\<in>set xs"} and @{text "\<exists>x\<in>set xs"} are implemented |
6316163ae934
moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents:
21548
diff
changeset
|
3547 |
efficiently. |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3548 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3549 |
Efficient emptyness check is implemented by @{const null}. |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3550 |
|
23060 | 3551 |
The functions @{const filtermap} and @{const map_filter} are just |
3552 |
there to generate efficient code. Do not use |
|
21754
6316163ae934
moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents:
21548
diff
changeset
|
3553 |
them for modelling and proving. |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3554 |
*} |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3555 |
|
23060 | 3556 |
lemma rev_foldl_cons [code]: |
3557 |
"rev xs = foldl (\<lambda>xs x. x # xs) [] xs" |
|
3558 |
proof (induct xs) |
|
3559 |
case Nil then show ?case by simp |
|
3560 |
next |
|
3561 |
case Cons |
|
3562 |
{ |
|
3563 |
fix x xs ys |
|
3564 |
have "foldl (\<lambda>xs x. x # xs) ys xs @ [x] |
|
3565 |
= foldl (\<lambda>xs x. x # xs) (ys @ [x]) xs" |
|
3566 |
by (induct xs arbitrary: ys) auto |
|
3567 |
} |
|
3568 |
note aux = this |
|
3569 |
show ?case by (induct xs) (auto simp add: Cons aux) |
|
3570 |
qed |
|
3571 |
||
24166 | 3572 |
lemma mem_iff [code post]: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3573 |
"x mem xs \<longleftrightarrow> x \<in> set xs" |
24349 | 3574 |
by (induct xs) auto |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3575 |
|
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3576 |
lemmas in_set_code [code unfold] = mem_iff [symmetric] |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3577 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3578 |
lemma empty_null [code inline]: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3579 |
"xs = [] \<longleftrightarrow> null xs" |
24349 | 3580 |
by (cases xs) simp_all |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3581 |
|
24166 | 3582 |
lemmas null_empty [code post] = |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3583 |
empty_null [symmetric] |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3584 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3585 |
lemma list_inter_conv: |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3586 |
"set (list_inter xs ys) = set xs \<inter> set ys" |
24349 | 3587 |
by (induct xs) auto |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3588 |
|
24166 | 3589 |
lemma list_all_iff [code post]: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3590 |
"list_all P xs \<longleftrightarrow> (\<forall>x \<in> set xs. P x)" |
24349 | 3591 |
by (induct xs) auto |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3592 |
|
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3593 |
lemmas list_ball_code [code unfold] = list_all_iff [symmetric] |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3594 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3595 |
lemma list_all_append [simp]: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3596 |
"list_all P (xs @ ys) \<longleftrightarrow> (list_all P xs \<and> list_all P ys)" |
24349 | 3597 |
by (induct xs) auto |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3598 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3599 |
lemma list_all_rev [simp]: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3600 |
"list_all P (rev xs) \<longleftrightarrow> list_all P xs" |
24349 | 3601 |
by (simp add: list_all_iff) |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3602 |
|
22506 | 3603 |
lemma list_all_length: |
3604 |
"list_all P xs \<longleftrightarrow> (\<forall>n < length xs. P (xs ! n))" |
|
3605 |
unfolding list_all_iff by (auto intro: all_nth_imp_all_set) |
|
3606 |
||
24166 | 3607 |
lemma list_ex_iff [code post]: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3608 |
"list_ex P xs \<longleftrightarrow> (\<exists>x \<in> set xs. P x)" |
24349 | 3609 |
by (induct xs) simp_all |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3610 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3611 |
lemmas list_bex_code [code unfold] = |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3612 |
list_ex_iff [symmetric] |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3613 |
|
22506 | 3614 |
lemma list_ex_length: |
3615 |
"list_ex P xs \<longleftrightarrow> (\<exists>n < length xs. P (xs ! n))" |
|
3616 |
unfolding list_ex_iff set_conv_nth by auto |
|
3617 |
||
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3618 |
lemma filtermap_conv: |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3619 |
"filtermap f xs = map (\<lambda>x. the (f x)) (filter (\<lambda>x. f x \<noteq> None) xs)" |
24349 | 3620 |
by (induct xs) (simp_all split: option.split) |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3621 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3622 |
lemma map_filter_conv [simp]: |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3623 |
"map_filter f P xs = map f (filter P xs)" |
24349 | 3624 |
by (induct xs) auto |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
3625 |
|
24449 | 3626 |
|
3627 |
text {* Code for bounded quantification and summation over nats. *} |
|
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
3628 |
|
28072
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
3629 |
lemma atMost_upto [code unfold]: |
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
3630 |
"{..n} = set [0..<Suc n]" |
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
3631 |
by auto |
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
3632 |
|
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
3633 |
lemma atLeast_upt [code unfold]: |
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
3634 |
"{..<n} = set [0..<n]" |
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
3635 |
by auto |
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
3636 |
|
24449 | 3637 |
lemma greaterThanLessThan_upt [code unfold]: |
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
3638 |
"{n<..<m} = set [Suc n..<m]" |
24349 | 3639 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3640 |
|
24449 | 3641 |
lemma atLeastLessThan_upt [code unfold]: |
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
3642 |
"{n..<m} = set [n..<m]" |
24349 | 3643 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3644 |
|
27715 | 3645 |
lemma greaterThanAtMost_upt [code unfold]: |
24645 | 3646 |
"{n<..m} = set [Suc n..<Suc m]" |
24349 | 3647 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3648 |
|
27715 | 3649 |
lemma atLeastAtMost_upt [code unfold]: |
24645 | 3650 |
"{n..m} = set [n..<Suc m]" |
24349 | 3651 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3652 |
|
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3653 |
lemma all_nat_less_eq [code unfold]: |
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
3654 |
"(\<forall>m<n\<Colon>nat. P m) \<longleftrightarrow> (\<forall>m \<in> {0..<n}. P m)" |
24349 | 3655 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3656 |
|
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3657 |
lemma ex_nat_less_eq [code unfold]: |
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
3658 |
"(\<exists>m<n\<Colon>nat. P m) \<longleftrightarrow> (\<exists>m \<in> {0..<n}. P m)" |
24349 | 3659 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3660 |
|
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3661 |
lemma all_nat_less [code unfold]: |
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
3662 |
"(\<forall>m\<le>n\<Colon>nat. P m) \<longleftrightarrow> (\<forall>m \<in> {0..n}. P m)" |
24349 | 3663 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3664 |
|
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3665 |
lemma ex_nat_less [code unfold]: |
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
3666 |
"(\<exists>m\<le>n\<Colon>nat. P m) \<longleftrightarrow> (\<exists>m \<in> {0..n}. P m)" |
24349 | 3667 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
3668 |
|
27715 | 3669 |
lemma setsum_set_distinct_conv_listsum: |
3670 |
"distinct xs \<Longrightarrow> setsum f (set xs) = listsum (map f xs)" |
|
3671 |
by (induct xs) simp_all |
|
3672 |
||
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
3673 |
lemma setsum_set_upt_conv_listsum [code unfold]: |
27715 | 3674 |
"setsum f (set [m..<n]) = listsum (map f [m..<n])" |
3675 |
by (rule setsum_set_distinct_conv_listsum) simp |
|
3676 |
||
3677 |
||
3678 |
text {* Code for summation over ints. *} |
|
3679 |
||
3680 |
lemma greaterThanLessThan_upto [code unfold]: |
|
3681 |
"{i<..<j::int} = set [i+1..j - 1]" |
|
3682 |
by auto |
|
3683 |
||
3684 |
lemma atLeastLessThan_upto [code unfold]: |
|
3685 |
"{i..<j::int} = set [i..j - 1]" |
|
3686 |
by auto |
|
3687 |
||
3688 |
lemma greaterThanAtMost_upto [code unfold]: |
|
3689 |
"{i<..j::int} = set [i+1..j]" |
|
3690 |
by auto |
|
3691 |
||
3692 |
lemma atLeastAtMost_upto [code unfold]: |
|
3693 |
"{i..j::int} = set [i..j]" |
|
3694 |
by auto |
|
3695 |
||
3696 |
lemma setsum_set_upto_conv_listsum [code unfold]: |
|
3697 |
"setsum f (set [i..j::int]) = listsum (map f [i..j])" |
|
3698 |
by (rule setsum_set_distinct_conv_listsum) simp |
|
24449 | 3699 |
|
23388 | 3700 |
end |