author | nipkow |
Sat, 20 Feb 2010 16:20:38 +0100 | |
changeset 35248 | e64950874224 |
parent 35217 | 01e968432467 |
child 35256 | b73ae1a8fe7e |
child 35295 | 397295fa8387 |
permissions | -rw-r--r-- |
13462 | 1 |
(* Title: HOL/List.thy |
2 |
Author: Tobias Nipkow |
|
923 | 3 |
*) |
4 |
||
13114 | 5 |
header {* The datatype of finite lists *} |
13122 | 6 |
|
15131 | 7 |
theory List |
33593 | 8 |
imports Plain Presburger ATP_Linkup Recdef |
31055
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
9 |
uses ("Tools/list_code.ML") |
15131 | 10 |
begin |
923 | 11 |
|
13142 | 12 |
datatype 'a list = |
13366 | 13 |
Nil ("[]") |
14 |
| Cons 'a "'a list" (infixr "#" 65) |
|
923 | 15 |
|
34941 | 16 |
syntax |
17 |
-- {* list Enumeration *} |
|
35115 | 18 |
"_list" :: "args => 'a list" ("[(_)]") |
34941 | 19 |
|
20 |
translations |
|
21 |
"[x, xs]" == "x#[xs]" |
|
22 |
"[x]" == "x#[]" |
|
23 |
||
35115 | 24 |
|
25 |
subsection {* Basic list processing functions *} |
|
15302 | 26 |
|
34941 | 27 |
primrec |
28 |
hd :: "'a list \<Rightarrow> 'a" where |
|
29 |
"hd (x # xs) = x" |
|
30 |
||
31 |
primrec |
|
32 |
tl :: "'a list \<Rightarrow> 'a list" where |
|
33 |
"tl [] = []" |
|
34 |
| "tl (x # xs) = xs" |
|
35 |
||
36 |
primrec |
|
37 |
last :: "'a list \<Rightarrow> 'a" where |
|
38 |
"last (x # xs) = (if xs = [] then x else last xs)" |
|
39 |
||
40 |
primrec |
|
41 |
butlast :: "'a list \<Rightarrow> 'a list" where |
|
42 |
"butlast []= []" |
|
43 |
| "butlast (x # xs) = (if xs = [] then [] else x # butlast xs)" |
|
44 |
||
45 |
primrec |
|
46 |
set :: "'a list \<Rightarrow> 'a set" where |
|
47 |
"set [] = {}" |
|
48 |
| "set (x # xs) = insert x (set xs)" |
|
49 |
||
50 |
primrec |
|
51 |
map :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b list" where |
|
52 |
"map f [] = []" |
|
53 |
| "map f (x # xs) = f x # map f xs" |
|
54 |
||
55 |
primrec |
|
56 |
append :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" (infixr "@" 65) where |
|
57 |
append_Nil:"[] @ ys = ys" |
|
58 |
| append_Cons: "(x#xs) @ ys = x # xs @ ys" |
|
59 |
||
60 |
primrec |
|
61 |
rev :: "'a list \<Rightarrow> 'a list" where |
|
62 |
"rev [] = []" |
|
63 |
| "rev (x # xs) = rev xs @ [x]" |
|
64 |
||
65 |
primrec |
|
66 |
filter:: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
67 |
"filter P [] = []" |
|
68 |
| "filter P (x # xs) = (if P x then x # filter P xs else filter P xs)" |
|
69 |
||
70 |
syntax |
|
71 |
-- {* Special syntax for filter *} |
|
35115 | 72 |
"_filter" :: "[pttrn, 'a list, bool] => 'a list" ("(1[_<-_./ _])") |
34941 | 73 |
|
74 |
translations |
|
75 |
"[x<-xs . P]"== "CONST filter (%x. P) xs" |
|
76 |
||
77 |
syntax (xsymbols) |
|
35115 | 78 |
"_filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<leftarrow>_ ./ _])") |
34941 | 79 |
syntax (HTML output) |
35115 | 80 |
"_filter" :: "[pttrn, 'a list, bool] => 'a list"("(1[_\<leftarrow>_ ./ _])") |
34941 | 81 |
|
82 |
primrec |
|
83 |
foldl :: "('b \<Rightarrow> 'a \<Rightarrow> 'b) \<Rightarrow> 'b \<Rightarrow> 'a list \<Rightarrow> 'b" where |
|
84 |
foldl_Nil: "foldl f a [] = a" |
|
85 |
| foldl_Cons: "foldl f a (x # xs) = foldl f (f a x) xs" |
|
86 |
||
87 |
primrec |
|
88 |
foldr :: "('a \<Rightarrow> 'b \<Rightarrow> 'b) \<Rightarrow> 'a list \<Rightarrow> 'b \<Rightarrow> 'b" where |
|
89 |
"foldr f [] a = a" |
|
90 |
| "foldr f (x # xs) a = f x (foldr f xs a)" |
|
91 |
||
92 |
primrec |
|
93 |
concat:: "'a list list \<Rightarrow> 'a list" where |
|
94 |
"concat [] = []" |
|
95 |
| "concat (x # xs) = x @ concat xs" |
|
96 |
||
97 |
primrec (in monoid_add) |
|
98 |
listsum :: "'a list \<Rightarrow> 'a" where |
|
99 |
"listsum [] = 0" |
|
100 |
| "listsum (x # xs) = x + listsum xs" |
|
101 |
||
102 |
primrec |
|
103 |
drop:: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
104 |
drop_Nil: "drop n [] = []" |
|
105 |
| drop_Cons: "drop n (x # xs) = (case n of 0 \<Rightarrow> x # xs | Suc m \<Rightarrow> drop m xs)" |
|
106 |
-- {*Warning: simpset does not contain this definition, but separate |
|
107 |
theorems for @{text "n = 0"} and @{text "n = Suc k"} *} |
|
108 |
||
109 |
primrec |
|
110 |
take:: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
111 |
take_Nil:"take n [] = []" |
|
112 |
| take_Cons: "take n (x # xs) = (case n of 0 \<Rightarrow> [] | Suc m \<Rightarrow> x # take m xs)" |
|
113 |
-- {*Warning: simpset does not contain this definition, but separate |
|
114 |
theorems for @{text "n = 0"} and @{text "n = Suc k"} *} |
|
115 |
||
116 |
primrec |
|
117 |
nth :: "'a list => nat => 'a" (infixl "!" 100) where |
|
118 |
nth_Cons: "(x # xs) ! n = (case n of 0 \<Rightarrow> x | Suc k \<Rightarrow> xs ! k)" |
|
119 |
-- {*Warning: simpset does not contain this definition, but separate |
|
120 |
theorems for @{text "n = 0"} and @{text "n = Suc k"} *} |
|
121 |
||
122 |
primrec |
|
123 |
list_update :: "'a list \<Rightarrow> nat \<Rightarrow> 'a \<Rightarrow> 'a list" where |
|
124 |
"list_update [] i v = []" |
|
125 |
| "list_update (x # xs) i v = (case i of 0 \<Rightarrow> v # xs | Suc j \<Rightarrow> x # list_update xs j v)" |
|
923 | 126 |
|
13146 | 127 |
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
|
128 |
|
923 | 129 |
syntax |
13366 | 130 |
"_lupdbind":: "['a, 'a] => lupdbind" ("(2_ :=/ _)") |
131 |
"" :: "lupdbind => lupdbinds" ("_") |
|
132 |
"_lupdbinds" :: "[lupdbind, lupdbinds] => lupdbinds" ("_,/ _") |
|
133 |
"_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
|
134 |
|
923 | 135 |
translations |
35115 | 136 |
"_LUpdate xs (_lupdbinds b bs)" == "_LUpdate (_LUpdate xs b) bs" |
34941 | 137 |
"xs[i:=x]" == "CONST list_update xs i x" |
138 |
||
139 |
primrec |
|
140 |
takeWhile :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
141 |
"takeWhile P [] = []" |
|
142 |
| "takeWhile P (x # xs) = (if P x then x # takeWhile P xs else [])" |
|
143 |
||
144 |
primrec |
|
145 |
dropWhile :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
146 |
"dropWhile P [] = []" |
|
147 |
| "dropWhile P (x # xs) = (if P x then dropWhile P xs else x # xs)" |
|
148 |
||
149 |
primrec |
|
150 |
zip :: "'a list \<Rightarrow> 'b list \<Rightarrow> ('a \<times> 'b) list" where |
|
151 |
"zip xs [] = []" |
|
152 |
| zip_Cons: "zip xs (y # ys) = (case xs of [] => [] | z # zs => (z, y) # zip zs ys)" |
|
153 |
-- {*Warning: simpset does not contain this definition, but separate |
|
154 |
theorems for @{text "xs = []"} and @{text "xs = z # zs"} *} |
|
155 |
||
156 |
primrec |
|
157 |
upt :: "nat \<Rightarrow> nat \<Rightarrow> nat list" ("(1[_..</_'])") where |
|
158 |
upt_0: "[i..<0] = []" |
|
159 |
| upt_Suc: "[i..<(Suc j)] = (if i <= j then [i..<j] @ [j] else [])" |
|
160 |
||
161 |
primrec |
|
162 |
distinct :: "'a list \<Rightarrow> bool" where |
|
163 |
"distinct [] \<longleftrightarrow> True" |
|
164 |
| "distinct (x # xs) \<longleftrightarrow> x \<notin> set xs \<and> distinct xs" |
|
165 |
||
166 |
primrec |
|
167 |
remdups :: "'a list \<Rightarrow> 'a list" where |
|
168 |
"remdups [] = []" |
|
169 |
| "remdups (x # xs) = (if x \<in> set xs then remdups xs else x # remdups xs)" |
|
170 |
||
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
171 |
definition |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
172 |
insert :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
173 |
"insert x xs = (if x \<in> set xs then xs else x # xs)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
174 |
|
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
175 |
hide (open) const insert hide (open) fact insert_def |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
176 |
|
34941 | 177 |
primrec |
178 |
remove1 :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
179 |
"remove1 x [] = []" |
|
180 |
| "remove1 x (y # xs) = (if x = y then xs else y # remove1 x xs)" |
|
181 |
||
182 |
primrec |
|
183 |
removeAll :: "'a \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
|
184 |
"removeAll x [] = []" |
|
185 |
| "removeAll x (y # xs) = (if x = y then removeAll x xs else y # removeAll x xs)" |
|
186 |
||
187 |
primrec |
|
188 |
replicate :: "nat \<Rightarrow> 'a \<Rightarrow> 'a list" where |
|
189 |
replicate_0: "replicate 0 x = []" |
|
190 |
| replicate_Suc: "replicate (Suc n) x = x # replicate n x" |
|
3342
ec3b55fcb165
New operator "lists" for formalizing sets of lists
paulson
parents:
3320
diff
changeset
|
191 |
|
13142 | 192 |
text {* |
14589 | 193 |
Function @{text size} is overloaded for all datatypes. Users may |
13366 | 194 |
refer to the list version as @{text length}. *} |
13142 | 195 |
|
19363 | 196 |
abbreviation |
34941 | 197 |
length :: "'a list \<Rightarrow> nat" where |
198 |
"length \<equiv> size" |
|
15307 | 199 |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
200 |
definition |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
201 |
rotate1 :: "'a list \<Rightarrow> 'a list" where |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
202 |
"rotate1 xs = (case xs of [] \<Rightarrow> [] | x#xs \<Rightarrow> xs @ [x])" |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
203 |
|
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
204 |
definition |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
205 |
rotate :: "nat \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
30971 | 206 |
"rotate n = rotate1 ^^ n" |
21404
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
207 |
|
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
208 |
definition |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
209 |
list_all2 :: "('a => 'b => bool) => 'a list => 'b list => bool" where |
28562 | 210 |
[code del]: "list_all2 P xs ys = |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
211 |
(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
|
212 |
|
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
213 |
definition |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
214 |
sublist :: "'a list => nat set => 'a list" where |
eb85850d3eb7
more robust syntax for definition/abbreviation/notation;
wenzelm
parents:
21211
diff
changeset
|
215 |
"sublist xs A = map fst (filter (\<lambda>p. snd p \<in> A) (zip xs [0..<size xs]))" |
17086 | 216 |
|
217 |
primrec |
|
34941 | 218 |
splice :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" where |
219 |
"splice [] ys = ys" |
|
220 |
| "splice (x # xs) ys = (if ys = [] then x # xs else x # hd ys # splice xs (tl ys))" |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
221 |
-- {*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
|
222 |
|
26771 | 223 |
text{* |
224 |
\begin{figure}[htbp] |
|
225 |
\fbox{ |
|
226 |
\begin{tabular}{l} |
|
27381 | 227 |
@{lemma "[a,b]@[c,d] = [a,b,c,d]" by simp}\\ |
228 |
@{lemma "length [a,b,c] = 3" by simp}\\ |
|
229 |
@{lemma "set [a,b,c] = {a,b,c}" by simp}\\ |
|
230 |
@{lemma "map f [a,b,c] = [f a, f b, f c]" by simp}\\ |
|
231 |
@{lemma "rev [a,b,c] = [c,b,a]" by simp}\\ |
|
232 |
@{lemma "hd [a,b,c,d] = a" by simp}\\ |
|
233 |
@{lemma "tl [a,b,c,d] = [b,c,d]" by simp}\\ |
|
234 |
@{lemma "last [a,b,c,d] = d" by simp}\\ |
|
235 |
@{lemma "butlast [a,b,c,d] = [a,b,c]" by simp}\\ |
|
236 |
@{lemma[source] "filter (\<lambda>n::nat. n<2) [0,2,1] = [0,1]" by simp}\\ |
|
237 |
@{lemma "concat [[a,b],[c,d,e],[],[f]] = [a,b,c,d,e,f]" by simp}\\ |
|
238 |
@{lemma "foldl f x [a,b,c] = f (f (f x a) b) c" by simp}\\ |
|
239 |
@{lemma "foldr f [a,b,c] x = f a (f b (f c x))" by simp}\\ |
|
240 |
@{lemma "zip [a,b,c] [x,y,z] = [(a,x),(b,y),(c,z)]" by simp}\\ |
|
241 |
@{lemma "zip [a,b] [x,y,z] = [(a,x),(b,y)]" by simp}\\ |
|
242 |
@{lemma "splice [a,b,c] [x,y,z] = [a,x,b,y,c,z]" by simp}\\ |
|
243 |
@{lemma "splice [a,b,c,d] [x,y] = [a,x,b,y,c,d]" by simp}\\ |
|
244 |
@{lemma "take 2 [a,b,c,d] = [a,b]" by simp}\\ |
|
245 |
@{lemma "take 6 [a,b,c,d] = [a,b,c,d]" by simp}\\ |
|
246 |
@{lemma "drop 2 [a,b,c,d] = [c,d]" by simp}\\ |
|
247 |
@{lemma "drop 6 [a,b,c,d] = []" by simp}\\ |
|
248 |
@{lemma "takeWhile (%n::nat. n<3) [1,2,3,0] = [1,2]" by simp}\\ |
|
249 |
@{lemma "dropWhile (%n::nat. n<3) [1,2,3,0] = [3,0]" by simp}\\ |
|
250 |
@{lemma "distinct [2,0,1::nat]" by simp}\\ |
|
251 |
@{lemma "remdups [2,0,2,1::nat,2] = [0,1,2]" by simp}\\ |
|
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
252 |
@{lemma "List.insert 2 [0::nat,1,2] = [0,1,2]" by (simp add: List.insert_def)}\\ |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
253 |
@{lemma "List.insert 3 [0::nat,1,2] = [3, 0,1,2]" by (simp add: List.insert_def)}\\ |
27381 | 254 |
@{lemma "remove1 2 [2,0,2,1::nat,2] = [0,2,1,2]" by simp}\\ |
27693 | 255 |
@{lemma "removeAll 2 [2,0,2,1::nat,2] = [0,1]" by simp}\\ |
27381 | 256 |
@{lemma "nth [a,b,c,d] 2 = c" by simp}\\ |
257 |
@{lemma "[a,b,c,d][2 := x] = [a,b,x,d]" by simp}\\ |
|
258 |
@{lemma "sublist [a,b,c,d,e] {0,2,3} = [a,c,d]" by (simp add:sublist_def)}\\ |
|
259 |
@{lemma "rotate1 [a,b,c,d] = [b,c,d,a]" by (simp add:rotate1_def)}\\ |
|
35216 | 260 |
@{lemma "rotate 3 [a,b,c,d] = [d,a,b,c]" by (simp add:rotate1_def rotate_def nat_number')}\\ |
261 |
@{lemma "replicate 4 a = [a,a,a,a]" by (simp add:nat_number')}\\ |
|
262 |
@{lemma "[2..<5] = [2,3,4]" by (simp add:nat_number')}\\ |
|
27381 | 263 |
@{lemma "listsum [1,2,3::nat] = 6" by simp} |
26771 | 264 |
\end{tabular}} |
265 |
\caption{Characteristic examples} |
|
266 |
\label{fig:Characteristic} |
|
267 |
\end{figure} |
|
29927 | 268 |
Figure~\ref{fig:Characteristic} shows characteristic examples |
26771 | 269 |
that should give an intuitive understanding of the above functions. |
270 |
*} |
|
271 |
||
24616 | 272 |
text{* The following simple sort functions are intended for proofs, |
273 |
not for efficient implementations. *} |
|
274 |
||
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
275 |
context linorder |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
276 |
begin |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
277 |
|
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
278 |
fun sorted :: "'a list \<Rightarrow> bool" where |
24697 | 279 |
"sorted [] \<longleftrightarrow> True" | |
280 |
"sorted [x] \<longleftrightarrow> True" | |
|
25062 | 281 |
"sorted (x#y#zs) \<longleftrightarrow> x <= y \<and> sorted (y#zs)" |
24697 | 282 |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
283 |
primrec insort_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b \<Rightarrow> 'b list \<Rightarrow> 'b list" where |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
284 |
"insort_key f x [] = [x]" | |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
285 |
"insort_key f x (y#ys) = (if f x \<le> f y then (x#y#ys) else y#(insort_key f x ys))" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
286 |
|
35195 | 287 |
definition sort_key :: "('b \<Rightarrow> 'a) \<Rightarrow> 'b list \<Rightarrow> 'b list" where |
288 |
"sort_key f xs = foldr (insort_key f) xs []" |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
289 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
290 |
abbreviation "sort \<equiv> sort_key (\<lambda>x. x)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
291 |
abbreviation "insort \<equiv> insort_key (\<lambda>x. x)" |
24616 | 292 |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
293 |
end |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
294 |
|
24616 | 295 |
|
23388 | 296 |
subsubsection {* List comprehension *} |
23192 | 297 |
|
24349 | 298 |
text{* Input syntax for Haskell-like list comprehension notation. |
299 |
Typical example: @{text"[(x,y). x \<leftarrow> xs, y \<leftarrow> ys, x \<noteq> y]"}, |
|
300 |
the list of all pairs of distinct elements from @{text xs} and @{text ys}. |
|
301 |
The syntax is as in Haskell, except that @{text"|"} becomes a dot |
|
302 |
(like in Isabelle's set comprehension): @{text"[e. x \<leftarrow> xs, \<dots>]"} rather than |
|
303 |
\verb![e| x <- xs, ...]!. |
|
304 |
||
305 |
The qualifiers after the dot are |
|
306 |
\begin{description} |
|
307 |
\item[generators] @{text"p \<leftarrow> xs"}, |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
308 |
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
|
309 |
\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
|
310 |
%\item[local bindings] @ {text"let x = e"}. |
24349 | 311 |
\end{description} |
23240 | 312 |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
313 |
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
|
314 |
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
|
315 |
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
|
316 |
optmized to @{term"map (%x. e) xs"}. |
23240 | 317 |
|
24349 | 318 |
It is easy to write short list comprehensions which stand for complex |
319 |
expressions. During proofs, they may become unreadable (and |
|
320 |
mangled). In such cases it can be advisable to introduce separate |
|
321 |
definitions for the list comprehensions in question. *} |
|
322 |
||
23209 | 323 |
(* |
23240 | 324 |
Proper theorem proving support would be nice. For example, if |
23192 | 325 |
@{text"set[f x y. x \<leftarrow> xs, y \<leftarrow> ys, P x y]"} |
326 |
produced something like |
|
23209 | 327 |
@{term"{z. EX x: set xs. EX y:set ys. P x y \<and> z = f x y}"}. |
328 |
*) |
|
329 |
||
23240 | 330 |
nonterminals lc_qual lc_quals |
23192 | 331 |
|
332 |
syntax |
|
23240 | 333 |
"_listcompr" :: "'a \<Rightarrow> lc_qual \<Rightarrow> lc_quals \<Rightarrow> 'a list" ("[_ . __") |
24349 | 334 |
"_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual" ("_ <- _") |
23240 | 335 |
"_lc_test" :: "bool \<Rightarrow> lc_qual" ("_") |
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
336 |
(*"_lc_let" :: "letbinds => lc_qual" ("let _")*) |
23240 | 337 |
"_lc_end" :: "lc_quals" ("]") |
338 |
"_lc_quals" :: "lc_qual \<Rightarrow> lc_quals \<Rightarrow> lc_quals" (", __") |
|
24349 | 339 |
"_lc_abs" :: "'a => 'b list => 'b list" |
23192 | 340 |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
341 |
(* 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
|
342 |
translation of [e. p<-xs] |
23192 | 343 |
translations |
24349 | 344 |
"[e. p<-xs]" => "concat(map (_lc_abs p [e]) xs)" |
23240 | 345 |
"_listcompr e (_lc_gen p xs) (_lc_quals Q Qs)" |
24349 | 346 |
=> "concat (map (_lc_abs p (_listcompr e Q Qs)) xs)" |
23240 | 347 |
"[e. P]" => "if P then [e] else []" |
348 |
"_listcompr e (_lc_test P) (_lc_quals Q Qs)" |
|
349 |
=> "if P then (_listcompr e Q Qs) else []" |
|
24349 | 350 |
"_listcompr e (_lc_let b) (_lc_quals Q Qs)" |
351 |
=> "_Let b (_listcompr e Q Qs)" |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
352 |
*) |
23240 | 353 |
|
23279
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
354 |
syntax (xsymbols) |
24349 | 355 |
"_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
|
356 |
syntax (HTML output) |
24349 | 357 |
"_lc_gen" :: "'a \<Rightarrow> 'a list \<Rightarrow> lc_qual" ("_ \<leftarrow> _") |
358 |
||
359 |
parse_translation (advanced) {* |
|
360 |
let |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
361 |
val NilC = Syntax.const @{const_name Nil}; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
362 |
val ConsC = Syntax.const @{const_name Cons}; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
363 |
val mapC = Syntax.const @{const_name map}; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
364 |
val concatC = Syntax.const @{const_name concat}; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
365 |
val IfC = Syntax.const @{const_name If}; |
35115 | 366 |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
367 |
fun singl x = ConsC $ x $ NilC; |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
368 |
|
35115 | 369 |
fun pat_tr ctxt p e opti = (* %x. case x of p => e | _ => [] *) |
24349 | 370 |
let |
29281 | 371 |
val x = Free (Name.variant (fold Term.add_free_names [p, e] []) "x", dummyT); |
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
372 |
val e = if opti then singl e else e; |
35115 | 373 |
val case1 = Syntax.const @{syntax_const "_case1"} $ p $ e; |
374 |
val case2 = Syntax.const @{syntax_const "_case1"} $ Syntax.const Term.dummy_patternN $ NilC; |
|
375 |
val cs = Syntax.const @{syntax_const "_case2"} $ case1 $ case2; |
|
376 |
val ft = Datatype_Case.case_tr false Datatype.info_of_constr ctxt [x, cs]; |
|
24349 | 377 |
in lambda x ft end; |
378 |
||
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
379 |
fun abs_tr ctxt (p as Free(s,T)) e opti = |
35115 | 380 |
let |
381 |
val thy = ProofContext.theory_of ctxt; |
|
382 |
val s' = Sign.intern_const thy s; |
|
383 |
in |
|
384 |
if Sign.declared_const thy s' |
|
385 |
then (pat_tr ctxt p e opti, false) |
|
386 |
else (lambda p e, true) |
|
24349 | 387 |
end |
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
388 |
| 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
|
389 |
|
35115 | 390 |
fun lc_tr ctxt [e, Const (@{syntax_const "_lc_test"}, _) $ b, qs] = |
391 |
let |
|
392 |
val res = |
|
393 |
(case qs of |
|
394 |
Const (@{syntax_const "_lc_end"}, _) => singl e |
|
395 |
| Const (@{syntax_const "_lc_quals"}, _) $ q $ qs => lc_tr ctxt [e, q, qs]); |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
396 |
in IfC $ b $ res $ NilC end |
35115 | 397 |
| lc_tr ctxt |
398 |
[e, Const (@{syntax_const "_lc_gen"}, _) $ p $ es, |
|
399 |
Const(@{syntax_const "_lc_end"}, _)] = |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
400 |
(case abs_tr ctxt p e true of |
35115 | 401 |
(f, true) => mapC $ f $ es |
402 |
| (f, false) => concatC $ (mapC $ f $ es)) |
|
403 |
| lc_tr ctxt |
|
404 |
[e, Const (@{syntax_const "_lc_gen"}, _) $ p $ es, |
|
405 |
Const (@{syntax_const "_lc_quals"}, _) $ q $ qs] = |
|
406 |
let val e' = lc_tr ctxt [e, q, qs]; |
|
407 |
in concatC $ (mapC $ (fst (abs_tr ctxt p e' false)) $ es) end; |
|
408 |
||
409 |
in [(@{syntax_const "_listcompr"}, lc_tr)] end |
|
24349 | 410 |
*} |
23279
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
411 |
|
23240 | 412 |
term "[(x,y,z). b]" |
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
413 |
term "[(x,y,z). x\<leftarrow>xs]" |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
414 |
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
|
415 |
term "[(x,y,z). x<a, x>b]" |
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
416 |
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
|
417 |
term "[(x,y,z). x<a, x\<leftarrow>xs]" |
24349 | 418 |
term "[(x,y). Cons True x \<leftarrow> xs]" |
419 |
term "[(x,y,z). Cons x [] \<leftarrow> xs]" |
|
23240 | 420 |
term "[(x,y,z). x<a, x>b, x=d]" |
421 |
term "[(x,y,z). x<a, x>b, y\<leftarrow>ys]" |
|
422 |
term "[(x,y,z). x<a, x\<leftarrow>xs,y>b]" |
|
423 |
term "[(x,y,z). x<a, x\<leftarrow>xs, y\<leftarrow>ys]" |
|
424 |
term "[(x,y,z). x\<leftarrow>xs, x>b, y<a]" |
|
425 |
term "[(x,y,z). x\<leftarrow>xs, x>b, y\<leftarrow>ys]" |
|
426 |
term "[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,y>x]" |
|
427 |
term "[(x,y,z). x\<leftarrow>xs, y\<leftarrow>ys,z\<leftarrow>zs]" |
|
35115 | 428 |
(* |
24349 | 429 |
term "[(x,y). x\<leftarrow>xs, let xx = x+x, y\<leftarrow>ys, y \<noteq> xx]" |
23192 | 430 |
*) |
431 |
||
35115 | 432 |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
433 |
subsubsection {* @{const Nil} and @{const Cons} *} |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
434 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
435 |
lemma not_Cons_self [simp]: |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
436 |
"xs \<noteq> x # xs" |
13145 | 437 |
by (induct xs) auto |
13114 | 438 |
|
13142 | 439 |
lemmas not_Cons_self2 [simp] = not_Cons_self [symmetric] |
13114 | 440 |
|
13142 | 441 |
lemma neq_Nil_conv: "(xs \<noteq> []) = (\<exists>y ys. xs = y # ys)" |
13145 | 442 |
by (induct xs) auto |
13114 | 443 |
|
13142 | 444 |
lemma length_induct: |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
445 |
"(\<And>xs. \<forall>ys. length ys < length xs \<longrightarrow> P ys \<Longrightarrow> P xs) \<Longrightarrow> P xs" |
17589 | 446 |
by (rule measure_induct [of length]) iprover |
13114 | 447 |
|
448 |
||
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
449 |
subsubsection {* @{const length} *} |
13114 | 450 |
|
13142 | 451 |
text {* |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
452 |
Needs to come before @{text "@"} because of theorem @{text |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
453 |
append_eq_append_conv}. |
13142 | 454 |
*} |
13114 | 455 |
|
13142 | 456 |
lemma length_append [simp]: "length (xs @ ys) = length xs + length ys" |
13145 | 457 |
by (induct xs) auto |
13114 | 458 |
|
13142 | 459 |
lemma length_map [simp]: "length (map f xs) = length xs" |
13145 | 460 |
by (induct xs) auto |
13114 | 461 |
|
13142 | 462 |
lemma length_rev [simp]: "length (rev xs) = length xs" |
13145 | 463 |
by (induct xs) auto |
13114 | 464 |
|
13142 | 465 |
lemma length_tl [simp]: "length (tl xs) = length xs - 1" |
13145 | 466 |
by (cases xs) auto |
13114 | 467 |
|
13142 | 468 |
lemma length_0_conv [iff]: "(length xs = 0) = (xs = [])" |
13145 | 469 |
by (induct xs) auto |
13114 | 470 |
|
13142 | 471 |
lemma length_greater_0_conv [iff]: "(0 < length xs) = (xs \<noteq> [])" |
13145 | 472 |
by (induct xs) auto |
13114 | 473 |
|
23479 | 474 |
lemma length_pos_if_in_set: "x : set xs \<Longrightarrow> length xs > 0" |
475 |
by auto |
|
476 |
||
13114 | 477 |
lemma length_Suc_conv: |
13145 | 478 |
"(length xs = Suc n) = (\<exists>y ys. xs = y # ys \<and> length ys = n)" |
479 |
by (induct xs) auto |
|
13142 | 480 |
|
14025 | 481 |
lemma Suc_length_conv: |
482 |
"(Suc n = length xs) = (\<exists>y ys. xs = y # ys \<and> length ys = n)" |
|
14208 | 483 |
apply (induct xs, simp, simp) |
14025 | 484 |
apply blast |
485 |
done |
|
486 |
||
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
487 |
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
|
488 |
by (induct xs) auto |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
489 |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
490 |
lemma list_induct2 [consumes 1, case_names Nil Cons]: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
491 |
"length xs = length ys \<Longrightarrow> P [] [] \<Longrightarrow> |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
492 |
(\<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
|
493 |
\<Longrightarrow> P xs ys" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
494 |
proof (induct xs arbitrary: ys) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
495 |
case Nil then show ?case by simp |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
496 |
next |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
497 |
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
|
498 |
qed |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
499 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
500 |
lemma list_induct3 [consumes 2, case_names Nil Cons]: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
501 |
"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
|
502 |
(\<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
|
503 |
\<Longrightarrow> P xs ys zs" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
504 |
proof (induct xs arbitrary: ys zs) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
505 |
case Nil then show ?case by simp |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
506 |
next |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
507 |
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
|
508 |
(cases zs, simp_all) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
509 |
qed |
13114 | 510 |
|
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
511 |
lemma list_induct2': |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
512 |
"\<lbrakk> P [] []; |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
513 |
\<And>x xs. P (x#xs) []; |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
514 |
\<And>y ys. P [] (y#ys); |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
515 |
\<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
|
516 |
\<Longrightarrow> P xs ys" |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
517 |
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
|
518 |
|
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
519 |
lemma neq_if_length_neq: "length xs \<noteq> length ys \<Longrightarrow> (xs = ys) == False" |
24349 | 520 |
by (rule Eq_FalseI) auto |
24037 | 521 |
|
522 |
simproc_setup list_neq ("(xs::'a list) = ys") = {* |
|
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
523 |
(* |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
524 |
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
|
525 |
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
|
526 |
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
|
527 |
*) |
24037 | 528 |
|
529 |
let |
|
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
530 |
|
29856 | 531 |
fun len (Const(@{const_name Nil},_)) acc = acc |
532 |
| len (Const(@{const_name Cons},_) $ _ $ xs) (ts,n) = len xs (ts,n+1) |
|
533 |
| len (Const(@{const_name append},_) $ xs $ ys) acc = len xs (len ys acc) |
|
534 |
| len (Const(@{const_name rev},_) $ xs) acc = len xs acc |
|
535 |
| len (Const(@{const_name map},_) $ _ $ xs) acc = len xs acc |
|
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
536 |
| len t (ts,n) = (t::ts,n); |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
537 |
|
24037 | 538 |
fun list_neq _ ss ct = |
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
539 |
let |
24037 | 540 |
val (Const(_,eqT) $ lhs $ rhs) = Thm.term_of ct; |
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
541 |
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
|
542 |
fun prove_neq() = |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
543 |
let |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
544 |
val Type(_,listT::_) = eqT; |
22994 | 545 |
val size = HOLogic.size_const listT; |
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
546 |
val eq_len = HOLogic.mk_eq (size $ lhs, size $ rhs); |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
547 |
val neq_len = HOLogic.mk_Trueprop (HOLogic.Not $ eq_len); |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
548 |
val thm = Goal.prove (Simplifier.the_context ss) [] [] neq_len |
22633 | 549 |
(K (simp_tac (Simplifier.inherit_context ss @{simpset}) 1)); |
550 |
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
|
551 |
in |
23214 | 552 |
if m < n andalso submultiset (op aconv) (ls,rs) orelse |
553 |
n < m andalso submultiset (op aconv) (rs,ls) |
|
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
554 |
then prove_neq() else NONE |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
555 |
end; |
24037 | 556 |
in list_neq end; |
22143
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
557 |
*} |
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
558 |
|
cf58486ca11b
Added simproc list_neq (prompted by an application)
nipkow
parents:
21911
diff
changeset
|
559 |
|
15392 | 560 |
subsubsection {* @{text "@"} -- append *} |
13114 | 561 |
|
13142 | 562 |
lemma append_assoc [simp]: "(xs @ ys) @ zs = xs @ (ys @ zs)" |
13145 | 563 |
by (induct xs) auto |
13114 | 564 |
|
13142 | 565 |
lemma append_Nil2 [simp]: "xs @ [] = xs" |
13145 | 566 |
by (induct xs) auto |
3507 | 567 |
|
13142 | 568 |
lemma append_is_Nil_conv [iff]: "(xs @ ys = []) = (xs = [] \<and> ys = [])" |
13145 | 569 |
by (induct xs) auto |
13114 | 570 |
|
13142 | 571 |
lemma Nil_is_append_conv [iff]: "([] = xs @ ys) = (xs = [] \<and> ys = [])" |
13145 | 572 |
by (induct xs) auto |
13114 | 573 |
|
13142 | 574 |
lemma append_self_conv [iff]: "(xs @ ys = xs) = (ys = [])" |
13145 | 575 |
by (induct xs) auto |
13114 | 576 |
|
13142 | 577 |
lemma self_append_conv [iff]: "(xs = xs @ ys) = (ys = [])" |
13145 | 578 |
by (induct xs) auto |
13114 | 579 |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
580 |
lemma append_eq_append_conv [simp, noatp]: |
24526 | 581 |
"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
|
582 |
==> (xs@us = ys@vs) = (xs=ys \<and> us=vs)" |
24526 | 583 |
apply (induct xs arbitrary: ys) |
14208 | 584 |
apply (case_tac ys, simp, force) |
585 |
apply (case_tac ys, force, simp) |
|
13145 | 586 |
done |
13142 | 587 |
|
24526 | 588 |
lemma append_eq_append_conv2: "(xs @ ys = zs @ ts) = |
589 |
(EX us. xs = zs @ us & us @ ys = ts | xs @ us = zs & ys = us@ ts)" |
|
590 |
apply (induct xs arbitrary: ys zs ts) |
|
14495 | 591 |
apply fastsimp |
592 |
apply(case_tac zs) |
|
593 |
apply simp |
|
594 |
apply fastsimp |
|
595 |
done |
|
596 |
||
34910
b23bd3ee4813
same_append_eq / append_same_eq are now used for simplifying induction rules.
berghofe
parents:
34064
diff
changeset
|
597 |
lemma same_append_eq [iff, induct_simp]: "(xs @ ys = xs @ zs) = (ys = zs)" |
13145 | 598 |
by simp |
13142 | 599 |
|
600 |
lemma append1_eq_conv [iff]: "(xs @ [x] = ys @ [y]) = (xs = ys \<and> x = y)" |
|
13145 | 601 |
by simp |
13114 | 602 |
|
34910
b23bd3ee4813
same_append_eq / append_same_eq are now used for simplifying induction rules.
berghofe
parents:
34064
diff
changeset
|
603 |
lemma append_same_eq [iff, induct_simp]: "(ys @ xs = zs @ xs) = (ys = zs)" |
13145 | 604 |
by simp |
13114 | 605 |
|
13142 | 606 |
lemma append_self_conv2 [iff]: "(xs @ ys = ys) = (xs = [])" |
13145 | 607 |
using append_same_eq [of _ _ "[]"] by auto |
3507 | 608 |
|
13142 | 609 |
lemma self_append_conv2 [iff]: "(ys = xs @ ys) = (xs = [])" |
13145 | 610 |
using append_same_eq [of "[]"] by auto |
13114 | 611 |
|
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
612 |
lemma hd_Cons_tl [simp,noatp]: "xs \<noteq> [] ==> hd xs # tl xs = xs" |
13145 | 613 |
by (induct xs) auto |
13114 | 614 |
|
13142 | 615 |
lemma hd_append: "hd (xs @ ys) = (if xs = [] then hd ys else hd xs)" |
13145 | 616 |
by (induct xs) auto |
13114 | 617 |
|
13142 | 618 |
lemma hd_append2 [simp]: "xs \<noteq> [] ==> hd (xs @ ys) = hd xs" |
13145 | 619 |
by (simp add: hd_append split: list.split) |
13114 | 620 |
|
13142 | 621 |
lemma tl_append: "tl (xs @ ys) = (case xs of [] => tl ys | z#zs => zs @ ys)" |
13145 | 622 |
by (simp split: list.split) |
13114 | 623 |
|
13142 | 624 |
lemma tl_append2 [simp]: "xs \<noteq> [] ==> tl (xs @ ys) = tl xs @ ys" |
13145 | 625 |
by (simp add: tl_append split: list.split) |
13114 | 626 |
|
627 |
||
14300 | 628 |
lemma Cons_eq_append_conv: "x#xs = ys@zs = |
629 |
(ys = [] & x#xs = zs | (EX ys'. x#ys' = ys & xs = ys'@zs))" |
|
630 |
by(cases ys) auto |
|
631 |
||
15281 | 632 |
lemma append_eq_Cons_conv: "(ys@zs = x#xs) = |
633 |
(ys = [] & zs = x#xs | (EX ys'. ys = x#ys' & ys'@zs = xs))" |
|
634 |
by(cases ys) auto |
|
635 |
||
14300 | 636 |
|
13142 | 637 |
text {* Trivial rules for solving @{text "@"}-equations automatically. *} |
13114 | 638 |
|
639 |
lemma eq_Nil_appendI: "xs = ys ==> xs = [] @ ys" |
|
13145 | 640 |
by simp |
13114 | 641 |
|
13142 | 642 |
lemma Cons_eq_appendI: |
13145 | 643 |
"[| x # xs1 = ys; xs = xs1 @ zs |] ==> x # xs = ys @ zs" |
644 |
by (drule sym) simp |
|
13114 | 645 |
|
13142 | 646 |
lemma append_eq_appendI: |
13145 | 647 |
"[| xs @ xs1 = zs; ys = xs1 @ us |] ==> xs @ ys = zs @ us" |
648 |
by (drule sym) simp |
|
13114 | 649 |
|
650 |
||
13142 | 651 |
text {* |
13145 | 652 |
Simplification procedure for all list equalities. |
653 |
Currently only tries to rearrange @{text "@"} to see if |
|
654 |
- both lists end in a singleton list, |
|
655 |
- or both lists end in the same list. |
|
13142 | 656 |
*} |
657 |
||
26480 | 658 |
ML {* |
3507 | 659 |
local |
660 |
||
29856 | 661 |
fun last (cons as Const(@{const_name Cons},_) $ _ $ xs) = |
662 |
(case xs of Const(@{const_name Nil},_) => cons | _ => last xs) |
|
663 |
| last (Const(@{const_name append},_) $ _ $ ys) = last ys |
|
13462 | 664 |
| last t = t; |
13114 | 665 |
|
29856 | 666 |
fun list1 (Const(@{const_name Cons},_) $ _ $ Const(@{const_name Nil},_)) = true |
13462 | 667 |
| list1 _ = false; |
13114 | 668 |
|
29856 | 669 |
fun butlast ((cons as Const(@{const_name Cons},_) $ x) $ xs) = |
670 |
(case xs of Const(@{const_name Nil},_) => xs | _ => cons $ butlast xs) |
|
671 |
| butlast ((app as Const(@{const_name append},_) $ xs) $ ys) = app $ butlast ys |
|
672 |
| butlast xs = Const(@{const_name Nil},fastype_of xs); |
|
13114 | 673 |
|
22633 | 674 |
val rearr_ss = HOL_basic_ss addsimps [@{thm append_assoc}, |
675 |
@{thm append_Nil}, @{thm append_Cons}]; |
|
16973 | 676 |
|
20044
92cc2f4c7335
simprocs: no theory argument -- use simpset context instead;
wenzelm
parents:
19890
diff
changeset
|
677 |
fun list_eq ss (F as (eq as Const(_,eqT)) $ lhs $ rhs) = |
13462 | 678 |
let |
679 |
val lastl = last lhs and lastr = last rhs; |
|
680 |
fun rearr conv = |
|
681 |
let |
|
682 |
val lhs1 = butlast lhs and rhs1 = butlast rhs; |
|
683 |
val Type(_,listT::_) = eqT |
|
684 |
val appT = [listT,listT] ---> listT |
|
29856 | 685 |
val app = Const(@{const_name append},appT) |
13462 | 686 |
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
|
687 |
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
|
688 |
val thm = Goal.prove (Simplifier.the_context ss) [] [] eq |
17877
67d5ab1cb0d8
Simplifier.inherit_context instead of Simplifier.inherit_bounds;
wenzelm
parents:
17830
diff
changeset
|
689 |
(K (simp_tac (Simplifier.inherit_context ss rearr_ss) 1)); |
15531 | 690 |
in SOME ((conv RS (thm RS trans)) RS eq_reflection) end; |
13114 | 691 |
|
13462 | 692 |
in |
22633 | 693 |
if list1 lastl andalso list1 lastr then rearr @{thm append1_eq_conv} |
694 |
else if lastl aconv lastr then rearr @{thm append_same_eq} |
|
15531 | 695 |
else NONE |
13462 | 696 |
end; |
697 |
||
13114 | 698 |
in |
13462 | 699 |
|
700 |
val list_eq_simproc = |
|
32010 | 701 |
Simplifier.simproc @{theory} "list_eq" ["(xs::'a list) = ys"] (K list_eq); |
13462 | 702 |
|
13114 | 703 |
end; |
704 |
||
705 |
Addsimprocs [list_eq_simproc]; |
|
706 |
*} |
|
707 |
||
708 |
||
15392 | 709 |
subsubsection {* @{text map} *} |
13114 | 710 |
|
13142 | 711 |
lemma map_ext: "(!!x. x : set xs --> f x = g x) ==> map f xs = map g xs" |
13145 | 712 |
by (induct xs) simp_all |
13114 | 713 |
|
13142 | 714 |
lemma map_ident [simp]: "map (\<lambda>x. x) = (\<lambda>xs. xs)" |
13145 | 715 |
by (rule ext, induct_tac xs) auto |
13114 | 716 |
|
13142 | 717 |
lemma map_append [simp]: "map f (xs @ ys) = map f xs @ map f ys" |
13145 | 718 |
by (induct xs) auto |
13114 | 719 |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
720 |
lemma map_map [simp]: "map f (map g xs) = map (f \<circ> g) xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
721 |
by (induct xs) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
722 |
|
35208 | 723 |
lemma map_comp_map[simp]: "((map f) o (map g)) = map(f o g)" |
724 |
apply(rule ext) |
|
725 |
apply(simp) |
|
726 |
done |
|
727 |
||
13142 | 728 |
lemma rev_map: "rev (map f xs) = map f (rev xs)" |
13145 | 729 |
by (induct xs) auto |
13114 | 730 |
|
13737 | 731 |
lemma map_eq_conv[simp]: "(map f xs = map g xs) = (!x : set xs. f x = g x)" |
732 |
by (induct xs) auto |
|
733 |
||
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
734 |
lemma map_cong [fundef_cong, recdef_cong]: |
13145 | 735 |
"xs = ys ==> (!!x. x : set ys ==> f x = g x) ==> map f xs = map g ys" |
736 |
-- {* a congruence rule for @{text map} *} |
|
13737 | 737 |
by simp |
13114 | 738 |
|
13142 | 739 |
lemma map_is_Nil_conv [iff]: "(map f xs = []) = (xs = [])" |
13145 | 740 |
by (cases xs) auto |
13114 | 741 |
|
13142 | 742 |
lemma Nil_is_map_conv [iff]: "([] = map f xs) = (xs = [])" |
13145 | 743 |
by (cases xs) auto |
13114 | 744 |
|
18447 | 745 |
lemma map_eq_Cons_conv: |
14025 | 746 |
"(map f xs = y#ys) = (\<exists>z zs. xs = z#zs \<and> f z = y \<and> map f zs = ys)" |
13145 | 747 |
by (cases xs) auto |
13114 | 748 |
|
18447 | 749 |
lemma Cons_eq_map_conv: |
14025 | 750 |
"(x#xs = map f ys) = (\<exists>z zs. ys = z#zs \<and> x = f z \<and> xs = map f zs)" |
751 |
by (cases ys) auto |
|
752 |
||
18447 | 753 |
lemmas map_eq_Cons_D = map_eq_Cons_conv [THEN iffD1] |
754 |
lemmas Cons_eq_map_D = Cons_eq_map_conv [THEN iffD1] |
|
755 |
declare map_eq_Cons_D [dest!] Cons_eq_map_D [dest!] |
|
756 |
||
14111 | 757 |
lemma ex_map_conv: |
758 |
"(EX xs. ys = map f xs) = (ALL y : set ys. EX x. y = f x)" |
|
18447 | 759 |
by(induct ys, auto simp add: Cons_eq_map_conv) |
14111 | 760 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
761 |
lemma map_eq_imp_length_eq: |
26734 | 762 |
assumes "map f xs = map f ys" |
763 |
shows "length xs = length ys" |
|
764 |
using assms proof (induct ys arbitrary: xs) |
|
765 |
case Nil then show ?case by simp |
|
766 |
next |
|
767 |
case (Cons y ys) then obtain z zs where xs: "xs = z # zs" by auto |
|
768 |
from Cons xs have "map f zs = map f ys" by simp |
|
769 |
moreover with Cons have "length zs = length ys" by blast |
|
770 |
with xs show ?case by simp |
|
771 |
qed |
|
772 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
773 |
lemma map_inj_on: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
774 |
"[| 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
|
775 |
==> xs = ys" |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
776 |
apply(frule map_eq_imp_length_eq) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
777 |
apply(rotate_tac -1) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
778 |
apply(induct rule:list_induct2) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
779 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
780 |
apply(simp) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
781 |
apply (blast intro:sym) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
782 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
783 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
784 |
lemma inj_on_map_eq_map: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
785 |
"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
|
786 |
by(blast dest:map_inj_on) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
787 |
|
13114 | 788 |
lemma map_injective: |
24526 | 789 |
"map f xs = map f ys ==> inj f ==> xs = ys" |
790 |
by (induct ys arbitrary: xs) (auto dest!:injD) |
|
13114 | 791 |
|
14339 | 792 |
lemma inj_map_eq_map[simp]: "inj f \<Longrightarrow> (map f xs = map f ys) = (xs = ys)" |
793 |
by(blast dest:map_injective) |
|
794 |
||
13114 | 795 |
lemma inj_mapI: "inj f ==> inj (map f)" |
17589 | 796 |
by (iprover dest: map_injective injD intro: inj_onI) |
13114 | 797 |
|
798 |
lemma inj_mapD: "inj (map f) ==> inj f" |
|
14208 | 799 |
apply (unfold inj_on_def, clarify) |
13145 | 800 |
apply (erule_tac x = "[x]" in ballE) |
14208 | 801 |
apply (erule_tac x = "[y]" in ballE, simp, blast) |
13145 | 802 |
apply blast |
803 |
done |
|
13114 | 804 |
|
14339 | 805 |
lemma inj_map[iff]: "inj (map f) = inj f" |
13145 | 806 |
by (blast dest: inj_mapD intro: inj_mapI) |
13114 | 807 |
|
15303 | 808 |
lemma inj_on_mapI: "inj_on f (\<Union>(set ` A)) \<Longrightarrow> inj_on (map f) A" |
809 |
apply(rule inj_onI) |
|
810 |
apply(erule map_inj_on) |
|
811 |
apply(blast intro:inj_onI dest:inj_onD) |
|
812 |
done |
|
813 |
||
14343 | 814 |
lemma map_idI: "(\<And>x. x \<in> set xs \<Longrightarrow> f x = x) \<Longrightarrow> map f xs = xs" |
815 |
by (induct xs, auto) |
|
13114 | 816 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
817 |
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
|
818 |
by (induct xs) auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
819 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
820 |
lemma map_fst_zip[simp]: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
821 |
"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
|
822 |
by (induct rule:list_induct2, simp_all) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
823 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
824 |
lemma map_snd_zip[simp]: |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
825 |
"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
|
826 |
by (induct rule:list_induct2, simp_all) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
827 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
828 |
|
15392 | 829 |
subsubsection {* @{text rev} *} |
13114 | 830 |
|
13142 | 831 |
lemma rev_append [simp]: "rev (xs @ ys) = rev ys @ rev xs" |
13145 | 832 |
by (induct xs) auto |
13114 | 833 |
|
13142 | 834 |
lemma rev_rev_ident [simp]: "rev (rev xs) = xs" |
13145 | 835 |
by (induct xs) auto |
13114 | 836 |
|
15870 | 837 |
lemma rev_swap: "(rev xs = ys) = (xs = rev ys)" |
838 |
by auto |
|
839 |
||
13142 | 840 |
lemma rev_is_Nil_conv [iff]: "(rev xs = []) = (xs = [])" |
13145 | 841 |
by (induct xs) auto |
13114 | 842 |
|
13142 | 843 |
lemma Nil_is_rev_conv [iff]: "([] = rev xs) = (xs = [])" |
13145 | 844 |
by (induct xs) auto |
13114 | 845 |
|
15870 | 846 |
lemma rev_singleton_conv [simp]: "(rev xs = [x]) = (xs = [x])" |
847 |
by (cases xs) auto |
|
848 |
||
849 |
lemma singleton_rev_conv [simp]: "([x] = rev xs) = (xs = [x])" |
|
850 |
by (cases xs) auto |
|
851 |
||
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
852 |
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
|
853 |
apply (induct xs arbitrary: ys, force) |
14208 | 854 |
apply (case_tac ys, simp, force) |
13145 | 855 |
done |
13114 | 856 |
|
15439 | 857 |
lemma inj_on_rev[iff]: "inj_on rev A" |
858 |
by(simp add:inj_on_def) |
|
859 |
||
13366 | 860 |
lemma rev_induct [case_names Nil snoc]: |
861 |
"[| 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
|
862 |
apply(simplesubst rev_rev_ident[symmetric]) |
13145 | 863 |
apply(rule_tac list = "rev xs" in list.induct, simp_all) |
864 |
done |
|
13114 | 865 |
|
13366 | 866 |
lemma rev_exhaust [case_names Nil snoc]: |
867 |
"(xs = [] ==> P) ==>(!!ys y. xs = ys @ [y] ==> P) ==> P" |
|
13145 | 868 |
by (induct xs rule: rev_induct) auto |
13114 | 869 |
|
13366 | 870 |
lemmas rev_cases = rev_exhaust |
871 |
||
18423 | 872 |
lemma rev_eq_Cons_iff[iff]: "(rev xs = y#ys) = (xs = rev ys @ [y])" |
873 |
by(rule rev_cases[of xs]) auto |
|
874 |
||
13114 | 875 |
|
15392 | 876 |
subsubsection {* @{text set} *} |
13114 | 877 |
|
13142 | 878 |
lemma finite_set [iff]: "finite (set xs)" |
13145 | 879 |
by (induct xs) auto |
13114 | 880 |
|
13142 | 881 |
lemma set_append [simp]: "set (xs @ ys) = (set xs \<union> set ys)" |
13145 | 882 |
by (induct xs) auto |
13114 | 883 |
|
17830 | 884 |
lemma hd_in_set[simp]: "xs \<noteq> [] \<Longrightarrow> hd xs : set xs" |
885 |
by(cases xs) auto |
|
14099 | 886 |
|
13142 | 887 |
lemma set_subset_Cons: "set xs \<subseteq> set (x # xs)" |
13145 | 888 |
by auto |
13114 | 889 |
|
14099 | 890 |
lemma set_ConsD: "y \<in> set (x # xs) \<Longrightarrow> y=x \<or> y \<in> set xs" |
891 |
by auto |
|
892 |
||
13142 | 893 |
lemma set_empty [iff]: "(set xs = {}) = (xs = [])" |
13145 | 894 |
by (induct xs) auto |
13114 | 895 |
|
15245 | 896 |
lemma set_empty2[iff]: "({} = set xs) = (xs = [])" |
897 |
by(induct xs) auto |
|
898 |
||
13142 | 899 |
lemma set_rev [simp]: "set (rev xs) = set xs" |
13145 | 900 |
by (induct xs) auto |
13114 | 901 |
|
13142 | 902 |
lemma set_map [simp]: "set (map f xs) = f`(set xs)" |
13145 | 903 |
by (induct xs) auto |
13114 | 904 |
|
13142 | 905 |
lemma set_filter [simp]: "set (filter P xs) = {x. x : set xs \<and> P x}" |
13145 | 906 |
by (induct xs) auto |
13114 | 907 |
|
32417 | 908 |
lemma set_upt [simp]: "set[i..<j] = {i..<j}" |
909 |
by (induct j) (simp_all add: atLeastLessThanSuc) |
|
13114 | 910 |
|
13142 | 911 |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
912 |
lemma split_list: "x : set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs" |
18049 | 913 |
proof (induct xs) |
26073 | 914 |
case Nil thus ?case by simp |
915 |
next |
|
916 |
case Cons thus ?case by (auto intro: Cons_eq_appendI) |
|
917 |
qed |
|
918 |
||
26734 | 919 |
lemma in_set_conv_decomp: "x \<in> set xs \<longleftrightarrow> (\<exists>ys zs. xs = ys @ x # zs)" |
920 |
by (auto elim: split_list) |
|
26073 | 921 |
|
922 |
lemma split_list_first: "x : set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys" |
|
923 |
proof (induct xs) |
|
924 |
case Nil thus ?case by simp |
|
18049 | 925 |
next |
926 |
case (Cons a xs) |
|
927 |
show ?case |
|
928 |
proof cases |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
929 |
assume "x = a" thus ?case using Cons by fastsimp |
18049 | 930 |
next |
26073 | 931 |
assume "x \<noteq> a" thus ?case using Cons by(fastsimp intro!: Cons_eq_appendI) |
932 |
qed |
|
933 |
qed |
|
934 |
||
935 |
lemma in_set_conv_decomp_first: |
|
936 |
"(x : set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set ys)" |
|
26734 | 937 |
by (auto dest!: split_list_first) |
26073 | 938 |
|
939 |
lemma split_list_last: "x : set xs \<Longrightarrow> \<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set zs" |
|
940 |
proof (induct xs rule:rev_induct) |
|
941 |
case Nil thus ?case by simp |
|
942 |
next |
|
943 |
case (snoc a xs) |
|
944 |
show ?case |
|
945 |
proof cases |
|
946 |
assume "x = a" thus ?case using snoc by simp (metis ex_in_conv set_empty2) |
|
947 |
next |
|
948 |
assume "x \<noteq> a" thus ?case using snoc by fastsimp |
|
18049 | 949 |
qed |
950 |
qed |
|
951 |
||
26073 | 952 |
lemma in_set_conv_decomp_last: |
953 |
"(x : set xs) = (\<exists>ys zs. xs = ys @ x # zs \<and> x \<notin> set zs)" |
|
26734 | 954 |
by (auto dest!: split_list_last) |
26073 | 955 |
|
956 |
lemma split_list_prop: "\<exists>x \<in> set xs. P x \<Longrightarrow> \<exists>ys x zs. xs = ys @ x # zs & P x" |
|
957 |
proof (induct xs) |
|
958 |
case Nil thus ?case by simp |
|
959 |
next |
|
960 |
case Cons thus ?case |
|
961 |
by(simp add:Bex_def)(metis append_Cons append.simps(1)) |
|
962 |
qed |
|
963 |
||
964 |
lemma split_list_propE: |
|
26734 | 965 |
assumes "\<exists>x \<in> set xs. P x" |
966 |
obtains ys x zs where "xs = ys @ x # zs" and "P x" |
|
967 |
using split_list_prop [OF assms] by blast |
|
26073 | 968 |
|
969 |
lemma split_list_first_prop: |
|
970 |
"\<exists>x \<in> set xs. P x \<Longrightarrow> |
|
971 |
\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y)" |
|
26734 | 972 |
proof (induct xs) |
26073 | 973 |
case Nil thus ?case by simp |
974 |
next |
|
975 |
case (Cons x xs) |
|
976 |
show ?case |
|
977 |
proof cases |
|
978 |
assume "P x" |
|
26734 | 979 |
thus ?thesis by simp |
980 |
(metis Un_upper1 contra_subsetD in_set_conv_decomp_first self_append_conv2 set_append) |
|
26073 | 981 |
next |
982 |
assume "\<not> P x" |
|
983 |
hence "\<exists>x\<in>set xs. P x" using Cons(2) by simp |
|
984 |
thus ?thesis using `\<not> P x` Cons(1) by (metis append_Cons set_ConsD) |
|
985 |
qed |
|
986 |
qed |
|
987 |
||
988 |
lemma split_list_first_propE: |
|
26734 | 989 |
assumes "\<exists>x \<in> set xs. P x" |
990 |
obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>y \<in> set ys. \<not> P y" |
|
991 |
using split_list_first_prop [OF assms] by blast |
|
26073 | 992 |
|
993 |
lemma split_list_first_prop_iff: |
|
994 |
"(\<exists>x \<in> set xs. P x) \<longleftrightarrow> |
|
995 |
(\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>y \<in> set ys. \<not> P y))" |
|
26734 | 996 |
by (rule, erule split_list_first_prop) auto |
26073 | 997 |
|
998 |
lemma split_list_last_prop: |
|
999 |
"\<exists>x \<in> set xs. P x \<Longrightarrow> |
|
1000 |
\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z)" |
|
1001 |
proof(induct xs rule:rev_induct) |
|
1002 |
case Nil thus ?case by simp |
|
1003 |
next |
|
1004 |
case (snoc x xs) |
|
1005 |
show ?case |
|
1006 |
proof cases |
|
1007 |
assume "P x" thus ?thesis by (metis emptyE set_empty) |
|
1008 |
next |
|
1009 |
assume "\<not> P x" |
|
1010 |
hence "\<exists>x\<in>set xs. P x" using snoc(2) by simp |
|
1011 |
thus ?thesis using `\<not> P x` snoc(1) by fastsimp |
|
1012 |
qed |
|
1013 |
qed |
|
1014 |
||
1015 |
lemma split_list_last_propE: |
|
26734 | 1016 |
assumes "\<exists>x \<in> set xs. P x" |
1017 |
obtains ys x zs where "xs = ys @ x # zs" and "P x" and "\<forall>z \<in> set zs. \<not> P z" |
|
1018 |
using split_list_last_prop [OF assms] by blast |
|
26073 | 1019 |
|
1020 |
lemma split_list_last_prop_iff: |
|
1021 |
"(\<exists>x \<in> set xs. P x) \<longleftrightarrow> |
|
1022 |
(\<exists>ys x zs. xs = ys@x#zs \<and> P x \<and> (\<forall>z \<in> set zs. \<not> P z))" |
|
26734 | 1023 |
by (metis split_list_last_prop [where P=P] in_set_conv_decomp) |
26073 | 1024 |
|
1025 |
lemma finite_list: "finite A ==> EX xs. set xs = A" |
|
26734 | 1026 |
by (erule finite_induct) |
1027 |
(auto simp add: set.simps(2) [symmetric] simp del: set.simps(2)) |
|
13508 | 1028 |
|
14388 | 1029 |
lemma card_length: "card (set xs) \<le> length xs" |
1030 |
by (induct xs) (auto simp add: card_insert_if) |
|
13114 | 1031 |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1032 |
lemma set_minus_filter_out: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1033 |
"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
|
1034 |
by (induct xs) auto |
15168 | 1035 |
|
35115 | 1036 |
|
15392 | 1037 |
subsubsection {* @{text filter} *} |
13114 | 1038 |
|
13142 | 1039 |
lemma filter_append [simp]: "filter P (xs @ ys) = filter P xs @ filter P ys" |
13145 | 1040 |
by (induct xs) auto |
13114 | 1041 |
|
15305 | 1042 |
lemma rev_filter: "rev (filter P xs) = filter P (rev xs)" |
1043 |
by (induct xs) simp_all |
|
1044 |
||
13142 | 1045 |
lemma filter_filter [simp]: "filter P (filter Q xs) = filter (\<lambda>x. Q x \<and> P x) xs" |
13145 | 1046 |
by (induct xs) auto |
13114 | 1047 |
|
16998 | 1048 |
lemma length_filter_le [simp]: "length (filter P xs) \<le> length xs" |
1049 |
by (induct xs) (auto simp add: le_SucI) |
|
1050 |
||
18423 | 1051 |
lemma sum_length_filter_compl: |
1052 |
"length(filter P xs) + length(filter (%x. ~P x) xs) = length xs" |
|
1053 |
by(induct xs) simp_all |
|
1054 |
||
13142 | 1055 |
lemma filter_True [simp]: "\<forall>x \<in> set xs. P x ==> filter P xs = xs" |
13145 | 1056 |
by (induct xs) auto |
13114 | 1057 |
|
13142 | 1058 |
lemma filter_False [simp]: "\<forall>x \<in> set xs. \<not> P x ==> filter P xs = []" |
13145 | 1059 |
by (induct xs) auto |
13114 | 1060 |
|
16998 | 1061 |
lemma filter_empty_conv: "(filter P xs = []) = (\<forall>x\<in>set xs. \<not> P x)" |
24349 | 1062 |
by (induct xs) simp_all |
16998 | 1063 |
|
1064 |
lemma filter_id_conv: "(filter P xs = xs) = (\<forall>x\<in>set xs. P x)" |
|
1065 |
apply (induct xs) |
|
1066 |
apply auto |
|
1067 |
apply(cut_tac P=P and xs=xs in length_filter_le) |
|
1068 |
apply simp |
|
1069 |
done |
|
13114 | 1070 |
|
16965 | 1071 |
lemma filter_map: |
1072 |
"filter P (map f xs) = map f (filter (P o f) xs)" |
|
1073 |
by (induct xs) simp_all |
|
1074 |
||
1075 |
lemma length_filter_map[simp]: |
|
1076 |
"length (filter P (map f xs)) = length(filter (P o f) xs)" |
|
1077 |
by (simp add:filter_map) |
|
1078 |
||
13142 | 1079 |
lemma filter_is_subset [simp]: "set (filter P xs) \<le> set xs" |
13145 | 1080 |
by auto |
13114 | 1081 |
|
15246 | 1082 |
lemma length_filter_less: |
1083 |
"\<lbrakk> x : set xs; ~ P x \<rbrakk> \<Longrightarrow> length(filter P xs) < length xs" |
|
1084 |
proof (induct xs) |
|
1085 |
case Nil thus ?case by simp |
|
1086 |
next |
|
1087 |
case (Cons x xs) thus ?case |
|
1088 |
apply (auto split:split_if_asm) |
|
1089 |
using length_filter_le[of P xs] apply arith |
|
1090 |
done |
|
1091 |
qed |
|
13114 | 1092 |
|
15281 | 1093 |
lemma length_filter_conv_card: |
1094 |
"length(filter p xs) = card{i. i < length xs & p(xs!i)}" |
|
1095 |
proof (induct xs) |
|
1096 |
case Nil thus ?case by simp |
|
1097 |
next |
|
1098 |
case (Cons x xs) |
|
1099 |
let ?S = "{i. i < length xs & p(xs!i)}" |
|
1100 |
have fin: "finite ?S" by(fast intro: bounded_nat_set_is_finite) |
|
1101 |
show ?case (is "?l = card ?S'") |
|
1102 |
proof (cases) |
|
1103 |
assume "p x" |
|
1104 |
hence eq: "?S' = insert 0 (Suc ` ?S)" |
|
25162 | 1105 |
by(auto simp: image_def split:nat.split dest:gr0_implies_Suc) |
15281 | 1106 |
have "length (filter p (x # xs)) = Suc(card ?S)" |
23388 | 1107 |
using Cons `p x` by simp |
15281 | 1108 |
also have "\<dots> = Suc(card(Suc ` ?S))" using fin |
1109 |
by (simp add: card_image inj_Suc) |
|
1110 |
also have "\<dots> = card ?S'" using eq fin |
|
1111 |
by (simp add:card_insert_if) (simp add:image_def) |
|
1112 |
finally show ?thesis . |
|
1113 |
next |
|
1114 |
assume "\<not> p x" |
|
1115 |
hence eq: "?S' = Suc ` ?S" |
|
25162 | 1116 |
by(auto simp add: image_def split:nat.split elim:lessE) |
15281 | 1117 |
have "length (filter p (x # xs)) = card ?S" |
23388 | 1118 |
using Cons `\<not> p x` by simp |
15281 | 1119 |
also have "\<dots> = card(Suc ` ?S)" using fin |
1120 |
by (simp add: card_image inj_Suc) |
|
1121 |
also have "\<dots> = card ?S'" using eq fin |
|
1122 |
by (simp add:card_insert_if) |
|
1123 |
finally show ?thesis . |
|
1124 |
qed |
|
1125 |
qed |
|
1126 |
||
17629 | 1127 |
lemma Cons_eq_filterD: |
1128 |
"x#xs = filter P ys \<Longrightarrow> |
|
1129 |
\<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 | 1130 |
(is "_ \<Longrightarrow> \<exists>us vs. ?P ys us vs") |
17629 | 1131 |
proof(induct ys) |
1132 |
case Nil thus ?case by simp |
|
1133 |
next |
|
1134 |
case (Cons y ys) |
|
1135 |
show ?case (is "\<exists>x. ?Q x") |
|
1136 |
proof cases |
|
1137 |
assume Py: "P y" |
|
1138 |
show ?thesis |
|
1139 |
proof cases |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1140 |
assume "x = y" |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1141 |
with Py Cons.prems have "?Q []" by simp |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1142 |
then show ?thesis .. |
17629 | 1143 |
next |
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1144 |
assume "x \<noteq> y" |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1145 |
with Py Cons.prems show ?thesis by simp |
17629 | 1146 |
qed |
1147 |
next |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1148 |
assume "\<not> P y" |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1149 |
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
|
1150 |
then have "?Q (y#us)" by simp |
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
1151 |
then show ?thesis .. |
17629 | 1152 |
qed |
1153 |
qed |
|
1154 |
||
1155 |
lemma filter_eq_ConsD: |
|
1156 |
"filter P ys = x#xs \<Longrightarrow> |
|
1157 |
\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs" |
|
1158 |
by(rule Cons_eq_filterD) simp |
|
1159 |
||
1160 |
lemma filter_eq_Cons_iff: |
|
1161 |
"(filter P ys = x#xs) = |
|
1162 |
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)" |
|
1163 |
by(auto dest:filter_eq_ConsD) |
|
1164 |
||
1165 |
lemma Cons_eq_filter_iff: |
|
1166 |
"(x#xs = filter P ys) = |
|
1167 |
(\<exists>us vs. ys = us @ x # vs \<and> (\<forall>u\<in>set us. \<not> P u) \<and> P x \<and> xs = filter P vs)" |
|
1168 |
by(auto dest:Cons_eq_filterD) |
|
1169 |
||
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
1170 |
lemma filter_cong[fundef_cong, recdef_cong]: |
17501 | 1171 |
"xs = ys \<Longrightarrow> (\<And>x. x \<in> set ys \<Longrightarrow> P x = Q x) \<Longrightarrow> filter P xs = filter Q ys" |
1172 |
apply simp |
|
1173 |
apply(erule thin_rl) |
|
1174 |
by (induct ys) simp_all |
|
1175 |
||
15281 | 1176 |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1177 |
subsubsection {* List partitioning *} |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1178 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1179 |
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
|
1180 |
"partition P [] = ([], [])" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1181 |
| "partition P (x # xs) = |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1182 |
(let (yes, no) = partition P xs |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1183 |
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
|
1184 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1185 |
lemma partition_filter1: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1186 |
"fst (partition P xs) = filter P xs" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1187 |
by (induct xs) (auto simp add: Let_def split_def) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1188 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1189 |
lemma partition_filter2: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1190 |
"snd (partition P xs) = filter (Not o P) xs" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1191 |
by (induct xs) (auto simp add: Let_def split_def) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1192 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1193 |
lemma partition_P: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1194 |
assumes "partition P xs = (yes, no)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1195 |
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
|
1196 |
proof - |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1197 |
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
|
1198 |
by simp_all |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1199 |
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
|
1200 |
qed |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1201 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1202 |
lemma partition_set: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1203 |
assumes "partition P xs = (yes, no)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1204 |
shows "set yes \<union> set no = set xs" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1205 |
proof - |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1206 |
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
|
1207 |
by simp_all |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1208 |
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
|
1209 |
qed |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1210 |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1211 |
lemma partition_filter_conv[simp]: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1212 |
"partition f xs = (filter f xs,filter (Not o f) xs)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1213 |
unfolding partition_filter2[symmetric] |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1214 |
unfolding partition_filter1[symmetric] by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1215 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1216 |
declare partition.simps[simp del] |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
1217 |
|
35115 | 1218 |
|
15392 | 1219 |
subsubsection {* @{text concat} *} |
13114 | 1220 |
|
13142 | 1221 |
lemma concat_append [simp]: "concat (xs @ ys) = concat xs @ concat ys" |
13145 | 1222 |
by (induct xs) auto |
13114 | 1223 |
|
18447 | 1224 |
lemma concat_eq_Nil_conv [simp]: "(concat xss = []) = (\<forall>xs \<in> set xss. xs = [])" |
13145 | 1225 |
by (induct xss) auto |
13114 | 1226 |
|
18447 | 1227 |
lemma Nil_eq_concat_conv [simp]: "([] = concat xss) = (\<forall>xs \<in> set xss. xs = [])" |
13145 | 1228 |
by (induct xss) auto |
13114 | 1229 |
|
24308 | 1230 |
lemma set_concat [simp]: "set (concat xs) = (UN x:set xs. set x)" |
13145 | 1231 |
by (induct xs) auto |
13114 | 1232 |
|
24476
f7ad9fbbeeaa
turned list comprehension translations into ML to optimize base case
nipkow
parents:
24471
diff
changeset
|
1233 |
lemma concat_map_singleton[simp]: "concat(map (%x. [f x]) xs) = map f xs" |
24349 | 1234 |
by (induct xs) auto |
1235 |
||
13142 | 1236 |
lemma map_concat: "map f (concat xs) = concat (map (map f) xs)" |
13145 | 1237 |
by (induct xs) auto |
13114 | 1238 |
|
13142 | 1239 |
lemma filter_concat: "filter p (concat xs) = concat (map (filter p) xs)" |
13145 | 1240 |
by (induct xs) auto |
13114 | 1241 |
|
13142 | 1242 |
lemma rev_concat: "rev (concat xs) = concat (map rev (rev xs))" |
13145 | 1243 |
by (induct xs) auto |
13114 | 1244 |
|
1245 |
||
15392 | 1246 |
subsubsection {* @{text nth} *} |
13114 | 1247 |
|
29827 | 1248 |
lemma nth_Cons_0 [simp, code]: "(x # xs)!0 = x" |
13145 | 1249 |
by auto |
13114 | 1250 |
|
29827 | 1251 |
lemma nth_Cons_Suc [simp, code]: "(x # xs)!(Suc n) = xs!n" |
13145 | 1252 |
by auto |
13114 | 1253 |
|
13142 | 1254 |
declare nth.simps [simp del] |
13114 | 1255 |
|
1256 |
lemma nth_append: |
|
24526 | 1257 |
"(xs @ ys)!n = (if n < length xs then xs!n else ys!(n - length xs))" |
1258 |
apply (induct xs arbitrary: n, simp) |
|
14208 | 1259 |
apply (case_tac n, auto) |
13145 | 1260 |
done |
13114 | 1261 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1262 |
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
|
1263 |
by (induct xs) auto |
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1264 |
|
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1265 |
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
|
1266 |
by (induct xs) auto |
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1267 |
|
24526 | 1268 |
lemma nth_map [simp]: "n < length xs ==> (map f xs)!n = f(xs!n)" |
1269 |
apply (induct xs arbitrary: n, simp) |
|
14208 | 1270 |
apply (case_tac n, auto) |
13145 | 1271 |
done |
13114 | 1272 |
|
18423 | 1273 |
lemma hd_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd xs = xs!0" |
1274 |
by(cases xs) simp_all |
|
1275 |
||
18049 | 1276 |
|
1277 |
lemma list_eq_iff_nth_eq: |
|
24526 | 1278 |
"(xs = ys) = (length xs = length ys \<and> (ALL i<length xs. xs!i = ys!i))" |
1279 |
apply(induct xs arbitrary: ys) |
|
24632 | 1280 |
apply force |
18049 | 1281 |
apply(case_tac ys) |
1282 |
apply simp |
|
1283 |
apply(simp add:nth_Cons split:nat.split)apply blast |
|
1284 |
done |
|
1285 |
||
13142 | 1286 |
lemma set_conv_nth: "set xs = {xs!i | i. i < length xs}" |
15251 | 1287 |
apply (induct xs, simp, simp) |
13145 | 1288 |
apply safe |
24632 | 1289 |
apply (metis nat_case_0 nth.simps zero_less_Suc) |
1290 |
apply (metis less_Suc_eq_0_disj nth_Cons_Suc) |
|
14208 | 1291 |
apply (case_tac i, simp) |
24632 | 1292 |
apply (metis diff_Suc_Suc nat_case_Suc nth.simps zero_less_diff) |
13145 | 1293 |
done |
13114 | 1294 |
|
17501 | 1295 |
lemma in_set_conv_nth: "(x \<in> set xs) = (\<exists>i < length xs. xs!i = x)" |
1296 |
by(auto simp:set_conv_nth) |
|
1297 |
||
13145 | 1298 |
lemma list_ball_nth: "[| n < length xs; !x : set xs. P x|] ==> P(xs!n)" |
1299 |
by (auto simp add: set_conv_nth) |
|
13114 | 1300 |
|
13142 | 1301 |
lemma nth_mem [simp]: "n < length xs ==> xs!n : set xs" |
13145 | 1302 |
by (auto simp add: set_conv_nth) |
13114 | 1303 |
|
1304 |
lemma all_nth_imp_all_set: |
|
13145 | 1305 |
"[| !i < length xs. P(xs!i); x : set xs|] ==> P x" |
1306 |
by (auto simp add: set_conv_nth) |
|
13114 | 1307 |
|
1308 |
lemma all_set_conv_all_nth: |
|
13145 | 1309 |
"(\<forall>x \<in> set xs. P x) = (\<forall>i. i < length xs --> P (xs ! i))" |
1310 |
by (auto simp add: set_conv_nth) |
|
13114 | 1311 |
|
25296 | 1312 |
lemma rev_nth: |
1313 |
"n < size xs \<Longrightarrow> rev xs ! n = xs ! (length xs - Suc n)" |
|
1314 |
proof (induct xs arbitrary: n) |
|
1315 |
case Nil thus ?case by simp |
|
1316 |
next |
|
1317 |
case (Cons x xs) |
|
1318 |
hence n: "n < Suc (length xs)" by simp |
|
1319 |
moreover |
|
1320 |
{ assume "n < length xs" |
|
1321 |
with n obtain n' where "length xs - n = Suc n'" |
|
1322 |
by (cases "length xs - n", auto) |
|
1323 |
moreover |
|
1324 |
then have "length xs - Suc n = n'" by simp |
|
1325 |
ultimately |
|
1326 |
have "xs ! (length xs - Suc n) = (x # xs) ! (length xs - n)" by simp |
|
1327 |
} |
|
1328 |
ultimately |
|
1329 |
show ?case by (clarsimp simp add: Cons nth_append) |
|
1330 |
qed |
|
13114 | 1331 |
|
31159 | 1332 |
lemma Skolem_list_nth: |
1333 |
"(ALL i<k. EX x. P i x) = (EX xs. size xs = k & (ALL i<k. P i (xs!i)))" |
|
1334 |
(is "_ = (EX xs. ?P k xs)") |
|
1335 |
proof(induct k) |
|
1336 |
case 0 show ?case by simp |
|
1337 |
next |
|
1338 |
case (Suc k) |
|
1339 |
show ?case (is "?L = ?R" is "_ = (EX xs. ?P' xs)") |
|
1340 |
proof |
|
1341 |
assume "?R" thus "?L" using Suc by auto |
|
1342 |
next |
|
1343 |
assume "?L" |
|
1344 |
with Suc obtain x xs where "?P k xs & P k x" by (metis less_Suc_eq) |
|
1345 |
hence "?P'(xs@[x])" by(simp add:nth_append less_Suc_eq) |
|
1346 |
thus "?R" .. |
|
1347 |
qed |
|
1348 |
qed |
|
1349 |
||
1350 |
||
15392 | 1351 |
subsubsection {* @{text list_update} *} |
13114 | 1352 |
|
24526 | 1353 |
lemma length_list_update [simp]: "length(xs[i:=x]) = length xs" |
1354 |
by (induct xs arbitrary: i) (auto split: nat.split) |
|
13114 | 1355 |
|
1356 |
lemma nth_list_update: |
|
24526 | 1357 |
"i < length xs==> (xs[i:=x])!j = (if i = j then x else xs!j)" |
1358 |
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split) |
|
13114 | 1359 |
|
13142 | 1360 |
lemma nth_list_update_eq [simp]: "i < length xs ==> (xs[i:=x])!i = x" |
13145 | 1361 |
by (simp add: nth_list_update) |
13114 | 1362 |
|
24526 | 1363 |
lemma nth_list_update_neq [simp]: "i \<noteq> j ==> xs[i:=x]!j = xs!j" |
1364 |
by (induct xs arbitrary: i j) (auto simp add: nth_Cons split: nat.split) |
|
13114 | 1365 |
|
24526 | 1366 |
lemma list_update_id[simp]: "xs[i := xs!i] = xs" |
1367 |
by (induct xs arbitrary: i) (simp_all split:nat.splits) |
|
1368 |
||
1369 |
lemma list_update_beyond[simp]: "length xs \<le> i \<Longrightarrow> xs[i:=x] = xs" |
|
1370 |
apply (induct xs arbitrary: i) |
|
17501 | 1371 |
apply simp |
1372 |
apply (case_tac i) |
|
1373 |
apply simp_all |
|
1374 |
done |
|
1375 |
||
31077 | 1376 |
lemma list_update_nonempty[simp]: "xs[k:=x] = [] \<longleftrightarrow> xs=[]" |
1377 |
by(metis length_0_conv length_list_update) |
|
1378 |
||
13114 | 1379 |
lemma list_update_same_conv: |
24526 | 1380 |
"i < length xs ==> (xs[i := x] = xs) = (xs!i = x)" |
1381 |
by (induct xs arbitrary: i) (auto split: nat.split) |
|
13114 | 1382 |
|
14187 | 1383 |
lemma list_update_append1: |
24526 | 1384 |
"i < size xs \<Longrightarrow> (xs @ ys)[i:=x] = xs[i:=x] @ ys" |
1385 |
apply (induct xs arbitrary: i, simp) |
|
14187 | 1386 |
apply(simp split:nat.split) |
1387 |
done |
|
1388 |
||
15868 | 1389 |
lemma list_update_append: |
24526 | 1390 |
"(xs @ ys) [n:= x] = |
15868 | 1391 |
(if n < length xs then xs[n:= x] @ ys else xs @ (ys [n-length xs:= x]))" |
24526 | 1392 |
by (induct xs arbitrary: n) (auto split:nat.splits) |
15868 | 1393 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1394 |
lemma list_update_length [simp]: |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1395 |
"(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
|
1396 |
by (induct xs, auto) |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
1397 |
|
31264 | 1398 |
lemma map_update: "map f (xs[k:= y]) = (map f xs)[k := f y]" |
1399 |
by(induct xs arbitrary: k)(auto split:nat.splits) |
|
1400 |
||
1401 |
lemma rev_update: |
|
1402 |
"k < length xs \<Longrightarrow> rev (xs[k:= y]) = (rev xs)[length xs - k - 1 := y]" |
|
1403 |
by (induct xs arbitrary: k) (auto simp: list_update_append split:nat.splits) |
|
1404 |
||
13114 | 1405 |
lemma update_zip: |
31080 | 1406 |
"(zip xs ys)[i:=xy] = zip (xs[i:=fst xy]) (ys[i:=snd xy])" |
24526 | 1407 |
by (induct ys arbitrary: i xy xs) (auto, case_tac xs, auto split: nat.split) |
1408 |
||
1409 |
lemma set_update_subset_insert: "set(xs[i:=x]) <= insert x (set xs)" |
|
1410 |
by (induct xs arbitrary: i) (auto split: nat.split) |
|
13114 | 1411 |
|
1412 |
lemma set_update_subsetI: "[| set xs <= A; x:A |] ==> set(xs[i := x]) <= A" |
|
13145 | 1413 |
by (blast dest!: set_update_subset_insert [THEN subsetD]) |
13114 | 1414 |
|
24526 | 1415 |
lemma set_update_memI: "n < length xs \<Longrightarrow> x \<in> set (xs[n := x])" |
1416 |
by (induct xs arbitrary: n) (auto split:nat.splits) |
|
15868 | 1417 |
|
31077 | 1418 |
lemma list_update_overwrite[simp]: |
24796 | 1419 |
"xs [i := x, i := y] = xs [i := y]" |
31077 | 1420 |
apply (induct xs arbitrary: i) apply simp |
1421 |
apply (case_tac i, simp_all) |
|
24796 | 1422 |
done |
1423 |
||
1424 |
lemma list_update_swap: |
|
1425 |
"i \<noteq> i' \<Longrightarrow> xs [i := x, i' := x'] = xs [i' := x', i := x]" |
|
1426 |
apply (induct xs arbitrary: i i') |
|
1427 |
apply simp |
|
1428 |
apply (case_tac i, case_tac i') |
|
1429 |
apply auto |
|
1430 |
apply (case_tac i') |
|
1431 |
apply auto |
|
1432 |
done |
|
1433 |
||
29827 | 1434 |
lemma list_update_code [code]: |
1435 |
"[][i := y] = []" |
|
1436 |
"(x # xs)[0 := y] = y # xs" |
|
1437 |
"(x # xs)[Suc i := y] = x # xs[i := y]" |
|
1438 |
by simp_all |
|
1439 |
||
13114 | 1440 |
|
15392 | 1441 |
subsubsection {* @{text last} and @{text butlast} *} |
13114 | 1442 |
|
13142 | 1443 |
lemma last_snoc [simp]: "last (xs @ [x]) = x" |
13145 | 1444 |
by (induct xs) auto |
13114 | 1445 |
|
13142 | 1446 |
lemma butlast_snoc [simp]: "butlast (xs @ [x]) = xs" |
13145 | 1447 |
by (induct xs) auto |
13114 | 1448 |
|
14302 | 1449 |
lemma last_ConsL: "xs = [] \<Longrightarrow> last(x#xs) = x" |
1450 |
by(simp add:last.simps) |
|
1451 |
||
1452 |
lemma last_ConsR: "xs \<noteq> [] \<Longrightarrow> last(x#xs) = last xs" |
|
1453 |
by(simp add:last.simps) |
|
1454 |
||
1455 |
lemma last_append: "last(xs @ ys) = (if ys = [] then last xs else last ys)" |
|
1456 |
by (induct xs) (auto) |
|
1457 |
||
1458 |
lemma last_appendL[simp]: "ys = [] \<Longrightarrow> last(xs @ ys) = last xs" |
|
1459 |
by(simp add:last_append) |
|
1460 |
||
1461 |
lemma last_appendR[simp]: "ys \<noteq> [] \<Longrightarrow> last(xs @ ys) = last ys" |
|
1462 |
by(simp add:last_append) |
|
1463 |
||
17762 | 1464 |
lemma hd_rev: "xs \<noteq> [] \<Longrightarrow> hd(rev xs) = last xs" |
1465 |
by(rule rev_exhaust[of xs]) simp_all |
|
1466 |
||
1467 |
lemma last_rev: "xs \<noteq> [] \<Longrightarrow> last(rev xs) = hd xs" |
|
1468 |
by(cases xs) simp_all |
|
1469 |
||
17765 | 1470 |
lemma last_in_set[simp]: "as \<noteq> [] \<Longrightarrow> last as \<in> set as" |
1471 |
by (induct as) auto |
|
17762 | 1472 |
|
13142 | 1473 |
lemma length_butlast [simp]: "length (butlast xs) = length xs - 1" |
13145 | 1474 |
by (induct xs rule: rev_induct) auto |
13114 | 1475 |
|
1476 |
lemma butlast_append: |
|
24526 | 1477 |
"butlast (xs @ ys) = (if ys = [] then butlast xs else xs @ butlast ys)" |
1478 |
by (induct xs arbitrary: ys) auto |
|
13114 | 1479 |
|
13142 | 1480 |
lemma append_butlast_last_id [simp]: |
13145 | 1481 |
"xs \<noteq> [] ==> butlast xs @ [last xs] = xs" |
1482 |
by (induct xs) auto |
|
13114 | 1483 |
|
13142 | 1484 |
lemma in_set_butlastD: "x : set (butlast xs) ==> x : set xs" |
13145 | 1485 |
by (induct xs) (auto split: split_if_asm) |
13114 | 1486 |
|
1487 |
lemma in_set_butlast_appendI: |
|
13145 | 1488 |
"x : set (butlast xs) | x : set (butlast ys) ==> x : set (butlast (xs @ ys))" |
1489 |
by (auto dest: in_set_butlastD simp add: butlast_append) |
|
13114 | 1490 |
|
24526 | 1491 |
lemma last_drop[simp]: "n < length xs \<Longrightarrow> last (drop n xs) = last xs" |
1492 |
apply (induct xs arbitrary: n) |
|
17501 | 1493 |
apply simp |
1494 |
apply (auto split:nat.split) |
|
1495 |
done |
|
1496 |
||
30128
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
1497 |
lemma last_conv_nth: "xs\<noteq>[] \<Longrightarrow> last xs = xs!(length xs - 1)" |
17589 | 1498 |
by(induct xs)(auto simp:neq_Nil_conv) |
1499 |
||
30128
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
1500 |
lemma butlast_conv_take: "butlast xs = take (length xs - 1) xs" |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1501 |
by (induct xs, simp, case_tac xs, simp_all) |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1502 |
|
31077 | 1503 |
lemma last_list_update: |
1504 |
"xs \<noteq> [] \<Longrightarrow> last(xs[k:=x]) = (if k = size xs - 1 then x else last xs)" |
|
1505 |
by (auto simp: last_conv_nth) |
|
1506 |
||
1507 |
lemma butlast_list_update: |
|
1508 |
"butlast(xs[k:=x]) = |
|
1509 |
(if k = size xs - 1 then butlast xs else (butlast xs)[k:=x])" |
|
1510 |
apply(cases xs rule:rev_cases) |
|
1511 |
apply simp |
|
1512 |
apply(simp add:list_update_append split:nat.splits) |
|
1513 |
done |
|
1514 |
||
24796 | 1515 |
|
15392 | 1516 |
subsubsection {* @{text take} and @{text drop} *} |
13114 | 1517 |
|
13142 | 1518 |
lemma take_0 [simp]: "take 0 xs = []" |
13145 | 1519 |
by (induct xs) auto |
13114 | 1520 |
|
13142 | 1521 |
lemma drop_0 [simp]: "drop 0 xs = xs" |
13145 | 1522 |
by (induct xs) auto |
13114 | 1523 |
|
13142 | 1524 |
lemma take_Suc_Cons [simp]: "take (Suc n) (x # xs) = x # take n xs" |
13145 | 1525 |
by simp |
13114 | 1526 |
|
13142 | 1527 |
lemma drop_Suc_Cons [simp]: "drop (Suc n) (x # xs) = drop n xs" |
13145 | 1528 |
by simp |
13114 | 1529 |
|
13142 | 1530 |
declare take_Cons [simp del] and drop_Cons [simp del] |
13114 | 1531 |
|
30128
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
1532 |
lemma take_1_Cons [simp]: "take 1 (x # xs) = [x]" |
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
1533 |
unfolding One_nat_def by simp |
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
1534 |
|
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
1535 |
lemma drop_1_Cons [simp]: "drop 1 (x # xs) = xs" |
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
1536 |
unfolding One_nat_def by simp |
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
1537 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1538 |
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
|
1539 |
by(clarsimp simp add:neq_Nil_conv) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1540 |
|
14187 | 1541 |
lemma drop_Suc: "drop (Suc n) xs = drop n (tl xs)" |
1542 |
by(cases xs, simp_all) |
|
1543 |
||
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1544 |
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
|
1545 |
by (induct xs arbitrary: n) simp_all |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1546 |
|
24526 | 1547 |
lemma drop_tl: "drop n (tl xs) = tl(drop n xs)" |
1548 |
by(induct xs arbitrary: n, simp_all add:drop_Cons drop_Suc split:nat.split) |
|
1549 |
||
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1550 |
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
|
1551 |
by (cases n, simp, cases xs, auto) |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1552 |
|
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1553 |
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
|
1554 |
by (simp only: drop_tl) |
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1555 |
|
24526 | 1556 |
lemma nth_via_drop: "drop n xs = y#ys \<Longrightarrow> xs!n = y" |
1557 |
apply (induct xs arbitrary: n, simp) |
|
14187 | 1558 |
apply(simp add:drop_Cons nth_Cons split:nat.splits) |
1559 |
done |
|
1560 |
||
13913 | 1561 |
lemma take_Suc_conv_app_nth: |
24526 | 1562 |
"i < length xs \<Longrightarrow> take (Suc i) xs = take i xs @ [xs!i]" |
1563 |
apply (induct xs arbitrary: i, simp) |
|
14208 | 1564 |
apply (case_tac i, auto) |
13913 | 1565 |
done |
1566 |
||
14591 | 1567 |
lemma drop_Suc_conv_tl: |
24526 | 1568 |
"i < length xs \<Longrightarrow> (xs!i) # (drop (Suc i) xs) = drop i xs" |
1569 |
apply (induct xs arbitrary: i, simp) |
|
14591 | 1570 |
apply (case_tac i, auto) |
1571 |
done |
|
1572 |
||
24526 | 1573 |
lemma length_take [simp]: "length (take n xs) = min (length xs) n" |
1574 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
1575 |
||
1576 |
lemma length_drop [simp]: "length (drop n xs) = (length xs - n)" |
|
1577 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
1578 |
||
1579 |
lemma take_all [simp]: "length xs <= n ==> take n xs = xs" |
|
1580 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
1581 |
||
1582 |
lemma drop_all [simp]: "length xs <= n ==> drop n xs = []" |
|
1583 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
13114 | 1584 |
|
13142 | 1585 |
lemma take_append [simp]: |
24526 | 1586 |
"take n (xs @ ys) = (take n xs @ take (n - length xs) ys)" |
1587 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
13114 | 1588 |
|
13142 | 1589 |
lemma drop_append [simp]: |
24526 | 1590 |
"drop n (xs @ ys) = drop n xs @ drop (n - length xs) ys" |
1591 |
by (induct n arbitrary: xs) (auto, case_tac xs, auto) |
|
1592 |
||
1593 |
lemma take_take [simp]: "take n (take m xs) = take (min n m) xs" |
|
1594 |
apply (induct m arbitrary: xs n, auto) |
|
14208 | 1595 |
apply (case_tac xs, auto) |
15236
f289e8ba2bb3
Proofs needed to be updated because induction now preserves name of
nipkow
parents:
15176
diff
changeset
|
1596 |
apply (case_tac n, auto) |
13145 | 1597 |
done |
13114 | 1598 |
|
24526 | 1599 |
lemma drop_drop [simp]: "drop n (drop m xs) = drop (n + m) xs" |
1600 |
apply (induct m arbitrary: xs, auto) |
|
14208 | 1601 |
apply (case_tac xs, auto) |
13145 | 1602 |
done |
13114 | 1603 |
|
24526 | 1604 |
lemma take_drop: "take n (drop m xs) = drop m (take (n + m) xs)" |
1605 |
apply (induct m arbitrary: xs n, auto) |
|
14208 | 1606 |
apply (case_tac xs, auto) |
13145 | 1607 |
done |
13114 | 1608 |
|
24526 | 1609 |
lemma drop_take: "drop n (take m xs) = take (m-n) (drop n xs)" |
1610 |
apply(induct xs arbitrary: m n) |
|
14802 | 1611 |
apply simp |
1612 |
apply(simp add: take_Cons drop_Cons split:nat.split) |
|
1613 |
done |
|
1614 |
||
24526 | 1615 |
lemma append_take_drop_id [simp]: "take n xs @ drop n xs = xs" |
1616 |
apply (induct n arbitrary: xs, auto) |
|
14208 | 1617 |
apply (case_tac xs, auto) |
13145 | 1618 |
done |
13114 | 1619 |
|
24526 | 1620 |
lemma take_eq_Nil[simp]: "(take n xs = []) = (n = 0 \<or> xs = [])" |
1621 |
apply(induct xs arbitrary: n) |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1622 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1623 |
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
|
1624 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1625 |
|
24526 | 1626 |
lemma drop_eq_Nil[simp]: "(drop n xs = []) = (length xs <= n)" |
1627 |
apply(induct xs arbitrary: n) |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1628 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1629 |
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
|
1630 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1631 |
|
24526 | 1632 |
lemma take_map: "take n (map f xs) = map f (take n xs)" |
1633 |
apply (induct n arbitrary: xs, auto) |
|
14208 | 1634 |
apply (case_tac xs, auto) |
13145 | 1635 |
done |
13114 | 1636 |
|
24526 | 1637 |
lemma drop_map: "drop n (map f xs) = map f (drop n xs)" |
1638 |
apply (induct n arbitrary: xs, auto) |
|
14208 | 1639 |
apply (case_tac xs, auto) |
13145 | 1640 |
done |
13114 | 1641 |
|
24526 | 1642 |
lemma rev_take: "rev (take i xs) = drop (length xs - i) (rev xs)" |
1643 |
apply (induct xs arbitrary: i, auto) |
|
14208 | 1644 |
apply (case_tac i, auto) |
13145 | 1645 |
done |
13114 | 1646 |
|
24526 | 1647 |
lemma rev_drop: "rev (drop i xs) = take (length xs - i) (rev xs)" |
1648 |
apply (induct xs arbitrary: i, auto) |
|
14208 | 1649 |
apply (case_tac i, auto) |
13145 | 1650 |
done |
13114 | 1651 |
|
24526 | 1652 |
lemma nth_take [simp]: "i < n ==> (take n xs)!i = xs!i" |
1653 |
apply (induct xs arbitrary: i n, auto) |
|
14208 | 1654 |
apply (case_tac n, blast) |
1655 |
apply (case_tac i, auto) |
|
13145 | 1656 |
done |
13114 | 1657 |
|
13142 | 1658 |
lemma nth_drop [simp]: |
24526 | 1659 |
"n + i <= length xs ==> (drop n xs)!i = xs!(n + i)" |
1660 |
apply (induct n arbitrary: xs i, auto) |
|
14208 | 1661 |
apply (case_tac xs, auto) |
13145 | 1662 |
done |
3507 | 1663 |
|
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1664 |
lemma butlast_take: |
30128
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
1665 |
"n <= length xs ==> butlast (take n xs) = take (n - 1) xs" |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1666 |
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
|
1667 |
|
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1668 |
lemma butlast_drop: "butlast (drop n xs) = drop n (butlast xs)" |
30128
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
1669 |
by (simp add: butlast_conv_take drop_take add_ac) |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1670 |
|
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1671 |
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
|
1672 |
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
|
1673 |
|
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1674 |
lemma drop_butlast: "drop n (butlast xs) = butlast (drop n xs)" |
30128
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
1675 |
by (simp add: butlast_conv_take drop_take add_ac) |
26584
46f3b89b2445
move lemmas from Word/BinBoolList.thy to List.thy
huffman
parents:
26480
diff
changeset
|
1676 |
|
18423 | 1677 |
lemma hd_drop_conv_nth: "\<lbrakk> xs \<noteq> []; n < length xs \<rbrakk> \<Longrightarrow> hd(drop n xs) = xs!n" |
1678 |
by(simp add: hd_conv_nth) |
|
1679 |
||
35248 | 1680 |
lemma set_take_subset_set_take: |
1681 |
"m <= n \<Longrightarrow> set(take m xs) <= set(take n xs)" |
|
1682 |
by(induct xs arbitrary: m n)(auto simp:take_Cons split:nat.split) |
|
1683 |
||
24526 | 1684 |
lemma set_take_subset: "set(take n xs) \<subseteq> set xs" |
1685 |
by(induct xs arbitrary: n)(auto simp:take_Cons split:nat.split) |
|
1686 |
||
1687 |
lemma set_drop_subset: "set(drop n xs) \<subseteq> set xs" |
|
1688 |
by(induct xs arbitrary: n)(auto simp:drop_Cons split:nat.split) |
|
14025 | 1689 |
|
35248 | 1690 |
lemma set_drop_subset_set_drop: |
1691 |
"m >= n \<Longrightarrow> set(drop m xs) <= set(drop n xs)" |
|
1692 |
apply(induct xs arbitrary: m n) |
|
1693 |
apply(auto simp:drop_Cons split:nat.split) |
|
1694 |
apply (metis set_drop_subset subset_iff) |
|
1695 |
done |
|
1696 |
||
14187 | 1697 |
lemma in_set_takeD: "x : set(take n xs) \<Longrightarrow> x : set xs" |
1698 |
using set_take_subset by fast |
|
1699 |
||
1700 |
lemma in_set_dropD: "x : set(drop n xs) \<Longrightarrow> x : set xs" |
|
1701 |
using set_drop_subset by fast |
|
1702 |
||
13114 | 1703 |
lemma append_eq_conv_conj: |
24526 | 1704 |
"(xs @ ys = zs) = (xs = take (length xs) zs \<and> ys = drop (length xs) zs)" |
1705 |
apply (induct xs arbitrary: zs, simp, clarsimp) |
|
14208 | 1706 |
apply (case_tac zs, auto) |
13145 | 1707 |
done |
13142 | 1708 |
|
24526 | 1709 |
lemma take_add: |
1710 |
"i+j \<le> length(xs) \<Longrightarrow> take (i+j) xs = take i xs @ take j (drop i xs)" |
|
1711 |
apply (induct xs arbitrary: i, auto) |
|
1712 |
apply (case_tac i, simp_all) |
|
14050 | 1713 |
done |
1714 |
||
14300 | 1715 |
lemma append_eq_append_conv_if: |
24526 | 1716 |
"(xs\<^isub>1 @ xs\<^isub>2 = ys\<^isub>1 @ ys\<^isub>2) = |
14300 | 1717 |
(if size xs\<^isub>1 \<le> size ys\<^isub>1 |
1718 |
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 |
|
1719 |
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 | 1720 |
apply(induct xs\<^isub>1 arbitrary: ys\<^isub>1) |
14300 | 1721 |
apply simp |
1722 |
apply(case_tac ys\<^isub>1) |
|
1723 |
apply simp_all |
|
1724 |
done |
|
1725 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1726 |
lemma take_hd_drop: |
30079
293b896b9c25
make proofs work whether or not One_nat_def is a simp rule; replace 1 with Suc 0 in the rhs of some simp rules
huffman
parents:
30008
diff
changeset
|
1727 |
"n < length xs \<Longrightarrow> take n xs @ [hd (drop n xs)] = take (Suc n) xs" |
24526 | 1728 |
apply(induct xs arbitrary: n) |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1729 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1730 |
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
|
1731 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
1732 |
|
17501 | 1733 |
lemma id_take_nth_drop: |
1734 |
"i < length xs \<Longrightarrow> xs = take i xs @ xs!i # drop (Suc i) xs" |
|
1735 |
proof - |
|
1736 |
assume si: "i < length xs" |
|
1737 |
hence "xs = take (Suc i) xs @ drop (Suc i) xs" by auto |
|
1738 |
moreover |
|
1739 |
from si have "take (Suc i) xs = take i xs @ [xs!i]" |
|
1740 |
apply (rule_tac take_Suc_conv_app_nth) by arith |
|
1741 |
ultimately show ?thesis by auto |
|
1742 |
qed |
|
1743 |
||
1744 |
lemma upd_conv_take_nth_drop: |
|
1745 |
"i < length xs \<Longrightarrow> xs[i:=a] = take i xs @ a # drop (Suc i) xs" |
|
1746 |
proof - |
|
1747 |
assume i: "i < length xs" |
|
1748 |
have "xs[i:=a] = (take i xs @ xs!i # drop (Suc i) xs)[i:=a]" |
|
1749 |
by(rule arg_cong[OF id_take_nth_drop[OF i]]) |
|
1750 |
also have "\<dots> = take i xs @ a # drop (Suc i) xs" |
|
1751 |
using i by (simp add: list_update_append) |
|
1752 |
finally show ?thesis . |
|
1753 |
qed |
|
1754 |
||
24796 | 1755 |
lemma nth_drop': |
1756 |
"i < length xs \<Longrightarrow> xs ! i # drop (Suc i) xs = drop i xs" |
|
1757 |
apply (induct i arbitrary: xs) |
|
1758 |
apply (simp add: neq_Nil_conv) |
|
1759 |
apply (erule exE)+ |
|
1760 |
apply simp |
|
1761 |
apply (case_tac xs) |
|
1762 |
apply simp_all |
|
1763 |
done |
|
1764 |
||
13114 | 1765 |
|
15392 | 1766 |
subsubsection {* @{text takeWhile} and @{text dropWhile} *} |
13114 | 1767 |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1768 |
lemma length_takeWhile_le: "length (takeWhile P xs) \<le> length xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1769 |
by (induct xs) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1770 |
|
13142 | 1771 |
lemma takeWhile_dropWhile_id [simp]: "takeWhile P xs @ dropWhile P xs = xs" |
13145 | 1772 |
by (induct xs) auto |
13114 | 1773 |
|
13142 | 1774 |
lemma takeWhile_append1 [simp]: |
13145 | 1775 |
"[| x:set xs; ~P(x)|] ==> takeWhile P (xs @ ys) = takeWhile P xs" |
1776 |
by (induct xs) auto |
|
13114 | 1777 |
|
13142 | 1778 |
lemma takeWhile_append2 [simp]: |
13145 | 1779 |
"(!!x. x : set xs ==> P x) ==> takeWhile P (xs @ ys) = xs @ takeWhile P ys" |
1780 |
by (induct xs) auto |
|
13114 | 1781 |
|
13142 | 1782 |
lemma takeWhile_tail: "\<not> P x ==> takeWhile P (xs @ (x#l)) = takeWhile P xs" |
13145 | 1783 |
by (induct xs) auto |
13114 | 1784 |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1785 |
lemma takeWhile_nth: "j < length (takeWhile P xs) \<Longrightarrow> takeWhile P xs ! j = xs ! j" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1786 |
apply (subst (3) takeWhile_dropWhile_id[symmetric]) unfolding nth_append by auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1787 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1788 |
lemma dropWhile_nth: "j < length (dropWhile P xs) \<Longrightarrow> dropWhile P xs ! j = xs ! (j + length (takeWhile P xs))" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1789 |
apply (subst (3) takeWhile_dropWhile_id[symmetric]) unfolding nth_append by auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1790 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1791 |
lemma length_dropWhile_le: "length (dropWhile P xs) \<le> length xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1792 |
by (induct xs) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1793 |
|
13142 | 1794 |
lemma dropWhile_append1 [simp]: |
13145 | 1795 |
"[| x : set xs; ~P(x)|] ==> dropWhile P (xs @ ys) = (dropWhile P xs)@ys" |
1796 |
by (induct xs) auto |
|
13114 | 1797 |
|
13142 | 1798 |
lemma dropWhile_append2 [simp]: |
13145 | 1799 |
"(!!x. x:set xs ==> P(x)) ==> dropWhile P (xs @ ys) = dropWhile P ys" |
1800 |
by (induct xs) auto |
|
13114 | 1801 |
|
23971
e6d505d5b03d
renamed lemma "set_take_whileD" to "set_takeWhileD"
krauss
parents:
23740
diff
changeset
|
1802 |
lemma set_takeWhileD: "x : set (takeWhile P xs) ==> x : set xs \<and> P x" |
13145 | 1803 |
by (induct xs) (auto split: split_if_asm) |
13114 | 1804 |
|
13913 | 1805 |
lemma takeWhile_eq_all_conv[simp]: |
1806 |
"(takeWhile P xs = xs) = (\<forall>x \<in> set xs. P x)" |
|
1807 |
by(induct xs, auto) |
|
1808 |
||
1809 |
lemma dropWhile_eq_Nil_conv[simp]: |
|
1810 |
"(dropWhile P xs = []) = (\<forall>x \<in> set xs. P x)" |
|
1811 |
by(induct xs, auto) |
|
1812 |
||
1813 |
lemma dropWhile_eq_Cons_conv: |
|
1814 |
"(dropWhile P xs = y#ys) = (xs = takeWhile P xs @ y # ys & \<not> P y)" |
|
1815 |
by(induct xs, auto) |
|
1816 |
||
31077 | 1817 |
lemma distinct_takeWhile[simp]: "distinct xs ==> distinct (takeWhile P xs)" |
1818 |
by (induct xs) (auto dest: set_takeWhileD) |
|
1819 |
||
1820 |
lemma distinct_dropWhile[simp]: "distinct xs ==> distinct (dropWhile P xs)" |
|
1821 |
by (induct xs) auto |
|
1822 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1823 |
lemma takeWhile_map: "takeWhile P (map f xs) = map f (takeWhile (P \<circ> f) xs)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1824 |
by (induct xs) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1825 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1826 |
lemma dropWhile_map: "dropWhile P (map f xs) = map f (dropWhile (P \<circ> f) xs)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1827 |
by (induct xs) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1828 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1829 |
lemma takeWhile_eq_take: "takeWhile P xs = take (length (takeWhile P xs)) xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1830 |
by (induct xs) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1831 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1832 |
lemma dropWhile_eq_drop: "dropWhile P xs = drop (length (takeWhile P xs)) xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1833 |
by (induct xs) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1834 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1835 |
lemma hd_dropWhile: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1836 |
"dropWhile P xs \<noteq> [] \<Longrightarrow> \<not> P (hd (dropWhile P xs))" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1837 |
using assms by (induct xs) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1838 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1839 |
lemma takeWhile_eq_filter: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1840 |
assumes "\<And> x. x \<in> set (dropWhile P xs) \<Longrightarrow> \<not> P x" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1841 |
shows "takeWhile P xs = filter P xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1842 |
proof - |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1843 |
have A: "filter P xs = filter P (takeWhile P xs @ dropWhile P xs)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1844 |
by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1845 |
have B: "filter P (dropWhile P xs) = []" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1846 |
unfolding filter_empty_conv using assms by blast |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1847 |
have "filter P xs = takeWhile P xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1848 |
unfolding A filter_append B |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1849 |
by (auto simp add: filter_id_conv dest: set_takeWhileD) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1850 |
thus ?thesis .. |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1851 |
qed |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1852 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1853 |
lemma takeWhile_eq_take_P_nth: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1854 |
"\<lbrakk> \<And> i. \<lbrakk> i < n ; i < length xs \<rbrakk> \<Longrightarrow> P (xs ! i) ; n < length xs \<Longrightarrow> \<not> P (xs ! n) \<rbrakk> \<Longrightarrow> |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1855 |
takeWhile P xs = take n xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1856 |
proof (induct xs arbitrary: n) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1857 |
case (Cons x xs) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1858 |
thus ?case |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1859 |
proof (cases n) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1860 |
case (Suc n') note this[simp] |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1861 |
have "P x" using Cons.prems(1)[of 0] by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1862 |
moreover have "takeWhile P xs = take n' xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1863 |
proof (rule Cons.hyps) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1864 |
case goal1 thus "P (xs ! i)" using Cons.prems(1)[of "Suc i"] by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1865 |
next case goal2 thus ?case using Cons by auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1866 |
qed |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1867 |
ultimately show ?thesis by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1868 |
qed simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1869 |
qed simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1870 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1871 |
lemma nth_length_takeWhile: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1872 |
"length (takeWhile P xs) < length xs \<Longrightarrow> \<not> P (xs ! length (takeWhile P xs))" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1873 |
by (induct xs) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1874 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1875 |
lemma length_takeWhile_less_P_nth: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1876 |
assumes all: "\<And> i. i < j \<Longrightarrow> P (xs ! i)" and "j \<le> length xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1877 |
shows "j \<le> length (takeWhile P xs)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1878 |
proof (rule classical) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1879 |
assume "\<not> ?thesis" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1880 |
hence "length (takeWhile P xs) < length xs" using assms by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1881 |
thus ?thesis using all `\<not> ?thesis` nth_length_takeWhile[of P xs] by auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1882 |
qed |
31077 | 1883 |
|
17501 | 1884 |
text{* The following two lemmmas could be generalized to an arbitrary |
1885 |
property. *} |
|
1886 |
||
1887 |
lemma takeWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow> |
|
1888 |
takeWhile (\<lambda>y. y \<noteq> x) (rev xs) = rev (tl (dropWhile (\<lambda>y. y \<noteq> x) xs))" |
|
1889 |
by(induct xs) (auto simp: takeWhile_tail[where l="[]"]) |
|
1890 |
||
1891 |
lemma dropWhile_neq_rev: "\<lbrakk>distinct xs; x \<in> set xs\<rbrakk> \<Longrightarrow> |
|
1892 |
dropWhile (\<lambda>y. y \<noteq> x) (rev xs) = x # rev (takeWhile (\<lambda>y. y \<noteq> x) xs)" |
|
1893 |
apply(induct xs) |
|
1894 |
apply simp |
|
1895 |
apply auto |
|
1896 |
apply(subst dropWhile_append2) |
|
1897 |
apply auto |
|
1898 |
done |
|
1899 |
||
18423 | 1900 |
lemma takeWhile_not_last: |
1901 |
"\<lbrakk> xs \<noteq> []; distinct xs\<rbrakk> \<Longrightarrow> takeWhile (\<lambda>y. y \<noteq> last xs) xs = butlast xs" |
|
1902 |
apply(induct xs) |
|
1903 |
apply simp |
|
1904 |
apply(case_tac xs) |
|
1905 |
apply(auto) |
|
1906 |
done |
|
1907 |
||
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
1908 |
lemma takeWhile_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1909 |
"[| 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
|
1910 |
==> takeWhile P l = takeWhile Q k" |
24349 | 1911 |
by (induct k arbitrary: l) (simp_all) |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1912 |
|
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
1913 |
lemma dropWhile_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1914 |
"[| 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
|
1915 |
==> dropWhile P l = dropWhile Q k" |
24349 | 1916 |
by (induct k arbitrary: l, simp_all) |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
1917 |
|
13114 | 1918 |
|
15392 | 1919 |
subsubsection {* @{text zip} *} |
13114 | 1920 |
|
13142 | 1921 |
lemma zip_Nil [simp]: "zip [] ys = []" |
13145 | 1922 |
by (induct ys) auto |
13114 | 1923 |
|
13142 | 1924 |
lemma zip_Cons_Cons [simp]: "zip (x # xs) (y # ys) = (x, y) # zip xs ys" |
13145 | 1925 |
by simp |
13114 | 1926 |
|
13142 | 1927 |
declare zip_Cons [simp del] |
13114 | 1928 |
|
15281 | 1929 |
lemma zip_Cons1: |
1930 |
"zip (x#xs) ys = (case ys of [] \<Rightarrow> [] | y#ys \<Rightarrow> (x,y)#zip xs ys)" |
|
1931 |
by(auto split:list.split) |
|
1932 |
||
13142 | 1933 |
lemma length_zip [simp]: |
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1934 |
"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
|
1935 |
by (induct xs ys rule:list_induct2') auto |
13114 | 1936 |
|
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1937 |
lemma zip_obtain_same_length: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1938 |
assumes "\<And>zs ws n. length zs = length ws \<Longrightarrow> n = min (length xs) (length ys) |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1939 |
\<Longrightarrow> zs = take n xs \<Longrightarrow> ws = take n ys \<Longrightarrow> P (zip zs ws)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1940 |
shows "P (zip xs ys)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1941 |
proof - |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1942 |
let ?n = "min (length xs) (length ys)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1943 |
have "P (zip (take ?n xs) (take ?n ys))" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1944 |
by (rule assms) simp_all |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1945 |
moreover have "zip xs ys = zip (take ?n xs) (take ?n ys)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1946 |
proof (induct xs arbitrary: ys) |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1947 |
case Nil then show ?case by simp |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1948 |
next |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1949 |
case (Cons x xs) then show ?case by (cases ys) simp_all |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1950 |
qed |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1951 |
ultimately show ?thesis by simp |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1952 |
qed |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
1953 |
|
13114 | 1954 |
lemma zip_append1: |
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1955 |
"zip (xs @ ys) zs = |
13145 | 1956 |
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
|
1957 |
by (induct xs zs rule:list_induct2') auto |
13114 | 1958 |
|
1959 |
lemma zip_append2: |
|
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
1960 |
"zip xs (ys @ zs) = |
13145 | 1961 |
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
|
1962 |
by (induct xs ys rule:list_induct2') auto |
13114 | 1963 |
|
13142 | 1964 |
lemma zip_append [simp]: |
1965 |
"[| length xs = length us; length ys = length vs |] ==> |
|
13145 | 1966 |
zip (xs@ys) (us@vs) = zip xs us @ zip ys vs" |
1967 |
by (simp add: zip_append1) |
|
13114 | 1968 |
|
1969 |
lemma zip_rev: |
|
14247 | 1970 |
"length xs = length ys ==> zip (rev xs) (rev ys) = rev (zip xs ys)" |
1971 |
by (induct rule:list_induct2, simp_all) |
|
13114 | 1972 |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1973 |
lemma zip_map_map: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1974 |
"zip (map f xs) (map g ys) = map (\<lambda> (x, y). (f x, g y)) (zip xs ys)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1975 |
proof (induct xs arbitrary: ys) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1976 |
case (Cons x xs) note Cons_x_xs = Cons.hyps |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1977 |
show ?case |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1978 |
proof (cases ys) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1979 |
case (Cons y ys') |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1980 |
show ?thesis unfolding Cons using Cons_x_xs by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1981 |
qed simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1982 |
qed simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1983 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1984 |
lemma zip_map1: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1985 |
"zip (map f xs) ys = map (\<lambda>(x, y). (f x, y)) (zip xs ys)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1986 |
using zip_map_map[of f xs "\<lambda>x. x" ys] by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1987 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1988 |
lemma zip_map2: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1989 |
"zip xs (map f ys) = map (\<lambda>(x, y). (x, f y)) (zip xs ys)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1990 |
using zip_map_map[of "\<lambda>x. x" xs f ys] by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1991 |
|
23096 | 1992 |
lemma map_zip_map: |
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1993 |
"map f (zip (map g xs) ys) = map (%(x,y). f(g x, y)) (zip xs ys)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1994 |
unfolding zip_map1 by auto |
23096 | 1995 |
|
1996 |
lemma map_zip_map2: |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1997 |
"map f (zip xs (map g ys)) = map (%(x,y). f(x, g y)) (zip xs ys)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
1998 |
unfolding zip_map2 by auto |
23096 | 1999 |
|
31080 | 2000 |
text{* Courtesy of Andreas Lochbihler: *} |
2001 |
lemma zip_same_conv_map: "zip xs xs = map (\<lambda>x. (x, x)) xs" |
|
2002 |
by(induct xs) auto |
|
2003 |
||
13142 | 2004 |
lemma nth_zip [simp]: |
24526 | 2005 |
"[| i < length xs; i < length ys|] ==> (zip xs ys)!i = (xs!i, ys!i)" |
2006 |
apply (induct ys arbitrary: i xs, simp) |
|
13145 | 2007 |
apply (case_tac xs) |
2008 |
apply (simp_all add: nth.simps split: nat.split) |
|
2009 |
done |
|
13114 | 2010 |
|
2011 |
lemma set_zip: |
|
13145 | 2012 |
"set (zip xs ys) = {(xs!i, ys!i) | i. i < min (length xs) (length ys)}" |
31080 | 2013 |
by(simp add: set_conv_nth cong: rev_conj_cong) |
13114 | 2014 |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2015 |
lemma zip_same: "((a,b) \<in> set (zip xs xs)) = (a \<in> set xs \<and> a = b)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2016 |
by(induct xs) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2017 |
|
13114 | 2018 |
lemma zip_update: |
31080 | 2019 |
"zip (xs[i:=x]) (ys[i:=y]) = (zip xs ys)[i:=(x,y)]" |
2020 |
by(rule sym, simp add: update_zip) |
|
13114 | 2021 |
|
13142 | 2022 |
lemma zip_replicate [simp]: |
24526 | 2023 |
"zip (replicate i x) (replicate j y) = replicate (min i j) (x,y)" |
2024 |
apply (induct i arbitrary: j, auto) |
|
14208 | 2025 |
apply (case_tac j, auto) |
13145 | 2026 |
done |
13114 | 2027 |
|
19487 | 2028 |
lemma take_zip: |
24526 | 2029 |
"take n (zip xs ys) = zip (take n xs) (take n ys)" |
2030 |
apply (induct n arbitrary: xs ys) |
|
19487 | 2031 |
apply simp |
2032 |
apply (case_tac xs, simp) |
|
2033 |
apply (case_tac ys, simp_all) |
|
2034 |
done |
|
2035 |
||
2036 |
lemma drop_zip: |
|
24526 | 2037 |
"drop n (zip xs ys) = zip (drop n xs) (drop n ys)" |
2038 |
apply (induct n arbitrary: xs ys) |
|
19487 | 2039 |
apply simp |
2040 |
apply (case_tac xs, simp) |
|
2041 |
apply (case_tac ys, simp_all) |
|
2042 |
done |
|
2043 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2044 |
lemma zip_takeWhile_fst: "zip (takeWhile P xs) ys = takeWhile (P \<circ> fst) (zip xs ys)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2045 |
proof (induct xs arbitrary: ys) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2046 |
case (Cons x xs) thus ?case by (cases ys) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2047 |
qed simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2048 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2049 |
lemma zip_takeWhile_snd: "zip xs (takeWhile P ys) = takeWhile (P \<circ> snd) (zip xs ys)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2050 |
proof (induct xs arbitrary: ys) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2051 |
case (Cons x xs) thus ?case by (cases ys) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2052 |
qed simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2053 |
|
22493
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
2054 |
lemma set_zip_leftD: |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
2055 |
"(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
|
2056 |
by (induct xs ys rule:list_induct2') auto |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
2057 |
|
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
2058 |
lemma set_zip_rightD: |
db930e490fe5
added another rule for simultaneous induction, and lemmas for zip
krauss
parents:
22422
diff
changeset
|
2059 |
"(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
|
2060 |
by (induct xs ys rule:list_induct2') auto |
13142 | 2061 |
|
23983 | 2062 |
lemma in_set_zipE: |
2063 |
"(x,y) : set(zip xs ys) \<Longrightarrow> (\<lbrakk> x : set xs; y : set ys \<rbrakk> \<Longrightarrow> R) \<Longrightarrow> R" |
|
2064 |
by(blast dest: set_zip_leftD set_zip_rightD) |
|
2065 |
||
29829 | 2066 |
lemma zip_map_fst_snd: |
2067 |
"zip (map fst zs) (map snd zs) = zs" |
|
2068 |
by (induct zs) simp_all |
|
2069 |
||
2070 |
lemma zip_eq_conv: |
|
2071 |
"length xs = length ys \<Longrightarrow> zip xs ys = zs \<longleftrightarrow> map fst zs = xs \<and> map snd zs = ys" |
|
2072 |
by (auto simp add: zip_map_fst_snd) |
|
2073 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2074 |
lemma distinct_zipI1: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2075 |
"distinct xs \<Longrightarrow> distinct (zip xs ys)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2076 |
proof (induct xs arbitrary: ys) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2077 |
case (Cons x xs) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2078 |
show ?case |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2079 |
proof (cases ys) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2080 |
case (Cons y ys') |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2081 |
have "(x, y) \<notin> set (zip xs ys')" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2082 |
using Cons.prems by (auto simp: set_zip) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2083 |
thus ?thesis |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2084 |
unfolding Cons zip_Cons_Cons distinct.simps |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2085 |
using Cons.hyps Cons.prems by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2086 |
qed simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2087 |
qed simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2088 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2089 |
lemma distinct_zipI2: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2090 |
"distinct xs \<Longrightarrow> distinct (zip xs ys)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2091 |
proof (induct xs arbitrary: ys) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2092 |
case (Cons x xs) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2093 |
show ?case |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2094 |
proof (cases ys) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2095 |
case (Cons y ys') |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2096 |
have "(x, y) \<notin> set (zip xs ys')" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2097 |
using Cons.prems by (auto simp: set_zip) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2098 |
thus ?thesis |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2099 |
unfolding Cons zip_Cons_Cons distinct.simps |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2100 |
using Cons.hyps Cons.prems by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2101 |
qed simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2102 |
qed simp |
29829 | 2103 |
|
35115 | 2104 |
|
15392 | 2105 |
subsubsection {* @{text list_all2} *} |
13114 | 2106 |
|
14316
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
kleing
parents:
14302
diff
changeset
|
2107 |
lemma list_all2_lengthD [intro?]: |
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
kleing
parents:
14302
diff
changeset
|
2108 |
"list_all2 P xs ys ==> length xs = length ys" |
24349 | 2109 |
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
|
2110 |
|
19787 | 2111 |
lemma list_all2_Nil [iff, code]: "list_all2 P [] ys = (ys = [])" |
24349 | 2112 |
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
|
2113 |
|
19787 | 2114 |
lemma list_all2_Nil2 [iff, code]: "list_all2 P xs [] = (xs = [])" |
24349 | 2115 |
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
|
2116 |
|
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
2117 |
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
|
2118 |
"list_all2 P (x # xs) (y # ys) = (P x y \<and> list_all2 P xs ys)" |
24349 | 2119 |
by (auto simp add: list_all2_def) |
13114 | 2120 |
|
2121 |
lemma list_all2_Cons1: |
|
13145 | 2122 |
"list_all2 P (x # xs) ys = (\<exists>z zs. ys = z # zs \<and> P x z \<and> list_all2 P xs zs)" |
2123 |
by (cases ys) auto |
|
13114 | 2124 |
|
2125 |
lemma list_all2_Cons2: |
|
13145 | 2126 |
"list_all2 P xs (y # ys) = (\<exists>z zs. xs = z # zs \<and> P z y \<and> list_all2 P zs ys)" |
2127 |
by (cases xs) auto |
|
13114 | 2128 |
|
13142 | 2129 |
lemma list_all2_rev [iff]: |
13145 | 2130 |
"list_all2 P (rev xs) (rev ys) = list_all2 P xs ys" |
2131 |
by (simp add: list_all2_def zip_rev cong: conj_cong) |
|
13114 | 2132 |
|
13863 | 2133 |
lemma list_all2_rev1: |
2134 |
"list_all2 P (rev xs) ys = list_all2 P xs (rev ys)" |
|
2135 |
by (subst list_all2_rev [symmetric]) simp |
|
2136 |
||
13114 | 2137 |
lemma list_all2_append1: |
13145 | 2138 |
"list_all2 P (xs @ ys) zs = |
2139 |
(EX us vs. zs = us @ vs \<and> length us = length xs \<and> length vs = length ys \<and> |
|
2140 |
list_all2 P xs us \<and> list_all2 P ys vs)" |
|
2141 |
apply (simp add: list_all2_def zip_append1) |
|
2142 |
apply (rule iffI) |
|
2143 |
apply (rule_tac x = "take (length xs) zs" in exI) |
|
2144 |
apply (rule_tac x = "drop (length xs) zs" in exI) |
|
14208 | 2145 |
apply (force split: nat_diff_split simp add: min_def, clarify) |
13145 | 2146 |
apply (simp add: ball_Un) |
2147 |
done |
|
13114 | 2148 |
|
2149 |
lemma list_all2_append2: |
|
13145 | 2150 |
"list_all2 P xs (ys @ zs) = |
2151 |
(EX us vs. xs = us @ vs \<and> length us = length ys \<and> length vs = length zs \<and> |
|
2152 |
list_all2 P us ys \<and> list_all2 P vs zs)" |
|
2153 |
apply (simp add: list_all2_def zip_append2) |
|
2154 |
apply (rule iffI) |
|
2155 |
apply (rule_tac x = "take (length ys) xs" in exI) |
|
2156 |
apply (rule_tac x = "drop (length ys) xs" in exI) |
|
14208 | 2157 |
apply (force split: nat_diff_split simp add: min_def, clarify) |
13145 | 2158 |
apply (simp add: ball_Un) |
2159 |
done |
|
13114 | 2160 |
|
13863 | 2161 |
lemma list_all2_append: |
14247 | 2162 |
"length xs = length ys \<Longrightarrow> |
2163 |
list_all2 P (xs@us) (ys@vs) = (list_all2 P xs ys \<and> list_all2 P us vs)" |
|
2164 |
by (induct rule:list_induct2, simp_all) |
|
13863 | 2165 |
|
2166 |
lemma list_all2_appendI [intro?, trans]: |
|
2167 |
"\<lbrakk> list_all2 P a b; list_all2 P c d \<rbrakk> \<Longrightarrow> list_all2 P (a@c) (b@d)" |
|
24349 | 2168 |
by (simp add: list_all2_append list_all2_lengthD) |
13863 | 2169 |
|
13114 | 2170 |
lemma list_all2_conv_all_nth: |
13145 | 2171 |
"list_all2 P xs ys = |
2172 |
(length xs = length ys \<and> (\<forall>i < length xs. P (xs!i) (ys!i)))" |
|
2173 |
by (force simp add: list_all2_def set_zip) |
|
13114 | 2174 |
|
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2175 |
lemma list_all2_trans: |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2176 |
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
|
2177 |
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
|
2178 |
(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
|
2179 |
proof (induct as) |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2180 |
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
|
2181 |
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
|
2182 |
proof (induct bs) |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2183 |
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
|
2184 |
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
|
2185 |
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
|
2186 |
qed simp |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2187 |
qed simp |
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2188 |
|
13863 | 2189 |
lemma list_all2_all_nthI [intro?]: |
2190 |
"length a = length b \<Longrightarrow> (\<And>n. n < length a \<Longrightarrow> P (a!n) (b!n)) \<Longrightarrow> list_all2 P a b" |
|
24349 | 2191 |
by (simp add: list_all2_conv_all_nth) |
13863 | 2192 |
|
14395 | 2193 |
lemma list_all2I: |
2194 |
"\<forall>x \<in> set (zip a b). split P x \<Longrightarrow> length a = length b \<Longrightarrow> list_all2 P a b" |
|
24349 | 2195 |
by (simp add: list_all2_def) |
14395 | 2196 |
|
14328 | 2197 |
lemma list_all2_nthD: |
13863 | 2198 |
"\<lbrakk> list_all2 P xs ys; p < size xs \<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)" |
24349 | 2199 |
by (simp add: list_all2_conv_all_nth) |
13863 | 2200 |
|
14302 | 2201 |
lemma list_all2_nthD2: |
2202 |
"\<lbrakk>list_all2 P xs ys; p < size ys\<rbrakk> \<Longrightarrow> P (xs!p) (ys!p)" |
|
24349 | 2203 |
by (frule list_all2_lengthD) (auto intro: list_all2_nthD) |
14302 | 2204 |
|
13863 | 2205 |
lemma list_all2_map1: |
2206 |
"list_all2 P (map f as) bs = list_all2 (\<lambda>x y. P (f x) y) as bs" |
|
24349 | 2207 |
by (simp add: list_all2_conv_all_nth) |
13863 | 2208 |
|
2209 |
lemma list_all2_map2: |
|
2210 |
"list_all2 P as (map f bs) = list_all2 (\<lambda>x y. P x (f y)) as bs" |
|
24349 | 2211 |
by (auto simp add: list_all2_conv_all_nth) |
13863 | 2212 |
|
14316
91b897b9a2dc
added some [intro?] and [trans] for list_all2 lemmas
kleing
parents:
14302
diff
changeset
|
2213 |
lemma list_all2_refl [intro?]: |
13863 | 2214 |
"(\<And>x. P x x) \<Longrightarrow> list_all2 P xs xs" |
24349 | 2215 |
by (simp add: list_all2_conv_all_nth) |
13863 | 2216 |
|
2217 |
lemma list_all2_update_cong: |
|
2218 |
"\<lbrakk> i<size xs; list_all2 P xs ys; P x y \<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])" |
|
24349 | 2219 |
by (simp add: list_all2_conv_all_nth nth_list_update) |
13863 | 2220 |
|
2221 |
lemma list_all2_update_cong2: |
|
2222 |
"\<lbrakk>list_all2 P xs ys; P x y; i < length ys\<rbrakk> \<Longrightarrow> list_all2 P (xs[i:=x]) (ys[i:=y])" |
|
24349 | 2223 |
by (simp add: list_all2_lengthD list_all2_update_cong) |
13863 | 2224 |
|
14302 | 2225 |
lemma list_all2_takeI [simp,intro?]: |
24526 | 2226 |
"list_all2 P xs ys \<Longrightarrow> list_all2 P (take n xs) (take n ys)" |
2227 |
apply (induct xs arbitrary: n ys) |
|
2228 |
apply simp |
|
2229 |
apply (clarsimp simp add: list_all2_Cons1) |
|
2230 |
apply (case_tac n) |
|
2231 |
apply auto |
|
2232 |
done |
|
14302 | 2233 |
|
2234 |
lemma list_all2_dropI [simp,intro?]: |
|
24526 | 2235 |
"list_all2 P as bs \<Longrightarrow> list_all2 P (drop n as) (drop n bs)" |
2236 |
apply (induct as arbitrary: n bs, simp) |
|
2237 |
apply (clarsimp simp add: list_all2_Cons1) |
|
2238 |
apply (case_tac n, simp, simp) |
|
2239 |
done |
|
13863 | 2240 |
|
14327 | 2241 |
lemma list_all2_mono [intro?]: |
24526 | 2242 |
"list_all2 P xs ys \<Longrightarrow> (\<And>xs ys. P xs ys \<Longrightarrow> Q xs ys) \<Longrightarrow> list_all2 Q xs ys" |
2243 |
apply (induct xs arbitrary: ys, simp) |
|
2244 |
apply (case_tac ys, auto) |
|
2245 |
done |
|
13863 | 2246 |
|
22551 | 2247 |
lemma list_all2_eq: |
2248 |
"xs = ys \<longleftrightarrow> list_all2 (op =) xs ys" |
|
24349 | 2249 |
by (induct xs ys rule: list_induct2') auto |
22551 | 2250 |
|
13142 | 2251 |
|
15392 | 2252 |
subsubsection {* @{text foldl} and @{text foldr} *} |
13142 | 2253 |
|
2254 |
lemma foldl_append [simp]: |
|
24526 | 2255 |
"foldl f a (xs @ ys) = foldl f (foldl f a xs) ys" |
2256 |
by (induct xs arbitrary: a) auto |
|
13142 | 2257 |
|
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
2258 |
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
|
2259 |
by (induct xs) auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
2260 |
|
23096 | 2261 |
lemma foldr_map: "foldr g (map f xs) a = foldr (g o f) xs a" |
2262 |
by(induct xs) simp_all |
|
2263 |
||
24449 | 2264 |
text{* For efficient code generation: avoid intermediate list. *} |
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
2265 |
lemma foldl_map[code_unfold]: |
24449 | 2266 |
"foldl g a (map f xs) = foldl (%a x. g a (f x)) a xs" |
23096 | 2267 |
by(induct xs arbitrary:a) simp_all |
2268 |
||
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2269 |
lemma foldl_apply: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2270 |
assumes "\<And>x. x \<in> set xs \<Longrightarrow> f x \<circ> h = h \<circ> g x" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2271 |
shows "foldl (\<lambda>s x. f x s) (h s) xs = h (foldl (\<lambda>s x. g x s) s xs)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2272 |
by (rule sym, insert assms, induct xs arbitrary: s) (simp_all add: expand_fun_eq) |
31930 | 2273 |
|
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
2274 |
lemma foldl_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
2275 |
"[| 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
|
2276 |
==> foldl f a l = foldl g b k" |
24349 | 2277 |
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
|
2278 |
|
19770
be5c23ebe1eb
HOL/Tools/function_package: Added support for mutual recursive definitions.
krauss
parents:
19623
diff
changeset
|
2279 |
lemma foldr_cong [fundef_cong, recdef_cong]: |
18336
1a2e30b37ed3
Added recdef congruence rules for bounded quantifiers and commonly used
krauss
parents:
18049
diff
changeset
|
2280 |
"[| 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
|
2281 |
==> foldr f l a = foldr g k b" |
24349 | 2282 |
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
|
2283 |
|
35195 | 2284 |
lemma foldl_fun_comm: |
2285 |
assumes "\<And>x y s. f (f s x) y = f (f s y) x" |
|
2286 |
shows "f (foldl f s xs) x = foldl f (f s x) xs" |
|
2287 |
by (induct xs arbitrary: s) |
|
2288 |
(simp_all add: assms) |
|
2289 |
||
24449 | 2290 |
lemma (in semigroup_add) foldl_assoc: |
25062 | 2291 |
shows "foldl op+ (x+y) zs = x + (foldl op+ y zs)" |
24449 | 2292 |
by (induct zs arbitrary: y) (simp_all add:add_assoc) |
2293 |
||
2294 |
lemma (in monoid_add) foldl_absorb0: |
|
25062 | 2295 |
shows "x + (foldl op+ 0 zs) = foldl op+ x zs" |
24449 | 2296 |
by (induct zs) (simp_all add:foldl_assoc) |
2297 |
||
35195 | 2298 |
lemma foldl_rev: |
2299 |
assumes "\<And>x y s. f (f s x) y = f (f s y) x" |
|
2300 |
shows "foldl f s (rev xs) = foldl f s xs" |
|
2301 |
proof (induct xs arbitrary: s) |
|
2302 |
case Nil then show ?case by simp |
|
2303 |
next |
|
2304 |
case (Cons x xs) with assms show ?case by (simp add: foldl_fun_comm) |
|
2305 |
qed |
|
2306 |
||
24449 | 2307 |
|
23096 | 2308 |
text{* The ``First Duality Theorem'' in Bird \& Wadler: *} |
2309 |
||
2310 |
lemma foldl_foldr1_lemma: |
|
2311 |
"foldl op + a xs = a + foldr op + xs (0\<Colon>'a::monoid_add)" |
|
2312 |
by (induct xs arbitrary: a) (auto simp:add_assoc) |
|
2313 |
||
2314 |
corollary foldl_foldr1: |
|
2315 |
"foldl op + 0 xs = foldr op + xs (0\<Colon>'a::monoid_add)" |
|
2316 |
by (simp add:foldl_foldr1_lemma) |
|
2317 |
||
2318 |
||
2319 |
text{* The ``Third Duality Theorem'' in Bird \& Wadler: *} |
|
2320 |
||
14402
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
2321 |
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
|
2322 |
by (induct xs) auto |
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
2323 |
|
4201e1916482
moved lemmas from MicroJava/Comp/AuxLemmas.thy to List.thy
nipkow
parents:
14395
diff
changeset
|
2324 |
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
|
2325 |
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
|
2326 |
|
25062 | 2327 |
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
|
2328 |
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
|
2329 |
|
13142 | 2330 |
text {* |
13145 | 2331 |
Note: @{text "n \<le> foldl (op +) n ns"} looks simpler, but is more |
2332 |
difficult to use because it requires an additional transitivity step. |
|
13142 | 2333 |
*} |
2334 |
||
24526 | 2335 |
lemma start_le_sum: "(m::nat) <= n ==> m <= foldl (op +) n ns" |
2336 |
by (induct ns arbitrary: n) auto |
|
2337 |
||
2338 |
lemma elem_le_sum: "(n::nat) : set ns ==> n <= foldl (op +) 0 ns" |
|
13145 | 2339 |
by (force intro: start_le_sum simp add: in_set_conv_decomp) |
13142 | 2340 |
|
2341 |
lemma sum_eq_0_conv [iff]: |
|
24526 | 2342 |
"(foldl (op +) (m::nat) ns = 0) = (m = 0 \<and> (\<forall>n \<in> set ns. n = 0))" |
2343 |
by (induct ns arbitrary: m) auto |
|
13114 | 2344 |
|
24471
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2345 |
lemma foldr_invariant: |
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2346 |
"\<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
|
2347 |
by (induct xs, simp_all) |
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2348 |
|
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2349 |
lemma foldl_invariant: |
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2350 |
"\<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
|
2351 |
by (induct xs arbitrary: x, simp_all) |
d7cf53c1085f
removed unused theorems ; added lifting properties for foldr and foldl
chaieb
parents:
24461
diff
changeset
|
2352 |
|
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2353 |
lemma foldl_weak_invariant: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2354 |
assumes "P s" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2355 |
and "\<And>s x. x \<in> set xs \<Longrightarrow> P s \<Longrightarrow> P (f s x)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2356 |
shows "P (foldl f s xs)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2357 |
using assms by (induct xs arbitrary: s) simp_all |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2358 |
|
31455 | 2359 |
text {* @{const foldl} and @{const concat} *} |
24449 | 2360 |
|
2361 |
lemma foldl_conv_concat: |
|
29782 | 2362 |
"foldl (op @) xs xss = xs @ concat xss" |
2363 |
proof (induct xss arbitrary: xs) |
|
2364 |
case Nil show ?case by simp |
|
2365 |
next |
|
2366 |
interpret monoid_add "[]" "op @" proof qed simp_all |
|
2367 |
case Cons then show ?case by (simp add: foldl_absorb0) |
|
2368 |
qed |
|
2369 |
||
2370 |
lemma concat_conv_foldl: "concat xss = foldl (op @) [] xss" |
|
2371 |
by (simp add: foldl_conv_concat) |
|
2372 |
||
31455 | 2373 |
text {* @{const Finite_Set.fold} and @{const foldl} *} |
2374 |
||
35195 | 2375 |
lemma (in fun_left_comm) fold_set_remdups: |
2376 |
"fold f y (set xs) = foldl (\<lambda>y x. f x y) y (remdups xs)" |
|
2377 |
by (rule sym, induct xs arbitrary: y) (simp_all add: fold_fun_comm insert_absorb) |
|
2378 |
||
31455 | 2379 |
lemma (in fun_left_comm_idem) fold_set: |
2380 |
"fold f y (set xs) = foldl (\<lambda>y x. f x y) y xs" |
|
2381 |
by (rule sym, induct xs arbitrary: y) (simp_all add: fold_fun_comm) |
|
2382 |
||
32681
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2383 |
lemma (in ab_semigroup_idem_mult) fold1_set: |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2384 |
assumes "xs \<noteq> []" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2385 |
shows "fold1 times (set xs) = foldl times (hd xs) (tl xs)" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2386 |
proof - |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2387 |
interpret fun_left_comm_idem times by (fact fun_left_comm_idem) |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2388 |
from assms obtain y ys where xs: "xs = y # ys" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2389 |
by (cases xs) auto |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2390 |
show ?thesis |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2391 |
proof (cases "set ys = {}") |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2392 |
case True with xs show ?thesis by simp |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2393 |
next |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2394 |
case False |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2395 |
then have "fold1 times (insert y (set ys)) = fold times y (set ys)" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2396 |
by (simp only: finite_set fold1_eq_fold_idem) |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2397 |
with xs show ?thesis by (simp add: fold_set mult_commute) |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2398 |
qed |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2399 |
qed |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2400 |
|
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2401 |
lemma (in lattice) Inf_fin_set_fold [code_unfold]: |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2402 |
"Inf_fin (set (x # xs)) = foldl inf x xs" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2403 |
proof - |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2404 |
interpret ab_semigroup_idem_mult "inf :: 'a \<Rightarrow> 'a \<Rightarrow> 'a" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2405 |
by (fact ab_semigroup_idem_mult_inf) |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2406 |
show ?thesis |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2407 |
by (simp add: Inf_fin_def fold1_set del: set.simps) |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2408 |
qed |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2409 |
|
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2410 |
lemma (in lattice) Sup_fin_set_fold [code_unfold]: |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2411 |
"Sup_fin (set (x # xs)) = foldl sup x xs" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2412 |
proof - |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2413 |
interpret ab_semigroup_idem_mult "sup :: 'a \<Rightarrow> 'a \<Rightarrow> 'a" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2414 |
by (fact ab_semigroup_idem_mult_sup) |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2415 |
show ?thesis |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2416 |
by (simp add: Sup_fin_def fold1_set del: set.simps) |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2417 |
qed |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2418 |
|
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2419 |
lemma (in linorder) Min_fin_set_fold [code_unfold]: |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2420 |
"Min (set (x # xs)) = foldl min x xs" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2421 |
proof - |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2422 |
interpret ab_semigroup_idem_mult "min :: 'a \<Rightarrow> 'a \<Rightarrow> 'a" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2423 |
by (fact ab_semigroup_idem_mult_min) |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2424 |
show ?thesis |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2425 |
by (simp add: Min_def fold1_set del: set.simps) |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2426 |
qed |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2427 |
|
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2428 |
lemma (in linorder) Max_fin_set_fold [code_unfold]: |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2429 |
"Max (set (x # xs)) = foldl max x xs" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2430 |
proof - |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2431 |
interpret ab_semigroup_idem_mult "max :: 'a \<Rightarrow> 'a \<Rightarrow> 'a" |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2432 |
by (fact ab_semigroup_idem_mult_max) |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2433 |
show ?thesis |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2434 |
by (simp add: Max_def fold1_set del: set.simps) |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2435 |
qed |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2436 |
|
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2437 |
lemma (in complete_lattice) Inf_set_fold [code_unfold]: |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2438 |
"Inf (set xs) = foldl inf top xs" |
34007
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2439 |
proof - |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2440 |
interpret fun_left_comm_idem "inf :: 'a \<Rightarrow> 'a \<Rightarrow> 'a" |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2441 |
by (fact fun_left_comm_idem_inf) |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2442 |
show ?thesis by (simp add: Inf_fold_inf fold_set inf_commute) |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2443 |
qed |
32681
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2444 |
|
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2445 |
lemma (in complete_lattice) Sup_set_fold [code_unfold]: |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
2446 |
"Sup (set xs) = foldl sup bot xs" |
34007
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2447 |
proof - |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2448 |
interpret fun_left_comm_idem "sup :: 'a \<Rightarrow> 'a \<Rightarrow> 'a" |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2449 |
by (fact fun_left_comm_idem_sup) |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2450 |
show ?thesis by (simp add: Sup_fold_sup fold_set sup_commute) |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2451 |
qed |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2452 |
|
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2453 |
lemma (in complete_lattice) INFI_set_fold: |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2454 |
"INFI (set xs) f = foldl (\<lambda>y x. inf (f x) y) top xs" |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2455 |
unfolding INFI_def set_map [symmetric] Inf_set_fold foldl_map |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2456 |
by (simp add: inf_commute) |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2457 |
|
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2458 |
lemma (in complete_lattice) SUPR_set_fold: |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2459 |
"SUPR (set xs) f = foldl (\<lambda>y x. sup (f x) y) bot xs" |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2460 |
unfolding SUPR_def set_map [symmetric] Sup_set_fold foldl_map |
aea892559fc5
tuned lattices theory fragements; generlized some lemmas from sets to lattices
haftmann
parents:
33972
diff
changeset
|
2461 |
by (simp add: sup_commute) |
31455 | 2462 |
|
35115 | 2463 |
|
23096 | 2464 |
subsubsection {* List summation: @{const listsum} and @{text"\<Sum>"}*} |
2465 |
||
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2466 |
lemma listsum_append [simp]: "listsum (xs @ ys) = listsum xs + listsum ys" |
24449 | 2467 |
by (induct xs) (simp_all add:add_assoc) |
2468 |
||
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2469 |
lemma listsum_rev [simp]: |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2470 |
fixes xs :: "'a\<Colon>comm_monoid_add list" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2471 |
shows "listsum (rev xs) = listsum xs" |
24449 | 2472 |
by (induct xs) (simp_all add:add_ac) |
2473 |
||
31022 | 2474 |
lemma listsum_map_remove1: |
2475 |
fixes f :: "'a \<Rightarrow> ('b::comm_monoid_add)" |
|
2476 |
shows "x : set xs \<Longrightarrow> listsum(map f xs) = f x + listsum(map f (remove1 x xs))" |
|
2477 |
by (induct xs)(auto simp add:add_ac) |
|
2478 |
||
2479 |
lemma list_size_conv_listsum: |
|
2480 |
"list_size f xs = listsum (map f xs) + size xs" |
|
2481 |
by(induct xs) auto |
|
2482 |
||
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2483 |
lemma listsum_foldr: "listsum xs = foldr (op +) xs 0" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2484 |
by (induct xs) auto |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2485 |
|
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2486 |
lemma length_concat: "length (concat xss) = listsum (map length xss)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2487 |
by (induct xss) simp_all |
23096 | 2488 |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2489 |
lemma listsum_map_filter: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2490 |
fixes f :: "'a \<Rightarrow> 'b \<Colon> comm_monoid_add" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2491 |
assumes "\<And> x. \<lbrakk> x \<in> set xs ; \<not> P x \<rbrakk> \<Longrightarrow> f x = 0" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2492 |
shows "listsum (map f (filter P xs)) = listsum (map f xs)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2493 |
using assms by (induct xs) auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2494 |
|
24449 | 2495 |
text{* For efficient code generation --- |
2496 |
@{const listsum} is not tail recursive but @{const foldl} is. *} |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
2497 |
lemma listsum[code_unfold]: "listsum xs = foldl (op +) 0 xs" |
23096 | 2498 |
by(simp add:listsum_foldr foldl_foldr1) |
2499 |
||
31077 | 2500 |
lemma distinct_listsum_conv_Setsum: |
2501 |
"distinct xs \<Longrightarrow> listsum xs = Setsum(set xs)" |
|
2502 |
by (induct xs) simp_all |
|
2503 |
||
24449 | 2504 |
|
23096 | 2505 |
text{* Some syntactic sugar for summing a function over a list: *} |
2506 |
||
2507 |
syntax |
|
2508 |
"_listsum" :: "pttrn => 'a list => 'b => 'b" ("(3SUM _<-_. _)" [0, 51, 10] 10) |
|
2509 |
syntax (xsymbols) |
|
2510 |
"_listsum" :: "pttrn => 'a list => 'b => 'b" ("(3\<Sum>_\<leftarrow>_. _)" [0, 51, 10] 10) |
|
2511 |
syntax (HTML output) |
|
2512 |
"_listsum" :: "pttrn => 'a list => 'b => 'b" ("(3\<Sum>_\<leftarrow>_. _)" [0, 51, 10] 10) |
|
2513 |
||
2514 |
translations -- {* Beware of argument permutation! *} |
|
34941 | 2515 |
"SUM x<-xs. b" == "CONST listsum (CONST map (%x. b) xs)" |
2516 |
"\<Sum>x\<leftarrow>xs. b" == "CONST listsum (CONST map (%x. b) xs)" |
|
23096 | 2517 |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2518 |
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
|
2519 |
by (induct xs) (simp_all add: left_distrib) |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2520 |
|
23096 | 2521 |
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
|
2522 |
by (induct xs) (simp_all add: left_distrib) |
23096 | 2523 |
|
2524 |
text{* For non-Abelian groups @{text xs} needs to be reversed on one side: *} |
|
2525 |
lemma uminus_listsum_map: |
|
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2526 |
fixes f :: "'a \<Rightarrow> 'b\<Colon>ab_group_add" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
2527 |
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
|
2528 |
by (induct xs) simp_all |
23096 | 2529 |
|
31258 | 2530 |
lemma listsum_addf: |
2531 |
fixes f g :: "'a \<Rightarrow> 'b::comm_monoid_add" |
|
2532 |
shows "(\<Sum>x\<leftarrow>xs. f x + g x) = listsum (map f xs) + listsum (map g xs)" |
|
2533 |
by (induct xs) (simp_all add: algebra_simps) |
|
2534 |
||
2535 |
lemma listsum_subtractf: |
|
2536 |
fixes f g :: "'a \<Rightarrow> 'b::ab_group_add" |
|
2537 |
shows "(\<Sum>x\<leftarrow>xs. f x - g x) = listsum (map f xs) - listsum (map g xs)" |
|
2538 |
by (induct xs) simp_all |
|
2539 |
||
2540 |
lemma listsum_const_mult: |
|
2541 |
fixes f :: "'a \<Rightarrow> 'b::semiring_0" |
|
2542 |
shows "(\<Sum>x\<leftarrow>xs. c * f x) = c * (\<Sum>x\<leftarrow>xs. f x)" |
|
2543 |
by (induct xs, simp_all add: algebra_simps) |
|
2544 |
||
2545 |
lemma listsum_mult_const: |
|
2546 |
fixes f :: "'a \<Rightarrow> 'b::semiring_0" |
|
2547 |
shows "(\<Sum>x\<leftarrow>xs. f x * c) = (\<Sum>x\<leftarrow>xs. f x) * c" |
|
2548 |
by (induct xs, simp_all add: algebra_simps) |
|
2549 |
||
2550 |
lemma listsum_abs: |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34978
diff
changeset
|
2551 |
fixes xs :: "'a::ordered_ab_group_add_abs list" |
31258 | 2552 |
shows "\<bar>listsum xs\<bar> \<le> listsum (map abs xs)" |
2553 |
by (induct xs, simp, simp add: order_trans [OF abs_triangle_ineq]) |
|
2554 |
||
2555 |
lemma listsum_mono: |
|
35028
108662d50512
more consistent naming of type classes involving orderings (and lattices) -- c.f. NEWS
haftmann
parents:
34978
diff
changeset
|
2556 |
fixes f g :: "'a \<Rightarrow> 'b::{comm_monoid_add, ordered_ab_semigroup_add}" |
31258 | 2557 |
shows "(\<And>x. x \<in> set xs \<Longrightarrow> f x \<le> g x) \<Longrightarrow> (\<Sum>x\<leftarrow>xs. f x) \<le> (\<Sum>x\<leftarrow>xs. g x)" |
2558 |
by (induct xs, simp, simp add: add_mono) |
|
2559 |
||
13114 | 2560 |
|
24645 | 2561 |
subsubsection {* @{text upt} *} |
13114 | 2562 |
|
17090 | 2563 |
lemma upt_rec[code]: "[i..<j] = (if i<j then i#[Suc i..<j] else [])" |
2564 |
-- {* simp does not terminate! *} |
|
13145 | 2565 |
by (induct j) auto |
13142 | 2566 |
|
32005 | 2567 |
lemmas upt_rec_number_of[simp] = upt_rec[of "number_of m" "number_of n", standard] |
2568 |
||
15425 | 2569 |
lemma upt_conv_Nil [simp]: "j <= i ==> [i..<j] = []" |
13145 | 2570 |
by (subst upt_rec) simp |
13114 | 2571 |
|
15425 | 2572 |
lemma upt_eq_Nil_conv[simp]: "([i..<j] = []) = (j = 0 \<or> j <= i)" |
15281 | 2573 |
by(induct j)simp_all |
2574 |
||
2575 |
lemma upt_eq_Cons_conv: |
|
24526 | 2576 |
"([i..<j] = x#xs) = (i < j & i = x & [i+1..<j] = xs)" |
2577 |
apply(induct j arbitrary: x xs) |
|
15281 | 2578 |
apply simp |
2579 |
apply(clarsimp simp add: append_eq_Cons_conv) |
|
2580 |
apply arith |
|
2581 |
done |
|
2582 |
||
15425 | 2583 |
lemma upt_Suc_append: "i <= j ==> [i..<(Suc j)] = [i..<j]@[j]" |
13145 | 2584 |
-- {* Only needed if @{text upt_Suc} is deleted from the simpset. *} |
2585 |
by simp |
|
13114 | 2586 |
|
15425 | 2587 |
lemma upt_conv_Cons: "i < j ==> [i..<j] = i # [Suc i..<j]" |
26734 | 2588 |
by (simp add: upt_rec) |
13114 | 2589 |
|
15425 | 2590 |
lemma upt_add_eq_append: "i<=j ==> [i..<j+k] = [i..<j]@[j..<j+k]" |
13145 | 2591 |
-- {* LOOPS as a simprule, since @{text "j <= j"}. *} |
2592 |
by (induct k) auto |
|
13114 | 2593 |
|
15425 | 2594 |
lemma length_upt [simp]: "length [i..<j] = j - i" |
13145 | 2595 |
by (induct j) (auto simp add: Suc_diff_le) |
13114 | 2596 |
|
15425 | 2597 |
lemma nth_upt [simp]: "i + k < j ==> [i..<j] ! k = i + k" |
13145 | 2598 |
apply (induct j) |
2599 |
apply (auto simp add: less_Suc_eq nth_append split: nat_diff_split) |
|
2600 |
done |
|
13114 | 2601 |
|
17906 | 2602 |
|
2603 |
lemma hd_upt[simp]: "i < j \<Longrightarrow> hd[i..<j] = i" |
|
2604 |
by(simp add:upt_conv_Cons) |
|
2605 |
||
2606 |
lemma last_upt[simp]: "i < j \<Longrightarrow> last[i..<j] = j - 1" |
|
2607 |
apply(cases j) |
|
2608 |
apply simp |
|
2609 |
by(simp add:upt_Suc_append) |
|
2610 |
||
24526 | 2611 |
lemma take_upt [simp]: "i+m <= n ==> take m [i..<n] = [i..<i+m]" |
2612 |
apply (induct m arbitrary: i, simp) |
|
13145 | 2613 |
apply (subst upt_rec) |
2614 |
apply (rule sym) |
|
2615 |
apply (subst upt_rec) |
|
2616 |
apply (simp del: upt.simps) |
|
2617 |
done |
|
3507 | 2618 |
|
17501 | 2619 |
lemma drop_upt[simp]: "drop m [i..<j] = [i+m..<j]" |
2620 |
apply(induct j) |
|
2621 |
apply auto |
|
2622 |
done |
|
2623 |
||
24645 | 2624 |
lemma map_Suc_upt: "map Suc [m..<n] = [Suc m..<Suc n]" |
13145 | 2625 |
by (induct n) auto |
13114 | 2626 |
|
24526 | 2627 |
lemma nth_map_upt: "i < n-m ==> (map f [m..<n]) ! i = f(m+i)" |
2628 |
apply (induct n m arbitrary: i rule: diff_induct) |
|
13145 | 2629 |
prefer 3 apply (subst map_Suc_upt[symmetric]) |
2630 |
apply (auto simp add: less_diff_conv nth_upt) |
|
2631 |
done |
|
13114 | 2632 |
|
13883
0451e0fb3f22
Re-structured some proofs in order to get rid of rule_format attribute.
berghofe
parents:
13863
diff
changeset
|
2633 |
lemma nth_take_lemma: |
24526 | 2634 |
"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
|
2635 |
(!!i. i < k --> xs!i = ys!i) ==> take k xs = take k ys" |
24526 | 2636 |
apply (atomize, induct k arbitrary: xs ys) |
14208 | 2637 |
apply (simp_all add: less_Suc_eq_0_disj all_conj_distrib, clarify) |
13145 | 2638 |
txt {* Both lists must be non-empty *} |
14208 | 2639 |
apply (case_tac xs, simp) |
2640 |
apply (case_tac ys, clarify) |
|
13145 | 2641 |
apply (simp (no_asm_use)) |
2642 |
apply clarify |
|
2643 |
txt {* prenexing's needed, not miniscoping *} |
|
2644 |
apply (simp (no_asm_use) add: all_simps [symmetric] del: all_simps) |
|
2645 |
apply blast |
|
2646 |
done |
|
13114 | 2647 |
|
2648 |
lemma nth_equalityI: |
|
2649 |
"[| length xs = length ys; ALL i < length xs. xs!i = ys!i |] ==> xs = ys" |
|
13145 | 2650 |
apply (frule nth_take_lemma [OF le_refl eq_imp_le]) |
2651 |
apply (simp_all add: take_all) |
|
2652 |
done |
|
13142 | 2653 |
|
24796 | 2654 |
lemma map_nth: |
2655 |
"map (\<lambda>i. xs ! i) [0..<length xs] = xs" |
|
2656 |
by (rule nth_equalityI, auto) |
|
2657 |
||
13863 | 2658 |
(* needs nth_equalityI *) |
2659 |
lemma list_all2_antisym: |
|
2660 |
"\<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> |
|
2661 |
\<Longrightarrow> xs = ys" |
|
2662 |
apply (simp add: list_all2_conv_all_nth) |
|
14208 | 2663 |
apply (rule nth_equalityI, blast, simp) |
13863 | 2664 |
done |
2665 |
||
13142 | 2666 |
lemma take_equalityI: "(\<forall>i. take i xs = take i ys) ==> xs = ys" |
13145 | 2667 |
-- {* The famous take-lemma. *} |
2668 |
apply (drule_tac x = "max (length xs) (length ys)" in spec) |
|
2669 |
apply (simp add: le_max_iff_disj take_all) |
|
2670 |
done |
|
13142 | 2671 |
|
2672 |
||
15302 | 2673 |
lemma take_Cons': |
2674 |
"take n (x # xs) = (if n = 0 then [] else x # take (n - 1) xs)" |
|
2675 |
by (cases n) simp_all |
|
2676 |
||
2677 |
lemma drop_Cons': |
|
2678 |
"drop n (x # xs) = (if n = 0 then x # xs else drop (n - 1) xs)" |
|
2679 |
by (cases n) simp_all |
|
2680 |
||
2681 |
lemma nth_Cons': "(x # xs)!n = (if n = 0 then x else xs!(n - 1))" |
|
2682 |
by (cases n) simp_all |
|
2683 |
||
18622 | 2684 |
lemmas take_Cons_number_of = take_Cons'[of "number_of v",standard] |
2685 |
lemmas drop_Cons_number_of = drop_Cons'[of "number_of v",standard] |
|
2686 |
lemmas nth_Cons_number_of = nth_Cons'[of _ _ "number_of v",standard] |
|
2687 |
||
2688 |
declare take_Cons_number_of [simp] |
|
2689 |
drop_Cons_number_of [simp] |
|
2690 |
nth_Cons_number_of [simp] |
|
15302 | 2691 |
|
2692 |
||
32415
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2693 |
subsubsection {* @{text upto}: interval-list on @{typ int} *} |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2694 |
|
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2695 |
(* FIXME make upto tail recursive? *) |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2696 |
|
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2697 |
function upto :: "int \<Rightarrow> int \<Rightarrow> int list" ("(1[_../_])") where |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2698 |
"upto i j = (if i \<le> j then i # [i+1..j] else [])" |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2699 |
by auto |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2700 |
termination |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2701 |
by(relation "measure(%(i::int,j). nat(j - i + 1))") auto |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2702 |
|
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2703 |
declare upto.simps[code, simp del] |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2704 |
|
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2705 |
lemmas upto_rec_number_of[simp] = |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2706 |
upto.simps[of "number_of m" "number_of n", standard] |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2707 |
|
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2708 |
lemma upto_empty[simp]: "j < i \<Longrightarrow> [i..j] = []" |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2709 |
by(simp add: upto.simps) |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2710 |
|
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2711 |
lemma set_upto[simp]: "set[i..j] = {i..j}" |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2712 |
apply(induct i j rule:upto.induct) |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2713 |
apply(simp add: upto.simps simp_from_to) |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2714 |
done |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2715 |
|
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2716 |
|
15392 | 2717 |
subsubsection {* @{text "distinct"} and @{text remdups} *} |
13142 | 2718 |
|
2719 |
lemma distinct_append [simp]: |
|
13145 | 2720 |
"distinct (xs @ ys) = (distinct xs \<and> distinct ys \<and> set xs \<inter> set ys = {})" |
2721 |
by (induct xs) auto |
|
13142 | 2722 |
|
15305 | 2723 |
lemma distinct_rev[simp]: "distinct(rev xs) = distinct xs" |
2724 |
by(induct xs) auto |
|
2725 |
||
13142 | 2726 |
lemma set_remdups [simp]: "set (remdups xs) = set xs" |
13145 | 2727 |
by (induct xs) (auto simp add: insert_absorb) |
13142 | 2728 |
|
2729 |
lemma distinct_remdups [iff]: "distinct (remdups xs)" |
|
13145 | 2730 |
by (induct xs) auto |
13142 | 2731 |
|
25287 | 2732 |
lemma distinct_remdups_id: "distinct xs ==> remdups xs = xs" |
2733 |
by (induct xs, auto) |
|
2734 |
||
26734 | 2735 |
lemma remdups_id_iff_distinct [simp]: "remdups xs = xs \<longleftrightarrow> distinct xs" |
2736 |
by (metis distinct_remdups distinct_remdups_id) |
|
25287 | 2737 |
|
24566 | 2738 |
lemma finite_distinct_list: "finite A \<Longrightarrow> EX xs. set xs = A & distinct xs" |
24632 | 2739 |
by (metis distinct_remdups finite_list set_remdups) |
24566 | 2740 |
|
15072 | 2741 |
lemma remdups_eq_nil_iff [simp]: "(remdups x = []) = (x = [])" |
24349 | 2742 |
by (induct x, auto) |
15072 | 2743 |
|
2744 |
lemma remdups_eq_nil_right_iff [simp]: "([] = remdups x) = (x = [])" |
|
24349 | 2745 |
by (induct x, auto) |
15072 | 2746 |
|
15245 | 2747 |
lemma length_remdups_leq[iff]: "length(remdups xs) <= length xs" |
2748 |
by (induct xs) auto |
|
2749 |
||
2750 |
lemma length_remdups_eq[iff]: |
|
2751 |
"(length (remdups xs) = length xs) = (remdups xs = xs)" |
|
2752 |
apply(induct xs) |
|
2753 |
apply auto |
|
2754 |
apply(subgoal_tac "length (remdups xs) <= length xs") |
|
2755 |
apply arith |
|
2756 |
apply(rule length_remdups_leq) |
|
2757 |
done |
|
2758 |
||
33945 | 2759 |
lemma remdups_filter: "remdups(filter P xs) = filter P (remdups xs)" |
2760 |
apply(induct xs) |
|
2761 |
apply auto |
|
2762 |
done |
|
18490 | 2763 |
|
2764 |
lemma distinct_map: |
|
2765 |
"distinct(map f xs) = (distinct xs & inj_on f (set xs))" |
|
2766 |
by (induct xs) auto |
|
2767 |
||
2768 |
||
13142 | 2769 |
lemma distinct_filter [simp]: "distinct xs ==> distinct (filter P xs)" |
13145 | 2770 |
by (induct xs) auto |
13114 | 2771 |
|
17501 | 2772 |
lemma distinct_upt[simp]: "distinct[i..<j]" |
2773 |
by (induct j) auto |
|
2774 |
||
32415
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2775 |
lemma distinct_upto[simp]: "distinct[i..j]" |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2776 |
apply(induct i j rule:upto.induct) |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2777 |
apply(subst upto.simps) |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2778 |
apply(simp) |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2779 |
done |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
2780 |
|
24526 | 2781 |
lemma distinct_take[simp]: "distinct xs \<Longrightarrow> distinct (take i xs)" |
2782 |
apply(induct xs arbitrary: i) |
|
17501 | 2783 |
apply simp |
2784 |
apply (case_tac i) |
|
2785 |
apply simp_all |
|
2786 |
apply(blast dest:in_set_takeD) |
|
2787 |
done |
|
2788 |
||
24526 | 2789 |
lemma distinct_drop[simp]: "distinct xs \<Longrightarrow> distinct (drop i xs)" |
2790 |
apply(induct xs arbitrary: i) |
|
17501 | 2791 |
apply simp |
2792 |
apply (case_tac i) |
|
2793 |
apply simp_all |
|
2794 |
done |
|
2795 |
||
2796 |
lemma distinct_list_update: |
|
2797 |
assumes d: "distinct xs" and a: "a \<notin> set xs - {xs!i}" |
|
2798 |
shows "distinct (xs[i:=a])" |
|
2799 |
proof (cases "i < length xs") |
|
2800 |
case True |
|
2801 |
with a have "a \<notin> set (take i xs @ xs ! i # drop (Suc i) xs) - {xs!i}" |
|
2802 |
apply (drule_tac id_take_nth_drop) by simp |
|
2803 |
with d True show ?thesis |
|
2804 |
apply (simp add: upd_conv_take_nth_drop) |
|
2805 |
apply (drule subst [OF id_take_nth_drop]) apply assumption |
|
2806 |
apply simp apply (cases "a = xs!i") apply simp by blast |
|
2807 |
next |
|
2808 |
case False with d show ?thesis by auto |
|
2809 |
qed |
|
2810 |
||
31363
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
2811 |
lemma distinct_concat: |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
2812 |
assumes "distinct xs" |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
2813 |
and "\<And> ys. ys \<in> set xs \<Longrightarrow> distinct ys" |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
2814 |
and "\<And> ys zs. \<lbrakk> ys \<in> set xs ; zs \<in> set xs ; ys \<noteq> zs \<rbrakk> \<Longrightarrow> set ys \<inter> set zs = {}" |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
2815 |
shows "distinct (concat xs)" |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
2816 |
using assms by (induct xs) auto |
17501 | 2817 |
|
2818 |
text {* It is best to avoid this indexed version of distinct, but |
|
2819 |
sometimes it is useful. *} |
|
2820 |
||
13142 | 2821 |
lemma distinct_conv_nth: |
17501 | 2822 |
"distinct xs = (\<forall>i < size xs. \<forall>j < size xs. i \<noteq> j --> xs!i \<noteq> xs!j)" |
15251 | 2823 |
apply (induct xs, simp, simp) |
14208 | 2824 |
apply (rule iffI, clarsimp) |
13145 | 2825 |
apply (case_tac i) |
14208 | 2826 |
apply (case_tac j, simp) |
13145 | 2827 |
apply (simp add: set_conv_nth) |
2828 |
apply (case_tac j) |
|
24648 | 2829 |
apply (clarsimp simp add: set_conv_nth, simp) |
13145 | 2830 |
apply (rule conjI) |
24648 | 2831 |
(*TOO SLOW |
24632 | 2832 |
apply (metis Zero_neq_Suc gr0_conv_Suc in_set_conv_nth lessI less_trans_Suc nth_Cons' nth_Cons_Suc) |
24648 | 2833 |
*) |
2834 |
apply (clarsimp simp add: set_conv_nth) |
|
2835 |
apply (erule_tac x = 0 in allE, simp) |
|
2836 |
apply (erule_tac x = "Suc i" in allE, simp, clarsimp) |
|
25130 | 2837 |
(*TOO SLOW |
24632 | 2838 |
apply (metis Suc_Suc_eq lessI less_trans_Suc nth_Cons_Suc) |
25130 | 2839 |
*) |
2840 |
apply (erule_tac x = "Suc i" in allE, simp) |
|
2841 |
apply (erule_tac x = "Suc j" in allE, simp) |
|
13145 | 2842 |
done |
13114 | 2843 |
|
18490 | 2844 |
lemma nth_eq_iff_index_eq: |
2845 |
"\<lbrakk> distinct xs; i < length xs; j < length xs \<rbrakk> \<Longrightarrow> (xs!i = xs!j) = (i = j)" |
|
2846 |
by(auto simp: distinct_conv_nth) |
|
2847 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2848 |
lemma distinct_card: "distinct xs ==> card (set xs) = size xs" |
24349 | 2849 |
by (induct xs) auto |
14388 | 2850 |
|
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2851 |
lemma card_distinct: "card (set xs) = size xs ==> distinct xs" |
14388 | 2852 |
proof (induct xs) |
2853 |
case Nil thus ?case by simp |
|
2854 |
next |
|
2855 |
case (Cons x xs) |
|
2856 |
show ?case |
|
2857 |
proof (cases "x \<in> set xs") |
|
2858 |
case False with Cons show ?thesis by simp |
|
2859 |
next |
|
2860 |
case True with Cons.prems |
|
2861 |
have "card (set xs) = Suc (length xs)" |
|
2862 |
by (simp add: card_insert_if split: split_if_asm) |
|
2863 |
moreover have "card (set xs) \<le> length xs" by (rule card_length) |
|
2864 |
ultimately have False by simp |
|
2865 |
thus ?thesis .. |
|
2866 |
qed |
|
2867 |
qed |
|
2868 |
||
25287 | 2869 |
lemma not_distinct_decomp: "~ distinct ws ==> EX xs ys zs y. ws = xs@[y]@ys@[y]@zs" |
2870 |
apply (induct n == "length ws" arbitrary:ws) apply simp |
|
2871 |
apply(case_tac ws) apply simp |
|
2872 |
apply (simp split:split_if_asm) |
|
2873 |
apply (metis Cons_eq_appendI eq_Nil_appendI split_list) |
|
2874 |
done |
|
18490 | 2875 |
|
2876 |
lemma length_remdups_concat: |
|
2877 |
"length(remdups(concat xss)) = card(\<Union>xs \<in> set xss. set xs)" |
|
24308 | 2878 |
by(simp add: set_concat distinct_card[symmetric]) |
17906 | 2879 |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2880 |
lemma length_remdups_card_conv: "length(remdups xs) = card(set xs)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2881 |
proof - |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2882 |
have xs: "concat[xs] = xs" by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2883 |
from length_remdups_concat[of "[xs]"] show ?thesis unfolding xs by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
2884 |
qed |
17906 | 2885 |
|
35115 | 2886 |
|
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2887 |
subsubsection {* @{const insert} *} |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2888 |
|
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2889 |
lemma in_set_insert [simp]: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2890 |
"x \<in> set xs \<Longrightarrow> List.insert x xs = xs" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2891 |
by (simp add: List.insert_def) |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2892 |
|
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2893 |
lemma not_in_set_insert [simp]: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2894 |
"x \<notin> set xs \<Longrightarrow> List.insert x xs = x # xs" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2895 |
by (simp add: List.insert_def) |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2896 |
|
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2897 |
lemma insert_Nil [simp]: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2898 |
"List.insert x [] = [x]" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2899 |
by simp |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2900 |
|
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2901 |
lemma set_insert: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2902 |
"set (List.insert x xs) = insert x (set xs)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2903 |
by (auto simp add: List.insert_def) |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2904 |
|
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2905 |
|
15392 | 2906 |
subsubsection {* @{text remove1} *} |
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2907 |
|
18049 | 2908 |
lemma remove1_append: |
2909 |
"remove1 x (xs @ ys) = |
|
2910 |
(if x \<in> set xs then remove1 x xs @ ys else xs @ remove1 x ys)" |
|
2911 |
by (induct xs) auto |
|
2912 |
||
23479 | 2913 |
lemma in_set_remove1[simp]: |
2914 |
"a \<noteq> b \<Longrightarrow> a : set(remove1 b xs) = (a : set xs)" |
|
2915 |
apply (induct xs) |
|
2916 |
apply auto |
|
2917 |
done |
|
2918 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2919 |
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
|
2920 |
apply(induct xs) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2921 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2922 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2923 |
apply blast |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2924 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2925 |
|
17724 | 2926 |
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
|
2927 |
apply(induct xs) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2928 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2929 |
apply simp |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2930 |
apply blast |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2931 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2932 |
|
23479 | 2933 |
lemma length_remove1: |
30128
365ee7319b86
revert some Suc 0 lemmas back to their original forms; added some simp rules for (1::nat)
huffman
parents:
30079
diff
changeset
|
2934 |
"length(remove1 x xs) = (if x : set xs then length xs - 1 else length xs)" |
23479 | 2935 |
apply (induct xs) |
2936 |
apply (auto dest!:length_pos_if_in_set) |
|
2937 |
done |
|
2938 |
||
18049 | 2939 |
lemma remove1_filter_not[simp]: |
2940 |
"\<not> P x \<Longrightarrow> remove1 x (filter P xs) = filter P xs" |
|
2941 |
by(induct xs) auto |
|
2942 |
||
15110
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2943 |
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
|
2944 |
apply(insert set_remove1_subset) |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2945 |
apply fast |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2946 |
done |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2947 |
|
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2948 |
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
|
2949 |
by (induct xs) simp_all |
78b5636eabc7
Added a number of new thms and the new function remove1
nipkow
parents:
15072
diff
changeset
|
2950 |
|
13114 | 2951 |
|
27693 | 2952 |
subsubsection {* @{text removeAll} *} |
2953 |
||
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2954 |
lemma removeAll_filter_not_eq: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2955 |
"removeAll x = filter (\<lambda>y. x \<noteq> y)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2956 |
proof |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2957 |
fix xs |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2958 |
show "removeAll x xs = filter (\<lambda>y. x \<noteq> y) xs" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2959 |
by (induct xs) auto |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2960 |
qed |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2961 |
|
27693 | 2962 |
lemma removeAll_append[simp]: |
2963 |
"removeAll x (xs @ ys) = removeAll x xs @ removeAll x ys" |
|
2964 |
by (induct xs) auto |
|
2965 |
||
2966 |
lemma set_removeAll[simp]: "set(removeAll x xs) = set xs - {x}" |
|
2967 |
by (induct xs) auto |
|
2968 |
||
2969 |
lemma removeAll_id[simp]: "x \<notin> set xs \<Longrightarrow> removeAll x xs = xs" |
|
2970 |
by (induct xs) auto |
|
2971 |
||
2972 |
(* Needs count:: 'a \<Rightarrow> a' list \<Rightarrow> nat |
|
2973 |
lemma length_removeAll: |
|
2974 |
"length(removeAll x xs) = length xs - count x xs" |
|
2975 |
*) |
|
2976 |
||
2977 |
lemma removeAll_filter_not[simp]: |
|
2978 |
"\<not> P x \<Longrightarrow> removeAll x (filter P xs) = filter P xs" |
|
2979 |
by(induct xs) auto |
|
2980 |
||
34978
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2981 |
lemma distinct_removeAll: |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2982 |
"distinct xs \<Longrightarrow> distinct (removeAll x xs)" |
874150ddd50a
canonical insert operation; generalized lemma foldl_apply_inv to foldl_apply
haftmann
parents:
34942
diff
changeset
|
2983 |
by (simp add: removeAll_filter_not_eq) |
27693 | 2984 |
|
2985 |
lemma distinct_remove1_removeAll: |
|
2986 |
"distinct xs ==> remove1 x xs = removeAll x xs" |
|
2987 |
by (induct xs) simp_all |
|
2988 |
||
2989 |
lemma map_removeAll_inj_on: "inj_on f (insert x (set xs)) \<Longrightarrow> |
|
2990 |
map f (removeAll x xs) = removeAll (f x) (map f xs)" |
|
2991 |
by (induct xs) (simp_all add:inj_on_def) |
|
2992 |
||
2993 |
lemma map_removeAll_inj: "inj f \<Longrightarrow> |
|
2994 |
map f (removeAll x xs) = removeAll (f x) (map f xs)" |
|
2995 |
by(metis map_removeAll_inj_on subset_inj_on subset_UNIV) |
|
2996 |
||
2997 |
||
15392 | 2998 |
subsubsection {* @{text replicate} *} |
13114 | 2999 |
|
13142 | 3000 |
lemma length_replicate [simp]: "length (replicate n x) = n" |
13145 | 3001 |
by (induct n) auto |
13124 | 3002 |
|
13142 | 3003 |
lemma map_replicate [simp]: "map f (replicate n x) = replicate n (f x)" |
13145 | 3004 |
by (induct n) auto |
13114 | 3005 |
|
31363
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
3006 |
lemma map_replicate_const: |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
3007 |
"map (\<lambda> x. k) lst = replicate (length lst) k" |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
3008 |
by (induct lst) auto |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
3009 |
|
13114 | 3010 |
lemma replicate_app_Cons_same: |
13145 | 3011 |
"(replicate n x) @ (x # xs) = x # replicate n x @ xs" |
3012 |
by (induct n) auto |
|
13114 | 3013 |
|
13142 | 3014 |
lemma rev_replicate [simp]: "rev (replicate n x) = replicate n x" |
14208 | 3015 |
apply (induct n, simp) |
13145 | 3016 |
apply (simp add: replicate_app_Cons_same) |
3017 |
done |
|
13114 | 3018 |
|
13142 | 3019 |
lemma replicate_add: "replicate (n + m) x = replicate n x @ replicate m x" |
13145 | 3020 |
by (induct n) auto |
13114 | 3021 |
|
16397 | 3022 |
text{* Courtesy of Matthias Daum: *} |
3023 |
lemma append_replicate_commute: |
|
3024 |
"replicate n x @ replicate k x = replicate k x @ replicate n x" |
|
3025 |
apply (simp add: replicate_add [THEN sym]) |
|
3026 |
apply (simp add: add_commute) |
|
3027 |
done |
|
3028 |
||
31080 | 3029 |
text{* Courtesy of Andreas Lochbihler: *} |
3030 |
lemma filter_replicate: |
|
3031 |
"filter P (replicate n x) = (if P x then replicate n x else [])" |
|
3032 |
by(induct n) auto |
|
3033 |
||
13142 | 3034 |
lemma hd_replicate [simp]: "n \<noteq> 0 ==> hd (replicate n x) = x" |
13145 | 3035 |
by (induct n) auto |
13114 | 3036 |
|
13142 | 3037 |
lemma tl_replicate [simp]: "n \<noteq> 0 ==> tl (replicate n x) = replicate (n - 1) x" |
13145 | 3038 |
by (induct n) auto |
13114 | 3039 |
|
13142 | 3040 |
lemma last_replicate [simp]: "n \<noteq> 0 ==> last (replicate n x) = x" |
13145 | 3041 |
by (atomize (full), induct n) auto |
13114 | 3042 |
|
24526 | 3043 |
lemma nth_replicate[simp]: "i < n ==> (replicate n x)!i = x" |
3044 |
apply (induct n arbitrary: i, simp) |
|
13145 | 3045 |
apply (simp add: nth_Cons split: nat.split) |
3046 |
done |
|
13114 | 3047 |
|
16397 | 3048 |
text{* Courtesy of Matthias Daum (2 lemmas): *} |
3049 |
lemma take_replicate[simp]: "take i (replicate k x) = replicate (min i k) x" |
|
3050 |
apply (case_tac "k \<le> i") |
|
3051 |
apply (simp add: min_def) |
|
3052 |
apply (drule not_leE) |
|
3053 |
apply (simp add: min_def) |
|
3054 |
apply (subgoal_tac "replicate k x = replicate i x @ replicate (k - i) x") |
|
3055 |
apply simp |
|
3056 |
apply (simp add: replicate_add [symmetric]) |
|
3057 |
done |
|
3058 |
||
24526 | 3059 |
lemma drop_replicate[simp]: "drop i (replicate k x) = replicate (k-i) x" |
3060 |
apply (induct k arbitrary: i) |
|
16397 | 3061 |
apply simp |
3062 |
apply clarsimp |
|
3063 |
apply (case_tac i) |
|
3064 |
apply simp |
|
3065 |
apply clarsimp |
|
3066 |
done |
|
3067 |
||
3068 |
||
13142 | 3069 |
lemma set_replicate_Suc: "set (replicate (Suc n) x) = {x}" |
13145 | 3070 |
by (induct n) auto |
13114 | 3071 |
|
13142 | 3072 |
lemma set_replicate [simp]: "n \<noteq> 0 ==> set (replicate n x) = {x}" |
13145 | 3073 |
by (fast dest!: not0_implies_Suc intro!: set_replicate_Suc) |
13114 | 3074 |
|
13142 | 3075 |
lemma set_replicate_conv_if: "set (replicate n x) = (if n = 0 then {} else {x})" |
13145 | 3076 |
by auto |
13114 | 3077 |
|
13142 | 3078 |
lemma in_set_replicateD: "x : set (replicate n y) ==> x = y" |
13145 | 3079 |
by (simp add: set_replicate_conv_if split: split_if_asm) |
13114 | 3080 |
|
24796 | 3081 |
lemma replicate_append_same: |
3082 |
"replicate i x @ [x] = x # replicate i x" |
|
3083 |
by (induct i) simp_all |
|
3084 |
||
3085 |
lemma map_replicate_trivial: |
|
3086 |
"map (\<lambda>i. x) [0..<i] = replicate i x" |
|
3087 |
by (induct i) (simp_all add: replicate_append_same) |
|
3088 |
||
31363
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
3089 |
lemma concat_replicate_trivial[simp]: |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
3090 |
"concat (replicate i []) = []" |
7493b571b37d
Added theorems about distinct & concat, map & replicate and concat & replicate
hoelzl
parents:
31264
diff
changeset
|
3091 |
by (induct i) (auto simp add: map_replicate_const) |
13114 | 3092 |
|
28642 | 3093 |
lemma replicate_empty[simp]: "(replicate n x = []) \<longleftrightarrow> n=0" |
3094 |
by (induct n) auto |
|
3095 |
||
3096 |
lemma empty_replicate[simp]: "([] = replicate n x) \<longleftrightarrow> n=0" |
|
3097 |
by (induct n) auto |
|
3098 |
||
3099 |
lemma replicate_eq_replicate[simp]: |
|
3100 |
"(replicate m x = replicate n y) \<longleftrightarrow> (m=n & (m\<noteq>0 \<longrightarrow> x=y))" |
|
3101 |
apply(induct m arbitrary: n) |
|
3102 |
apply simp |
|
3103 |
apply(induct_tac n) |
|
3104 |
apply auto |
|
3105 |
done |
|
3106 |
||
3107 |
||
15392 | 3108 |
subsubsection{*@{text rotate1} and @{text rotate}*} |
15302 | 3109 |
|
3110 |
lemma rotate_simps[simp]: "rotate1 [] = [] \<and> rotate1 (x#xs) = xs @ [x]" |
|
3111 |
by(simp add:rotate1_def) |
|
3112 |
||
3113 |
lemma rotate0[simp]: "rotate 0 = id" |
|
3114 |
by(simp add:rotate_def) |
|
3115 |
||
3116 |
lemma rotate_Suc[simp]: "rotate (Suc n) xs = rotate1(rotate n xs)" |
|
3117 |
by(simp add:rotate_def) |
|
3118 |
||
3119 |
lemma rotate_add: |
|
3120 |
"rotate (m+n) = rotate m o rotate n" |
|
3121 |
by(simp add:rotate_def funpow_add) |
|
3122 |
||
3123 |
lemma rotate_rotate: "rotate m (rotate n xs) = rotate (m+n) xs" |
|
3124 |
by(simp add:rotate_add) |
|
3125 |
||
18049 | 3126 |
lemma rotate1_rotate_swap: "rotate1 (rotate n xs) = rotate n (rotate1 xs)" |
3127 |
by(simp add:rotate_def funpow_swap1) |
|
3128 |
||
15302 | 3129 |
lemma rotate1_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate1 xs = xs" |
3130 |
by(cases xs) simp_all |
|
3131 |
||
3132 |
lemma rotate_length01[simp]: "length xs <= 1 \<Longrightarrow> rotate n xs = xs" |
|
3133 |
apply(induct n) |
|
3134 |
apply simp |
|
3135 |
apply (simp add:rotate_def) |
|
13145 | 3136 |
done |
13114 | 3137 |
|
15302 | 3138 |
lemma rotate1_hd_tl: "xs \<noteq> [] \<Longrightarrow> rotate1 xs = tl xs @ [hd xs]" |
3139 |
by(simp add:rotate1_def split:list.split) |
|
3140 |
||
3141 |
lemma rotate_drop_take: |
|
3142 |
"rotate n xs = drop (n mod length xs) xs @ take (n mod length xs) xs" |
|
3143 |
apply(induct n) |
|
3144 |
apply simp |
|
3145 |
apply(simp add:rotate_def) |
|
3146 |
apply(cases "xs = []") |
|
3147 |
apply (simp) |
|
3148 |
apply(case_tac "n mod length xs = 0") |
|
3149 |
apply(simp add:mod_Suc) |
|
3150 |
apply(simp add: rotate1_hd_tl drop_Suc take_Suc) |
|
3151 |
apply(simp add:mod_Suc rotate1_hd_tl drop_Suc[symmetric] drop_tl[symmetric] |
|
3152 |
take_hd_drop linorder_not_le) |
|
13145 | 3153 |
done |
13114 | 3154 |
|
15302 | 3155 |
lemma rotate_conv_mod: "rotate n xs = rotate (n mod length xs) xs" |
3156 |
by(simp add:rotate_drop_take) |
|
3157 |
||
3158 |
lemma rotate_id[simp]: "n mod length xs = 0 \<Longrightarrow> rotate n xs = xs" |
|
3159 |
by(simp add:rotate_drop_take) |
|
3160 |
||
3161 |
lemma length_rotate1[simp]: "length(rotate1 xs) = length xs" |
|
3162 |
by(simp add:rotate1_def split:list.split) |
|
3163 |
||
24526 | 3164 |
lemma length_rotate[simp]: "length(rotate n xs) = length xs" |
3165 |
by (induct n arbitrary: xs) (simp_all add:rotate_def) |
|
15302 | 3166 |
|
3167 |
lemma distinct1_rotate[simp]: "distinct(rotate1 xs) = distinct xs" |
|
3168 |
by(simp add:rotate1_def split:list.split) blast |
|
3169 |
||
3170 |
lemma distinct_rotate[simp]: "distinct(rotate n xs) = distinct xs" |
|
3171 |
by (induct n) (simp_all add:rotate_def) |
|
3172 |
||
3173 |
lemma rotate_map: "rotate n (map f xs) = map f (rotate n xs)" |
|
3174 |
by(simp add:rotate_drop_take take_map drop_map) |
|
3175 |
||
3176 |
lemma set_rotate1[simp]: "set(rotate1 xs) = set xs" |
|
3177 |
by(simp add:rotate1_def split:list.split) |
|
3178 |
||
3179 |
lemma set_rotate[simp]: "set(rotate n xs) = set xs" |
|
3180 |
by (induct n) (simp_all add:rotate_def) |
|
3181 |
||
3182 |
lemma rotate1_is_Nil_conv[simp]: "(rotate1 xs = []) = (xs = [])" |
|
3183 |
by(simp add:rotate1_def split:list.split) |
|
3184 |
||
3185 |
lemma rotate_is_Nil_conv[simp]: "(rotate n xs = []) = (xs = [])" |
|
3186 |
by (induct n) (simp_all add:rotate_def) |
|
13114 | 3187 |
|
15439 | 3188 |
lemma rotate_rev: |
3189 |
"rotate n (rev xs) = rev(rotate (length xs - (n mod length xs)) xs)" |
|
3190 |
apply(simp add:rotate_drop_take rev_drop rev_take) |
|
3191 |
apply(cases "length xs = 0") |
|
3192 |
apply simp |
|
3193 |
apply(cases "n mod length xs = 0") |
|
3194 |
apply simp |
|
3195 |
apply(simp add:rotate_drop_take rev_drop rev_take) |
|
3196 |
done |
|
3197 |
||
18423 | 3198 |
lemma hd_rotate_conv_nth: "xs \<noteq> [] \<Longrightarrow> hd(rotate n xs) = xs!(n mod length xs)" |
3199 |
apply(simp add:rotate_drop_take hd_append hd_drop_conv_nth hd_conv_nth) |
|
3200 |
apply(subgoal_tac "length xs \<noteq> 0") |
|
3201 |
prefer 2 apply simp |
|
3202 |
using mod_less_divisor[of "length xs" n] by arith |
|
3203 |
||
13114 | 3204 |
|
15392 | 3205 |
subsubsection {* @{text sublist} --- a generalization of @{text nth} to sets *} |
13114 | 3206 |
|
13142 | 3207 |
lemma sublist_empty [simp]: "sublist xs {} = []" |
13145 | 3208 |
by (auto simp add: sublist_def) |
13114 | 3209 |
|
13142 | 3210 |
lemma sublist_nil [simp]: "sublist [] A = []" |
13145 | 3211 |
by (auto simp add: sublist_def) |
13114 | 3212 |
|
15281 | 3213 |
lemma length_sublist: |
3214 |
"length(sublist xs I) = card{i. i < length xs \<and> i : I}" |
|
3215 |
by(simp add: sublist_def length_filter_conv_card cong:conj_cong) |
|
3216 |
||
3217 |
lemma sublist_shift_lemma_Suc: |
|
24526 | 3218 |
"map fst (filter (%p. P(Suc(snd p))) (zip xs is)) = |
3219 |
map fst (filter (%p. P(snd p)) (zip xs (map Suc is)))" |
|
3220 |
apply(induct xs arbitrary: "is") |
|
15281 | 3221 |
apply simp |
3222 |
apply (case_tac "is") |
|
3223 |
apply simp |
|
3224 |
apply simp |
|
3225 |
done |
|
3226 |
||
13114 | 3227 |
lemma sublist_shift_lemma: |
23279
e39dd93161d9
tuned list comprehension, changed filter syntax from : to <-
nipkow
parents:
23246
diff
changeset
|
3228 |
"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
|
3229 |
map fst [p<-zip xs [0..<length xs] . snd p + i : A]" |
13145 | 3230 |
by (induct xs rule: rev_induct) (simp_all add: add_commute) |
13114 | 3231 |
|
3232 |
lemma sublist_append: |
|
15168 | 3233 |
"sublist (l @ l') A = sublist l A @ sublist l' {j. j + length l : A}" |
13145 | 3234 |
apply (unfold sublist_def) |
14208 | 3235 |
apply (induct l' rule: rev_induct, simp) |
13145 | 3236 |
apply (simp add: upt_add_eq_append[of 0] zip_append sublist_shift_lemma) |
3237 |
apply (simp add: add_commute) |
|
3238 |
done |
|
13114 | 3239 |
|
3240 |
lemma sublist_Cons: |
|
13145 | 3241 |
"sublist (x # l) A = (if 0:A then [x] else []) @ sublist l {j. Suc j : A}" |
3242 |
apply (induct l rule: rev_induct) |
|
3243 |
apply (simp add: sublist_def) |
|
3244 |
apply (simp del: append_Cons add: append_Cons[symmetric] sublist_append) |
|
3245 |
done |
|
13114 | 3246 |
|
24526 | 3247 |
lemma set_sublist: "set(sublist xs I) = {xs!i|i. i<size xs \<and> i \<in> I}" |
3248 |
apply(induct xs arbitrary: I) |
|
25162 | 3249 |
apply(auto simp: sublist_Cons nth_Cons split:nat.split dest!: gr0_implies_Suc) |
15281 | 3250 |
done |
3251 |
||
3252 |
lemma set_sublist_subset: "set(sublist xs I) \<subseteq> set xs" |
|
3253 |
by(auto simp add:set_sublist) |
|
3254 |
||
3255 |
lemma notin_set_sublistI[simp]: "x \<notin> set xs \<Longrightarrow> x \<notin> set(sublist xs I)" |
|
3256 |
by(auto simp add:set_sublist) |
|
3257 |
||
3258 |
lemma in_set_sublistD: "x \<in> set(sublist xs I) \<Longrightarrow> x \<in> set xs" |
|
3259 |
by(auto simp add:set_sublist) |
|
3260 |
||
13142 | 3261 |
lemma sublist_singleton [simp]: "sublist [x] A = (if 0 : A then [x] else [])" |
13145 | 3262 |
by (simp add: sublist_Cons) |
13114 | 3263 |
|
15281 | 3264 |
|
24526 | 3265 |
lemma distinct_sublistI[simp]: "distinct xs \<Longrightarrow> distinct(sublist xs I)" |
3266 |
apply(induct xs arbitrary: I) |
|
15281 | 3267 |
apply simp |
3268 |
apply(auto simp add:sublist_Cons) |
|
3269 |
done |
|
3270 |
||
3271 |
||
15045 | 3272 |
lemma sublist_upt_eq_take [simp]: "sublist l {..<n} = take n l" |
14208 | 3273 |
apply (induct l rule: rev_induct, simp) |
13145 | 3274 |
apply (simp split: nat_diff_split add: sublist_append) |
3275 |
done |
|
13114 | 3276 |
|
24526 | 3277 |
lemma filter_in_sublist: |
3278 |
"distinct xs \<Longrightarrow> filter (%x. x \<in> set(sublist xs s)) xs = sublist xs s" |
|
3279 |
proof (induct xs arbitrary: s) |
|
17501 | 3280 |
case Nil thus ?case by simp |
3281 |
next |
|
3282 |
case (Cons a xs) |
|
3283 |
moreover hence "!x. x: set xs \<longrightarrow> x \<noteq> a" by auto |
|
3284 |
ultimately show ?case by(simp add: sublist_Cons cong:filter_cong) |
|
3285 |
qed |
|
3286 |
||
13114 | 3287 |
|
19390 | 3288 |
subsubsection {* @{const splice} *} |
3289 |
||
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
3290 |
lemma splice_Nil2 [simp, code]: |
19390 | 3291 |
"splice xs [] = xs" |
3292 |
by (cases xs) simp_all |
|
3293 |
||
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
3294 |
lemma splice_Cons_Cons [simp, code]: |
19390 | 3295 |
"splice (x#xs) (y#ys) = x # y # splice xs ys" |
3296 |
by simp |
|
3297 |
||
19607
07eeb832f28d
introduced characters for code generator; some improved code lemmas for some list functions
haftmann
parents:
19585
diff
changeset
|
3298 |
declare splice.simps(2) [simp del, code del] |
19390 | 3299 |
|
24526 | 3300 |
lemma length_splice[simp]: "length(splice xs ys) = length xs + length ys" |
3301 |
apply(induct xs arbitrary: ys) apply simp |
|
22793 | 3302 |
apply(case_tac ys) |
3303 |
apply auto |
|
3304 |
done |
|
3305 |
||
35115 | 3306 |
|
3307 |
subsubsection {* Transpose *} |
|
34933 | 3308 |
|
3309 |
function transpose where |
|
3310 |
"transpose [] = []" | |
|
3311 |
"transpose ([] # xss) = transpose xss" | |
|
3312 |
"transpose ((x#xs) # xss) = |
|
3313 |
(x # [h. (h#t) \<leftarrow> xss]) # transpose (xs # [t. (h#t) \<leftarrow> xss])" |
|
3314 |
by pat_completeness auto |
|
3315 |
||
3316 |
lemma transpose_aux_filter_head: |
|
3317 |
"concat (map (list_case [] (\<lambda>h t. [h])) xss) = |
|
3318 |
map (\<lambda>xs. hd xs) [ys\<leftarrow>xss . ys \<noteq> []]" |
|
3319 |
by (induct xss) (auto split: list.split) |
|
3320 |
||
3321 |
lemma transpose_aux_filter_tail: |
|
3322 |
"concat (map (list_case [] (\<lambda>h t. [t])) xss) = |
|
3323 |
map (\<lambda>xs. tl xs) [ys\<leftarrow>xss . ys \<noteq> []]" |
|
3324 |
by (induct xss) (auto split: list.split) |
|
3325 |
||
3326 |
lemma transpose_aux_max: |
|
3327 |
"max (Suc (length xs)) (foldr (\<lambda>xs. max (length xs)) xss 0) = |
|
3328 |
Suc (max (length xs) (foldr (\<lambda>x. max (length x - Suc 0)) [ys\<leftarrow>xss . ys\<noteq>[]] 0))" |
|
3329 |
(is "max _ ?foldB = Suc (max _ ?foldA)") |
|
3330 |
proof (cases "[ys\<leftarrow>xss . ys\<noteq>[]] = []") |
|
3331 |
case True |
|
3332 |
hence "foldr (\<lambda>xs. max (length xs)) xss 0 = 0" |
|
3333 |
proof (induct xss) |
|
3334 |
case (Cons x xs) |
|
3335 |
moreover hence "x = []" by (cases x) auto |
|
3336 |
ultimately show ?case by auto |
|
3337 |
qed simp |
|
3338 |
thus ?thesis using True by simp |
|
3339 |
next |
|
3340 |
case False |
|
3341 |
||
3342 |
have foldA: "?foldA = foldr (\<lambda>x. max (length x)) [ys\<leftarrow>xss . ys \<noteq> []] 0 - 1" |
|
3343 |
by (induct xss) auto |
|
3344 |
have foldB: "?foldB = foldr (\<lambda>x. max (length x)) [ys\<leftarrow>xss . ys \<noteq> []] 0" |
|
3345 |
by (induct xss) auto |
|
3346 |
||
3347 |
have "0 < ?foldB" |
|
3348 |
proof - |
|
3349 |
from False |
|
3350 |
obtain z zs where zs: "[ys\<leftarrow>xss . ys \<noteq> []] = z#zs" by (auto simp: neq_Nil_conv) |
|
3351 |
hence "z \<in> set ([ys\<leftarrow>xss . ys \<noteq> []])" by auto |
|
3352 |
hence "z \<noteq> []" by auto |
|
3353 |
thus ?thesis |
|
3354 |
unfolding foldB zs |
|
3355 |
by (auto simp: max_def intro: less_le_trans) |
|
3356 |
qed |
|
3357 |
thus ?thesis |
|
3358 |
unfolding foldA foldB max_Suc_Suc[symmetric] |
|
3359 |
by simp |
|
3360 |
qed |
|
3361 |
||
3362 |
termination transpose |
|
3363 |
by (relation "measure (\<lambda>xs. foldr (\<lambda>xs. max (length xs)) xs 0 + length xs)") |
|
3364 |
(auto simp: transpose_aux_filter_tail foldr_map comp_def transpose_aux_max less_Suc_eq_le) |
|
3365 |
||
3366 |
lemma transpose_empty: "(transpose xs = []) \<longleftrightarrow> (\<forall>x \<in> set xs. x = [])" |
|
3367 |
by (induct rule: transpose.induct) simp_all |
|
3368 |
||
3369 |
lemma length_transpose: |
|
3370 |
fixes xs :: "'a list list" |
|
3371 |
shows "length (transpose xs) = foldr (\<lambda>xs. max (length xs)) xs 0" |
|
3372 |
by (induct rule: transpose.induct) |
|
3373 |
(auto simp: transpose_aux_filter_tail foldr_map comp_def transpose_aux_max |
|
3374 |
max_Suc_Suc[symmetric] simp del: max_Suc_Suc) |
|
3375 |
||
3376 |
lemma nth_transpose: |
|
3377 |
fixes xs :: "'a list list" |
|
3378 |
assumes "i < length (transpose xs)" |
|
3379 |
shows "transpose xs ! i = map (\<lambda>xs. xs ! i) [ys \<leftarrow> xs. i < length ys]" |
|
3380 |
using assms proof (induct arbitrary: i rule: transpose.induct) |
|
3381 |
case (3 x xs xss) |
|
3382 |
def XS == "(x # xs) # xss" |
|
3383 |
hence [simp]: "XS \<noteq> []" by auto |
|
3384 |
thus ?case |
|
3385 |
proof (cases i) |
|
3386 |
case 0 |
|
3387 |
thus ?thesis by (simp add: transpose_aux_filter_head hd_conv_nth) |
|
3388 |
next |
|
3389 |
case (Suc j) |
|
3390 |
have *: "\<And>xss. xs # map tl xss = map tl ((x#xs)#xss)" by simp |
|
3391 |
have **: "\<And>xss. (x#xs) # filter (\<lambda>ys. ys \<noteq> []) xss = filter (\<lambda>ys. ys \<noteq> []) ((x#xs)#xss)" by simp |
|
3392 |
{ fix x have "Suc j < length x \<longleftrightarrow> x \<noteq> [] \<and> j < length x - Suc 0" |
|
3393 |
by (cases x) simp_all |
|
3394 |
} note *** = this |
|
3395 |
||
3396 |
have j_less: "j < length (transpose (xs # concat (map (list_case [] (\<lambda>h t. [t])) xss)))" |
|
3397 |
using "3.prems" by (simp add: transpose_aux_filter_tail length_transpose Suc) |
|
3398 |
||
3399 |
show ?thesis |
|
3400 |
unfolding transpose.simps `i = Suc j` nth_Cons_Suc "3.hyps"[OF j_less] |
|
3401 |
apply (auto simp: transpose_aux_filter_tail filter_map comp_def length_transpose * ** *** XS_def[symmetric]) |
|
3402 |
apply (rule_tac y=x in list.exhaust) |
|
3403 |
by auto |
|
3404 |
qed |
|
3405 |
qed simp_all |
|
3406 |
||
3407 |
lemma transpose_map_map: |
|
3408 |
"transpose (map (map f) xs) = map (map f) (transpose xs)" |
|
3409 |
proof (rule nth_equalityI, safe) |
|
3410 |
have [simp]: "length (transpose (map (map f) xs)) = length (transpose xs)" |
|
3411 |
by (simp add: length_transpose foldr_map comp_def) |
|
3412 |
show "length (transpose (map (map f) xs)) = length (map (map f) (transpose xs))" by simp |
|
3413 |
||
3414 |
fix i assume "i < length (transpose (map (map f) xs))" |
|
3415 |
thus "transpose (map (map f) xs) ! i = map (map f) (transpose xs) ! i" |
|
3416 |
by (simp add: nth_transpose filter_map comp_def) |
|
3417 |
qed |
|
24616 | 3418 |
|
35115 | 3419 |
|
31557 | 3420 |
subsubsection {* (In)finiteness *} |
28642 | 3421 |
|
3422 |
lemma finite_maxlen: |
|
3423 |
"finite (M::'a list set) ==> EX n. ALL s:M. size s < n" |
|
3424 |
proof (induct rule: finite.induct) |
|
3425 |
case emptyI show ?case by simp |
|
3426 |
next |
|
3427 |
case (insertI M xs) |
|
3428 |
then obtain n where "\<forall>s\<in>M. length s < n" by blast |
|
3429 |
hence "ALL s:insert xs M. size s < max n (size xs) + 1" by auto |
|
3430 |
thus ?case .. |
|
3431 |
qed |
|
3432 |
||
31557 | 3433 |
lemma finite_lists_length_eq: |
3434 |
assumes "finite A" |
|
3435 |
shows "finite {xs. set xs \<subseteq> A \<and> length xs = n}" (is "finite (?S n)") |
|
3436 |
proof(induct n) |
|
3437 |
case 0 show ?case by simp |
|
3438 |
next |
|
3439 |
case (Suc n) |
|
3440 |
have "?S (Suc n) = (\<Union>x\<in>A. (\<lambda>xs. x#xs) ` ?S n)" |
|
3441 |
by (auto simp:length_Suc_conv) |
|
3442 |
then show ?case using `finite A` |
|
3443 |
by (auto intro: finite_imageI Suc) (* FIXME metis? *) |
|
3444 |
qed |
|
3445 |
||
3446 |
lemma finite_lists_length_le: |
|
3447 |
assumes "finite A" shows "finite {xs. set xs \<subseteq> A \<and> length xs \<le> n}" |
|
3448 |
(is "finite ?S") |
|
3449 |
proof- |
|
3450 |
have "?S = (\<Union>n\<in>{0..n}. {xs. set xs \<subseteq> A \<and> length xs = n})" by auto |
|
3451 |
thus ?thesis by (auto intro: finite_lists_length_eq[OF `finite A`]) |
|
3452 |
qed |
|
3453 |
||
28642 | 3454 |
lemma infinite_UNIV_listI: "~ finite(UNIV::'a list set)" |
3455 |
apply(rule notI) |
|
3456 |
apply(drule finite_maxlen) |
|
3457 |
apply (metis UNIV_I length_replicate less_not_refl) |
|
3458 |
done |
|
3459 |
||
3460 |
||
35115 | 3461 |
subsection {* Sorting *} |
24616 | 3462 |
|
24617 | 3463 |
text{* Currently it is not shown that @{const sort} returns a |
3464 |
permutation of its input because the nicest proof is via multisets, |
|
3465 |
which are not yet available. Alternatively one could define a function |
|
3466 |
that counts the number of occurrences of an element in a list and use |
|
3467 |
that instead of multisets to state the correctness property. *} |
|
3468 |
||
24616 | 3469 |
context linorder |
3470 |
begin |
|
3471 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3472 |
lemma length_insert[simp] : "length (insort_key f x xs) = Suc (length xs)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3473 |
by (induct xs, auto) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3474 |
|
35195 | 3475 |
lemma insort_left_comm: |
3476 |
"insort x (insort y xs) = insort y (insort x xs)" |
|
3477 |
by (induct xs) auto |
|
3478 |
||
3479 |
lemma fun_left_comm_insort: |
|
3480 |
"fun_left_comm insort" |
|
3481 |
proof |
|
3482 |
qed (fact insort_left_comm) |
|
3483 |
||
3484 |
lemma sort_key_simps [simp]: |
|
3485 |
"sort_key f [] = []" |
|
3486 |
"sort_key f (x#xs) = insort_key f x (sort_key f xs)" |
|
3487 |
by (simp_all add: sort_key_def) |
|
3488 |
||
3489 |
lemma sort_foldl_insort: |
|
3490 |
"sort xs = foldl (\<lambda>ys x. insort x ys) [] xs" |
|
3491 |
by (simp add: sort_key_def foldr_foldl foldl_rev insort_left_comm) |
|
3492 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3493 |
lemma length_sort[simp]: "length (sort_key f xs) = length xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3494 |
by (induct xs, auto) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3495 |
|
25062 | 3496 |
lemma sorted_Cons: "sorted (x#xs) = (sorted xs & (ALL y:set xs. x <= y))" |
24616 | 3497 |
apply(induct xs arbitrary: x) apply simp |
3498 |
by simp (blast intro: order_trans) |
|
3499 |
||
3500 |
lemma sorted_append: |
|
25062 | 3501 |
"sorted (xs@ys) = (sorted xs & sorted ys & (\<forall>x \<in> set xs. \<forall>y \<in> set ys. x\<le>y))" |
24616 | 3502 |
by (induct xs) (auto simp add:sorted_Cons) |
3503 |
||
31201 | 3504 |
lemma sorted_nth_mono: |
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3505 |
"sorted xs \<Longrightarrow> i \<le> j \<Longrightarrow> j < length xs \<Longrightarrow> xs!i \<le> xs!j" |
31201 | 3506 |
by (induct xs arbitrary: i j) (auto simp:nth_Cons' sorted_Cons) |
3507 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3508 |
lemma sorted_rev_nth_mono: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3509 |
"sorted (rev xs) \<Longrightarrow> i \<le> j \<Longrightarrow> j < length xs \<Longrightarrow> xs!j \<le> xs!i" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3510 |
using sorted_nth_mono[ of "rev xs" "length xs - j - 1" "length xs - i - 1"] |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3511 |
rev_nth[of "length xs - i - 1" "xs"] rev_nth[of "length xs - j - 1" "xs"] |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3512 |
by auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3513 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3514 |
lemma sorted_nth_monoI: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3515 |
"(\<And> i j. \<lbrakk> i \<le> j ; j < length xs \<rbrakk> \<Longrightarrow> xs ! i \<le> xs ! j) \<Longrightarrow> sorted xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3516 |
proof (induct xs) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3517 |
case (Cons x xs) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3518 |
have "sorted xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3519 |
proof (rule Cons.hyps) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3520 |
fix i j assume "i \<le> j" and "j < length xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3521 |
with Cons.prems[of "Suc i" "Suc j"] |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3522 |
show "xs ! i \<le> xs ! j" by auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3523 |
qed |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3524 |
moreover |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3525 |
{ |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3526 |
fix y assume "y \<in> set xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3527 |
then obtain j where "j < length xs" and "xs ! j = y" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3528 |
unfolding in_set_conv_nth by blast |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3529 |
with Cons.prems[of 0 "Suc j"] |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3530 |
have "x \<le> y" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3531 |
by auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3532 |
} |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3533 |
ultimately |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3534 |
show ?case |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3535 |
unfolding sorted_Cons by auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3536 |
qed simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3537 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3538 |
lemma sorted_equals_nth_mono: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3539 |
"sorted xs = (\<forall>j < length xs. \<forall>i \<le> j. xs ! i \<le> xs ! j)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3540 |
by (auto intro: sorted_nth_monoI sorted_nth_mono) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3541 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3542 |
lemma set_insort: "set(insort_key f x xs) = insert x (set xs)" |
24616 | 3543 |
by (induct xs) auto |
3544 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3545 |
lemma set_sort[simp]: "set(sort_key f xs) = set xs" |
24616 | 3546 |
by (induct xs) (simp_all add:set_insort) |
3547 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3548 |
lemma distinct_insort: "distinct (insort_key f x xs) = (x \<notin> set xs \<and> distinct xs)" |
24616 | 3549 |
by(induct xs)(auto simp:set_insort) |
3550 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3551 |
lemma distinct_sort[simp]: "distinct (sort_key f xs) = distinct xs" |
24616 | 3552 |
by(induct xs)(simp_all add:distinct_insort set_sort) |
3553 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3554 |
lemma sorted_insort_key: "sorted (map f (insort_key f x xs)) = sorted (map f xs)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3555 |
by(induct xs)(auto simp:sorted_Cons set_insort) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3556 |
|
24616 | 3557 |
lemma sorted_insort: "sorted (insort x xs) = sorted xs" |
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3558 |
using sorted_insort_key[where f="\<lambda>x. x"] by simp |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3559 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3560 |
theorem sorted_sort_key[simp]: "sorted (map f (sort_key f xs))" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3561 |
by(induct xs)(auto simp:sorted_insort_key) |
24616 | 3562 |
|
3563 |
theorem sorted_sort[simp]: "sorted (sort xs)" |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3564 |
by(induct xs)(auto simp:sorted_insort) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3565 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3566 |
lemma insort_is_Cons: "\<forall>x\<in>set xs. f a \<le> f x \<Longrightarrow> insort_key f a xs = a # xs" |
26143
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
3567 |
by (cases xs) auto |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
3568 |
|
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
3569 |
lemma sorted_remove1: "sorted xs \<Longrightarrow> sorted (remove1 a xs)" |
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3570 |
by(induct xs)(auto simp add: sorted_Cons) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3571 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3572 |
lemma insort_key_remove1: "\<lbrakk> a \<in> set xs; sorted (map f xs) ; inj_on f (set xs) \<rbrakk> |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3573 |
\<Longrightarrow> insort_key f a (remove1 a xs) = xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3574 |
proof (induct xs) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3575 |
case (Cons x xs) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3576 |
thus ?case |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3577 |
proof (cases "x = a") |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3578 |
case False |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3579 |
hence "f x \<noteq> f a" using Cons.prems by auto |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3580 |
hence "f x < f a" using Cons.prems by (auto simp: sorted_Cons) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3581 |
thus ?thesis using Cons by (auto simp: sorted_Cons insort_is_Cons) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3582 |
qed (auto simp: sorted_Cons insort_is_Cons) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3583 |
qed simp |
26143
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
3584 |
|
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
3585 |
lemma insort_remove1: "\<lbrakk> a \<in> set xs; sorted xs \<rbrakk> \<Longrightarrow> insort a (remove1 a xs) = xs" |
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3586 |
using insort_key_remove1[where f="\<lambda>x. x"] by simp |
26143
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
3587 |
|
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
3588 |
lemma sorted_remdups[simp]: |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
3589 |
"sorted l \<Longrightarrow> sorted (remdups l)" |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
3590 |
by (induct l) (auto simp: sorted_Cons) |
314c0bcb7df7
Added useful general lemmas from the work with the HeapMonad
bulwahn
parents:
26073
diff
changeset
|
3591 |
|
24645 | 3592 |
lemma sorted_distinct_set_unique: |
3593 |
assumes "sorted xs" "distinct xs" "sorted ys" "distinct ys" "set xs = set ys" |
|
3594 |
shows "xs = ys" |
|
3595 |
proof - |
|
26734 | 3596 |
from assms have 1: "length xs = length ys" by (auto dest!: distinct_card) |
24645 | 3597 |
from assms show ?thesis |
3598 |
proof(induct rule:list_induct2[OF 1]) |
|
3599 |
case 1 show ?case by simp |
|
3600 |
next |
|
3601 |
case 2 thus ?case by (simp add:sorted_Cons) |
|
3602 |
(metis Diff_insert_absorb antisym insertE insert_iff) |
|
3603 |
qed |
|
3604 |
qed |
|
3605 |
||
3606 |
lemma finite_sorted_distinct_unique: |
|
3607 |
shows "finite A \<Longrightarrow> EX! xs. set xs = A & sorted xs & distinct xs" |
|
3608 |
apply(drule finite_distinct_list) |
|
3609 |
apply clarify |
|
3610 |
apply(rule_tac a="sort xs" in ex1I) |
|
3611 |
apply (auto simp: sorted_distinct_set_unique) |
|
3612 |
done |
|
3613 |
||
29626 | 3614 |
lemma sorted_take: |
3615 |
"sorted xs \<Longrightarrow> sorted (take n xs)" |
|
3616 |
proof (induct xs arbitrary: n rule: sorted.induct) |
|
3617 |
case 1 show ?case by simp |
|
3618 |
next |
|
3619 |
case 2 show ?case by (cases n) simp_all |
|
3620 |
next |
|
3621 |
case (3 x y xs) |
|
3622 |
then have "x \<le> y" by simp |
|
3623 |
show ?case proof (cases n) |
|
3624 |
case 0 then show ?thesis by simp |
|
3625 |
next |
|
3626 |
case (Suc m) |
|
3627 |
with 3 have "sorted (take m (y # xs))" by simp |
|
3628 |
with Suc `x \<le> y` show ?thesis by (cases m) simp_all |
|
3629 |
qed |
|
3630 |
qed |
|
3631 |
||
3632 |
lemma sorted_drop: |
|
3633 |
"sorted xs \<Longrightarrow> sorted (drop n xs)" |
|
3634 |
proof (induct xs arbitrary: n rule: sorted.induct) |
|
3635 |
case 1 show ?case by simp |
|
3636 |
next |
|
3637 |
case 2 show ?case by (cases n) simp_all |
|
3638 |
next |
|
3639 |
case 3 then show ?case by (cases n) simp_all |
|
3640 |
qed |
|
3641 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3642 |
lemma sorted_dropWhile: "sorted xs \<Longrightarrow> sorted (dropWhile P xs)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3643 |
unfolding dropWhile_eq_drop by (rule sorted_drop) |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3644 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3645 |
lemma sorted_takeWhile: "sorted xs \<Longrightarrow> sorted (takeWhile P xs)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
3646 |
apply (subst takeWhile_eq_take) by (rule sorted_take) |
29626 | 3647 |
|
34933 | 3648 |
lemma sorted_filter: |
3649 |
"sorted (map f xs) \<Longrightarrow> sorted (map f (filter P xs))" |
|
3650 |
by (induct xs) (simp_all add: sorted_Cons) |
|
3651 |
||
3652 |
lemma foldr_max_sorted: |
|
3653 |
assumes "sorted (rev xs)" |
|
3654 |
shows "foldr max xs y = (if xs = [] then y else max (xs ! 0) y)" |
|
3655 |
using assms proof (induct xs) |
|
3656 |
case (Cons x xs) |
|
3657 |
moreover hence "sorted (rev xs)" using sorted_append by auto |
|
3658 |
ultimately show ?case |
|
3659 |
by (cases xs, auto simp add: sorted_append max_def) |
|
3660 |
qed simp |
|
3661 |
||
3662 |
lemma filter_equals_takeWhile_sorted_rev: |
|
3663 |
assumes sorted: "sorted (rev (map f xs))" |
|
3664 |
shows "[x \<leftarrow> xs. t < f x] = takeWhile (\<lambda> x. t < f x) xs" |
|
3665 |
(is "filter ?P xs = ?tW") |
|
3666 |
proof (rule takeWhile_eq_filter[symmetric]) |
|
3667 |
let "?dW" = "dropWhile ?P xs" |
|
3668 |
fix x assume "x \<in> set ?dW" |
|
3669 |
then obtain i where i: "i < length ?dW" and nth_i: "x = ?dW ! i" |
|
3670 |
unfolding in_set_conv_nth by auto |
|
3671 |
hence "length ?tW + i < length (?tW @ ?dW)" |
|
3672 |
unfolding length_append by simp |
|
3673 |
hence i': "length (map f ?tW) + i < length (map f xs)" by simp |
|
3674 |
have "(map f ?tW @ map f ?dW) ! (length (map f ?tW) + i) \<le> |
|
3675 |
(map f ?tW @ map f ?dW) ! (length (map f ?tW) + 0)" |
|
3676 |
using sorted_rev_nth_mono[OF sorted _ i', of "length ?tW"] |
|
3677 |
unfolding map_append[symmetric] by simp |
|
3678 |
hence "f x \<le> f (?dW ! 0)" |
|
3679 |
unfolding nth_append_length_plus nth_i |
|
3680 |
using i preorder_class.le_less_trans[OF le0 i] by simp |
|
3681 |
also have "... \<le> t" |
|
3682 |
using hd_dropWhile[of "?P" xs] le0[THEN preorder_class.le_less_trans, OF i] |
|
3683 |
using hd_conv_nth[of "?dW"] by simp |
|
3684 |
finally show "\<not> t < f x" by simp |
|
3685 |
qed |
|
3686 |
||
24616 | 3687 |
end |
3688 |
||
25277 | 3689 |
lemma sorted_upt[simp]: "sorted[i..<j]" |
3690 |
by (induct j) (simp_all add:sorted_append) |
|
3691 |
||
32415
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
3692 |
lemma sorted_upto[simp]: "sorted[i..j]" |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
3693 |
apply(induct i j rule:upto.induct) |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
3694 |
apply(subst upto.simps) |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
3695 |
apply(simp add:sorted_Cons) |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
3696 |
done |
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
3697 |
|
35115 | 3698 |
|
3699 |
subsubsection {* @{const transpose} on sorted lists *} |
|
34933 | 3700 |
|
3701 |
lemma sorted_transpose[simp]: |
|
3702 |
shows "sorted (rev (map length (transpose xs)))" |
|
3703 |
by (auto simp: sorted_equals_nth_mono rev_nth nth_transpose |
|
3704 |
length_filter_conv_card intro: card_mono) |
|
3705 |
||
3706 |
lemma transpose_max_length: |
|
3707 |
"foldr (\<lambda>xs. max (length xs)) (transpose xs) 0 = length [x \<leftarrow> xs. x \<noteq> []]" |
|
3708 |
(is "?L = ?R") |
|
3709 |
proof (cases "transpose xs = []") |
|
3710 |
case False |
|
3711 |
have "?L = foldr max (map length (transpose xs)) 0" |
|
3712 |
by (simp add: foldr_map comp_def) |
|
3713 |
also have "... = length (transpose xs ! 0)" |
|
3714 |
using False sorted_transpose by (simp add: foldr_max_sorted) |
|
3715 |
finally show ?thesis |
|
3716 |
using False by (simp add: nth_transpose) |
|
3717 |
next |
|
3718 |
case True |
|
3719 |
hence "[x \<leftarrow> xs. x \<noteq> []] = []" |
|
3720 |
by (auto intro!: filter_False simp: transpose_empty) |
|
3721 |
thus ?thesis by (simp add: transpose_empty True) |
|
3722 |
qed |
|
3723 |
||
3724 |
lemma length_transpose_sorted: |
|
3725 |
fixes xs :: "'a list list" |
|
3726 |
assumes sorted: "sorted (rev (map length xs))" |
|
3727 |
shows "length (transpose xs) = (if xs = [] then 0 else length (xs ! 0))" |
|
3728 |
proof (cases "xs = []") |
|
3729 |
case False |
|
3730 |
thus ?thesis |
|
3731 |
using foldr_max_sorted[OF sorted] False |
|
3732 |
unfolding length_transpose foldr_map comp_def |
|
3733 |
by simp |
|
3734 |
qed simp |
|
3735 |
||
3736 |
lemma nth_nth_transpose_sorted[simp]: |
|
3737 |
fixes xs :: "'a list list" |
|
3738 |
assumes sorted: "sorted (rev (map length xs))" |
|
3739 |
and i: "i < length (transpose xs)" |
|
3740 |
and j: "j < length [ys \<leftarrow> xs. i < length ys]" |
|
3741 |
shows "transpose xs ! i ! j = xs ! j ! i" |
|
3742 |
using j filter_equals_takeWhile_sorted_rev[OF sorted, of i] |
|
3743 |
nth_transpose[OF i] nth_map[OF j] |
|
3744 |
by (simp add: takeWhile_nth) |
|
3745 |
||
3746 |
lemma transpose_column_length: |
|
3747 |
fixes xs :: "'a list list" |
|
3748 |
assumes sorted: "sorted (rev (map length xs))" and "i < length xs" |
|
3749 |
shows "length (filter (\<lambda>ys. i < length ys) (transpose xs)) = length (xs ! i)" |
|
3750 |
proof - |
|
3751 |
have "xs \<noteq> []" using `i < length xs` by auto |
|
3752 |
note filter_equals_takeWhile_sorted_rev[OF sorted, simp] |
|
3753 |
{ fix j assume "j \<le> i" |
|
3754 |
note sorted_rev_nth_mono[OF sorted, of j i, simplified, OF this `i < length xs`] |
|
3755 |
} note sortedE = this[consumes 1] |
|
3756 |
||
3757 |
have "{j. j < length (transpose xs) \<and> i < length (transpose xs ! j)} |
|
3758 |
= {..< length (xs ! i)}" |
|
3759 |
proof safe |
|
3760 |
fix j |
|
3761 |
assume "j < length (transpose xs)" and "i < length (transpose xs ! j)" |
|
3762 |
with this(2) nth_transpose[OF this(1)] |
|
3763 |
have "i < length (takeWhile (\<lambda>ys. j < length ys) xs)" by simp |
|
3764 |
from nth_mem[OF this] takeWhile_nth[OF this] |
|
3765 |
show "j < length (xs ! i)" by (auto dest: set_takeWhileD) |
|
3766 |
next |
|
3767 |
fix j assume "j < length (xs ! i)" |
|
3768 |
thus "j < length (transpose xs)" |
|
3769 |
using foldr_max_sorted[OF sorted] `xs \<noteq> []` sortedE[OF le0] |
|
3770 |
by (auto simp: length_transpose comp_def foldr_map) |
|
3771 |
||
3772 |
have "Suc i \<le> length (takeWhile (\<lambda>ys. j < length ys) xs)" |
|
3773 |
using `i < length xs` `j < length (xs ! i)` less_Suc_eq_le |
|
3774 |
by (auto intro!: length_takeWhile_less_P_nth dest!: sortedE) |
|
3775 |
with nth_transpose[OF `j < length (transpose xs)`] |
|
3776 |
show "i < length (transpose xs ! j)" by simp |
|
3777 |
qed |
|
3778 |
thus ?thesis by (simp add: length_filter_conv_card) |
|
3779 |
qed |
|
3780 |
||
3781 |
lemma transpose_column: |
|
3782 |
fixes xs :: "'a list list" |
|
3783 |
assumes sorted: "sorted (rev (map length xs))" and "i < length xs" |
|
3784 |
shows "map (\<lambda>ys. ys ! i) (filter (\<lambda>ys. i < length ys) (transpose xs)) |
|
3785 |
= xs ! i" (is "?R = _") |
|
3786 |
proof (rule nth_equalityI, safe) |
|
3787 |
show length: "length ?R = length (xs ! i)" |
|
3788 |
using transpose_column_length[OF assms] by simp |
|
3789 |
||
3790 |
fix j assume j: "j < length ?R" |
|
3791 |
note * = less_le_trans[OF this, unfolded length_map, OF length_filter_le] |
|
3792 |
from j have j_less: "j < length (xs ! i)" using length by simp |
|
3793 |
have i_less_tW: "Suc i \<le> length (takeWhile (\<lambda>ys. Suc j \<le> length ys) xs)" |
|
3794 |
proof (rule length_takeWhile_less_P_nth) |
|
3795 |
show "Suc i \<le> length xs" using `i < length xs` by simp |
|
3796 |
fix k assume "k < Suc i" |
|
3797 |
hence "k \<le> i" by auto |
|
3798 |
with sorted_rev_nth_mono[OF sorted this] `i < length xs` |
|
3799 |
have "length (xs ! i) \<le> length (xs ! k)" by simp |
|
3800 |
thus "Suc j \<le> length (xs ! k)" using j_less by simp |
|
3801 |
qed |
|
3802 |
have i_less_filter: "i < length [ys\<leftarrow>xs . j < length ys]" |
|
3803 |
unfolding filter_equals_takeWhile_sorted_rev[OF sorted, of j] |
|
3804 |
using i_less_tW by (simp_all add: Suc_le_eq) |
|
3805 |
from j show "?R ! j = xs ! i ! j" |
|
3806 |
unfolding filter_equals_takeWhile_sorted_rev[OF sorted_transpose, of i] |
|
3807 |
by (simp add: takeWhile_nth nth_nth_transpose_sorted[OF sorted * i_less_filter]) |
|
3808 |
qed |
|
3809 |
||
3810 |
lemma transpose_transpose: |
|
3811 |
fixes xs :: "'a list list" |
|
3812 |
assumes sorted: "sorted (rev (map length xs))" |
|
3813 |
shows "transpose (transpose xs) = takeWhile (\<lambda>x. x \<noteq> []) xs" (is "?L = ?R") |
|
3814 |
proof - |
|
3815 |
have len: "length ?L = length ?R" |
|
3816 |
unfolding length_transpose transpose_max_length |
|
3817 |
using filter_equals_takeWhile_sorted_rev[OF sorted, of 0] |
|
3818 |
by simp |
|
3819 |
||
3820 |
{ fix i assume "i < length ?R" |
|
3821 |
with less_le_trans[OF _ length_takeWhile_le[of _ xs]] |
|
3822 |
have "i < length xs" by simp |
|
3823 |
} note * = this |
|
3824 |
show ?thesis |
|
3825 |
by (rule nth_equalityI) |
|
3826 |
(simp_all add: len nth_transpose transpose_column[OF sorted] * takeWhile_nth) |
|
3827 |
qed |
|
24616 | 3828 |
|
34934
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3829 |
theorem transpose_rectangle: |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3830 |
assumes "xs = [] \<Longrightarrow> n = 0" |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3831 |
assumes rect: "\<And> i. i < length xs \<Longrightarrow> length (xs ! i) = n" |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3832 |
shows "transpose xs = map (\<lambda> i. map (\<lambda> j. xs ! j ! i) [0..<length xs]) [0..<n]" |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3833 |
(is "?trans = ?map") |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3834 |
proof (rule nth_equalityI) |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3835 |
have "sorted (rev (map length xs))" |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3836 |
by (auto simp: rev_nth rect intro!: sorted_nth_monoI) |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3837 |
from foldr_max_sorted[OF this] assms |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3838 |
show len: "length ?trans = length ?map" |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3839 |
by (simp_all add: length_transpose foldr_map comp_def) |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3840 |
moreover |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3841 |
{ fix i assume "i < n" hence "[ys\<leftarrow>xs . i < length ys] = xs" |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3842 |
using rect by (auto simp: in_set_conv_nth intro!: filter_True) } |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3843 |
ultimately show "\<forall>i < length ?trans. ?trans ! i = ?map ! i" |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3844 |
by (auto simp: nth_transpose intro: nth_equalityI) |
440605046777
Added transpose_rectangle, when the input list is rectangular.
hoelzl
parents:
34933
diff
changeset
|
3845 |
qed |
24616 | 3846 |
|
35115 | 3847 |
|
25069 | 3848 |
subsubsection {* @{text sorted_list_of_set} *} |
3849 |
||
3850 |
text{* This function maps (finite) linearly ordered sets to sorted |
|
3851 |
lists. Warning: in most cases it is not a good idea to convert from |
|
3852 |
sets to lists but one should convert in the other direction (via |
|
3853 |
@{const set}). *} |
|
3854 |
||
3855 |
context linorder |
|
3856 |
begin |
|
3857 |
||
35195 | 3858 |
definition sorted_list_of_set :: "'a set \<Rightarrow> 'a list" where |
3859 |
"sorted_list_of_set = Finite_Set.fold insort []" |
|
3860 |
||
3861 |
lemma sorted_list_of_set_empty [simp]: |
|
3862 |
"sorted_list_of_set {} = []" |
|
3863 |
by (simp add: sorted_list_of_set_def) |
|
3864 |
||
3865 |
lemma sorted_list_of_set_insert [simp]: |
|
3866 |
assumes "finite A" |
|
3867 |
shows "sorted_list_of_set (insert x A) = insort x (sorted_list_of_set (A - {x}))" |
|
3868 |
proof - |
|
3869 |
interpret fun_left_comm insort by (fact fun_left_comm_insort) |
|
3870 |
with assms show ?thesis by (simp add: sorted_list_of_set_def fold_insert_remove) |
|
3871 |
qed |
|
3872 |
||
3873 |
lemma sorted_list_of_set [simp]: |
|
3874 |
"finite A \<Longrightarrow> set (sorted_list_of_set A) = A \<and> sorted (sorted_list_of_set A) |
|
3875 |
\<and> distinct (sorted_list_of_set A)" |
|
3876 |
by (induct A rule: finite_induct) (simp_all add: set_insort sorted_insort distinct_insort) |
|
3877 |
||
3878 |
lemma sorted_list_of_set_sort_remdups: |
|
3879 |
"sorted_list_of_set (set xs) = sort (remdups xs)" |
|
3880 |
proof - |
|
3881 |
interpret fun_left_comm insort by (fact fun_left_comm_insort) |
|
3882 |
show ?thesis by (simp add: sort_foldl_insort sorted_list_of_set_def fold_set_remdups) |
|
3883 |
qed |
|
25069 | 3884 |
|
3885 |
end |
|
3886 |
||
35115 | 3887 |
|
15392 | 3888 |
subsubsection {* @{text lists}: the list-forming operator over sets *} |
15302 | 3889 |
|
23740 | 3890 |
inductive_set |
22262 | 3891 |
lists :: "'a set => 'a list set" |
23740 | 3892 |
for A :: "'a set" |
3893 |
where |
|
3894 |
Nil [intro!]: "[]: lists A" |
|
27715 | 3895 |
| 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
|
3896 |
|
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3897 |
inductive_cases listsE [elim!,noatp]: "x#l : lists A" |
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3898 |
inductive_cases listspE [elim!,noatp]: "listsp A (x # l)" |
23740 | 3899 |
|
3900 |
lemma listsp_mono [mono]: "A \<le> B ==> listsp A \<le> listsp B" |
|
34064
eee04bbbae7e
avoid dependency on implicit dest rule predicate1D in proofs
haftmann
parents:
34007
diff
changeset
|
3901 |
by (rule predicate1I, erule listsp.induct, (blast dest: predicate1D)+) |
26795
a27607030a1c
- Explicitely applied predicate1I in a few proofs, because it is no longer
berghofe
parents:
26771
diff
changeset
|
3902 |
|
a27607030a1c
- Explicitely applied predicate1I in a few proofs, because it is no longer
berghofe
parents:
26771
diff
changeset
|
3903 |
lemmas lists_mono = listsp_mono [to_set pred_subset_eq] |
22262 | 3904 |
|
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3905 |
lemma listsp_infI: |
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3906 |
assumes l: "listsp A l" shows "listsp B l ==> listsp (inf A B) l" using l |
24349 | 3907 |
by induct blast+ |
15302 | 3908 |
|
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3909 |
lemmas lists_IntI = listsp_infI [to_set] |
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3910 |
|
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3911 |
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
|
3912 |
proof (rule mono_inf [where f=listsp, THEN order_antisym]) |
22262 | 3913 |
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
|
3914 |
show "inf (listsp A) (listsp B) \<le> listsp (inf A B)" by (blast intro!: listsp_infI predicate1I) |
14388 | 3915 |
qed |
3916 |
||
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
3917 |
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
|
3918 |
|
26795
a27607030a1c
- Explicitely applied predicate1I in a few proofs, because it is no longer
berghofe
parents:
26771
diff
changeset
|
3919 |
lemmas lists_Int_eq [simp] = listsp_inf_eq [to_set pred_equals_eq] |
22262 | 3920 |
|
3921 |
lemma append_in_listsp_conv [iff]: |
|
3922 |
"(listsp A (xs @ ys)) = (listsp A xs \<and> listsp A ys)" |
|
15302 | 3923 |
by (induct xs) auto |
3924 |
||
22262 | 3925 |
lemmas append_in_lists_conv [iff] = append_in_listsp_conv [to_set] |
3926 |
||
3927 |
lemma in_listsp_conv_set: "(listsp A xs) = (\<forall>x \<in> set xs. A x)" |
|
3928 |
-- {* eliminate @{text listsp} in favour of @{text set} *} |
|
15302 | 3929 |
by (induct xs) auto |
3930 |
||
22262 | 3931 |
lemmas in_lists_conv_set = in_listsp_conv_set [to_set] |
3932 |
||
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3933 |
lemma in_listspD [dest!,noatp]: "listsp A xs ==> \<forall>x\<in>set xs. A x" |
22262 | 3934 |
by (rule in_listsp_conv_set [THEN iffD1]) |
3935 |
||
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3936 |
lemmas in_listsD [dest!,noatp] = in_listspD [to_set] |
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3937 |
|
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3938 |
lemma in_listspI [intro!,noatp]: "\<forall>x\<in>set xs. A x ==> listsp A xs" |
22262 | 3939 |
by (rule in_listsp_conv_set [THEN iffD2]) |
3940 |
||
24286
7619080e49f0
ATP blacklisting is now in theory data, attribute noatp
paulson
parents:
24219
diff
changeset
|
3941 |
lemmas in_listsI [intro!,noatp] = in_listspI [to_set] |
15302 | 3942 |
|
3943 |
lemma lists_UNIV [simp]: "lists UNIV = UNIV" |
|
3944 |
by auto |
|
3945 |
||
17086 | 3946 |
|
35115 | 3947 |
subsubsection {* Inductive definition for membership *} |
17086 | 3948 |
|
23740 | 3949 |
inductive ListMem :: "'a \<Rightarrow> 'a list \<Rightarrow> bool" |
22262 | 3950 |
where |
3951 |
elem: "ListMem x (x # xs)" |
|
3952 |
| insert: "ListMem x xs \<Longrightarrow> ListMem x (y # xs)" |
|
3953 |
||
3954 |
lemma ListMem_iff: "(ListMem x xs) = (x \<in> set xs)" |
|
17086 | 3955 |
apply (rule iffI) |
3956 |
apply (induct set: ListMem) |
|
3957 |
apply auto |
|
3958 |
apply (induct xs) |
|
3959 |
apply (auto intro: ListMem.intros) |
|
3960 |
done |
|
3961 |
||
3962 |
||
35115 | 3963 |
subsubsection {* Lists as Cartesian products *} |
15302 | 3964 |
|
3965 |
text{*@{text"set_Cons A Xs"}: the set of lists with head drawn from |
|
3966 |
@{term A} and tail drawn from @{term Xs}.*} |
|
3967 |
||
34941 | 3968 |
definition |
3969 |
set_Cons :: "'a set \<Rightarrow> 'a list set \<Rightarrow> 'a list set" where |
|
3970 |
[code del]: "set_Cons A XS = {z. \<exists>x xs. z = x # xs \<and> x \<in> A \<and> xs \<in> XS}" |
|
15302 | 3971 |
|
17724 | 3972 |
lemma set_Cons_sing_Nil [simp]: "set_Cons A {[]} = (%x. [x])`A" |
15302 | 3973 |
by (auto simp add: set_Cons_def) |
3974 |
||
3975 |
text{*Yields the set of lists, all of the same length as the argument and |
|
3976 |
with elements drawn from the corresponding element of the argument.*} |
|
3977 |
||
3978 |
primrec |
|
34941 | 3979 |
listset :: "'a set list \<Rightarrow> 'a list set" where |
3980 |
"listset [] = {[]}" |
|
3981 |
| "listset (A # As) = set_Cons A (listset As)" |
|
15302 | 3982 |
|
3983 |
||
35115 | 3984 |
subsection {* Relations on Lists *} |
15656 | 3985 |
|
3986 |
subsubsection {* Length Lexicographic Ordering *} |
|
3987 |
||
3988 |
text{*These orderings preserve well-foundedness: shorter lists |
|
3989 |
precede longer lists. These ordering are not used in dictionaries.*} |
|
34941 | 3990 |
|
3991 |
primrec -- {*The lexicographic ordering for lists of the specified length*} |
|
3992 |
lexn :: "('a \<times> 'a) set \<Rightarrow> nat \<Rightarrow> ('a list \<times> 'a list) set" where |
|
3993 |
"lexn r 0 = {}" |
|
3994 |
| "lexn r (Suc n) = (prod_fun (%(x, xs). x#xs) (%(x, xs). x#xs) ` (r <*lex*> lexn r n)) Int |
|
3995 |
{(xs, ys). length xs = Suc n \<and> length ys = Suc n}" |
|
3996 |
||
3997 |
definition |
|
3998 |
lex :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where |
|
3999 |
[code del]: "lex r = (\<Union>n. lexn r n)" -- {*Holds only between lists of the same length*} |
|
4000 |
||
4001 |
definition |
|
4002 |
lenlex :: "('a \<times> 'a) set => ('a list \<times> 'a list) set" where |
|
4003 |
[code del]: "lenlex r = inv_image (less_than <*lex*> lex r) (\<lambda>xs. (length xs, xs))" |
|
4004 |
-- {*Compares lists by their length and then lexicographically*} |
|
15302 | 4005 |
|
4006 |
lemma wf_lexn: "wf r ==> wf (lexn r n)" |
|
4007 |
apply (induct n, simp, simp) |
|
4008 |
apply(rule wf_subset) |
|
4009 |
prefer 2 apply (rule Int_lower1) |
|
4010 |
apply(rule wf_prod_fun_image) |
|
4011 |
prefer 2 apply (rule inj_onI, auto) |
|
4012 |
done |
|
4013 |
||
4014 |
lemma lexn_length: |
|
24526 | 4015 |
"(xs, ys) : lexn r n ==> length xs = n \<and> length ys = n" |
4016 |
by (induct n arbitrary: xs ys) auto |
|
15302 | 4017 |
|
4018 |
lemma wf_lex [intro!]: "wf r ==> wf (lex r)" |
|
4019 |
apply (unfold lex_def) |
|
4020 |
apply (rule wf_UN) |
|
4021 |
apply (blast intro: wf_lexn, clarify) |
|
4022 |
apply (rename_tac m n) |
|
4023 |
apply (subgoal_tac "m \<noteq> n") |
|
4024 |
prefer 2 apply blast |
|
4025 |
apply (blast dest: lexn_length not_sym) |
|
4026 |
done |
|
4027 |
||
4028 |
lemma lexn_conv: |
|
15656 | 4029 |
"lexn r n = |
4030 |
{(xs,ys). length xs = n \<and> length ys = n \<and> |
|
4031 |
(\<exists>xys x y xs' ys'. xs= xys @ x#xs' \<and> ys= xys @ y # ys' \<and> (x, y):r)}" |
|
18423 | 4032 |
apply (induct n, simp) |
15302 | 4033 |
apply (simp add: image_Collect lex_prod_def, safe, blast) |
4034 |
apply (rule_tac x = "ab # xys" in exI, simp) |
|
4035 |
apply (case_tac xys, simp_all, blast) |
|
4036 |
done |
|
4037 |
||
4038 |
lemma lex_conv: |
|
15656 | 4039 |
"lex r = |
4040 |
{(xs,ys). length xs = length ys \<and> |
|
4041 |
(\<exists>xys x y xs' ys'. xs = xys @ x # xs' \<and> ys = xys @ y # ys' \<and> (x, y):r)}" |
|
15302 | 4042 |
by (force simp add: lex_def lexn_conv) |
4043 |
||
15693 | 4044 |
lemma wf_lenlex [intro!]: "wf r ==> wf (lenlex r)" |
4045 |
by (unfold lenlex_def) blast |
|
4046 |
||
4047 |
lemma lenlex_conv: |
|
4048 |
"lenlex r = {(xs,ys). length xs < length ys | |
|
15656 | 4049 |
length xs = length ys \<and> (xs, ys) : lex r}" |
30198 | 4050 |
by (simp add: lenlex_def Id_on_def lex_prod_def inv_image_def) |
15302 | 4051 |
|
4052 |
lemma Nil_notin_lex [iff]: "([], ys) \<notin> lex r" |
|
4053 |
by (simp add: lex_conv) |
|
4054 |
||
4055 |
lemma Nil2_notin_lex [iff]: "(xs, []) \<notin> lex r" |
|
4056 |
by (simp add:lex_conv) |
|
4057 |
||
18447 | 4058 |
lemma Cons_in_lex [simp]: |
15656 | 4059 |
"((x # xs, y # ys) : lex r) = |
4060 |
((x, y) : r \<and> length xs = length ys | x = y \<and> (xs, ys) : lex r)" |
|
15302 | 4061 |
apply (simp add: lex_conv) |
4062 |
apply (rule iffI) |
|
4063 |
prefer 2 apply (blast intro: Cons_eq_appendI, clarify) |
|
4064 |
apply (case_tac xys, simp, simp) |
|
4065 |
apply blast |
|
4066 |
done |
|
4067 |
||
4068 |
||
15656 | 4069 |
subsubsection {* Lexicographic Ordering *} |
4070 |
||
4071 |
text {* Classical lexicographic ordering on lists, ie. "a" < "ab" < "b". |
|
4072 |
This ordering does \emph{not} preserve well-foundedness. |
|
17090 | 4073 |
Author: N. Voelker, March 2005. *} |
15656 | 4074 |
|
34941 | 4075 |
definition |
4076 |
lexord :: "('a \<times> 'a) set \<Rightarrow> ('a list \<times> 'a list) set" where |
|
4077 |
[code del]: "lexord r = {(x,y ). \<exists> a v. y = x @ a # v \<or> |
|
15656 | 4078 |
(\<exists> u a b v w. (a,b) \<in> r \<and> x = u @ (a # v) \<and> y = u @ (b # w))}" |
4079 |
||
4080 |
lemma lexord_Nil_left[simp]: "([],y) \<in> lexord r = (\<exists> a x. y = a # x)" |
|
24349 | 4081 |
by (unfold lexord_def, induct_tac y, auto) |
15656 | 4082 |
|
4083 |
lemma lexord_Nil_right[simp]: "(x,[]) \<notin> lexord r" |
|
24349 | 4084 |
by (unfold lexord_def, induct_tac x, auto) |
15656 | 4085 |
|
4086 |
lemma lexord_cons_cons[simp]: |
|
4087 |
"((a # x, b # y) \<in> lexord r) = ((a,b)\<in> r | (a = b & (x,y)\<in> lexord r))" |
|
4088 |
apply (unfold lexord_def, safe, simp_all) |
|
4089 |
apply (case_tac u, simp, simp) |
|
4090 |
apply (case_tac u, simp, clarsimp, blast, blast, clarsimp) |
|
4091 |
apply (erule_tac x="b # u" in allE) |
|
4092 |
by force |
|
4093 |
||
4094 |
lemmas lexord_simps = lexord_Nil_left lexord_Nil_right lexord_cons_cons |
|
4095 |
||
4096 |
lemma lexord_append_rightI: "\<exists> b z. y = b # z \<Longrightarrow> (x, x @ y) \<in> lexord r" |
|
24349 | 4097 |
by (induct_tac x, auto) |
15656 | 4098 |
|
4099 |
lemma lexord_append_left_rightI: |
|
4100 |
"(a,b) \<in> r \<Longrightarrow> (u @ a # x, u @ b # y) \<in> lexord r" |
|
24349 | 4101 |
by (induct_tac u, auto) |
15656 | 4102 |
|
4103 |
lemma lexord_append_leftI: " (u,v) \<in> lexord r \<Longrightarrow> (x @ u, x @ v) \<in> lexord r" |
|
24349 | 4104 |
by (induct x, auto) |
15656 | 4105 |
|
4106 |
lemma lexord_append_leftD: |
|
4107 |
"\<lbrakk> (x @ u, x @ v) \<in> lexord r; (! a. (a,a) \<notin> r) \<rbrakk> \<Longrightarrow> (u,v) \<in> lexord r" |
|
24349 | 4108 |
by (erule rev_mp, induct_tac x, auto) |
15656 | 4109 |
|
4110 |
lemma lexord_take_index_conv: |
|
4111 |
"((x,y) : lexord r) = |
|
4112 |
((length x < length y \<and> take (length x) y = x) \<or> |
|
4113 |
(\<exists>i. i < min(length x)(length y) & take i x = take i y & (x!i,y!i) \<in> r))" |
|
4114 |
apply (unfold lexord_def Let_def, clarsimp) |
|
4115 |
apply (rule_tac f = "(% a b. a \<or> b)" in arg_cong2) |
|
4116 |
apply auto |
|
4117 |
apply (rule_tac x="hd (drop (length x) y)" in exI) |
|
4118 |
apply (rule_tac x="tl (drop (length x) y)" in exI) |
|
4119 |
apply (erule subst, simp add: min_def) |
|
4120 |
apply (rule_tac x ="length u" in exI, simp) |
|
4121 |
apply (rule_tac x ="take i x" in exI) |
|
4122 |
apply (rule_tac x ="x ! i" in exI) |
|
4123 |
apply (rule_tac x ="y ! i" in exI, safe) |
|
4124 |
apply (rule_tac x="drop (Suc i) x" in exI) |
|
4125 |
apply (drule sym, simp add: drop_Suc_conv_tl) |
|
4126 |
apply (rule_tac x="drop (Suc i) y" in exI) |
|
4127 |
by (simp add: drop_Suc_conv_tl) |
|
4128 |
||
4129 |
-- {* lexord is extension of partial ordering List.lex *} |
|
4130 |
lemma lexord_lex: " (x,y) \<in> lex r = ((x,y) \<in> lexord r \<and> length x = length y)" |
|
4131 |
apply (rule_tac x = y in spec) |
|
4132 |
apply (induct_tac x, clarsimp) |
|
4133 |
by (clarify, case_tac x, simp, force) |
|
4134 |
||
4135 |
lemma lexord_irreflexive: "(! x. (x,x) \<notin> r) \<Longrightarrow> (y,y) \<notin> lexord r" |
|
4136 |
by (induct y, auto) |
|
4137 |
||
4138 |
lemma lexord_trans: |
|
4139 |
"\<lbrakk> (x, y) \<in> lexord r; (y, z) \<in> lexord r; trans r \<rbrakk> \<Longrightarrow> (x, z) \<in> lexord r" |
|
4140 |
apply (erule rev_mp)+ |
|
4141 |
apply (rule_tac x = x in spec) |
|
4142 |
apply (rule_tac x = z in spec) |
|
4143 |
apply ( induct_tac y, simp, clarify) |
|
4144 |
apply (case_tac xa, erule ssubst) |
|
4145 |
apply (erule allE, erule allE) -- {* avoid simp recursion *} |
|
4146 |
apply (case_tac x, simp, simp) |
|
24632 | 4147 |
apply (case_tac x, erule allE, erule allE, simp) |
15656 | 4148 |
apply (erule_tac x = listb in allE) |
4149 |
apply (erule_tac x = lista in allE, simp) |
|
4150 |
apply (unfold trans_def) |
|
4151 |
by blast |
|
4152 |
||
4153 |
lemma lexord_transI: "trans r \<Longrightarrow> trans (lexord r)" |
|
24349 | 4154 |
by (rule transI, drule lexord_trans, blast) |
15656 | 4155 |
|
4156 |
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" |
|
4157 |
apply (rule_tac x = y in spec) |
|
4158 |
apply (induct_tac x, rule allI) |
|
4159 |
apply (case_tac x, simp, simp) |
|
4160 |
apply (rule allI, case_tac x, simp, simp) |
|
4161 |
by blast |
|
4162 |
||
4163 |
||
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4164 |
subsection {* Lexicographic combination of measure functions *} |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4165 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4166 |
text {* These are useful for termination proofs *} |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4167 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4168 |
definition |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4169 |
"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
|
4170 |
|
21106
51599a81b308
Added "recdef_wf" and "simp" attribute to "wf_measures"
krauss
parents:
21103
diff
changeset
|
4171 |
lemma wf_measures[recdef_wf, simp]: "wf (measures fs)" |
24349 | 4172 |
unfolding measures_def |
4173 |
by blast |
|
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4174 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4175 |
lemma in_measures[simp]: |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4176 |
"(x, y) \<in> measures [] = False" |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4177 |
"(x, y) \<in> measures (f # fs) |
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4178 |
= (f x < f y \<or> (f x = f y \<and> (x, y) \<in> measures fs))" |
24349 | 4179 |
unfolding measures_def |
4180 |
by auto |
|
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4181 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4182 |
lemma measures_less: "f x < f y ==> (x, y) \<in> measures (f#fs)" |
24349 | 4183 |
by simp |
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4184 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4185 |
lemma measures_lesseq: "f x <= f y ==> (x, y) \<in> measures fs ==> (x, y) \<in> measures (f#fs)" |
24349 | 4186 |
by auto |
21103
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4187 |
|
367b4ad7c7cc
Added "measures" combinator for lexicographic combinations of multiple measures.
krauss
parents:
21079
diff
changeset
|
4188 |
|
35115 | 4189 |
subsubsection {* Lifting a Relation on List Elements to the Lists *} |
15302 | 4190 |
|
23740 | 4191 |
inductive_set |
4192 |
listrel :: "('a * 'a)set => ('a list * 'a list)set" |
|
4193 |
for r :: "('a * 'a)set" |
|
22262 | 4194 |
where |
23740 | 4195 |
Nil: "([],[]) \<in> listrel r" |
4196 |
| Cons: "[| (x,y) \<in> r; (xs,ys) \<in> listrel r |] ==> (x#xs, y#ys) \<in> listrel r" |
|
4197 |
||
4198 |
inductive_cases listrel_Nil1 [elim!]: "([],xs) \<in> listrel r" |
|
4199 |
inductive_cases listrel_Nil2 [elim!]: "(xs,[]) \<in> listrel r" |
|
4200 |
inductive_cases listrel_Cons1 [elim!]: "(y#ys,xs) \<in> listrel r" |
|
4201 |
inductive_cases listrel_Cons2 [elim!]: "(xs,y#ys) \<in> listrel r" |
|
15302 | 4202 |
|
4203 |
||
4204 |
lemma listrel_mono: "r \<subseteq> s \<Longrightarrow> listrel r \<subseteq> listrel s" |
|
4205 |
apply clarify |
|
23740 | 4206 |
apply (erule listrel.induct) |
4207 |
apply (blast intro: listrel.intros)+ |
|
15302 | 4208 |
done |
4209 |
||
4210 |
lemma listrel_subset: "r \<subseteq> A \<times> A \<Longrightarrow> listrel r \<subseteq> lists A \<times> lists A" |
|
4211 |
apply clarify |
|
23740 | 4212 |
apply (erule listrel.induct, auto) |
15302 | 4213 |
done |
4214 |
||
30198 | 4215 |
lemma listrel_refl_on: "refl_on A r \<Longrightarrow> refl_on (lists A) (listrel r)" |
4216 |
apply (simp add: refl_on_def listrel_subset Ball_def) |
|
15302 | 4217 |
apply (rule allI) |
4218 |
apply (induct_tac x) |
|
23740 | 4219 |
apply (auto intro: listrel.intros) |
15302 | 4220 |
done |
4221 |
||
4222 |
lemma listrel_sym: "sym r \<Longrightarrow> sym (listrel r)" |
|
4223 |
apply (auto simp add: sym_def) |
|
23740 | 4224 |
apply (erule listrel.induct) |
4225 |
apply (blast intro: listrel.intros)+ |
|
15302 | 4226 |
done |
4227 |
||
4228 |
lemma listrel_trans: "trans r \<Longrightarrow> trans (listrel r)" |
|
4229 |
apply (simp add: trans_def) |
|
4230 |
apply (intro allI) |
|
4231 |
apply (rule impI) |
|
23740 | 4232 |
apply (erule listrel.induct) |
4233 |
apply (blast intro: listrel.intros)+ |
|
15302 | 4234 |
done |
4235 |
||
4236 |
theorem equiv_listrel: "equiv A r \<Longrightarrow> equiv (lists A) (listrel r)" |
|
30198 | 4237 |
by (simp add: equiv_def listrel_refl_on listrel_sym listrel_trans) |
15302 | 4238 |
|
4239 |
lemma listrel_Nil [simp]: "listrel r `` {[]} = {[]}" |
|
23740 | 4240 |
by (blast intro: listrel.intros) |
15302 | 4241 |
|
4242 |
lemma listrel_Cons: |
|
33318
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4243 |
"listrel r `` {x#xs} = set_Cons (r``{x}) (listrel r `` {xs})" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4244 |
by (auto simp add: set_Cons_def intro: listrel.intros) |
15302 | 4245 |
|
4246 |
||
26749
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
4247 |
subsection {* Size function *} |
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
4248 |
|
26875
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4249 |
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
|
4250 |
by (rule is_measure_trivial) |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4251 |
|
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4252 |
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
|
4253 |
by (rule is_measure_trivial) |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4254 |
|
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4255 |
lemma list_size_estimation[termination_simp]: |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4256 |
"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
|
4257 |
by (induct xs) auto |
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
4258 |
|
26875
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4259 |
lemma list_size_estimation'[termination_simp]: |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4260 |
"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
|
4261 |
by (induct xs) auto |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4262 |
|
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4263 |
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
|
4264 |
by (induct xs) auto |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4265 |
|
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4266 |
lemma list_size_pointwise[termination_simp]: |
e18574413bc4
Measure functions can now be declared via special rules, allowing for a
krauss
parents:
26795
diff
changeset
|
4267 |
"(\<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
|
4268 |
by (induct xs) force+ |
26749
397a1aeede7d
* New attribute "termination_simp": Simp rules for termination proofs
krauss
parents:
26734
diff
changeset
|
4269 |
|
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4270 |
|
33318
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4271 |
subsection {* Transfer *} |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4272 |
|
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4273 |
definition |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4274 |
embed_list :: "nat list \<Rightarrow> int list" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4275 |
where |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4276 |
"embed_list l = map int l" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4277 |
|
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4278 |
definition |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4279 |
nat_list :: "int list \<Rightarrow> bool" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4280 |
where |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4281 |
"nat_list l = nat_set (set l)" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4282 |
|
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4283 |
definition |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4284 |
return_list :: "int list \<Rightarrow> nat list" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4285 |
where |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4286 |
"return_list l = map nat l" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4287 |
|
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4288 |
lemma transfer_nat_int_list_return_embed: "nat_list l \<longrightarrow> |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4289 |
embed_list (return_list l) = l" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4290 |
unfolding embed_list_def return_list_def nat_list_def nat_set_def |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4291 |
apply (induct l) |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4292 |
apply auto |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4293 |
done |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4294 |
|
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4295 |
lemma transfer_nat_int_list_functions: |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4296 |
"l @ m = return_list (embed_list l @ embed_list m)" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4297 |
"[] = return_list []" |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4298 |
unfolding return_list_def embed_list_def |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4299 |
apply auto |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4300 |
apply (induct l, auto) |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4301 |
apply (induct m, auto) |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4302 |
done |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4303 |
|
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4304 |
(* |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4305 |
lemma transfer_nat_int_fold1: "fold f l x = |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4306 |
fold (%x. f (nat x)) (embed_list l) x"; |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4307 |
*) |
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4308 |
|
ddd97d9dfbfb
moved Nat_Transfer before Divides; distributed Nat_Transfer setup accordingly
haftmann
parents:
32960
diff
changeset
|
4309 |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4310 |
subsection {* Code generator *} |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4311 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4312 |
subsubsection {* Setup *} |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
4313 |
|
31055
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4314 |
use "Tools/list_code.ML" |
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4315 |
|
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4316 |
code_type list |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4317 |
(SML "_ list") |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4318 |
(OCaml "_ list") |
34886 | 4319 |
(Haskell "![(_)]") |
4320 |
(Scala "List[(_)]") |
|
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4321 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4322 |
code_const Nil |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4323 |
(SML "[]") |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4324 |
(OCaml "[]") |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4325 |
(Haskell "[]") |
34886 | 4326 |
(Scala "Nil") |
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4327 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4328 |
code_instance list :: eq |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4329 |
(Haskell -) |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4330 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4331 |
code_const "eq_class.eq \<Colon> 'a\<Colon>eq list \<Rightarrow> 'a list \<Rightarrow> bool" |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4332 |
(Haskell infixl 4 "==") |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4333 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4334 |
code_reserved SML |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4335 |
list |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4336 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4337 |
code_reserved OCaml |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4338 |
list |
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4339 |
|
16770
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
4340 |
types_code |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
4341 |
"list" ("_ list") |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
4342 |
attach (term_of) {* |
21760 | 4343 |
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
|
4344 |
*} |
1f1b1fae30e4
Auxiliary functions to be used in generated code are now defined using "attach".
berghofe
parents:
16634
diff
changeset
|
4345 |
attach (test) {* |
25885 | 4346 |
fun gen_list' aG aT i j = frequency |
4347 |
[(i, fn () => |
|
4348 |
let |
|
4349 |
val (x, t) = aG j; |
|
4350 |
val (xs, ts) = gen_list' aG aT (i-1) j |
|
4351 |
in (x :: xs, fn () => HOLogic.cons_const aT $ t () $ ts ()) end), |
|
4352 |
(1, fn () => ([], fn () => HOLogic.nil_const aT))] () |
|
4353 |
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
|
4354 |
*} |
31048
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4355 |
|
ac146fc38b51
refined HOL string theories and corresponding ML fragments
haftmann
parents:
31022
diff
changeset
|
4356 |
consts_code Cons ("(_ ::/ _)") |
20588 | 4357 |
|
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
4358 |
setup {* |
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
4359 |
let |
31055
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4360 |
fun list_codegen thy defs dep thyname b t gr = |
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4361 |
let |
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4362 |
val ts = HOLogic.dest_list t; |
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4363 |
val (_, gr') = Codegen.invoke_tycodegen thy defs dep thyname false |
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4364 |
(fastype_of t) gr; |
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4365 |
val (ps, gr'') = fold_map |
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4366 |
(Codegen.invoke_codegen thy defs dep thyname false) ts gr' |
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4367 |
in SOME (Pretty.list "[" "]" ps, gr'') end handle TERM _ => NONE; |
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4368 |
in |
34886 | 4369 |
fold (List_Code.add_literal_list) ["SML", "OCaml", "Haskell", "Scala"] |
31055
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4370 |
#> Codegen.add_codegen "list_codegen" list_codegen |
2cf6efca6c71
proper structures for list and string code generation stuff
haftmann
parents:
31048
diff
changeset
|
4371 |
end |
20453
855f07fabd76
final syntax for some Isar code generator keywords
haftmann
parents:
20439
diff
changeset
|
4372 |
*} |
15064
4f3102b50197
- Moved code generator setup for lists from Main.thy to List.thy
berghofe
parents:
15045
diff
changeset
|
4373 |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4374 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4375 |
subsubsection {* Generation of efficient code *} |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4376 |
|
25221
5ded95dda5df
append/member: more light-weight way to declare authentic syntax;
wenzelm
parents:
25215
diff
changeset
|
4377 |
primrec |
25559 | 4378 |
member :: "'a \<Rightarrow> 'a list \<Rightarrow> bool" (infixl "mem" 55) |
4379 |
where |
|
4380 |
"x mem [] \<longleftrightarrow> False" |
|
28515 | 4381 |
| "x mem (y#ys) \<longleftrightarrow> x = y \<or> x mem ys" |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4382 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4383 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4384 |
null:: "'a list \<Rightarrow> bool" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4385 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4386 |
"null [] = True" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4387 |
| "null (x#xs) = False" |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4388 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4389 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4390 |
list_inter :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4391 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4392 |
"list_inter [] bs = []" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4393 |
| "list_inter (a#as) bs = |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4394 |
(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
|
4395 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4396 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4397 |
list_all :: "('a \<Rightarrow> bool) \<Rightarrow> ('a list \<Rightarrow> bool)" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4398 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4399 |
"list_all P [] = True" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4400 |
| "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
|
4401 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4402 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4403 |
list_ex :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> bool" |
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4404 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4405 |
"list_ex P [] = False" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4406 |
| "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
|
4407 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4408 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4409 |
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
|
4410 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4411 |
"filtermap f [] = []" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4412 |
| "filtermap f (x#xs) = |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4413 |
(case f x of None \<Rightarrow> filtermap f xs |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4414 |
| Some y \<Rightarrow> y # filtermap f xs)" |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4415 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4416 |
primrec |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4417 |
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
|
4418 |
where |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4419 |
"map_filter f P [] = []" |
26442
57fb6a8b099e
restructuring; explicit case names for rule list_induct2
haftmann
parents:
26300
diff
changeset
|
4420 |
| "map_filter f P (x#xs) = |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4421 |
(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
|
4422 |
|
28789
5a404273ea8f
added length_unique operation for code generation
haftmann
parents:
28708
diff
changeset
|
4423 |
primrec |
5a404273ea8f
added length_unique operation for code generation
haftmann
parents:
28708
diff
changeset
|
4424 |
length_unique :: "'a list \<Rightarrow> nat" |
5a404273ea8f
added length_unique operation for code generation
haftmann
parents:
28708
diff
changeset
|
4425 |
where |
5a404273ea8f
added length_unique operation for code generation
haftmann
parents:
28708
diff
changeset
|
4426 |
"length_unique [] = 0" |
5a404273ea8f
added length_unique operation for code generation
haftmann
parents:
28708
diff
changeset
|
4427 |
| "length_unique (x#xs) = |
5a404273ea8f
added length_unique operation for code generation
haftmann
parents:
28708
diff
changeset
|
4428 |
(if x \<in> set xs then length_unique xs else Suc (length_unique xs))" |
5a404273ea8f
added length_unique operation for code generation
haftmann
parents:
28708
diff
changeset
|
4429 |
|
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4430 |
primrec |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4431 |
concat_map :: "('a => 'b list) => 'a list => 'b list" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4432 |
where |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4433 |
"concat_map f [] = []" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4434 |
| "concat_map f (x#xs) = f x @ concat_map f xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4435 |
|
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4436 |
text {* |
21754
6316163ae934
moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents:
21548
diff
changeset
|
4437 |
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
|
4438 |
@{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
|
4439 |
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
|
4440 |
@{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
|
4441 |
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
|
4442 |
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
|
4443 |
@{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
|
4444 |
efficiently. |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4445 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4446 |
Efficient emptyness check is implemented by @{const null}. |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4447 |
|
23060 | 4448 |
The functions @{const filtermap} and @{const map_filter} are just |
4449 |
there to generate efficient code. Do not use |
|
21754
6316163ae934
moved char/string syntax to Tools/string_syntax.ML;
wenzelm
parents:
21548
diff
changeset
|
4450 |
them for modelling and proving. |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4451 |
*} |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4452 |
|
23060 | 4453 |
lemma rev_foldl_cons [code]: |
4454 |
"rev xs = foldl (\<lambda>xs x. x # xs) [] xs" |
|
4455 |
proof (induct xs) |
|
4456 |
case Nil then show ?case by simp |
|
4457 |
next |
|
4458 |
case Cons |
|
4459 |
{ |
|
4460 |
fix x xs ys |
|
4461 |
have "foldl (\<lambda>xs x. x # xs) ys xs @ [x] |
|
4462 |
= foldl (\<lambda>xs x. x # xs) (ys @ [x]) xs" |
|
4463 |
by (induct xs arbitrary: ys) auto |
|
4464 |
} |
|
4465 |
note aux = this |
|
4466 |
show ?case by (induct xs) (auto simp add: Cons aux) |
|
4467 |
qed |
|
4468 |
||
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4469 |
lemma mem_iff [code_post]: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
4470 |
"x mem xs \<longleftrightarrow> x \<in> set xs" |
24349 | 4471 |
by (induct xs) auto |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4472 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4473 |
lemmas in_set_code [code_unfold] = mem_iff [symmetric] |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4474 |
|
31154 | 4475 |
lemma empty_null: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
4476 |
"xs = [] \<longleftrightarrow> null xs" |
24349 | 4477 |
by (cases xs) simp_all |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4478 |
|
32069
6d28bbd33e2c
prefer code_inline over code_unfold; use code_unfold_post where appropriate
haftmann
parents:
31998
diff
changeset
|
4479 |
lemma [code_unfold]: |
31154 | 4480 |
"eq_class.eq xs [] \<longleftrightarrow> null xs" |
4481 |
by (simp add: eq empty_null) |
|
4482 |
||
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4483 |
lemmas null_empty [code_post] = |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4484 |
empty_null [symmetric] |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4485 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4486 |
lemma list_inter_conv: |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4487 |
"set (list_inter xs ys) = set xs \<inter> set ys" |
24349 | 4488 |
by (induct xs) auto |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4489 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4490 |
lemma list_all_iff [code_post]: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
4491 |
"list_all P xs \<longleftrightarrow> (\<forall>x \<in> set xs. P x)" |
24349 | 4492 |
by (induct xs) auto |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4493 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4494 |
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
|
4495 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4496 |
lemma list_all_append [simp]: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
4497 |
"list_all P (xs @ ys) \<longleftrightarrow> (list_all P xs \<and> list_all P ys)" |
24349 | 4498 |
by (induct xs) auto |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4499 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4500 |
lemma list_all_rev [simp]: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
4501 |
"list_all P (rev xs) \<longleftrightarrow> list_all P xs" |
24349 | 4502 |
by (simp add: list_all_iff) |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4503 |
|
22506 | 4504 |
lemma list_all_length: |
4505 |
"list_all P xs \<longleftrightarrow> (\<forall>n < length xs. P (xs ! n))" |
|
4506 |
unfolding list_all_iff by (auto intro: all_nth_imp_all_set) |
|
4507 |
||
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4508 |
lemma list_ex_iff [code_post]: |
22422
ee19cdb07528
stepping towards uniform lattice theory development in HOL
haftmann
parents:
22262
diff
changeset
|
4509 |
"list_ex P xs \<longleftrightarrow> (\<exists>x \<in> set xs. P x)" |
24349 | 4510 |
by (induct xs) simp_all |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4511 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4512 |
lemmas list_bex_code [code_unfold] = |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
4513 |
list_ex_iff [symmetric] |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4514 |
|
22506 | 4515 |
lemma list_ex_length: |
4516 |
"list_ex P xs \<longleftrightarrow> (\<exists>n < length xs. P (xs ! n))" |
|
4517 |
unfolding list_ex_iff set_conv_nth by auto |
|
4518 |
||
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4519 |
lemma filtermap_conv: |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4520 |
"filtermap f xs = map (\<lambda>x. the (f x)) (filter (\<lambda>x. f x \<noteq> None) xs)" |
24349 | 4521 |
by (induct xs) (simp_all split: option.split) |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4522 |
|
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4523 |
lemma map_filter_conv [simp]: |
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4524 |
"map_filter f P xs = map f (filter P xs)" |
24349 | 4525 |
by (induct xs) auto |
21061
580dfc999ef6
added normal post setup; cleaned up "execution" constants
haftmann
parents:
21046
diff
changeset
|
4526 |
|
32069
6d28bbd33e2c
prefer code_inline over code_unfold; use code_unfold_post where appropriate
haftmann
parents:
31998
diff
changeset
|
4527 |
lemma length_remdups_length_unique [code_unfold]: |
28789
5a404273ea8f
added length_unique operation for code generation
haftmann
parents:
28708
diff
changeset
|
4528 |
"length (remdups xs) = length_unique xs" |
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4529 |
by (induct xs) simp_all |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4530 |
|
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4531 |
lemma concat_map_code[code_unfold]: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4532 |
"concat(map f xs) = concat_map f xs" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4533 |
by (induct xs) simp_all |
28789
5a404273ea8f
added length_unique operation for code generation
haftmann
parents:
28708
diff
changeset
|
4534 |
|
32681
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
4535 |
declare INFI_def [code_unfold] |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
4536 |
declare SUPR_def [code_unfold] |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
4537 |
|
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
4538 |
declare set_map [symmetric, code_unfold] |
adeac3cbb659
lemma relating fold1 and foldl; code_unfold rules for Inf_fin, Sup_fin, Min, Max, Inf, Sup
haftmann
parents:
32422
diff
changeset
|
4539 |
|
28789
5a404273ea8f
added length_unique operation for code generation
haftmann
parents:
28708
diff
changeset
|
4540 |
hide (open) const length_unique |
5a404273ea8f
added length_unique operation for code generation
haftmann
parents:
28708
diff
changeset
|
4541 |
|
24449 | 4542 |
|
4543 |
text {* Code for bounded quantification and summation over nats. *} |
|
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
4544 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4545 |
lemma atMost_upto [code_unfold]: |
28072
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
4546 |
"{..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
|
4547 |
by auto |
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
4548 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4549 |
lemma atLeast_upt [code_unfold]: |
28072
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
4550 |
"{..<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
|
4551 |
by auto |
a45e8c872dc1
It appears that the code generator (Stefan's) needs some laws that appear superfluous: {..n} = set ...
nipkow
parents:
28068
diff
changeset
|
4552 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4553 |
lemma greaterThanLessThan_upt [code_unfold]: |
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
4554 |
"{n<..<m} = set [Suc n..<m]" |
24349 | 4555 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
4556 |
|
32417 | 4557 |
lemmas atLeastLessThan_upt [code_unfold] = set_upt [symmetric] |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
4558 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4559 |
lemma greaterThanAtMost_upt [code_unfold]: |
24645 | 4560 |
"{n<..m} = set [Suc n..<Suc m]" |
24349 | 4561 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
4562 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4563 |
lemma atLeastAtMost_upt [code_unfold]: |
24645 | 4564 |
"{n..m} = set [n..<Suc m]" |
24349 | 4565 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
4566 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4567 |
lemma all_nat_less_eq [code_unfold]: |
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
4568 |
"(\<forall>m<n\<Colon>nat. P m) \<longleftrightarrow> (\<forall>m \<in> {0..<n}. P m)" |
24349 | 4569 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
4570 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4571 |
lemma ex_nat_less_eq [code_unfold]: |
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
4572 |
"(\<exists>m<n\<Colon>nat. P m) \<longleftrightarrow> (\<exists>m \<in> {0..<n}. P m)" |
24349 | 4573 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
4574 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4575 |
lemma all_nat_less [code_unfold]: |
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
4576 |
"(\<forall>m\<le>n\<Colon>nat. P m) \<longleftrightarrow> (\<forall>m \<in> {0..n}. P m)" |
24349 | 4577 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
4578 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4579 |
lemma ex_nat_less [code_unfold]: |
21891
b4e4ea3db161
added code lemmas for quantification over bounded nats
haftmann
parents:
21871
diff
changeset
|
4580 |
"(\<exists>m\<le>n\<Colon>nat. P m) \<longleftrightarrow> (\<exists>m \<in> {0..n}. P m)" |
24349 | 4581 |
by auto |
22799
ed7d53db2170
moved code generation pretty integers and characters to separate theories
haftmann
parents:
22793
diff
changeset
|
4582 |
|
27715 | 4583 |
lemma setsum_set_distinct_conv_listsum: |
4584 |
"distinct xs \<Longrightarrow> setsum f (set xs) = listsum (map f xs)" |
|
4585 |
by (induct xs) simp_all |
|
4586 |
||
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4587 |
lemma setsum_set_upt_conv_listsum [code_unfold]: |
27715 | 4588 |
"setsum f (set [m..<n]) = listsum (map f [m..<n])" |
4589 |
by (rule setsum_set_distinct_conv_listsum) simp |
|
4590 |
||
33639
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4591 |
text {* General equivalence between @{const listsum} and @{const setsum} *} |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4592 |
lemma listsum_setsum_nth: |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4593 |
"listsum xs = (\<Sum> i = 0 ..< length xs. xs ! i)" |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4594 |
using setsum_set_upt_conv_listsum[of "op ! xs" 0 "length xs"] |
603320b93668
New list theorems; added map_map to simpset, this is the prefered direction; allow sorting by a key
hoelzl
parents:
33593
diff
changeset
|
4595 |
by (simp add: map_nth) |
27715 | 4596 |
|
4597 |
text {* Code for summation over ints. *} |
|
4598 |
||
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4599 |
lemma greaterThanLessThan_upto [code_unfold]: |
27715 | 4600 |
"{i<..<j::int} = set [i+1..j - 1]" |
4601 |
by auto |
|
4602 |
||
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4603 |
lemma atLeastLessThan_upto [code_unfold]: |
27715 | 4604 |
"{i..<j::int} = set [i..j - 1]" |
4605 |
by auto |
|
4606 |
||
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4607 |
lemma greaterThanAtMost_upto [code_unfold]: |
27715 | 4608 |
"{i<..j::int} = set [i+1..j]" |
4609 |
by auto |
|
4610 |
||
32415
1dddf2f64266
got rid of complicated class finite_intvl_succ and defined "upto" directly on int, the only instance of the class.
nipkow
parents:
32078
diff
changeset
|
4611 |
lemmas atLeastAtMost_upto [code_unfold] = set_upto[symmetric] |
27715 | 4612 |
|
31998
2c7a24f74db9
code attributes use common underscore convention
haftmann
parents:
31930
diff
changeset
|
4613 |
lemma setsum_set_upto_conv_listsum [code_unfold]: |
27715 | 4614 |
"setsum f (set [i..j::int]) = listsum (map f [i..j])" |
4615 |
by (rule setsum_set_distinct_conv_listsum) simp |
|
24449 | 4616 |
|
32422
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4617 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4618 |
text {* Optimized code for @{text"\<forall>i\<in>{a..b::int}"} and @{text"\<forall>n:{a..<b::nat}"} |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4619 |
and similiarly for @{text"\<exists>"}. *} |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4620 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4621 |
function all_from_to_nat :: "(nat \<Rightarrow> bool) \<Rightarrow> nat \<Rightarrow> nat \<Rightarrow> bool" where |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4622 |
"all_from_to_nat P i j = |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4623 |
(if i < j then if P i then all_from_to_nat P (i+1) j else False |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4624 |
else True)" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4625 |
by auto |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4626 |
termination |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4627 |
by (relation "measure(%(P,i,j). j - i)") auto |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4628 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4629 |
declare all_from_to_nat.simps[simp del] |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4630 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4631 |
lemma all_from_to_nat_iff_ball: |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4632 |
"all_from_to_nat P i j = (ALL n : {i ..< j}. P n)" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4633 |
proof(induct P i j rule:all_from_to_nat.induct) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4634 |
case (1 P i j) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4635 |
let ?yes = "i < j & P i" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4636 |
show ?case |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4637 |
proof (cases) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4638 |
assume ?yes |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4639 |
hence "all_from_to_nat P i j = (P i & all_from_to_nat P (i+1) j)" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4640 |
by(simp add: all_from_to_nat.simps) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4641 |
also have "... = (P i & (ALL n : {i+1 ..< j}. P n))" using `?yes` 1 by simp |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4642 |
also have "... = (ALL n : {i ..< j}. P n)" (is "?L = ?R") |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4643 |
proof |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4644 |
assume L: ?L |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4645 |
show ?R |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4646 |
proof clarify |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4647 |
fix n assume n: "n : {i..<j}" |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4648 |
show "P n" |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4649 |
proof cases |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4650 |
assume "n = i" thus "P n" using L by simp |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4651 |
next |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4652 |
assume "n ~= i" |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4653 |
hence "i+1 <= n" using n by auto |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4654 |
thus "P n" using L n by simp |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4655 |
qed |
32422
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4656 |
qed |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4657 |
next |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4658 |
assume R: ?R thus ?L using `?yes` 1 by auto |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4659 |
qed |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4660 |
finally show ?thesis . |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4661 |
next |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4662 |
assume "~?yes" thus ?thesis by(auto simp add: all_from_to_nat.simps) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4663 |
qed |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4664 |
qed |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4665 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4666 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4667 |
lemma list_all_iff_all_from_to_nat[code_unfold]: |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4668 |
"list_all P [i..<j] = all_from_to_nat P i j" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4669 |
by(simp add: all_from_to_nat_iff_ball list_all_iff) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4670 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4671 |
lemma list_ex_iff_not_all_from_to_not_nat[code_unfold]: |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4672 |
"list_ex P [i..<j] = (~all_from_to_nat (%x. ~P x) i j)" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4673 |
by(simp add: all_from_to_nat_iff_ball list_ex_iff) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4674 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4675 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4676 |
function all_from_to_int :: "(int \<Rightarrow> bool) \<Rightarrow> int \<Rightarrow> int \<Rightarrow> bool" where |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4677 |
"all_from_to_int P i j = |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4678 |
(if i <= j then if P i then all_from_to_int P (i+1) j else False |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4679 |
else True)" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4680 |
by auto |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4681 |
termination |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4682 |
by (relation "measure(%(P,i,j). nat(j - i + 1))") auto |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4683 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4684 |
declare all_from_to_int.simps[simp del] |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4685 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4686 |
lemma all_from_to_int_iff_ball: |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4687 |
"all_from_to_int P i j = (ALL n : {i .. j}. P n)" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4688 |
proof(induct P i j rule:all_from_to_int.induct) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4689 |
case (1 P i j) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4690 |
let ?yes = "i <= j & P i" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4691 |
show ?case |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4692 |
proof (cases) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4693 |
assume ?yes |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4694 |
hence "all_from_to_int P i j = (P i & all_from_to_int P (i+1) j)" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4695 |
by(simp add: all_from_to_int.simps) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4696 |
also have "... = (P i & (ALL n : {i+1 .. j}. P n))" using `?yes` 1 by simp |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4697 |
also have "... = (ALL n : {i .. j}. P n)" (is "?L = ?R") |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4698 |
proof |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4699 |
assume L: ?L |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4700 |
show ?R |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4701 |
proof clarify |
32960
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4702 |
fix n assume n: "n : {i..j}" |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4703 |
show "P n" |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4704 |
proof cases |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4705 |
assume "n = i" thus "P n" using L by simp |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4706 |
next |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4707 |
assume "n ~= i" |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4708 |
hence "i+1 <= n" using n by auto |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4709 |
thus "P n" using L n by simp |
69916a850301
eliminated hard tabulators, guessing at each author's individual tab-width;
wenzelm
parents:
32681
diff
changeset
|
4710 |
qed |
32422
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4711 |
qed |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4712 |
next |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4713 |
assume R: ?R thus ?L using `?yes` 1 by auto |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4714 |
qed |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4715 |
finally show ?thesis . |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4716 |
next |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4717 |
assume "~?yes" thus ?thesis by(auto simp add: all_from_to_int.simps) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4718 |
qed |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4719 |
qed |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4720 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4721 |
lemma list_all_iff_all_from_to_int[code_unfold]: |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4722 |
"list_all P [i..j] = all_from_to_int P i j" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4723 |
by(simp add: all_from_to_int_iff_ball list_all_iff) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4724 |
|
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4725 |
lemma list_ex_iff_not_all_from_to_not_int[code_unfold]: |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4726 |
"list_ex P [i..j] = (~ all_from_to_int (%x. ~P x) i j)" |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4727 |
by(simp add: all_from_to_int_iff_ball list_ex_iff) |
46fc4d4ff4c0
code generator: quantifiers over {_.._::int} and {_..<_::nat}
nipkow
parents:
32417
diff
changeset
|
4728 |
|
23388 | 4729 |
end |